From d1af9623abd5ed9fdd8c90acf67bcaae6310c047 Mon Sep 17 00:00:00 2001 From: Xinyu Date: Tue, 16 Dec 2025 01:14:19 +0800 Subject: [PATCH] Finish my project --- README.md | 61 +- about.html | 51 + css/style.css | 379 + data/philly_business.json | 460074 +++++++++++++++++++++++++++++++++++ favorites.html | 78 + image/ChristmasBack.jpg | Bin 0 -> 3640013 bytes index.html | 140 + js/map.js | 305 + 8 files changed, 461087 insertions(+), 1 deletion(-) create mode 100644 about.html create mode 100644 css/style.css create mode 100644 data/philly_business.json create mode 100644 favorites.html create mode 100644 image/ChristmasBack.jpg create mode 100644 index.html create mode 100644 js/map.js diff --git a/README.md b/README.md index 40a4520..c72fd6d 100644 --- a/README.md +++ b/README.md @@ -1 +1,60 @@ -Add a readme for your engagement tool here. Include content overview, data citations, and any relevant technical details. \ No newline at end of file +# ๐ŸŽ„ Philadelphia Restaurants Explorer + +An interactive web application designed to help locals and tourists discover, filter, and save their favorite businesses in Philadelphia. Powered by the Yelp Academic Dataset, this project transforms raw data into a festive, user-friendly geospatial dashboard. + +## ๐Ÿ“– Project Overview + +This application visualizes thousands of businesses on an interactive map, allowing users to filter by cuisine, rating, and amenities. It features a "Wishlist" system that lets users save their favorite spots for later planningโ€”perfect for organizing holiday dinners or weekend trips. + +## ๐ŸŽฏ Target Audience + +* **Foodies & Explorers:** People looking for specific cuisines or highly-rated hidden gems in the city. +* **Tourists:** Visitors who need a visual guide to find reputable businesses near their location. +* **Holiday Planners:** Users organizing festive gatherings who need to filter venues by specific features (e.g., "Good for Groups", "Has TV") and save them to a wishlist. + +## โœจ Key Features + +* **Interactive Map:** Built with Leaflet.js and MarkerCluster to efficiently handle thousands of data points. +* **Smart Filtering:** + * **Cuisine Type:** Filter by American, Chinese, Italian, and more using modern capsule buttons. + * **Amenities:** Filter by features like "Outdoor Seating", "Kids Friendly", or "Takeout". + * **Rating Slider:** Easily filter out businesses below a certain star rating. + * **Search:** Real-time search by business name or street address. +* **My Wishlist (Favorites):** Save interesting spots to a personal "Wishlist" which persists via local storage. +* **Holiday Theme:** A custom festive UI with a snowy header, Christmas color palette, and themed micro-interactions. +* **Data Validation:** Displays real-time counts of loaded businesses to verify data integrity. + +## ๐Ÿ› ๏ธ Technology Stack + +* **Frontend:** HTML5, CSS3 (Flexbox/Grid), JavaScript (ES6+) +* **Mapping Library:** Leaflet.js & Leaflet.markercluster +* **Data Source:** Yelp Academic Dataset (processed via Python to extract Philadelphia records) +* **No Build Tools Required:** Runs directly in the browser with a simple local server. + +## ๐Ÿš€ How to Run + +1. **Clone or Download** this repository. +2. Ensure the `data/philly_business.json` file is present (generated from the Yelp dataset). +3. Because of browser security policies (CORS), you cannot open `index.html` directly. You must run a local server. +4. Open your browser and navigate to `http://localhost:[port]`. + +## ๐Ÿ“‚ File Structure + +**Plaintext** + +``` +/ +โ”œโ”€โ”€ index.html # Main Map Dashboard +โ”œโ”€โ”€ favorites.html # Wishlist Page +โ”œโ”€โ”€ about.html # Project Information +โ”œโ”€โ”€ css/ +โ”‚ โ””โ”€โ”€ style.css # Custom Styles (Christmas Theme) +โ”œโ”€โ”€ js/ +โ”‚ โ””โ”€โ”€ map.js # Core Logic (Map, Filters, Favorites) +โ””โ”€โ”€ data/ + โ””โ”€โ”€ philly_business.json # Processed JSON Data +``` + +--- + +Happy Holidays & Happy Exploring! ๐ŸŽ…โœจ diff --git a/about.html b/about.html new file mode 100644 index 0000000..e1b7d1d --- /dev/null +++ b/about.html @@ -0,0 +1,51 @@ + + + + + + About - Philadelphia Business Explorer + + + + + + +
+
๐ŸŽ… Taste of Philly: Delicacy Wonderland
+ +
+ +
+

โ„น๏ธ About This Project

+ +
+

The Mission

+

+ The Philadelphia Business Explorer is an interactive dashboard designed to help locals and tourists alike discover the best spots in the city. + Utilizing geospatial data, users can filter restaurants, cafes, and shops by cuisine, rating, and location. +

+ +

Data Source

+

+ This application is powered by the Yelp Academic Dataset. + The data includes detailed information about businesses, including location coordinates, review counts, star ratings, and category tags. +

+ +

Technology Stack

+

This project is built with lightweight, modern web technologies:

+
+ HTML5 + CSS3 (Flexbox/Grid) + JavaScript (ES6+) + Leaflet.js + OpenStreetMap +
+ +
+
+ + \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..e9ad950 --- /dev/null +++ b/css/style.css @@ -0,0 +1,379 @@ +/* --- CHRISTMAS THEME VARIABLES --- */ +:root { + --xmas-red: #C41E3A; + --xmas-green: #165B33; + --xmas-gold: #F8B229; + --snow-white: #f8fcfd; + --bg-gray: #f4f4f4; +} + +/* --- Global Reset & Body --- */ +* { box-sizing: border-box; } + +html, body { + margin: 0; + padding: 0; + width: 100%; + height: 100%; /* Crucial: Fill the browser window */ + font-family: 'Roboto', sans-serif; + overflow: hidden; /* Prevent page-level scrolling */ + display: flex; + flex-direction: column; /* Vertical layout: Header top, Container bottom */ + background-color: var(--bg-gray); + /* Optional: Subtle snow texture background */ + background-image: radial-gradient(#e6e6e6 1px, transparent 1px); + background-size: 20px 20px; +} + +a { text-decoration: none; color: inherit; } + +/* --- Header (Fixed Height) --- */ +.app-header { + height: 80px; /* Fixed height */ + flex-shrink: 0; /* Prevent shrinking */ + background: url('../image/ChristmasBack.jpg') no-repeat center center; + background-size: cover; + color: white; + padding: 0 30px; + display: flex; + align-items: center; + justify-content: space-between; + box-shadow: 0 4px 12px rgba(0,0,0,0.25); + z-index: 1001; + position: relative; + border-bottom: 4px solid var(--xmas-gold); +} + +.app-header::before { + content: ""; + position: absolute; + top: 0; left: 0; right: 0; bottom: 0; + background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(50,0,0,0.6)); + z-index: 0; +} + +/* Snow effect decoration on header */ +.app-header::after { + content: ""; + position: absolute; + bottom: -10px; + left: 0; + right: 0; + height: 10px; + background: + radial-gradient(circle, #fff 50%, transparent 60%) 0 0, + radial-gradient(circle, #fff 50%, transparent 60%) 10px 0; + background-size: 20px 20px; + z-index: 2; + pointer-events: none; +} + +.brand { + font-family: 'Mountains of Christmas', cursive; + font-size: 2.2rem; + font-weight: 700; + letter-spacing: 1px; + display: flex; + align-items: center; + gap: 10px; + text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(255,215,0,0.3); + color: #fff; + z-index: 1; +} + +/* Navigation Links */ +.nav-links { display: flex; gap: 20px; z-index: 1; } +.nav-item { + font-family: 'Roboto', sans-serif; + font-weight: 500; + font-size: 1rem; + color: rgba(255,255,255,0.9); + padding: 8px 16px; + border-radius: 20px; /* ่ƒถๅ›Š็Šถ่ƒŒๆ™ฏ */ + transition: 0.3s ease; + text-shadow: 1px 1px 2px rgba(0,0,0,0.5); +} + +.nav-item:hover, .nav-item.active { + background: rgba(255, 255, 255, 0.2); + color: var(--xmas-gold); + backdrop-filter: blur(5px); + transform: translateY(-2px); +} + +/* --- App Container (Fills remaining space) --- */ +.app-container { + display: flex; /* Horizontal layout */ + flex: 1; /* Take up all remaining height after header */ + height: calc(100vh - 60px); /* Explicit height calculation */ + width: 100%; + overflow: hidden; /* Internal scrolling only */ +} + +/* --- Sidebar (Left side, fixed width, internal scroll) --- */ +.sidebar { + width: 350px; + min-width: 300px; + background-color: #fff; + border-right: 1px solid #ddd; + border-top: 5px solid var(--xmas-green); + + /* Crucial: Scroll inside the sidebar only */ + overflow-y: auto; + height: 100%; + + display: flex; + flex-direction: column; + padding: 20px; + gap: 20px; + box-shadow: 2px 0 5px rgba(0,0,0,0.05); + z-index: 1000; +} + +/* Sidebar Section Headers */ +.filter-group h3 { + color: var(--xmas-green); + margin: 0 0 10px 0; + font-size: 0.95rem; + text-transform: uppercase; + letter-spacing: 0.5px; + border-bottom: 2px solid #eee; + padding-bottom: 8px; +} + +/* --- Map Wrapper (Right side, flexible) --- */ +.map-wrapper { + flex: 1; /* Take remaining width */ + height: 100%; /* Fill container height */ + position: relative; + background-color: #eee; +} + +#map { + width: 100%; + height: 100%; +} + +/* --- Search & Inputs --- */ +.search-bar { + width: 100%; + padding: 10px; + border: 1px solid #ddd; + border-radius: 6px; + font-size: 0.9rem; + background: #f9f9f9; +} +.search-bar:focus { outline: none; border-color: var(--xmas-red); background: #fff; } + +/* --- Toggle Switch (Show Favorites Only) --- */ +.toggle-container { + display: flex; + align-items: center; + justify-content: space-between; + background: #fff; + padding: 12px; + border: 1px solid #eee; + border-radius: 8px; + margin-bottom: 5px; +} + +.toggle-label { + font-weight: 500; + font-size: 0.95rem; + color: #333; + display: flex; + align-items: center; + gap: 8px; +} + +.switch { + position: relative; + display: inline-block; + width: 44px; + height: 24px; +} + +.switch input { opacity: 0; width: 0; height: 0; } + +.slider-toggle { + position: absolute; + cursor: pointer; + top: 0; left: 0; right: 0; bottom: 0; + background-color: #ccc; + transition: .4s; + border-radius: 24px; +} + +.slider-toggle:before { + position: absolute; + content: ""; + height: 18px; + width: 18px; + left: 3px; + bottom: 3px; + background-color: white; + transition: .4s; + border-radius: 50%; +} + +input:checked + .slider-toggle { background-color: var(--xmas-green); } +input:checked + .slider-toggle:before { transform: translateX(20px); } + +/* --- Capsule Buttons --- */ +.capsule-container { + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.capsule-input { display: none; } + +.capsule-label { + display: inline-block; + padding: 6px 12px; + background-color: #eee; + color: #555; + border-radius: 20px; + font-size: 0.85rem; + cursor: pointer; + transition: all 0.2s; + border: 1px solid transparent; + user-select: none; +} +.capsule-label:hover { background-color: #e0e0e0; } + +/* Checked State */ +.capsule-input:checked + .capsule-label { + background-color: var(--xmas-red); + color: white; + box-shadow: 0 2px 5px rgba(196, 30, 58, 0.3); +} + +/* --- Rating Slider --- */ +.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } +#rating-value { font-weight: bold; color: var(--xmas-red); } +.slider { width: 100%; accent-color: var(--xmas-red); } + +/* --- City Stats Card --- */ +.stats-card { + background: linear-gradient(to right, #f8fcfd, #eafaf1); + border: 1px solid #cce5d6; + border-radius: 8px; + padding: 15px; + margin-top: auto; /* Push to bottom of sidebar */ + text-align: center; +} +.stats-title { font-size: 0.8rem; color: var(--xmas-green); text-transform: uppercase; font-weight: bold; margin-bottom: 5px; } +.stats-number { font-size: 1.5rem; font-weight: bold; color: #333; } +.stats-desc { font-size: 0.85rem; color: #666; } + +/* --- Reset Button --- */ +#reset-btn { width: 100%; padding: 12px; background-color: #333; color: white; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; } +#reset-btn:hover { background-color: #555; } + +/* --- Popup Styles --- */ +.biz-popup { font-family: 'Helvetica Neue', Arial, sans-serif; min-width: 200px; } +.biz-popup h3 { margin: 0 0 8px 0; color: var(--xmas-red); font-size: 16px; border-bottom: 1px solid #eee; padding-bottom: 5px; } +.biz-popup p { margin: 5px 0; font-size: 13px; color: #333; line-height: 1.4; } +.biz-rating { display: inline-block; background-color: var(--xmas-gold); color: white; padding: 2px 6px; border-radius: 4px; font-size: 12px; font-weight: bold; margin-bottom: 5px; } +.biz-cat { color: #666; font-size: 12px; font-style: italic; margin-top: 8px !important; } + +/* Popup Actions (Favorites Button) */ +.popup-actions { + margin-top: 12px; + text-align: center; + border-top: 1px solid #eee; + padding-top: 10px; +} + +.fav-btn { + background: white; + border: 1px solid #ddd; + padding: 6px 16px; + border-radius: 20px; + cursor: pointer; + font-size: 0.9rem; + color: #555; + font-weight: 500; + transition: all 0.2s ease; + display: inline-flex; + align-items: center; + gap: 6px; + box-shadow: 0 2px 5px rgba(0,0,0,0.05); +} + +.fav-btn:hover { + background-color: #f9f9f9; + border-color: #bbb; + transform: translateY(-1px); + box-shadow: 0 4px 8px rgba(0,0,0,0.1); +} + +.fav-btn.is-active { + background: #ffebeb; + color: var(--xmas-red); + border-color: var(--xmas-red); +} + +.fav-btn.is-active:hover { background: #ffd1d1; } + +/* --- Page Content (For About & Favorites Pages) --- */ +.page-content { + max-width: 1000px; + margin: 30px auto; + padding: 0 20px; + width: 100%; + overflow-y: auto; /* Enable scrolling for content pages */ +} +.page-title { font-size: 2rem; color: #333; margin-bottom: 20px; border-bottom: 1px solid #ddd; padding-bottom: 10px; } + +/* Favorites Grid */ +.favorites-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); + gap: 20px; +} +.biz-card { + background: white; + border-radius: 8px; + padding: 20px; + box-shadow: 0 2px 8px rgba(0,0,0,0.1); + transition: transform 0.2s; + display: flex; + flex-direction: column; +} +.biz-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.15); } +.biz-card h3 { margin: 0 0 10px 0; color: var(--xmas-red); } +.biz-card .rating { color: var(--xmas-gold); font-weight: bold; margin-bottom: 10px; } +.biz-card .info { font-size: 0.9rem; color: #666; margin-bottom: 5px; } +.biz-card .actions { margin-top: auto; padding-top: 15px; display: flex; justify-content: flex-end; } +.btn-remove { background: #fff; border: 1px solid #ddd; color: #666; padding: 5px 12px; border-radius: 4px; cursor: pointer; } +.btn-remove:hover { border-color: var(--xmas-red); color: var(--xmas-red); } + +/* About Section */ +.about-section { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } +.about-section h2 { color: var(--xmas-red); } +.tech-stack { display: flex; gap: 10px; margin-top: 10px; } +.tag { background: #eee; padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; } + +/* --- Loading Overlay --- */ +#loading-overlay { + position: absolute; + top: 0; left: 0; right: 0; bottom: 0; + background: rgba(255,255,255,0.9); + display: flex; + align-items: center; + justify-content: center; + z-index: 2000; + flex-direction: column; +} +.spinner { + width: 40px; + height: 40px; + border: 4px solid #f3f3f3; + border-top: 4px solid var(--xmas-red); + border-radius: 50%; + animation: spin 1s linear infinite; + margin-bottom: 15px; +} +@keyframes spin { to { transform: rotate(360deg); } } \ No newline at end of file diff --git a/data/philly_business.json b/data/philly_business.json new file mode 100644 index 0000000..0c02b73 --- /dev/null +++ b/data/philly_business.json @@ -0,0 +1,460074 @@ +[ + { + "business_id": "MTSW4McQd7CbVtyjqoe9mw", + "name": "St Honore Pastries", + "address": "935 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555052, + "longitude": -75.1555641, + "stars": 4.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Caters": "True" + }, + "categories": "Restaurants, Food, Bubble Tea, Coffee & Tea, Bakeries", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "MUTTqe8uqyMdBl186RmNeA", + "name": "Tuna Bar", + "address": "205 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953949, + "longitude": -75.1432262, + "stars": 4.0, + "review_count": 245, + "is_open": 1, + "attributes": { + "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, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "ROeacJQwBeh05Rqg7F6TCg", + "name": "BAP", + "address": "1224 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943223, + "longitude": -75.162568, + "stars": 4.5, + "review_count": 205, + "is_open": 1, + "attributes": { + "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", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Korean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "QdN72BWoyFypdGJhhI5r7g", + "name": "Bar One", + "address": "767 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9398245705, + "longitude": -75.1574465632, + "stars": 4.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "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": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "GoodForKids": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Cocktail Bars, Bars, Italian, Nightlife, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Mjboz24M9NlBeiOJKLEd_Q", + "name": "DeSandro on Main", + "address": "4105 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0224662, + "longitude": -75.218314, + "stars": 3.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "WiFi": "'no'", + "NoiseLevel": "'average'" + }, + "categories": "Pizza, Restaurants, Salad, Soup", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-1:30", + "Thursday": "17:0-1:30", + "Friday": "17:0-0:30", + "Saturday": "17:0-0:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "aPNXGTDkf-4bjhyMBQxqpQ", + "name": "Craft Hall", + "address": "901 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625821, + "longitude": -75.1356571, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "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", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Eatertainment, Arts & Entertainment, Brewpubs, American (Traditional), Bakeries, Breweries, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "-4dYswJy7SPcbcERvitmIg", + "name": "Pathmark", + "address": "3021 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9404026, + "longitude": -75.1932966, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "6:0-1:0", + "Tuesday": "6:0-1:0", + "Wednesday": "6:0-1:0", + "Thursday": "6:0-1:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-1:0" + } + }, + { + "business_id": "ppFCk9aQkM338Rgwpl2F5A", + "name": "Wawa", + "address": "3604 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954573, + "longitude": -75.1948936, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "ByAppointmentOnly": "False", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Automotive, Delis, Gas Stations, Food, Coffee & Tea, Sandwiches, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "eMjnw_7wp-CscyNh6Lu0ZA", + "name": "AM&PM Locksmith", + "address": "8540 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0723302045, + "longitude": -75.0484833435, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services, Local Services", + "hours": { + "Monday": "6:0-3:0", + "Tuesday": "6:0-3:0", + "Wednesday": "6:0-3:0", + "Thursday": "6:0-3:0", + "Friday": "6:0-3:0", + "Saturday": "6:0-3:0", + "Sunday": "6:0-3:0" + } + }, + { + "business_id": "xfmkEGiIERBaBMLhw-dTCg", + "name": "Walmart Vision & Glasses", + "address": "1675 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9198090864, + "longitude": -75.157802746, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Eyewear & Opticians, Shopping", + "hours": { + "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-18:0" + } + }, + { + "business_id": "iPSPcprSnkLOuL1Ns8UZZA", + "name": "Pete's Barber Shop", + "address": "1209 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9748805, + "longitude": -75.1832618, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "3BJxm-HnvzdwD1zjmSbmyQ", + "name": "Golden Chopstick Chinese Restaurant", + "address": "1800 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963077709, + "longitude": -75.1680274529, + "stars": 3.0, + "review_count": 137, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsTableService": "True", + "Caters": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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" + } + }, + { + "business_id": "GWGXTKR0Fhdvzf_isDqJug", + "name": "David Gower, Jr. - Coldwell Banker Preferred", + "address": "325 Chestnut St, Ste 1300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490268625, + "longitude": -75.1471895999, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Home Services, Real Estate Agents", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "-aeZuatjCDMV1X4gCTz9Ug", + "name": "David Thomas Trailways", + "address": "14005 McNulty Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1064092, + "longitude": -74.9739371, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Buses, Transportation, Bus Tours, Hotels & Travel, Travel Agents, Travel Services, Airport Shuttles, Tours, Public Transportation", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "h-y5azB-VlQAT3m7Ff2g2Q", + "name": "P's & Q's - Premium Quality", + "address": "820 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942515, + "longitude": -75.156468, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shopping, Men's Clothing", + "hours": null + }, + { + "business_id": "WYYdQDjx-DsCanlP0DpImQ", + "name": "J Sushi", + "address": "243 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470334, + "longitude": -75.1574339, + "stars": 4.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "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'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Seafood, Restaurants, Sushi Bars, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "07JLsUInZr5OSiYH2XVi4g", + "name": "Elegance African Hair Braiding", + "address": "540 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9690954, + "longitude": -75.2255953, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Smoking": "None", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "WiFi": "None" + }, + "categories": "Beauty & Spas, Hair Stylists, Hair Extensions, Hair Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "FTFtoylMzkrzqNVSl-bkKw", + "name": "Giant Food Stores", + "address": "60 N 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9565280024, + "longitude": -75.178013742, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': False, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "O1oZpbZNDMH_gz8DhsZCdA", + "name": "Wendy's", + "address": "700 E. Hunting Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.012141, + "longitude": -75.1150148, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "2dlQX5sP9X6Dlm1MmNOlSw", + "name": "ReAnimator Coffee", + "address": "1523 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9764555, + "longitude": -75.1270254, + "stars": 4.0, + "review_count": 105, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "ONUZertKOOImiyQG66Z7Tg", + "name": "Zakian Rug Cleaning", + "address": "4930 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9791075, + "longitude": -75.2177555, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Carpet Cleaning, Rugs, Shopping, Flooring, Local Services, Home Cleaning, Carpeting, Home & Garden, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "bTve2mwLk5Zc01vRKqc2KQ", + "name": "Red Hook Coffee & Tea", + "address": "765 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385518, + "longitude": -75.1496356, + "stars": 4.5, + "review_count": 183, + "is_open": 1, + "attributes": { + "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": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Breakfast & Brunch, Vegan, Bagels, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "D9Xez9uOSM4DgSjSTywq7w", + "name": "King of Jewelers", + "address": "737 Samson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489024, + "longitude": -75.153854, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Sunday": "9:0-18:30" + } + }, + { + "business_id": "MyE_zdul_JO-dOHOug4GQQ", + "name": "Watson Adventures Scavenger Hunts", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Flavor, Team Building Activities, Active Life, Arts & Entertainment, Event Planning & Services, Walking Tours, Scavenger Hunts, Museums, Hotels & Travel, Tours", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "bqmX882_6AxVA_uHEQ70sQ", + "name": "Shanghai Station", + "address": "4002 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9516153765, + "longitude": -75.2033457223, + "stars": 4.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "Caters": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "WiFi": "u'free'", + "CoatCheck": "False", + "HasTV": "True", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'karaoke': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Shanghainese, Restaurants, Sushi Bars, Szechuan, Sports Bars, Lounges, Asian Fusion, Thai, Karaoke, Chinese, Nightlife, Bars", + "hours": null + }, + { + "business_id": "jL_NufxqXi-BpW5uXKsPwQ", + "name": "CVS Pharmacy", + "address": "518 Port Royal Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0612774187, + "longitude": -75.2372046062, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Drugstores, Pharmacy, Health & Medical, Convenience Stores, Food, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "Tm3QiAVLJAR2fEJK7APPPQ", + "name": "City Fitness - Northern Liberties", + "address": "200 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9603427, + "longitude": -75.141951, + "stars": 3.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-1:0", + "Wednesday": "5:0-1:0", + "Thursday": "5:0-12:0", + "Friday": "5:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "n8ecak12IF_jhnPNs37AZA", + "name": "Baltic Bakery", + "address": "2609 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9768798, + "longitude": -75.1161695, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "_T0cPZE2ZJOTTlYYKMP64Q", + "name": "Brown Sugar Bakery & Cafe", + "address": "219 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9563959, + "longitude": -75.2253784, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Cupcakes, Caribbean, Restaurants, Trinidadian, Food, Bakeries, Cafes", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "VbItL6RDULtnw4YvB6EhVg", + "name": "Jon's Bar & Grille", + "address": "300 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412993, + "longitude": -75.1477446, + "stars": 3.0, + "review_count": 178, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsDelivery": "False" + }, + "categories": "Tex-Mex, Restaurants, American (Traditional), Nightlife, Bars", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "6bFx8j2KqPfmT0XEUS1RMg", + "name": "Center City Emergency Dentist", + "address": "1429 Walnut St, Fl 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9497345, + "longitude": -75.165436, + "stars": 3.5, + "review_count": 120, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Orthodontists, Health & Medical, Oral Surgeons, General Dentistry, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "9:0-13:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-13:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "G2Byuh4EVeSnqqWBWtD7rg", + "name": "Wissahickon Cyclery", + "address": "7837 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0695589, + "longitude": -75.1995308, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bike Rentals, Active Life, Bikes, Shopping, Sporting Goods", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-13:30", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "usv5G5cO314pPHRTGq2Eyw", + "name": "Best Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 1.0, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Tours, Walking Tours, Hotels & Travel, Food Tours", + "hours": null + }, + { + "business_id": "6I_DA3uqOox50rBvjrQ_-g", + "name": "Aloft Philadelphia Airport", + "address": "4301 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8911246892, + "longitude": -75.2342512699, + "stars": 3.0, + "review_count": 175, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "e8pMCk4bE0U4qk7z59Lxkg", + "name": "Federal Donuts", + "address": "2101 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963042, + "longitude": -75.1741858944, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Sandwiches, Chicken Wings, Restaurants, Donuts, Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "IAj1Lw3FAOY-yZn4IO7ElQ", + "name": "Baum's Dancewear", + "address": "1805 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92745, + "longitude": -75.1660349, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Arts & Crafts, Sports Wear, Costumes, Performing Arts, Adult, Shopping, Sporting Goods, Arts & Entertainment, Fashion", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "aNLr1j_3CZ46rqiUeLaQ-A", + "name": "Chinatown Market Shoe Repair And Tailor", + "address": "143 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955126798, + "longitude": -75.1574422458, + "stars": 5.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "yZP6Z8sbDpkeXyjNMDiyDg", + "name": "Guess - Walnut Street", + "address": "1520 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949452, + "longitude": -75.1670279, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Men's Clothing, Women's Clothing, Children's Clothing, Fashion, Shopping, Accessories", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "kR4tXc1fLeR2QNu8cMZrEg", + "name": "Bustleton Radiology Associates", + "address": "9601 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0870701, + "longitude": -75.0353514, + "stars": 2.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Radiologists, Doctors, Health & Medical", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "V-96iACFgPmVjjKACGxd7Q", + "name": "Fusion Pizza & Grill", + "address": "1900 Grant Ave, Ste M-N", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0839955, + "longitude": -75.0354963, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ethnic Food, Specialty Food, Restaurants, Food, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "0CEUpFtaKhxbmrbSdP9MUQ", + "name": "Acadia", + "address": "824 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389483, + "longitude": -75.1564078, + "stars": 4.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "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, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "GoodForKids": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Cajun/Creole, Southern, Nightlife, Cocktail Bars, Breakfast & Brunch, Seafood, Bars", + "hours": { + "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" + } + }, + { + "business_id": "I0gSLthWBsiUPzBft_CZ9Q", + "name": "Marino's Auto Repair", + "address": "2028 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254629, + "longitude": -75.173622, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "yooufdsf3eAVq_9RQNSDJA", + "name": "Mazzoni Center", + "address": "1348 Bainbridge St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426271, + "longitude": -75.1650829, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Community Service/Non-Profit, Health & Medical, Doctors, Family Practice, Medical Centers, Counseling & Mental Health", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-21:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "GVqXNt0HKJLpciN9ePxnWw", + "name": "Crown Fried Chicken", + "address": "1128 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9368911, + "longitude": -75.1672837, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Fast Food", + "hours": null + }, + { + "business_id": "dChRGpit9fM_kZK5pafNyA", + "name": "The Love", + "address": "130 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506555, + "longitude": -75.1708991, + "stars": 4.0, + "review_count": 618, + "is_open": 1, + "attributes": { + "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': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, American (New), Breakfast & Brunch, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "cDekcTE1qwpz8ROlYixhqg", + "name": "Philly Homebrew Outlet East", + "address": "1447 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9736806, + "longitude": -75.1396479, + "stars": 5.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Food, Arts & Entertainment, Wholesale Stores, Brewing Supplies, Beer, Wine & Spirits, Wineries", + "hours": { + "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": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "gVh26yEPkXSoWbhs1p2kNA", + "name": "Gotham Escape Room", + "address": "1425 Arch St, Level B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.955015, + "longitude": -75.1642969, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "None", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Escape Games", + "hours": { + "Monday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "14:30-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "QWqKTWQ2OiDgo3dzNkpung", + "name": "Jong Ka Jib", + "address": "6600 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0520643, + "longitude": -75.1273939, + "stars": 4.5, + "review_count": 351, + "is_open": 1, + "attributes": { + "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", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Korean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "eJ77e9lGxY3ArzaoDbHhYw", + "name": "Paddy Whacks Irish Sports Pub - South Street", + "address": "150 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410539, + "longitude": -75.1454627, + "stars": 2.5, + "review_count": 161, + "is_open": 1, + "attributes": { + "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}", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Bars, Nightlife, Pubs", + "hours": { + "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" + } + }, + { + "business_id": "2M4pYfuivdluXyBOP7IDQw", + "name": "Look Hair Care Studio", + "address": "5200 Gainor Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9894332886, + "longitude": -75.2290420532, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Hair Salons, Professional Services, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "i_cFU5_dQexbjJA9rmf_WA", + "name": "Marcie Blaine", + "address": "108 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950036, + "longitude": -75.162158, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Desserts, Specialty Food, Food, Chocolatiers & Shops", + "hours": null + }, + { + "business_id": "tUl_Lq8dM3T-NnM-u3szSg", + "name": "Damaso Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Carpenters, Pressure Washers, Wallpapering, Home Services, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "8:0-16:30" + } + }, + { + "business_id": "7mpYTDb24SywNMRn3yeakQ", + "name": "The Twisted Tail", + "address": "509 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418766, + "longitude": -75.1451988, + "stars": 4.0, + "review_count": 604, + "is_open": 1, + "attributes": { + "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": "True", + "OutdoorSeating": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "GoodForDancing": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "ByAppointmentOnly": "False", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Whiskey Bars, American (New), American (Traditional), Venues & Event Spaces, Bars, Nightlife, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "dK_qONtd5z73i6fQ1BTrTA", + "name": "Draino", + "address": "2700 S Marshal", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9150107, + "longitude": -75.1585852, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Plumbing, Home Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "xDEee0p41GueCDN0EAp-YA", + "name": "Phone Repair Philly - Center City", + "address": "1528 Walnut St, Ste 1200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 4.5, + "review_count": 106, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Electronics Repair, Local Services, IT Services & Computer Repair, Mobile Phone Repair, Mobile Phone Accessories, Mobile Phones", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "oy-n3wkXeK6NPPKf3uRDTQ", + "name": "Element Granite & Quartz", + "address": "9750 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0740089, + "longitude": -75.0131956, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Building Supplies, Shopping, Home & Garden, Home Decor, Home Services, Kitchen & Bath", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "0WIlsDUUFuUKcDfJPaHRkA", + "name": "Temple University Hospital ", + "address": "3401 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0054237, + "longitude": -75.1507198, + "stars": 2.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Hospitals, Health & Medical, Optometrists", + "hours": null + }, + { + "business_id": "5iuo1kvv0XZMS0bUOoLz2Q", + "name": "Bistro St. Tropez", + "address": "2400 Market St, Ste 427", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535919923, + "longitude": -75.1794226902, + "stars": 3.5, + "review_count": 163, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Restaurants, French", + "hours": { + "Monday": "11:30-15:0", + "Tuesday": "11:30-15:0", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-21:30", + "Friday": "17:30-22:30", + "Saturday": "17:30-22:30" + } + }, + { + "business_id": "bchZXVE4feVx4Q5rhIRCGg", + "name": "NY Bagel Cafe & Deli", + "address": "4514 B City Line Ave, Ste 220", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0027825, + "longitude": -75.2222705, + "stars": 3.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BYOB": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Bagels, Breakfast & Brunch, Coffee & Tea, Sandwiches, Delis, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "yUEeh9nwaycI6fKLruD_rQ", + "name": "Silvio Hair Styling For Men", + "address": "126 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511109, + "longitude": -75.1738185, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "ngvE1G9IckUO-ljZBFo23w", + "name": "Mumbai Bistro", + "address": "930 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947207, + "longitude": -75.1572515, + "stars": 4.0, + "review_count": 217, + "is_open": 0, + "attributes": { + "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'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Indian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "46_2e1hnQ4csLrYnhn6bkw", + "name": "Whetstone Tavern", + "address": "700 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408715785, + "longitude": -75.1510468125, + "stars": 4.0, + "review_count": 166, + "is_open": 0, + "attributes": { + "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": "True", + "WheelchairAccessible": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BikeParking": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Cocktail Bars, American (New), Desserts, American (Traditional), Nightlife, Bars, Food", + "hours": { + "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" + } + }, + { + "business_id": "TGfPJHImEq6AQL9a1laxlg", + "name": "Chick-fil-A", + "address": "9711 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.08178, + "longitude": -75.0267907, + "stars": 4.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "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': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, American (Traditional), Restaurants, Food, Caterers, Fast Food, Chicken Shop, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "CPgWuWGZ4v2sZr5_-1kluw", + "name": "Checkers", + "address": "1208 N. Broad", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9719414, + "longitude": -75.159771, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsTableService": "True", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "gu2-TPPdyQyHl2CnPb7Xjg", + "name": "4th Street Nails", + "address": "745 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9390124, + "longitude": -75.1496014, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "VCkSUsdL5P0p16DAPxVROA", + "name": "NY Bagel & Deli Shop", + "address": "1120 Buttonwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960811, + "longitude": -75.1573883, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Bagels, Food, Breakfast & Brunch, Coffee & Tea, Restaurants, Burgers, Delis", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "Oy7rU9H76PN1hsDU9EUt5g", + "name": "Philadelphia Room Escape", + "address": "1520 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502871584, + "longitude": -75.1666990731, + "stars": 4.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Active Life, Event Planning & Services, Escape Games, Challenge Courses, Team Building Activities", + "hours": { + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "PW5eZM5RAQEhy3wgovChhQ", + "name": "Cafe Victoria's", + "address": "325 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.958422, + "longitude": -75.158257, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Cafes, Restaurants, Coffee & Tea, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "xY0jpu0zzGEBr-bGBdPs-w", + "name": "University Crossings", + "address": "3175 JFK Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95604, + "longitude": -75.187797, + "stars": 1.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Apartments, University Housing, Home Services, Real Estate, Property Management", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "yFqq66GxRjnhZXPgjA6hnw", + "name": "KFC", + "address": "716 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031578, + "longitude": -75.104787, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "GoodForMeal": "None", + "BusinessParking": "None", + "Ambience": "None", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "DriveThru": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Chicken Shop, Fast Food, Chicken Wings", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "rh3C_JK4NAoUJ-HNStvHtw", + "name": "Historic Philadelphia, Inc", + "address": "600 Walnut St, Ste 130", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948321, + "longitude": -75.151952, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Tours", + "hours": null + }, + { + "business_id": "xHspDrdyq1g27yRDezB5yA", + "name": "Kaiserman JCC", + "address": "45 Haverford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19096", + "latitude": 39.982542, + "longitude": -75.268542, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Preschools, Recreation Centers, Education, Gyms, Community Centers, Day Camps, Fitness & Instruction, Local Services, Active Life, Public Services & Government, Child Care & Day Care, Summer Camps", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "wR8V8u3_wv-yjR-CIHyY0Q", + "name": "The Collins Apartments", + "address": "1125 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499183, + "longitude": -75.1600036, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "kGjpBqAqG4mIuFSgU2KKEA", + "name": "The Royal Indian Cuisine", + "address": "272 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948365, + "longitude": -75.1744997, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "16: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" + } + }, + { + "business_id": "kLSEk3qXY1KdtFjxHJ9pww", + "name": "McDonald's", + "address": "501 Franklin Mill Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0884161, + "longitude": -74.9650112, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Food, Coffee & Tea, Burgers", + "hours": { + "Monday": "5:30-0:0", + "Tuesday": "5:30-0:0", + "Wednesday": "5:30-0:0", + "Thursday": "5:30-0:0", + "Friday": "5:30-1:0", + "Saturday": "5:30-1:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "kfGz2E7Y5FLXJyiKbQYfZg", + "name": "The Irish Times", + "address": "629 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403745, + "longitude": -75.1456109, + "stars": 3.5, + "review_count": 44, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BikeParking": "False" + }, + "categories": "Nightlife, Bars, Beer, Wine & Spirits, Pubs, Irish, Food, Restaurants", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "5bCsL-Z3QnuBmJQtIt8qyw", + "name": "Pacifico Hyundai", + "address": "6715 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.912338414, + "longitude": -75.2230943868, + "stars": 2.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Auto Parts & Supplies, Auto Repair, Hotels & Travel, Automotive, Car Rental", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "PdMXmOWDRHICAx6SLgu1dQ", + "name": "24", + "address": "2401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515211, + "longitude": -75.1798731, + "stars": 3.5, + "review_count": 111, + "is_open": 0, + "attributes": { + "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'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Italian, Bars, Restaurants, Nightlife, Wine Bars, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "uzpiSVy6DTQBNByAhT0Z2Q", + "name": "Holiday Nail Salon", + "address": "2039 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9223225281, + "longitude": -75.1527823, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "4mKAD2m2ek-z51ZPqL6-aw", + "name": "Richard Kenneth Jewelers", + "address": "202 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497725, + "longitude": -75.1693442, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry, Watches, Antiques", + "hours": null + }, + { + "business_id": "HQolH8hSvmK8mhZc0bYVRw", + "name": "Global Appliance Parts", + "address": "141 W Fisher Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0311008, + "longitude": -75.1241902, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Home & Garden, Appliances", + "hours": null + }, + { + "business_id": "v2UmYZ1rPT48IroaD0xZAQ", + "name": "reYOU massage", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949195, + "longitude": -75.1629437, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Massage, Health & Medical, Beauty & Spas, Medical Spas", + "hours": null + }, + { + "business_id": "z7sp6u5JnNlq2ziu31EFvw", + "name": "CVS Optical", + "address": "1405 South 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315261618, + "longitude": -75.1607671842, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "DriveThru": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Shopping, Food, Health & Medical, Pharmacy, Convenience Stores, Drugstores", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "JomDoQafikclSVVCPkWjnA", + "name": "Cedar Park Cafe", + "address": "4914 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.94796, + "longitude": -75.22198, + "stars": 4.0, + "review_count": 301, + "is_open": 1, + "attributes": { + "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'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HappyHour": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Diners, Restaurants, Sandwiches, Breakfast & Brunch, Vegetarian", + "hours": { + "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" + } + }, + { + "business_id": "F6hASqb_Z5ASXz0-pZFlfA", + "name": "Edible Arrangements", + "address": "6153 Ridge Ave, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.035169, + "longitude": -75.216409, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Flowers & Gifts, Specialty Food, Shopping, Food, Florists, Gift Shops, Chocolatiers & Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-15:30" + } + }, + { + "business_id": "LvFmVnPSbi0lmgpcK_qw-Q", + "name": "Foot Locker", + "address": "1519 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9514625, + "longitude": -75.1662577, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}" + }, + "categories": "Fashion, Men's Clothing, Shopping, Shoe Stores, Sporting Goods, Sports Wear", + "hours": null + }, + { + "business_id": "kq5Ghhh14r-eCxlVmlyd8w", + "name": "The Coventry Deli", + "address": "2000 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953291, + "longitude": -75.173645, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "HasTV": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Delis, Salad, Sandwiches", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0" + } + }, + { + "business_id": "MYoRNLb5chwjQe3c_k37Gg", + "name": "Sean Thorntons Public House", + "address": "2401 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.988107, + "longitude": -75.105553, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Nightlife, Restaurants, Irish Pub, Bars, Irish, Pubs, Beer, Wine & Spirits, Event Planning & Services, Gastropubs, Caterers", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "pP4q0Mym-qt20nRqTKbzhQ", + "name": "Morton's The Steakhouse", + "address": "1411 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949603, + "longitude": -75.1649701595, + "stars": 3.5, + "review_count": 149, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "4", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False", + "Caters": "True", + "BusinessParking": "None", + "HappyHour": "True", + "CoatCheck": "False" + }, + "categories": "Steakhouses, Restaurants, Nightlife, Seafood, Bars, American (Traditional)", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "zyge4T5eSiPHq1-IaJb_Qg", + "name": "Nancy Le Nails", + "address": "7419 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0609699, + "longitude": -75.1674125, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "PkaxfjwdWKL02xkK2UGxNw", + "name": "Aicha African Hair Braiding", + "address": "5707 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.03825, + "longitude": -75.12988, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Cosmetics & Beauty Supply, Hair Stylists, Hair Extensions, Shopping", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "TF4IyHKK05m5rXENCK94nA", + "name": "More Than Old", + "address": "144 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9535003, + "longitude": -75.1450636, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Shopping, Furniture Stores, Antiques, Home Decor", + "hours": { + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "13:0-16:0" + } + }, + { + "business_id": "73vXXe4MbpHhq_2_uiHIrQ", + "name": "4J Laundromat", + "address": "747 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9208234, + "longitude": -75.1600292, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Laundromat, Local Services, Laundry Services", + "hours": { + "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" + } + }, + { + "business_id": "Htnv87XCc9GXuE6hKEHnNg", + "name": "Caring Hands Veterinary Clinic", + "address": "3310 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0679151372, + "longitude": -75.007130852, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "9:30-16:30", + "Tuesday": "9:30-16:30", + "Wednesday": "14:0-16:30", + "Thursday": "9:30-16:30", + "Friday": "9:30-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "y1HgVnt4K5owmYXC5yXLGg", + "name": "Flambo Caribbean Restaurant", + "address": "820 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9686973, + "longitude": -75.1606146, + "stars": 4.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Trinidadian, Caribbean, Restaurants, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "x7R0FReViemWjQO581WI5A", + "name": "Debbie's Pet Sitting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dog Walkers, Pet Services, Health & Medical, Reiki, Pet Sitting, Pets", + "hours": { + "Monday": "7:0-11:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-11:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "RrqRin8BYGrTlJbCDwtLzA", + "name": "Wawa", + "address": "3744 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510885597, + "longitude": -75.1989988336, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Gas Stations, Food, Convenience Stores, Restaurants, Automotive, Coffee & Tea, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "IgNDlyLERBwFGphgcC5VDQ", + "name": "Cosi", + "address": "1128 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487514826, + "longitude": -75.1604487143, + "stars": 2.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False" + }, + "categories": "Sandwiches, Vegetarian, Pizza, Food, Coffee & Tea, Delis, Restaurants, American (New)", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "Tr1K019SoddjZegRv7vy2w", + "name": "James Brown Hair", + "address": "1114 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.944743, + "longitude": -75.160428, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Waxing, Hair Removal, Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "SvcWlFeXbSNkENnZfWYgEQ", + "name": "willow + june hair", + "address": "6212 A Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0357941, + "longitude": -75.218028, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Extensions, Makeup Artists, Hair Salons", + "hours": { + "Tuesday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "0QmgzzPVNHeNL76B8rwTKA", + "name": "Beneficial Bank", + "address": "1600 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511539, + "longitude": -75.1673349, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "sDOxVq8gQBpHFYtoxwoLWw", + "name": "Plume Salon", + "address": "111 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9691898, + "longitude": -75.1340384, + "stars": 4.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Waxing, Beauty & Spas, Eyelash Service, Used, Vintage & Consignment, Hair Salons, Hair Removal, Makeup Artists, Shopping, Fashion", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "PmASdGXX3XVokN2q92JIXg", + "name": "L Priori Jewelry", + "address": "1601 Walnut St, Ste 1218", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949988, + "longitude": -75.167496, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "EraDGJAHjf5IaA9VBGepfg", + "name": "East Falls Chiropractic: Zachary Dillow, D.C", + "address": "3425 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0120136, + "longitude": -75.1890675, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Gastroenterologist, Chiropractors, Nutritionists, Doctors, Health & Medical", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "8:0-13:0", + "Thursday": "15:0-19:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "L_sXNadtVHjxMw7Yhvkj9Q", + "name": "Naoki Ramen", + "address": "915 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955454, + "longitude": -75.1549, + "stars": 4.0, + "review_count": 92, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Ramen, Restaurants, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "IOroNIZhOtGM9nWMT3PaNA", + "name": "House of Beauty", + "address": "2385 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.074181, + "longitude": -75.155105, + "stars": 1.5, + "review_count": 180, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "GoodForKids": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping, Hair Extensions, Wigs, Skin Care, Hair Salons", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "HuDNHqKv9n1mWpe4BqCnwA", + "name": "Minas Pizza", + "address": "6151 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0352350987, + "longitude": -75.2167929785, + "stars": 3.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-21:45", + "Saturday": "11:0-21:45", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "fN1xl3d8EdFRpyE1NVI2nw", + "name": "Feet First Team Building", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Scavenger Hunts, Active Life, Team Building Activities, Event Planning & Services", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0" + } + }, + { + "business_id": "lKlRRS26_eTA_eCjrWBT4w", + "name": "Shibe Vintage Sports", + "address": "137 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494082, + "longitude": -75.1618172, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Sporting Goods, Fashion, Souvenir Shops, Sports Wear, Shopping", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "BxR5hjyBnJZrm_nnaCtGQw", + "name": "The Lunar Inn", + "address": "3124 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9822933, + "longitude": -75.1031599, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "CoatCheck": "False", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': True, u'sunday': False}", + "HasTV": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "DriveThru": "False", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "Bars, Food, Restaurants, Beer, Wine & Spirits, American (Traditional), Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "4TQMOy00KD_54xSFwKgMZw", + "name": "Ndulge", + "address": "4373 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025842293, + "longitude": -75.2243893677, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Thai, Food, Cafes, Cupcakes", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "-BhSR6dAry5-2x3ndjX_9w", + "name": "Meister's Barber Shop", + "address": "1810 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927488, + "longitude": -75.16651, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons, Men's Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "cIKRTajdQv_MviWXdE_m4g", + "name": "BehatiLife", + "address": "1533 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441744, + "longitude": -75.1682302, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Arts & Entertainment, Professional Services, Spiritual Shop, Supernatural Readings, Life Coach, Shopping, Religious Items", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "NQSnr4RPUScss607oxOaqw", + "name": "Chase's Hop Shop", + "address": "7235 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0603863, + "longitude": -75.0845897, + "stars": 4.5, + "review_count": 116, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'beer_and_wine'", + "WiFi": "u'free'", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "HasTV": "True", + "CoatCheck": "False", + "NoiseLevel": "'quiet'", + "BikeParking": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Music": "{'dj': False}", + "BYOB": "False", + "Smoking": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "Corkage": "False" + }, + "categories": "Chicken Wings, Nightlife, Bars, Delis, Food, Beer Gardens, Sandwiches, Beer Bar, Restaurants, Beer, Wine & Spirits, Gastropubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:15-20:30", + "Wednesday": "14:0-20:30", + "Thursday": "14:0-20:30", + "Friday": "11:45-21:0", + "Saturday": "14:0-21:0", + "Sunday": "11:45-20:0" + } + }, + { + "business_id": "6Bos3UU5heFlqySLcYvwnw", + "name": "Budget Car Rental", + "address": "1324 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9541791, + "longitude": -75.1624335, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Automotive, Car Rental, Truck Rental", + "hours": null + }, + { + "business_id": "V6Om7YZhlRQRU7WfuxHq8Q", + "name": "Beck's Cajun Cafe", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533224742, + "longitude": -75.1590000821, + "stars": 4.0, + "review_count": 485, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Cajun/Creole", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "DOl21AqtT74dUZ3kvXNNcA", + "name": "Golden Triangle", + "address": "610 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415201345, + "longitude": -75.1509702725, + "stars": 4.5, + "review_count": 159, + "is_open": 1, + "attributes": { + "Caters": "True", + "HasTV": "True", + "WiFi": "'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Malaysian, Burmese, Asian Fusion, Thai", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "I4TFiNX5gTsJBnEGH2Tl8Q", + "name": "Benna's West", + "address": "1444 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.931855, + "longitude": -75.168473, + "stars": 3.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "False" + }, + "categories": "Juice Bars & Smoothies, Sandwiches, Food, Restaurants, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "12kD46cnLyMXUQTCI2N0ug", + "name": "P&P Grocery", + "address": "4307 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539236, + "longitude": -75.2096903, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "0346ZLBXCnsGief7r2kmQQ", + "name": "Salon Tenshi", + "address": "537 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962145, + "longitude": -75.1542303, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Salons", + "hours": { + "Tuesday": "12:0-15:0", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-19:30", + "Saturday": "7:0-16:30", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "PvT44WlqJLkUrCITo6AjRA", + "name": "Breakfast Boutique Chestnut Hill", + "address": "8630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0771492176, + "longitude": -75.2087070076, + "stars": 3.0, + "review_count": 151, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Wednesday": "8:0-14:30", + "Thursday": "7:30-16:0", + "Friday": "7:30-15:0", + "Saturday": "7:30-15:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "FppJo5aymUsfOg68uTOipw", + "name": "The Inn at The Union League", + "address": "1450 Sansom", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502330538, + "longitude": -75.1651874081, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": null + }, + { + "business_id": "RMm5FeJpYGZlGJIVsqz0Yw", + "name": "Intelligent Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9586547234, + "longitude": -75.1648368694, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "tFh0DrDMTom4B3pHpDpRNQ", + "name": "Platoon Fitness", + "address": "716 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9478525, + "longitude": -75.1535819, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Boot Camps, Weight Loss Centers, Health & Medical, Gyms, Trainers, Fitness & Instruction, Active Life, Martial Arts, Massage Therapy, Nutritionists", + "hours": { + "Monday": "4:0-22:0", + "Tuesday": "4:0-22:0", + "Wednesday": "4:0-22:0", + "Thursday": "4:0-22:0", + "Friday": "4:0-22:0", + "Saturday": "4:0-22:0", + "Sunday": "4:0-22:0" + } + }, + { + "business_id": "-IRJAg0tkspFukxKY87TBA", + "name": "Blue Mountain Vineyards & Cellars", + "address": "36 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498279, + "longitude": -75.152458, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Wineries, Arts & Entertainment, Food", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "N1ZXhAVzOzbyCBPEXTaUUw", + "name": "Tandoor Authentic Indian Restaurant", + "address": "106 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551144, + "longitude": -75.202451, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Caters": "True", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BikeParking": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food Delivery Services, Halal, Food, Restaurants, Buffets, Pakistani, Indian", + "hours": { + "Monday": "11:0-21:45", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-22:45", + "Saturday": "11:0-22:45", + "Sunday": "11:0-21:45" + } + }, + { + "business_id": "e7PUSXlcOfel8c7sPIA28w", + "name": "Sheffield Tavern", + "address": "4501 Sheffield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0351293, + "longitude": -75.030471, + "stars": 2.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "nBr6NgqcZz1GhtAngU0RSQ", + "name": "Forin Cafe", + "address": "2041 Coral St, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9813471541, + "longitude": -75.1322471288, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Restaurants, Cafes, Fashion", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "afmMy0m-mH9uNUxaZZAKpQ", + "name": "Chestnut Nail", + "address": "2015 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522390142, + "longitude": -75.1741042801, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "y44MbCvvtmg1FpkNGSWisw", + "name": "Tony's Luke", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8773236045, + "longitude": -75.2436721818, + "stars": 2.5, + "review_count": 172, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "NoiseLevel": "'loud'", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "WiFi": "'no'", + "Caters": "False" + }, + "categories": "Cheesesteaks, Restaurants", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "xb-qtXVZ7xFr51Se5fAZjg", + "name": "Saige Cafรฉ", + "address": "1001 N 2nd St, Ste 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9667910353, + "longitude": -75.1400172338, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "'free'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsDelivery": "None" + }, + "categories": "Sandwiches, Breakfast & Brunch, Coffee & Tea, Food, Restaurants, Cafes, Juice Bars & Smoothies", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "7:30-21:0" + } + }, + { + "business_id": "FeEYBozUzyVGisE3HPGbBg", + "name": "Liz Clark Real Estate", + "address": "2200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508588, + "longitude": -75.1774844, + "stars": 5.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate Agents, Real Estate Services, Home Services, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "LSdg7x7HhUdvYUevvYVHjQ", + "name": "Sunoco", + "address": "3200 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.983319, + "longitude": -75.101136, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": null + }, + { + "business_id": "hlqnFy34n8tnVNMq-pO34g", + "name": "Best IT Guru", + "address": "7211 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0598291191, + "longitude": -75.0854658697, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Computers, Specialty Schools, Marketing, Mobile Phone Repair, Professional Services, Telecommunications, Education, Graphic Design, Web Design, Mobile Phone Accessories, Home Network Installation, Security Systems, Legal Services, Local Services, Home Services, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "n30JyruJKfbIeSReuYQloQ", + "name": "21 M Salon", + "address": "13 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530467, + "longitude": -75.1750241, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Men's Hair Salons, Shopping, Hair Removal, Waxing, Makeup Artists, Blow Dry/Out Services, Hair Stylists, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "icbe_DxKtXG2p3KlJsqYig", + "name": "Margarita's Beauty Salon", + "address": "1614 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9473144, + "longitude": -75.1687372, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "irH-OtXTEkR6Ovjs0YD8DA", + "name": "Thomas Lofts", + "address": "726 728 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509381035, + "longitude": -75.1530942222, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": null + }, + { + "business_id": "U30ggGzFpXvc2NZYwOW3qg", + "name": "Mood Cafe", + "address": "4618 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9486639126, + "longitude": -75.2158315415, + "stars": 4.5, + "review_count": 458, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Cafes, Pakistani, Juice Bars & Smoothies, Restaurants, Ice Cream & Frozen Yogurt, Halal, Indian, Coffee & Tea, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "2N_54QEPZiqT_A-kgCLzSQ", + "name": "Great Nails & Spa", + "address": "3851 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9963086, + "longitude": -75.0901285, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Waxing, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30" + } + }, + { + "business_id": "iefY4RDGOZrATgYaXqbx8w", + "name": "Bath & Body Works", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": null + }, + { + "business_id": "mVEu88jgK1Y6A5fmJbydkw", + "name": "Floating World Tattoo & Body Piercing", + "address": "1729 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944496, + "longitude": -75.171297, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Piercing, Beauty & Spas, Tattoo", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "X46tKBT7vTEGeaYj6GkZ-g", + "name": "Philadelphia Independents", + "address": "35 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9513061231, + "longitude": -75.1453275767, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Gift Shops, Shopping, Arts & Entertainment, Flowers & Gifts", + "hours": { + "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", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "1PIu-evesG5ZQQoHtXUXiQ", + "name": "My Auto Dents", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Automotive", + "hours": null + }, + { + "business_id": "WZEhrN61ajiq-7MuUCGyuw", + "name": "Mark Watkins, DO", + "address": "253 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468097, + "longitude": -75.1575251, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Family Practice, Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "he6ypFmnUF95PlNUWT6i5g", + "name": "TJ Maxx", + "address": "1130 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516263, + "longitude": -75.1590404, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Accessories, Children's Clothing, Personal Shopping, Shopping", + "hours": { + "Monday": "8:0-20: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": "10:0-18:0" + } + }, + { + "business_id": "dE_MaaYrXBAEebtH2u_B-w", + "name": "Wilson's Market", + "address": "1337 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0390528, + "longitude": -75.1438169, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Specialty Food, Meat Shops, Sandwiches, Food, Restaurants, Delis, Grocery", + "hours": { + "Monday": "7:0-22:30", + "Tuesday": "7:0-22:30", + "Wednesday": "8:0-20:0", + "Thursday": "7:0-22:30", + "Friday": "7:0-22:30", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "w3R4cgg_HPI0F55PCLpufA", + "name": "Green Street Property Management", + "address": "2015 Locust St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496329, + "longitude": -75.1746263, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Real Estate, Home Services", + "hours": null + }, + { + "business_id": "68ThEdiK0eWCEgGEmV9Tng", + "name": "Southgate", + "address": "1801 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9455687, + "longitude": -75.1717901, + "stars": 4.0, + "review_count": 323, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "Corkage": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "True", + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BYOB": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Breakfast & Brunch, American (Traditional), Korean, Restaurants, Gastropubs, Nightlife, Bars, Cocktail Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "vDqnQGBfPUOUichR2KbDTg", + "name": "Bizzy B Handyman & Painting Services", + "address": "3418 Aubrey Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.063397, + "longitude": -75.006397, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Decks & Railing, Junk Removal & Hauling, Carpenters, Contractors, Painters, Windows Installation, Handyman, TV Mounting, Drywall Installation & Repair, Plumbing, Local Services, Demolition Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "9:0-12:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-20:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "8fTaOcdyJwJJtN7dbRNpiw", + "name": "Video Library", + "address": "7157 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0600047, + "longitude": -75.1907117, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Books, Mags, Music & Video, Videos & Video Game Rental, Arts & Entertainment, Food, Cinema, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "zQKzntycRKXbDHSjrwkYkw", + "name": "Poison Apple Tattoos", + "address": "171 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9695627, + "longitude": -75.1388013, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Tattoo, Arts & Entertainment, Beauty & Spas, Art Galleries, Shopping", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "USyJiGIvZ8fHjRVaVTu1Zw", + "name": "Tony Jr's", + "address": "118 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951157, + "longitude": -75.170714, + "stars": 3.0, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Sandwiches, Cheesesteaks", + "hours": null + }, + { + "business_id": "u8ZsK3py4y9xEOk-vox2ZA", + "name": "Iheoma Esochi J DDS", + "address": "233 McClellan St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925352, + "longitude": -75.15078, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": null + }, + { + "business_id": "cEG1r9aRMJwmRQVkh7eiJg", + "name": "Falls Deli", + "address": "3492 Tilden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0128847, + "longitude": -75.1901845, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bagels, Food, Sandwiches, Delis, Breakfast & Brunch, Restaurants, Event Planning & Services, Caterers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-13:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "7:30-19:0" + } + }, + { + "business_id": "ZrkdPWQicriMCcDVDX0dCA", + "name": "Retro Fitness", + "address": "105 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.091209, + "longitude": -74.968006, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "TttFjRQ-8Iz8by4hsD7iOQ", + "name": "Angelina's", + "address": "743 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940221217, + "longitude": -75.1557966694, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "evZKyAZ4UePe8RLPzBDcbg", + "name": "Suds and Swagger", + "address": "616 S 6 th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415109, + "longitude": -75.1525395, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Pet Groomers, Pets", + "hours": { + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "12:0-19:0", + "Friday": "8:30-15:30", + "Saturday": "8:30-15:30" + } + }, + { + "business_id": "NQn_dGaMlvbQGwgAA6t85w", + "name": "The Glen At Shawmont Station", + "address": "300 Autumn River Run", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0446405, + "longitude": -75.2467667, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "pCmaISSyKum22MOtPOxL-w", + "name": "Philadelphia Phillies", + "address": "Citizens Bank Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9057900395, + "longitude": -75.1663008124, + "stars": 4.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Arts & Entertainment, Professional Sports Teams", + "hours": null + }, + { + "business_id": "aurl4I40YVQfQ8loOdgKCg", + "name": "Crown Fried Chicken", + "address": "933 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.971145, + "longitude": -75.15902, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants, Fast Food", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-4:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "ctDyeSkk2VMEbRogxAtYFw", + "name": "Pennsylvania Oral Surgery & Dental Implant Centers", + "address": "207 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565069284, + "longitude": -75.1623848453, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Oral Surgeons, Health & Medical, Cosmetic Dentists, Dentists, Orthodontists", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "7:30-14:0" + } + }, + { + "business_id": "tThP9jkCZHTrFvwEhGeKzw", + "name": "Divine Creations Unisex Salon", + "address": "509 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9516457, + "longitude": -75.2263698, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "19:30-4:0" + } + }, + { + "business_id": "di5ihAL9VWoctHelY8kLTQ", + "name": "Gigi and Big R", + "address": "38th and Spruce", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9512903, + "longitude": -75.1992768, + "stars": 4.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Caribbean, Food Trucks", + "hours": null + }, + { + "business_id": "Pb5agnsD9EdCl6yuZp2jJA", + "name": "O Sole Mio", + "address": "250 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378287, + "longitude": -75.1482632, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "HappyHour": "False", + "Caters": "True" + }, + "categories": "Food, Seafood, Sardinian, Gelato, Restaurants, Pizza, Italian", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "1:0-22:0" + } + }, + { + "business_id": "qluIWCzDpeZfddykm_2gYg", + "name": "North American Motor Inns", + "address": "4444 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0031369, + "longitude": -75.2213329, + "stars": 1.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel, Caterers", + "hours": null + }, + { + "business_id": "Bw0cpnfI-Y9QmjWzqS-oFg", + "name": "Izumi", + "address": "1601 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929738, + "longitude": -75.1633963, + "stars": 4.0, + "review_count": 219, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Sushi Bars, Desserts, Food, Japanese", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "wh9WMoi0ukhQy-kvjpC4uQ", + "name": "Apex Inspections", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Inspectors, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "1w1H1kYUN60zpfdP-0qmGQ", + "name": "Machismo Burrito Bar", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0626011, + "longitude": -75.2372078, + "stars": 3.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Caters": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "3VKE0_-KhU_qMYHxcyVcDg", + "name": "Just To Serve You Too", + "address": "5132 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.029648, + "longitude": -75.1322934, + "stars": 3.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Seafood, Restaurants, Soul Food, Southern", + "hours": null + }, + { + "business_id": "rApVTXXz2sUrNfDAMAIeNQ", + "name": "Yoga Sutra", + "address": "1401 Walnut St, 2nd Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949601, + "longitude": -75.164593, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": null + }, + { + "business_id": "Mw4seO5ZXpAIHxVnWzkoOw", + "name": "Apartments By Lego", + "address": "4226 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.948116, + "longitude": -75.208422, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": null + }, + { + "business_id": "kgMEBZG6rjkGeFzPaIM4MQ", + "name": "McDonald's", + "address": "914 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394402, + "longitude": -75.1668049, + "stars": 2.0, + "review_count": 55, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Ambience": "None", + "Caters": "False", + "WiFi": "'free'", + "DriveThru": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False" + }, + "categories": "Fast Food, Food, Restaurants, Coffee & Tea, Burgers", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "2xILZFIFZsPIxNkKH8aJ6g", + "name": "Kia on the Boulevard", + "address": "11295 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0938306616, + "longitude": -75.0149545558, + "stars": 2.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Dealers", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "2OB9O5u6yrBXw4V03si_OA", + "name": "KS Optical Group", + "address": "5139 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9584186, + "longitude": -75.2246542, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Doctors, Optometrists, Shopping, Eyewear & Opticians, Health & Medical", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "fKDV_dlDhXd7P5kZi97Kng", + "name": "The Spot", + "address": "272 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9483749, + "longitude": -75.1744886, + "stars": 3.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Breakfast & Brunch, Pizza, Greek, Restaurants, Food", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "XgLrkmIqIrD_pl67lAovEQ", + "name": "The Bourse", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498192516, + "longitude": -75.1486551501, + "stars": 2.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True" + }, + "categories": "Food Court, Shopping, Shopping Centers, IT Services & Computer Repair, Local Services, Souvenir Shops, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "9:0-18:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "usFEKg4-2C48qPIh32HbHA", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "1112 Chestnut St, Ste 28", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500812, + "longitude": -75.1593054, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "_IYHl6J9iB3lbeJq27pbsg", + "name": "Taqueria La Hacienda", + "address": "4715 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.02202, + "longitude": -75.1240606, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "OutdoorSeating": "None", + "BikeParking": "False", + "Alcohol": "u'none'" + }, + "categories": "Latin American, Restaurants", + "hours": null + }, + { + "business_id": "ZyyExneJPXjci7yc2CGAPQ", + "name": "Cups & Chairs", + "address": "701-03 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940311, + "longitude": -75.15099, + "stars": 4.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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": "8:0-19:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "Ryt1Fhgz7sixMQSJiLyP_g", + "name": "Zocalo", + "address": "3600 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9584222, + "longitude": -75.1938661, + "stars": 2.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "Caters": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'no'", + "HappyHour": "True", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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": "12:0-0:0" + } + }, + { + "business_id": "B6qHZCAs7Nka-1zdjCzAIQ", + "name": "Butter's Soul Food", + "address": "2730 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9741307, + "longitude": -75.1815903, + "stars": 3.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Caterers, Event Planning & Services, Restaurants, Soul Food", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "Bb3F76xkJrA-IwXLNK52RQ", + "name": "Alchemy Coffee", + "address": "119 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511237, + "longitude": -75.1755163, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "y7qvy9LcyK2hr_VcPBiPaQ", + "name": "Bicycle Revolutions", + "address": "1300 S Columbus Blvd, Ste 11B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9304866315, + "longitude": -75.1450844921, + "stars": 4.5, + "review_count": 94, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Bike Repair/Maintenance, Local Services, Sporting Goods, Bikes, Shopping", + "hours": null + }, + { + "business_id": "F6lNQPwg4gyg76wNyimxjQ", + "name": "Ride The Ducks", + "address": "6th and Market Streets", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950968, + "longitude": -75.150328, + "stars": 3.5, + "review_count": 83, + "is_open": 0, + "attributes": null, + "categories": "Tours, Local Flavor, Hotels & Travel", + "hours": null + }, + { + "business_id": "AAFofLiyt_K1Ar_eEuVc7g", + "name": "Crowne Plaza Hotel Philadelphia Downtown", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528337, + "longitude": -75.1703455, + "stars": 3.0, + "review_count": 59, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Venues & Event Spaces, Hotels, Event Planning & Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "XZN4nllA4qMdXVHy_-nqHg", + "name": "Jefferson Dental Associates", + "address": "834 Chestnut St, Ste 415", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496879547, + "longitude": -75.1551404166, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Pediatric Dentists, Oral Surgeons, Health & Medical, General Dentistry, Endodontists, Cosmetic Dentists, Dentists, Periodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "-fqjV6QqrKLUxpYCJoSsOQ", + "name": "GameStop", + "address": "2308 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9181628466, + "longitude": -75.1868784428, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Books, Mags, Music & Video, Shopping, Video Game Stores, Videos & Video Game Rental, Electronics", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "DVhjFN8N-jpw_EC_-Uoxjg", + "name": "Hill Counseling", + "address": "7811 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0690412, + "longitude": -75.19879, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Counseling & Mental Health, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "3Lf3nWp9TcIj7hvw9YZeMA", + "name": "Cannuli's Quality Meats & Poultry", + "address": "937 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378963, + "longitude": -75.1579013, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Specialty Food, Caterers, Meat Shops, Food, Event Planning & Services", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "8:0-17:30", + "Sunday": "8:0-13:30" + } + }, + { + "business_id": "NouhbGP5s17DZ9hExLYAkA", + "name": "Dairy Queen", + "address": "514 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 40.0790741, + "longitude": -74.9312205, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "KAZ2Z3831eb5lHtUDKa8kA", + "name": "Saladworks", + "address": "2955 Market St, Ste 221", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557501, + "longitude": -75.1819889, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False" + }, + "categories": "Salad, Restaurants, American (Traditional), Food, Sandwiches, Do-It-Yourself Food, Soup, Vegetarian, American (New)", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "cLlBDZxYJ1dt1JgMuZnXew", + "name": "Olly", + "address": "700 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408776, + "longitude": -75.1511064, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "True", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "HappyHour": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Pizza, Food, Bagels, Sandwiches, Comfort Food, Breakfast & Brunch, Burgers, American (New), Nightlife, Bars, Wine Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "V5KiEoH4E86GA2S3RQkf1g", + "name": "Spice Grill", + "address": "3447-61 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9862724, + "longitude": -75.094699, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese, Asian Fusion", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "MMRRS6YhVRx_iN5-JhMRYg", + "name": "Han Dynasty", + "address": "3711 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567105161, + "longitude": -75.1971027811, + "stars": 4.0, + "review_count": 783, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "HappyHour": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese, Szechuan", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "2Eb8aKOZROAPkWxsBXf_qQ", + "name": "Vista Auto Group", + "address": "7418 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.038457, + "longitude": -75.0370017, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Used Car Dealers, Car Dealers, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "icp_IKE9zIkAqAucyS1vTA", + "name": "Hakka Beef House", + "address": "927 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554945, + "longitude": -75.1552563, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "h5-Ay4V4XbRu-MvWyYC5yQ", + "name": "The Groomin Room", + "address": "7540 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0391617, + "longitude": -75.0346834, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Groomers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "2oav5QoWgnvTI2gO5xFMjw", + "name": "Kimpton Hotel Monaco Philadelphia", + "address": "433 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491236494, + "longitude": -75.1488953439, + "stars": 4.0, + "review_count": 499, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Venues & Event Spaces, Hotels, Wedding Planning", + "hours": { + "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" + } + }, + { + "business_id": "f8xDi3rajxvIqS73N93Afw", + "name": "Guavaberry Foods & Drinks ", + "address": "776 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938371, + "longitude": -75.1501031, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False" + }, + "categories": "Delis, Convenience Stores, Restaurants, Cafes, Food", + "hours": { + "Monday": "8:0-20: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": "8:30-19:0" + } + }, + { + "business_id": "A0F-h3xJm_6gHDKcDQwSrQ", + "name": "Capogiro Gelato", + "address": "3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541715545, + "longitude": -75.2013800841, + "stars": 4.0, + "review_count": 252, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False" + }, + "categories": "Pizza, Restaurants, Gelato, Coffee & Tea, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "8:0-22:30", + "Tuesday": "8:0-22:30", + "Wednesday": "8:0-22:30", + "Thursday": "8:0-22:30", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-22:30" + } + }, + { + "business_id": "PGCTib7KxDctvNnQry_iDA", + "name": "Majestic Ballroom", + "address": "800 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0369380685, + "longitude": -75.1354611665, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "SPWyzJPFP2TT7x0BsqaBqQ", + "name": "Chenango Restaurant & Bar", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664073, + "longitude": -75.1386733, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Barbeque, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "Knt2mnsG15akKb9cjSiuxw", + "name": "John's Seafood", + "address": "1326 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9709958, + "longitude": -75.1581617, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "W_ZwRjARpALtXUlSW90tIg", + "name": "B & A Archery", + "address": "7169 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.024772, + "longitude": -75.032997, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sporting Goods, Shopping, Sports Clubs, Active Life, Archery", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "twrAccrzOnaRtS_UaZhwTw", + "name": "FurnitureXO.com", + "address": "2801 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0760645, + "longitude": -75.0168627, + "stars": 1.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Home & Garden, Shopping, Furniture Stores, Interior Design, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "ugSVRAKO6mxvsrElFg8USw", + "name": "Mรฉxico Lindo", + "address": "700 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926402, + "longitude": -75.1575374, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "'paid'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "Bc3zpRSQ_1i18SDI1eb9cA", + "name": "The Somers Team", + "address": "1405 Frankford Ave, C2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9727720933, + "longitude": -75.1339779021, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate Services, Real Estate", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "E9NdANM1gVijPPkl1K2CDg", + "name": "Deluxe Hair Salon", + "address": "2209 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9454953, + "longitude": -75.1789457, + "stars": 4.5, + "review_count": 126, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "mpVZG520RL-K1YeQi55ZPg", + "name": "The Blarney Stone", + "address": "3929 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548253, + "longitude": -75.2009783, + "stars": 3.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForDancing": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Burgers, American (Traditional), Karaoke, Pubs, Restaurants, Nightlife, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "9VRg8Ho9SoZWKPmjfrpVmw", + "name": "Forman Mills", + "address": "2500 Grant Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.078046, + "longitude": -75.0249625, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Sports Wear, Children's Clothing, Sporting Goods, Men's Clothing, Women's Clothing", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "duf2PORLOL6it1dTGhSnKA", + "name": "Junes Breakfast", + "address": "6227 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9850064107, + "longitude": -75.246888042, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}" + }, + "categories": "Breakfast & Brunch, Restaurants, Coffee & Tea, Food, Sandwiches, American (New)", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:30-14:30", + "Sunday": "6:30-14:30" + } + }, + { + "business_id": "Ye0slMJ56gXMZChM9mU6QA", + "name": "New Frontier Outfitters", + "address": "9280 Ridge Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0747869, + "longitude": -75.2445106, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Active Life, Fishing, Guns & Ammo, Sporting Goods, Shopping, Outdoor Gear", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "klGvxx2XmKkd-9mdRZoGVA", + "name": "The Comcast Experience HD Video Wall", + "address": "1701 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544765361, + "longitude": -75.1685419632, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "_7txbYafymgB-xqbsdWJjA", + "name": "Jinxed Fishtown", + "address": "1331 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9711258, + "longitude": -75.1340608, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Used, Vintage & Consignment, Art Galleries, Fashion, Antiques, Shopping, Women's Clothing, Arts & Entertainment", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "LsGhInbkQ8jUNn-defi_fg", + "name": "Dynamite Braids Hair Salon & Spa", + "address": "7047 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0342971, + "longitude": -75.0450417, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Stylists, Nail Salons", + "hours": { + "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" + } + }, + { + "business_id": "bKppmYKQ_-9cpp2yziB-Qw", + "name": "Lincoln Chicken Pizza And Grill", + "address": "2614 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9738754, + "longitude": -75.1794242, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True" + }, + "categories": "Cheesesteaks, Chicken Wings, Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "K8b2MQ5Az59-nzvqUfjJEQ", + "name": "The Farm and Fisherman", + "address": "1120 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.944935, + "longitude": -75.1606759, + "stars": 4.0, + "review_count": 234, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'" + }, + "categories": "American (New), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "We57TJLl3BEo2gII0TWVQA", + "name": "Dodd William A, DMD", + "address": "1608 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495016, + "longitude": -75.1680817, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "00Vn4VUTWl71_cFPziRQNQ", + "name": "Crab & Claw", + "address": "7801 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0719622, + "longitude": -75.157311, + "stars": 3.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood Markets, Specialty Food, Food", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "10:30-18:30" + } + }, + { + "business_id": "s55Hw6gHhQzZctinFhPu-g", + "name": "Urban Eatery", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570681, + "longitude": -75.1916189, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "HasTV": "True" + }, + "categories": "Restaurants, Food Court", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "n6dw_zxL_4cVO6EP_m0joQ", + "name": "Dragon House", + "address": "1228 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503586, + "longitude": -75.1615836, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "agTcS5LYZJe4gNiXK6nNkw", + "name": "Buca Dโ€™Oro ", + "address": "711 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9470772078, + "longitude": -75.1541655511, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'" + }, + "categories": "Italian, Restaurants", + "hours": { + "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": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "6SGw7TF7F4q4Uc2cuGvwIA", + "name": "Z Brothers Service Center", + "address": "9853 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0918468, + "longitude": -75.0317717, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "Zk_GdMMPgEfKUECCxAxvwQ", + "name": "Pho Nam Giang", + "address": "427 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0860776, + "longitude": -74.9648083509, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "DogsAllowed": "False", + "HasTV": "False", + "Alcohol": "u'none'" + }, + "categories": "Chinese, Restaurants, Vietnamese, Asian Fusion", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "6vdj6TAQv82kXE6MEUg7tA", + "name": "Energy Plus Holdings", + "address": "3711 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566278, + "longitude": -75.1968405, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services", + "hours": null + }, + { + "business_id": "PxEiXqMAzzvp8GFlb5EoLg", + "name": "Grain Exchange", + "address": "7152 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059508, + "longitude": -75.190838, + "stars": 3.5, + "review_count": 239, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "Caters": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, American (New), Nightlife, American (Traditional), Pubs, Southern, Bars, Gastropubs", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "ErWSqXjjX55CvAsTiVL4yw", + "name": "Minima", + "address": "118 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9527587, + "longitude": -75.1453487, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Furniture Stores, Shopping", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "AWGuQflJGycjeHfOZjAVUQ", + "name": "Temple ReadyCare - Cottman Avenue", + "address": "2118 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0489636, + "longitude": -75.0633962, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Urgent Care", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "s_NhHDVXGyZ1mjTu4D9fXA", + "name": "Chestnut Hill Escape Room", + "address": "8217 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073763, + "longitude": -75.202796, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Escape Games, Active Life", + "hours": { + "Friday": "16:0-21:30", + "Saturday": "10:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "ZT8ZBNvjV6OVheYOZcT10w", + "name": "Oregon Laundromat", + "address": "200 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139475, + "longitude": -75.1520299, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Laundromat, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "kfcz8iJOkltAvkp6TqNMcA", + "name": "Fairmount Pet Shoppe", + "address": "2024 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9670683, + "longitude": -75.1711272, + "stars": 4.5, + "review_count": 64, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pets", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "9xPFNAQ5vG7PG0VD2rdoIA", + "name": "City Hydration", + "address": "1315 Walnut St, Ste 1132", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949279331, + "longitude": -75.1629582236, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, IV Hydration, Medical Spas, Health & Medical", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "w0zKpH49tW6Y-b6ZJzKMFw", + "name": "Chuck's Alibi", + "address": "7301 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.061417, + "longitude": -75.0833451, + "stars": 2.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "HasTV": "True", + "WiFi": "u'free'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Restaurants, Seafood", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "rQ2CSHRkZSn5WCu7OfVI-Q", + "name": "Trend Eye Care", + "address": "180 W Girard Ave, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968969, + "longitude": -75.139531415, + "stars": 5.0, + "review_count": 193, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Shopping, Fashion, Optometrists, Accessories, Eyewear & Opticians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eqNutOMnPqKa9QDAY6KfEw", + "name": "J'aime French Bakery", + "address": "212 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948081, + "longitude": -75.1608093, + "stars": 4.5, + "review_count": 310, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Coffee & Tea, Restaurants, Bakeries, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-13:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "WiF0TF-648bQsZ0dYyhpXw", + "name": "Retail Express", + "address": "2750 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0717692, + "longitude": -75.0202703, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Couriers & Delivery Services, Local Services", + "hours": null + }, + { + "business_id": "BmRiZG7YUTQ1lfK61J6zLA", + "name": "William Way Community Center", + "address": "1315 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470772, + "longitude": -75.1633393, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Community Service/Non-Profit", + "hours": null + }, + { + "business_id": "sfbg2kxnvKpmlIuCUas5TA", + "name": "Lucky Wok Restaurant", + "address": "5431 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0342865, + "longitude": -75.1307075, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "WiFi": "u'no'", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "gpOUCroDdMBXM_Hav3FFXA", + "name": "Simple Solutions Home Repairs", + "address": "1316 Bigler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.91384, + "longitude": -75.170405, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Flooring, Painters, Home Services, Contractors, Handyman", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "DrVl5UFuhbud0DGTzCiUDg", + "name": "Mattei Tire Co", + "address": "2701 S Marvine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9160361, + "longitude": -75.1666909, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Tires, Automotive", + "hours": { + "Monday": "7:30-16:30", + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30", + "Saturday": "7:30-13:0" + } + }, + { + "business_id": "5YGfTrvNftNIS7qAF9qikA", + "name": "Z Dog Day Care", + "address": "2617 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9405185, + "longitude": -75.1870153, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Pet Training, Pet Services, Pets, Dog Walkers, Pet Sitting", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "8cLbpSZOHnmzxzDNSBGQCA", + "name": "About BBQ", + "address": "933 Race Sreet", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554168697, + "longitude": -75.1554945434, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "HappyHour": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "S5zpryZNidOZUFcfznfhaQ", + "name": "I Like To Move It", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19401", + "latitude": 40.1270723, + "longitude": -75.3353875, + "stars": 4.0, + "review_count": 144, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Home Services, Local Services, Couriers & Delivery Services, Movers, Home Cleaning", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "CB7nXPd5h_YLzcgfDo2DCg", + "name": "Mike's Breakfast", + "address": "6201 N Front St, Ste 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.045729, + "longitude": -75.11891, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "C2KhibuDzv3HJvZubkHTJA", + "name": "Village Thrift Stores", + "address": "2917 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.992888, + "longitude": -75.119347, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Thrift Stores, Used, Vintage & Consignment, Fashion, Shopping", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "i5DH8fyS7JTu61qrIgRRWA", + "name": "Urban Princess Boutique", + "address": "620 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411303, + "longitude": -75.1493963, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Women's Clothing, Flowers & Gifts, Shopping, Jewelry, Accessories, Gift Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "9:30-20:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "ttLa_rs6CZOcBZN_XWEAwQ", + "name": "MSB Roofing", + "address": "2907 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982307, + "longitude": -75.111553, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Roofing, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "7lwe7n-Yc-V9E_HfLAeylg", + "name": "Pub & Kitchen", + "address": "1946 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9456566, + "longitude": -75.1747733, + "stars": 3.5, + "review_count": 615, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "GoodForKids": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Restaurants, Pubs, Food, Bars, American (New), Nightlife", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "0kLivwqFCIAb2V7Vhndpow", + "name": "Dentistry For Life", + "address": "1601 Walnut St, Ste 1217", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Orthodontists, Oral Surgeons, Dentists, General Dentistry, Endodontists, Cosmetic Dentists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-14:0", + "Saturday": "9:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "o4_cgIKWgvJ09TZeSzARmg", + "name": "Quality Pizza", + "address": "6438 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0509209, + "longitude": -75.094581, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "5m3ND7lNNd6zo-bNQGoXhQ", + "name": "Three 12 Sport Bar and Lounge", + "address": "312 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499452, + "longitude": -75.146352, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "DogsAllowed": "False", + "GoodForDancing": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Smoking": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Lounges, Sports Bars, Bars, Cocktail Bars, Nightlife, Restaurants, American (Traditional)", + "hours": { + "Monday": "11:0-1:30", + "Tuesday": "11:0-1:30", + "Wednesday": "11:0-1:30", + "Thursday": "11:0-1:30", + "Friday": "11:0-1:30", + "Saturday": "11:0-1:30", + "Sunday": "11:0-1:30" + } + }, + { + "business_id": "IDGg4Ax0iMYBtSKRP0tBbg", + "name": "Germantown Pizza", + "address": "1517 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9742039, + "longitude": -75.1420764, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'" + }, + "categories": "Pizza, Restaurants, Italian, Desserts, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "7J81xJFlMM244_f05k2egw", + "name": "Hammerheads Bar & Grille", + "address": "3517 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0374692, + "longitude": -75.0417837, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Dive Bars, Restaurants, American (Traditional), Nightlife, Bars", + "hours": null + }, + { + "business_id": "Sv1VsMRwedFaRgodPlmBVA", + "name": "In Style Hair Studio", + "address": "137 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955075, + "longitude": -75.157486, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "False", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "oBhJuukGRqPVvYBfTkhuZA", + "name": "Square 1682", + "address": "121 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508011, + "longitude": -75.1686108, + "stars": 3.5, + "review_count": 385, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Corkage": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "BYOB": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'" + }, + "categories": "American (New), Breakfast & Brunch, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "0:0-0: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": "9:0-14:0" + } + }, + { + "business_id": "e0aGg7U132XQRup2qa0Ztg", + "name": "Archway Sandwich Shop", + "address": "48 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528017, + "longitude": -75.1533475, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'" + }, + "categories": "Delis, Sandwiches, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "7:0-15:0" + } + }, + { + "business_id": "04UD14gamNjLY0IDYVhHJg", + "name": "Dmitri's", + "address": "795 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9380132, + "longitude": -75.1481307, + "stars": 4.0, + "review_count": 273, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "BYOBCorkage": "'yes_free'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "False" + }, + "categories": "Mediterranean, Restaurants, Seafood, Greek", + "hours": { + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "7sKfrJmjG6unAQeWdQUe2w", + "name": "Franzone's Pizzeria & Restaurant", + "address": "114 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026465, + "longitude": -75.2244958, + "stars": 3.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "pXb7pDVPayyElIqVlh1FOg", + "name": "Brown Chicken Brown Cow", + "address": "1321 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310268, + "longitude": -75.1478088, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Ice Cream & Frozen Yogurt, Coffee & Tea, Food", + "hours": { + "Monday": "15:0-20:0", + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "swiwJRUQHt79dJ5hqAERtQ", + "name": "Total Serenity Day Spa", + "address": "2108 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506566, + "longitude": -75.1763021, + "stars": 2.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Day Spas", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Xas13kiNejlJtRdejpZ22g", + "name": "Enterprise Rent-A-Car", + "address": "6800 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0549074773, + "longitude": -75.091064411, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-16:0", + "Friday": "7:30-17:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "14ZGwnDyydXdSBsLXpSUrA", + "name": "Vientiane Cafรฉ", + "address": "4728 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483087, + "longitude": -75.2178905, + "stars": 4.0, + "review_count": 304, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "False", + "Corkage": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "u'yes_corkage'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Vietnamese, Restaurants, Food, Thai, Coffee & Tea, Laotian", + "hours": { + "Monday": "0:0-0:0", + "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" + } + }, + { + "business_id": "FKlNp7sCdEIt8_tQ5AzXDg", + "name": "Temple University Hospital - Episcopal Campus", + "address": "100 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9903372, + "longitude": -75.130115, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "dKfMKFaiHC_9XLHdqhFN2w", + "name": "The Sporting Club at the Bellevue", + "address": "224 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9488519132, + "longitude": -75.1644102484, + "stars": 3.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Contractors, Active Life, Fitness & Instruction, Pickleball, Weight Loss Centers, Home Services, Health & Medical, Swimming Pools, Pilates, Gyms, Boot Camps", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "4NjPz9bJzll1FMIi2bw8HA", + "name": "Sonam", + "address": "223 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9412971, + "longitude": -75.1466064, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Tapas Bars, Restaurants", + "hours": null + }, + { + "business_id": "i221dg3tgAMZLG-zeS5k3g", + "name": "Menchie's Frozen Yogurt", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.076192, + "longitude": -75.031427, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Desserts, Do-It-Yourself Food, Ice Cream & Frozen Yogurt", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "syB4xhM0hiaib19fucneBA", + "name": "B & W Locksmith", + "address": "3320 Glenview St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.033039, + "longitude": -75.051068, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "XDvsDfLRddgpayKv7Mcn-g", + "name": "Philadelphia Parking Authority", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9606228, + "longitude": -75.1700704, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "96752mk7VlAUtWg8o02Tvw", + "name": "Center City Pediatrics", + "address": "1740 South St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441659, + "longitude": -75.1717273, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Pediatricians", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "tzVLTQNUtiCAxUZmEuF0vQ", + "name": "1 Tippling Place", + "address": "2006 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951859, + "longitude": -75.173882, + "stars": 4.0, + "review_count": 300, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "WheelchairAccessible": "True", + "Smoking": "u'no'" + }, + "categories": "Bars, Nightlife, Lounges, Cocktail Bars", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "AY1SyySRyTnBwBdf7qfGxQ", + "name": "Citi Market place", + "address": "1318 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489105, + "longitude": -75.1630155, + "stars": 4.5, + "review_count": 86, + "is_open": 0, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Grocery, Vegan, Food, Vegetarian, Convenience Stores, Restaurants", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "kCK5pdQCh56eCnWpLcNt9g", + "name": "Moday Center for Functional and Integrative Medicine", + "address": "110 S 20th St, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951596, + "longitude": -75.1737587, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Naturopathic/Holistic, Medical Centers, Doctors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "9XpU6r6ATXSWYfbU7kibaQ", + "name": "Passero's Coffee Roasters", + "address": "1601 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542012, + "longitude": -75.1674658, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WiFi": "u'free'", + "RestaurantsTableService": "False" + }, + "categories": "Coffee & Tea, Restaurants, Food, Coffee Roasteries, Sandwiches", + "hours": null + }, + { + "business_id": "sD2yBIzp0SNYRMD4QfH9Jw", + "name": "Starbucks", + "address": "1018 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96651, + "longitude": -75.140377, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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-13:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "cz0sBSp8G2R2dqE6cccbuw", + "name": "Wit or Witout Cheesesteaks", + "address": "7352 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0378039, + "longitude": -75.0387664, + "stars": 2.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches", + "hours": null + }, + { + "business_id": "Lro-qULT-oa4Oz36p1yTwA", + "name": "Johnny G's Pizza", + "address": "7315 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0618893, + "longitude": -75.0832513, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "FzrbnV-9y0LkksceBa863g", + "name": "Academy Chiropractic Center", + "address": "1420 Locust St, Ste R5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947954, + "longitude": -75.165882, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Nutritionists, Weight Loss Centers, Chiropractors, Health & Medical, Massage Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-16:0", + "Wednesday": "9:0-18:30", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "x5RQogP-uQrhW0cFRkZuPQ", + "name": "Labcorp", + "address": "301 W Chelten Ave, Ste J", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.03022, + "longitude": -75.18048, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Diagnostic Services, Health & Medical, Laboratory Testing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "1k3SQfqkQHzaDihUBG2_og", + "name": "Color Nail & Spa", + "address": "229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487213, + "longitude": -75.145205, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Skin Care, Beauty & Spas, Massage, Nail Salons", + "hours": { + "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" + } + }, + { + "business_id": "LiisV3YRS4CrVbMeEbn-sQ", + "name": "Realty World Properties", + "address": "4023 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533306, + "longitude": -75.2039551, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Real Estate Services, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "2X6HUYGV7Djr_TFX6uYebA", + "name": "Philadelphia Sports Network", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9504656, + "longitude": -75.1649353, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Amateur Sports Teams, Arts & Entertainment, Social Clubs, Sports Clubs", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "Yl4Am6NhqWo_YMmo1SyU5A", + "name": "Domino's Pizza", + "address": "5754 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9453395, + "longitude": -75.238934, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "ld1b8y_PHH6Mn_e7T0u04g", + "name": "Gachi Sushi and Noodle", + "address": "8500 Essington Ave, A West Terminal", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8946117, + "longitude": -75.2292952, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Noodles, Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "aZNiVR6oAMQX5__yGPvYsg", + "name": "Susanna Foo Chinese Cuisine", + "address": "1512 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493255, + "longitude": -75.1667043, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "MJisxR8XOSfDDFqU8PtiCg", + "name": "It's Just Lunch", + "address": "1528 Walnut St, Ste 1400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 1.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Matchmakers", + "hours": null + }, + { + "business_id": "55GNarL5MuVzJEslW7QjbA", + "name": "Eye Encounters", + "address": "4002 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955381, + "longitude": -75.202544, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "AcceptsInsurance": "True" + }, + "categories": "Eyewear & Opticians, Shopping, Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-15:30" + } + }, + { + "business_id": "WxFfnTx_VAT_ORvqHAfYNw", + "name": "My Blue Heaven", + "address": "2762 E Pacific St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9883288, + "longitude": -75.0912665, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Nightlife, American (Traditional), Bars", + "hours": { + "Monday": "10:30-2:0", + "Tuesday": "10:30-2:0", + "Wednesday": "10:30-2:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "2oNlM0ANjE8JB0jEwY-mtw", + "name": "Market Blooms", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531943336, + "longitude": -75.1593846597, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Home & Garden, Flowers & Gifts, Nurseries & Gardening", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "ejRuEF2j8_w5qQbwEQ8GfQ", + "name": "Villagio Pizza Cafe", + "address": "2533 Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9851818, + "longitude": -75.1067498, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Pizza, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "zVmW-ohNzhOPiBIeUPL62g", + "name": "Goody's Pizza", + "address": "6237 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0274889, + "longitude": -75.0611831, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "pAVplVUnmW9vMUJbiDVyjw", + "name": "Maryanne S. Ritter Jewelers", + "address": "712 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402893962, + "longitude": -75.1496128222, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Art Restoration, Shopping, Jewelry Repair, Local Services, Jewelry, Watches, Fashion, Watch Repair, Bridal", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "MGNAYydr7SxPMDgFlnZ7sg", + "name": "Little Caesars Pizza", + "address": "200 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139475, + "longitude": -75.1520299, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "R-HCwu9UbasUudG1yTM1Ow", + "name": "TD Banknorth", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.95, + "longitude": -75.16, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Mortgage Brokers, Home Services, Real Estate, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "oFMpfE5J6f0ATRmsVXrFSg", + "name": "Papa Sam", + "address": "6398 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0394759, + "longitude": -75.0778205, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "6aZGNR-R1lSBlG9rPsyEyQ", + "name": "South Street Cleaners", + "address": "800 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423143, + "longitude": -75.1556053, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "tCLAeZsjXFG9RumJ4Hn0Kw", + "name": "Maru Global", + "address": "255 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467949, + "longitude": -75.1577025, + "stars": 3.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Restaurants, Japanese", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0" + } + }, + { + "business_id": "frOmFhJME0yZ3HkyQov6Pg", + "name": "Tommy's Nail Salon", + "address": "6932 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0428131, + "longitude": -75.0636357, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "ekqJffSZGsAN9_v-F2yrSg", + "name": "True Image Salon", + "address": "1700 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927889, + "longitude": -75.1588589, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Blow Dry/Out Services, Beauty & Spas, Hair Salons, Hair Stylists", + "hours": { + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "rm2XUoqkJn-d5gByPUwamw", + "name": "Eyesite", + "address": "111 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513268, + "longitude": -75.1702271, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Eyewear & Opticians, Shopping", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "s1PNBO9o5jIgNd5YWUDLXQ", + "name": "The Independent Hotel", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477815, + "longitude": -75.162146, + "stars": 3.5, + "review_count": 123, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "XdmaLMJE44rg75TYlOACVw", + "name": "Vincera Institute", + "address": "1200 Constitution Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8915388376, + "longitude": -75.1774873862, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Orthopedists, Nutritionists, Pilates, Fitness & Instruction, Sports Medicine, Physical Therapy, Doctors, Active Life, Rehabilitation Center, Health & Medical, Acupuncture", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "7gKh-cM6TvfpQPMjMoEbGg", + "name": "The Naked Peach Waxing Boutique", + "address": "6226 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0363201, + "longitude": -75.2184952, + "stars": 4.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Spray Tanning, Skin Care, Makeup Artists, Beauty & Spas, Hair Removal, Waxing, Tanning, Teeth Whitening", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "HUikwo_T9mnpgk0M7oUHXg", + "name": "2nd Street Animal Hospital", + "address": "966 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9659046, + "longitude": -75.1404462, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Emergency Pet Hospital, Pets, Pet Services, Veterinarians, Orthopedists, Health & Medical, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-14:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "ShYwqkUf7PkI7LHqCyTmEA", + "name": "PHS Pop Up Garden - uCity Square", + "address": "36th & Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957087816, + "longitude": -75.1941281726, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Beer Gardens, Nightlife", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "8Uz6dy3vMQsZTQu-vqpZ5A", + "name": "Castor Dental Care", + "address": "7258 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0511422547, + "longitude": -75.0664484601, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Oral Surgeons, Dentists, General Dentistry, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "T8lxi3V2avTVXCanVkAFNg", + "name": "Pizza Hut", + "address": "2715 S Front St, Ste 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9130548, + "longitude": -75.149704, + "stars": 1.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Italian, Chicken Wings, Restaurants, Pizza", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "fYtJnehmqvxXFmRsPsny_Q", + "name": "Philadelphia Table Company", + "address": "158 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9537912, + "longitude": -75.1450637, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Local Services, Furniture Stores, Interior Design, Home Services, Furniture Repair, Home & Garden, Furniture Assembly, Carpenters", + "hours": { + "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" + } + }, + { + "business_id": "fr2qDm_mY1afIGMvqsKUCg", + "name": "George's Wings", + "address": "3818 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0643044322, + "longitude": -74.9868814021, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "OutdoorSeating": "False", + "Corkage": "False", + "BikeParking": "True", + "HasTV": "True", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "'average'", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Fast Food, Restaurants, Chicken Wings, Food, Seafood, Sandwiches, Wraps, Burgers", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "X2D42cGnqxadT_jbNJxHsg", + "name": "The Sultans of Schlep", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19100", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 4.5, + "review_count": 183, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "9:0-17: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-14:0" + } + }, + { + "business_id": "GOSVLhjUT6TnrPhkkmDOpw", + "name": "Vineyards Cafe", + "address": "847 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.969939, + "longitude": -75.163026, + "stars": 4.5, + "review_count": 192, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': False, u'latenight': False, u'dessert': None}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "BikeParking": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Cafes, Food, Creperies, Internet Cafes, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "kOHcpCZQd4uNp6G2uE8o2A", + "name": "PrimoHoagies", + "address": "1528 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9209271, + "longitude": -75.1733058, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "HasTV": "True" + }, + "categories": "Delis, Restaurants, Italian, Local Flavor, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "ELJcgId3RiCADVIT5QbUTA", + "name": "Hyon's Seafood", + "address": "1320 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9350405, + "longitude": -75.179381, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTableService": "False", + "BYOB": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "h85b3MFPWyaopMBy8DpBpA", + "name": "Ron's Caribbean Cuisine", + "address": "5726 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0407573, + "longitude": -75.1448014, + "stars": 4.0, + "review_count": 142, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Food, Ethnic Food, Cafes, Caribbean, Specialty Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "w9hS5x1F52Id-G1KTrAOZg", + "name": "Wiz Kid", + "address": "124 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509958568, + "longitude": -75.1723086834, + "stars": 4.5, + "review_count": 163, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTableService": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'" + }, + "categories": "Vegan, Restaurants, Fast Food, Cheesesteaks", + "hours": { + "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" + } + }, + { + "business_id": "9TPek1DI_El4uu8ltDzfcw", + "name": "Cynthia Roberts", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9921721, + "longitude": -75.1009178, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas, Hair Removal, Waxing, Hair Stylists", + "hours": { + "Monday": "9:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "9:0-16:30", + "Sunday": "9:0-16:30" + } + }, + { + "business_id": "_tADqh3OmH6CzGJWKkru3g", + "name": "Latin Flavor", + "address": "627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422752, + "longitude": -75.1532337, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "None" + }, + "categories": "Latin American, Caribbean, Cuban, Restaurants", + "hours": null + }, + { + "business_id": "5Eq-hxUIIjZTHFnpZJhgQQ", + "name": "Tom's Corner Grill & Pizza", + "address": "7375 Crabtree St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0406177, + "longitude": -75.0438084, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "c8rjE6NcfeyzLB_aU1GdMA", + "name": "Slรกinte Pub & Grill", + "address": "3000 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954815805, + "longitude": -75.1836068183, + "stars": 3.5, + "review_count": 139, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Nightlife, Bars, Restaurants, Irish, Pubs", + "hours": { + "Monday": "11:0-1: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-0:0" + } + }, + { + "business_id": "T3m-GF4HH7OCdZW3tUxxLA", + "name": "BoConcept Philadelphia", + "address": "1719 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517032, + "longitude": -75.169526, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Home Services, Shopping, Home & Garden, Furniture Stores, Home Decor, Interior Design", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "GnwEsZCA8gzKDB-pTRl3nw", + "name": "PNC Bank", + "address": "4060 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0068508604, + "longitude": -75.2130997181, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Home Services, Banks & Credit Unions, Investing, Mortgage Brokers, Real Estate", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "mCo2uVTTGYrEhRrkQW-CMw", + "name": "Empress Garden", + "address": "108 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539403, + "longitude": -75.1563093, + "stars": 4.0, + "review_count": 263, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "None" + }, + "categories": "Taiwanese, Chinese, Noodles, Restaurants", + "hours": { + "Monday": "11:0-21:45", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:45" + } + }, + { + "business_id": "Oom9PRZP9L57vHKQOA3q4g", + "name": "Budget Rent A Car System", + "address": "841 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9362628, + "longitude": -75.1409477, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": null + }, + { + "business_id": "-LmhsdQproqCf5EQoD06rQ", + "name": "The Fat ChickeN", + "address": "2355 S Bucknell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9227051442, + "longitude": -75.1861358061, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Japanese, Chicken Wings, Fast Food, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ydIiHK4TE_wd7gAyifNUAQ", + "name": "Chinese Restaurant", + "address": "104 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538392, + "longitude": -75.1563293, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "WiFi": "'no'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0" + } + }, + { + "business_id": "afsP-p_pr4ikrboB5MtUzQ", + "name": "Los Compadres", + "address": "3300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9553865, + "longitude": -75.1910637, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Mexican, Italian, Food Trucks, Restaurants, Food", + "hours": { + "Monday": "9:0-15:30", + "Tuesday": "9:0-15:30", + "Wednesday": "9:0-15:30", + "Thursday": "9:0-15:30", + "Friday": "9:0-15:30" + } + }, + { + "business_id": "7MaaaorooHRAqkQXcTqmrg", + "name": "Nannie Francos Pizza", + "address": "2141 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922527, + "longitude": -75.1644732, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "JXXLweAoAOBP6UtmFQe1lQ", + "name": "Priya Hot Yoga", + "address": "1828 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960322, + "longitude": -75.169415, + "stars": 4.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "6:0-20:30", + "Wednesday": "9:30-20:15", + "Thursday": "6:0-20:30", + "Friday": "9:30-17:30", + "Saturday": "8:0-12:0", + "Sunday": "9:0-18:30" + } + }, + { + "business_id": "9nkYaCQRyO0fi8SrXDFhGw", + "name": "Rittenhouse Market", + "address": "1733 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9478453288, + "longitude": -75.1708737016, + "stars": 2.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-22:0", + "Sunday": "6:30-22:0" + } + }, + { + "business_id": "QIuU35su_uePIkn9o5a57g", + "name": "Neighborhood Compounding Pharmacy", + "address": "5701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9613383, + "longitude": -75.2345719, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Drugstores, Medical Centers, Shopping, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "tVxL-Ygzwp8NMuxwvNmWRA", + "name": "Los Potrillos", + "address": "4200 G St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0123759, + "longitude": -75.1124633, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Corkage": "False", + "Caters": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "BYOB": "False" + }, + "categories": "American (Traditional), Spanish, Restaurants, Food Trucks, Mexican, Food", + "hours": { + "Monday": "10:0-23:30", + "Tuesday": "10:0-23:30", + "Wednesday": "10:0-23:30", + "Thursday": "10:0-23:30", + "Friday": "10:0-0:0", + "Saturday": "12:0-0:0" + } + }, + { + "business_id": "9Y0jUKfeDFJUStlVHOlc9Q", + "name": "Tie Bar", + "address": "1527 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949949, + "longitude": -75.1671469, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Formal Wear, Men's Clothing, Fashion, Shopping, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "NnW7PyUW44d4nnC9XY1naQ", + "name": "Doggie Style Pets", + "address": "1032 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446511, + "longitude": -75.1594061, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pet Groomers, Pets, Pet Adoption, Pet Services", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "CPpZTp1Lezhsfan8SgJs4Q", + "name": "Firing Line", + "address": "1532 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.92821, + "longitude": -75.14687, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Gun/Rifle Ranges, Guns & Ammo, Shopping, Active Life", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ed-eGpyeu6K7pHWoqnvOkA", + "name": "David Slobodinsky", + "address": "244 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9693760895, + "longitude": -75.1322876736, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oral Surgeons, Health & Medical, Sleep Specialists, General Dentistry, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "8:0-16:0" + } + }, + { + "business_id": "H3yoQNhw-AfdLIwScR1zXg", + "name": "Divino Wine Bar", + "address": "267 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482333, + "longitude": -75.1726372, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Italian, Wine Bars, Restaurants, Bars, Nightlife, Pizza", + "hours": null + }, + { + "business_id": "arpAjDjebOzjwwysIGIwAg", + "name": "Tropical Nails", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1026857, + "longitude": -75.0102491, + "stars": 1.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "rVfe1LHo55A2fworkm_jVw", + "name": "Capofitto", + "address": "233 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485775068, + "longitude": -75.1450225711, + "stars": 4.5, + "review_count": 205, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "Smoking": "u'no'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "HappyHour": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "HasTV": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Music": "{'dj': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "DogsAllowed": "False" + }, + "categories": "Bars, Gelato, Breakfast & Brunch, Italian, Food, Nightlife, Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "O6hY9yenifuRXrpc4TfgsQ", + "name": "The Blue Duck", + "address": "2859 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571673033, + "longitude": -75.0304835714, + "stars": 4.0, + "review_count": 495, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "False", + "RestaurantsTableService": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New), Burgers, Breakfast & Brunch, Sandwiches", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "dRdpyxn506UOywojRIKLhg", + "name": "Penn Live Arts", + "address": "3680 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9528663845, + "longitude": -75.1963560467, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "GoodForKids": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Cinema, Jazz & Blues, Performing Arts, Arts & Entertainment, Nightlife, Music Venues", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "-V0vIgo6196MDn_x3ZaYmA", + "name": "La Creperie Cafe", + "address": "1722 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506242, + "longitude": -75.1697297, + "stars": 3.5, + "review_count": 146, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "BikeParking": "True" + }, + "categories": "Restaurants, Cafes, Creperies", + "hours": { + "Monday": "11:30-16:0", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "1hQobBzUoF-H26URYtT2WA", + "name": "Philadelphia Auto Body", + "address": "3111 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396758, + "longitude": -75.1956916, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Auto Detailing, Automotive, Auto Repair", + "hours": { + "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" + } + }, + { + "business_id": "ZMJz4ekxrcZdhBcnK4B_6g", + "name": "Kurry Shack", + "address": "2015 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229257, + "longitude": -75.1525267, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Vegetarian, Specialty Food, Health Markets, Halal, Indian, Restaurants, Food", + "hours": { + "Monday": "11:30-21:45", + "Tuesday": "11:30-21:45", + "Thursday": "11:30-21:45", + "Friday": "11:30-22:45", + "Saturday": "11:30-22:45", + "Sunday": "11:30-21:45" + } + }, + { + "business_id": "UaovDcnP0QzsmGf6vXvg9w", + "name": "Rocchino's", + "address": "239 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948818, + "longitude": -75.1456539, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Italian, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0" + } + }, + { + "business_id": "x2J-YIFeGZ-nsezzooVA9g", + "name": "Twenty 21", + "address": "2005 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541083, + "longitude": -75.1746706, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "7iv9l8x7nr_s536GiFBDXQ", + "name": "HappyBeautySalon", + "address": "514 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9346304, + "longitude": -75.1529207, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "kLS3Sth5HvO0IjrXCCvXxA", + "name": "Wawa", + "address": "19th St & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953351, + "longitude": -75.172624, + "stars": 2.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False" + }, + "categories": "Food, Automotive, Convenience Stores, Coffee & Tea, Gas Stations, Sandwiches, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "sdWuLh-auc0nC2Jy6_26AQ", + "name": "The Black Sheep Pub & Restaurant", + "address": "247 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484223, + "longitude": -75.1692901, + "stars": 3.5, + "review_count": 339, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "WiFi": "'free'", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Bars, Pubs, Irish Pub, Nightlife, Sports Bars, Restaurants, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "jFmS7S0kU5ZQHSm4jqymQw", + "name": "Vegetate", + "address": "3210 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539284, + "longitude": -75.1886632, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, American (New), Vegetarian, Vegan, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "7:30-19:30", + "Tuesday": "7:30-19:30", + "Wednesday": "7:30-19:30", + "Thursday": "7:30-19:30", + "Friday": "7:30-19:30", + "Saturday": "7:30-18:0", + "Sunday": "7:30-18:0" + } + }, + { + "business_id": "qKtkYb9lyQj_psgyg_wQlA", + "name": "Francis The Duke Barber Co.", + "address": "1001 N 2nd St, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665955, + "longitude": -75.1400594, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Barbers, Men's Clothing, Beauty & Spas, Shopping, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "AHAPYD1ADG6MD8RB1LprWA", + "name": "Armada Chauffeured Services", + "address": "7821 Bartram Ave, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8961196, + "longitude": -75.2345061, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Limos, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "DjXYVftTF62DVdTMGdCa-g", + "name": "Philly Cowshare", + "address": "915 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947793, + "longitude": -75.215701, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Meat Shops, Shopping, Food", + "hours": null + }, + { + "business_id": "eDMFTNR_o3Z2wK8WmAo77Q", + "name": "CVS Pharmacy", + "address": "3780 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.018625, + "longitude": -75.214313, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "DriveThru": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Convenience Stores, Pharmacy, Health & Medical, Food, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "fnv0PrzcWoopJKuVMpCcdA", + "name": "United Tire & Service of North East Philadelphia", + "address": "7260 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.046887, + "longitude": -75.0601876, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Tires, Automotive, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "7:0-14:0" + } + }, + { + "business_id": "AtYDSsVOZT8DLWCcTBqZmQ", + "name": "Hunnies Crispy Chicken", + "address": "223 S Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491591674, + "longitude": -75.1671322221, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Chicken Shop, American (Traditional)", + "hours": { + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0", + "Saturday": "14:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "26Zx69vOllucV5OsHXst9A", + "name": "Braid Masters", + "address": "1501 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.97731, + "longitude": -75.226152, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Extensions, Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "3CsBRtDT5WOUu8IY0mHhXw", + "name": "Slices Pizza", + "address": "4249 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0096537, + "longitude": -75.1954732, + "stars": 4.0, + "review_count": 122, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Food, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "nP4LqTcK1USiw5WnbOjW7A", + "name": "Marrakesh Express", + "address": "4407 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567155, + "longitude": -75.2100343, + "stars": 4.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Moroccan, Halal, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "hLkNIMWIy2_16u5PbO8moA", + "name": "Alison Simon - KW Philly", + "address": "728 S Broad St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9422651, + "longitude": -75.1664857, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Home Services, Real Estate, Real Estate Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "5yFIS8But4LUm_XT5Lk-Xg", + "name": "Verizon", + "address": "2329 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0469933, + "longitude": -75.0557677, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Home Services, Mobile Phones, Internet Service Providers, Electronics, Professional Services, Shopping", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "REns5fQe45Nk_D2UwQyr0w", + "name": "Barra Restaurant", + "address": "239 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948818, + "longitude": -75.1456539, + "stars": 2.5, + "review_count": 117, + "is_open": 0, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Bars, Pizza, Nightlife, Italian", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "1NCUTTp6rIyXpwUDVv9qOA", + "name": "Lazos Pizza & Grill", + "address": "2533 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9727751034, + "longitude": -75.1789870874, + "stars": 4.0, + "review_count": 176, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Pizza, American (Traditional), Restaurants, Italian", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "ry5vJHVytH0LvqgheGj-8Q", + "name": "AT&T Store", + "address": "1206 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948711, + "longitude": -75.160977, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobile Phone Accessories, Shopping, Professional Services, Internet Service Providers, Home Services, Television Service Providers, Mobile Phones", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Mgf-jjzsZh7-pjX-q-zTLQ", + "name": "Odunde", + "address": "2308 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945047, + "longitude": -75.1803019, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "HHWTWs8sa7cE3ksH3_BCTw", + "name": "Fa Caldo Caffe", + "address": "1703 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280696, + "longitude": -75.1602342, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "OutdoorSeating": "True", + "Caters": "False" + }, + "categories": "Coffee & Tea, American (New), Restaurants, Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "EneM1oBFxncaR1nQCD3gYA", + "name": "Heads & Tails Beauty Boutique", + "address": "265 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9483905, + "longitude": -75.172621, + "stars": 4.5, + "review_count": 215, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Day Spas, Beauty & Spas, Hair Removal", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "vLpLGCbAtuxFzu2ka138aA", + "name": "Barnet Fair", + "address": "139 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9532548, + "longitude": -75.14479, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "12:0-21:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "qHCfhWPyb1GXpzq9Wk3Vkg", + "name": "New England Pizza", + "address": "6728 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0400368, + "longitude": -75.0662936, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "OP-m-Kq-1aEWrrlaszFi9w", + "name": "Ramble Pizza", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "DogsAllowed": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Pizza, Food, Food Trucks", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "16:0-20:0" + } + }, + { + "business_id": "o6jpcwA4mjUXZrVdLmOVvA", + "name": "South Street Headhouse District", + "address": "2nd And Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.942175, + "longitude": -75.145318, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "TcxygVM59WZrP11nlIMIOg", + "name": "Robert's Twi-Lite Lounge", + "address": "700 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9438788, + "longitude": -75.1754597, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Bars, Jazz & Blues, Arts & Entertainment, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "lT-RDsvFR21X1_5UhFp5Dg", + "name": "Sue's Market", + "address": "275 St James Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.946233, + "longitude": -75.1455404, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer, Wine & Spirits, Restaurants, Specialty Food, Food, Sandwiches, Delis, Fruits & Veggies, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "rg6z4zFMxjj16qAnJ65gxg", + "name": "Chevyโ€™s Famous Thin Crust Pizza", + "address": "7101 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0582111, + "longitude": -75.0868253, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sandwiches, Pizza, Chicken Wings, Restaurants", + "hours": null + }, + { + "business_id": "j1TPHqEtXGSqVuVNNX8g3Q", + "name": "Papyrus", + "address": "211 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949567, + "longitude": -75.1689823, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Bridal, Cards & Stationery, Office Equipment, Shopping, Arts & Crafts, Event Planning & Services, Home & Garden, Flowers & Gifts, Home Decor, Gift Shops", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "mDgePM_zCK1dyTmozZM56w", + "name": "Red Lion Surgicenter", + "address": "240 Geiger Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1086514, + "longitude": -75.0493872, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "General Dentistry, Dentists, Health & Medical", + "hours": null + }, + { + "business_id": "mUIBtlWNPD7sz3rGGWQ1RA", + "name": "Kanella", + "address": "1001 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463322, + "longitude": -75.1579478, + "stars": 4.5, + "review_count": 579, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "u'yes_corkage'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mediterranean, Food, Greek, Restaurants, Breakfast & Brunch", + "hours": { + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "SCZcGXrZgWzubJiQuKn2JQ", + "name": "Juliet Personal Concierge", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Personal Assistants, Home Organization, Event Planning & Services, Professional Services, Home Services, Party & Event Planning", + "hours": { + "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" + } + }, + { + "business_id": "D9lnOVIpb-0F9DfcQN_rgw", + "name": "Donatucci Kitchens Baths and Appliances", + "address": "1901 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391627, + "longitude": -75.1749215, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Appliances, Kitchen & Bath, Home & Garden, Home Services, Shopping, Interior Design, Contractors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "G_Qhti4qDgecDduv2rKS6g", + "name": "Bravo Marble and Granite", + "address": "241 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9697462, + "longitude": -75.1324987, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Building Supplies", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "hxEo_CKsmSMGXcHNLR9oow", + "name": "Lulu's Pizza Bar", + "address": "236 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501019, + "longitude": -75.1451657, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "GoodForKids": "True" + }, + "categories": "Food, Restaurants, Nightlife, Pizza, Bars, Beer, Wine & Spirits", + "hours": null + }, + { + "business_id": "-QwHN9KoluPcA0YFllwFYQ", + "name": "Spike's Trophies", + "address": "2701 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0757554, + "longitude": -75.0181251, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Printing Services, Shopping, Screen Printing/T-Shirt Printing, Customized Merchandise, Local Services, Signmaking, Professional Services, Trophy Shops", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "Y9q3d7sF2k4FOxSBBHdJKQ", + "name": "32 Degrees Lounge", + "address": "10 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495951, + "longitude": -75.1439716, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'full_bar'" + }, + "categories": "Lounges, Nightlife, Bars", + "hours": null + }, + { + "business_id": "FSR2ErBcsgsRpAWtU-xxYg", + "name": "Club28 Badminton Philadelphia", + "address": "3559 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.988373, + "longitude": -75.094483, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sporting Goods, Shopping, Badminton, Active Life", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "RkI3Poei2kGVyhy21N0quA", + "name": "Brรปlรฉe Catering", + "address": "1406 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299319, + "longitude": -75.1465054, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers, Food, Venues & Event Spaces", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "_FlhRk9KjdXyE0sLxUdEBQ", + "name": "Commonwealth Kitchen", + "address": "8016 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.04186, + "longitude": -75.0275663, + "stars": 3.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "'none'" + }, + "categories": "Cheesesteaks, Restaurants, Pizza, American (Traditional)", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "i4iZdyneMKGEc729ogQhcw", + "name": "Gallagher's on the Parkway", + "address": "2200 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9644505, + "longitude": -75.1765753, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Nightlife, Sports Bars", + "hours": null + }, + { + "business_id": "dSPA4yql9vUwnYRxHiVtHA", + "name": "Makiman Sushi", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466853, + "longitude": -75.1639951, + "stars": 3.5, + "review_count": 209, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BYOBCorkage": "u'yes_free'", + "Caters": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "Utc1KFuFQ-wwLiUTj5FvmA", + "name": "Domino's Pizza", + "address": "2308 W Oregon Ave, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9178706, + "longitude": -75.1869588, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True" + }, + "categories": "Sandwiches, Pizza, Restaurants, Chicken Wings", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-1:0" + } + }, + { + "business_id": "z8W9DGBbJmg4aPfEYLHhUQ", + "name": "MissionStaff", + "address": "100 N 18th St, Ste 550, Two Logan Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955701, + "longitude": -75.169712, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Employment Agencies, Professional Services", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30" + } + }, + { + "business_id": "5dj-rJ_0gNqdhYL_MbXuXg", + "name": "California Closets - Philadelphia", + "address": "1931 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521293084, + "longitude": -75.1730516553, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Home Organization, Home Services, Shopping, Home & Garden, Furniture Stores, Interior Design", + "hours": { + "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": "12:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "Tdz-vjDRKI6LRzyaW3BMkg", + "name": "Charlie's Roast Pork", + "address": "1301 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315335419, + "longitude": -75.1496175304, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "hPeUz0HqT82fOhJ0ayyQUQ", + "name": "Flyers Skate Zone", + "address": "10990 Decatur Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0938457, + "longitude": -74.9908285, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Sporting Goods, Active Life, Shopping, Skating Rinks", + "hours": { + "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" + } + }, + { + "business_id": "gq4zw-ru_rkZ2UBIanaZFQ", + "name": "McDonald's", + "address": "1201 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9720955382, + "longitude": -75.1588091254, + "stars": 1.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Fast Food, Food, Burgers, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-4:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "-sRtgVuwRz7JJQaHiLV9zw", + "name": "Dunkin'", + "address": "7520 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.979683, + "longitude": -75.2697307, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "h0Gy4HEgeZvN9kb3_rB5JA", + "name": "New Liberty Distillery", + "address": "1431 N Cadwallader St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9737458, + "longitude": -75.1405645, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Smoking": "u'outdoor'", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "CoatCheck": "False", + "RestaurantsReservations": "True" + }, + "categories": "Food, Beer, Wine & Spirits, Distilleries, Venues & Event Spaces, Event Planning & Services, Bars, Nightlife", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "BWITd9JUXP3gSi1z3Y-z8g", + "name": "In Riva", + "address": "4116 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078746, + "longitude": -75.1924072, + "stars": 4.0, + "review_count": 729, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "HappyHour": "True", + "DogsAllowed": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Italian, Food, Nightlife, Pizza, Bars, Cocktail Bars, Beer, Wine & Spirits, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "-mY6tC7PXYOL40vc_SYX4g", + "name": "Triple One Nail Salon", + "address": "111 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0339833, + "longitude": -75.1773153, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "OTBWyXkNsBYHqIlXJXnEDA", + "name": "Starbucks", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 3.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "m4lkv5ksqtdXvlIVIftH_A", + "name": "Pearl", + "address": "1904 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517967, + "longitude": -75.1722608, + "stars": 2.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HappyHour": "True", + "RestaurantsAttire": "'dressy'" + }, + "categories": "Asian Fusion, Nightlife, Restaurants, Dance Clubs, Lounges, Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "iIpF-IdrX6y7gPI_WDVXQA", + "name": "Shine Hair & Nails", + "address": "712 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935497, + "longitude": -75.156055, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "9:30-19:30" + } + }, + { + "business_id": "4EDFnzdMBdrL4tujAA2QZQ", + "name": "Philippine Jeepney Grill", + "address": "7927 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0575027, + "longitude": -75.0525701, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "True" + }, + "categories": "Specialty Food, Food, Filipino, Restaurants, Ethnic Food", + "hours": { + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "8LonS_bxNmCDk3FWiG9lzA", + "name": "Tomo Sushi & Ramen", + "address": "228 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951923, + "longitude": -75.144335, + "stars": 4.5, + "review_count": 193, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': True, u'classy': None, u'upscale': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "Corkage": "False", + "BYOB": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True" + }, + "categories": "Japanese, Restaurants, Ramen, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-22:30", + "Saturday": "15:0-22:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "byYUYIXVxS6IUXC42THYFw", + "name": "Asian Star", + "address": "3148 Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0573352, + "longitude": -75.014859, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "None", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Thai, Restaurants, Chinese, Japanese, Sushi Bars", + "hours": { + "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": "12:0-23:0" + } + }, + { + "business_id": "cqIYskWPVQ0rz1XSG0ohxg", + "name": "City Food Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Hotels & Travel, Specialty Food, Food, Food Tours, Tours", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "jTI5Xjk27An8ceJ6VwpXiQ", + "name": "DoubleTree by Hilton Hotel Philadelphia Center City", + "address": "237 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479028004, + "longitude": -75.1640327275, + "stars": 3.0, + "review_count": 338, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Hotels, Event Planning & Services, Caterers, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "Ydo8zFl1PaO--g5zwyVyVg", + "name": "Loco Lucho's Latino Kitchen", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': None}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "None", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "None", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Spanish, Restaurants, Latin American, Puerto Rican, Caribbean, Cuban", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "IZ_syZp77K1ewunXZlVEcA", + "name": "Urban Igloo", + "address": "2015 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507146, + "longitude": -75.174364, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Home Services, Apartments, Real Estate Agents, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "xruWHK8Z5N0JWyQubLHjgA", + "name": "Potito's Italian American Pastries", + "address": "1614 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9210221, + "longitude": -75.1744313, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": { + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "Z-jOXWIaHaP1KG0cLXTkLA", + "name": "Atlantic Physical Therapy", + "address": "1208 Tasker St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9298675, + "longitude": -75.1650721, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Fitness & Instruction, Physical Therapy, Sports Medicine, Doctors, Health & Medical, Active Life, Chiropractors, Orthopedists, Yoga", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "9AYJIH69QmqyZ3qvNhvEaw", + "name": "kiki nail&spa", + "address": "5830 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0169758, + "longitude": -75.0610576, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons, Nail Technicians", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-21:0", + "Saturday": "9:30-21:0", + "Sunday": "10:0-20:30" + } + }, + { + "business_id": "TFnGJlA5l_HDdzGDkNTdTA", + "name": "Smiths Restaurant and Bar", + "address": "39 S 19th St, Ste 41", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522486027, + "longitude": -75.1716919961, + "stars": 3.0, + "review_count": 225, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Bars, Nightlife, Lounges, Restaurants", + "hours": { + "Monday": "16:0-19:0", + "Tuesday": "16:0-19:0", + "Wednesday": "16:0-19:0", + "Thursday": "16:0-19:0", + "Friday": "16:0-19:0", + "Saturday": "16:0-19:0", + "Sunday": "16:0-19:0" + } + }, + { + "business_id": "hwXDlBJdtr1cFFM8sy5oPQ", + "name": "Steve's Prince of Steaks", + "address": "3836 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549777255, + "longitude": -75.199922158, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants, American (Traditional), Cheesesteaks", + "hours": null + }, + { + "business_id": "dO4iyNK2KzLMe1kXLCskbw", + "name": "St. Declan's Well", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952126, + "longitude": -75.186438, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Nightlife, Music Venues, Irish, Pubs, Irish Pub, Arts & Entertainment, Food, Restaurants, Breweries, Bars, Beer, Wine & Spirits", + "hours": { + "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": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "sRDiX4oYa2VIHMWJx7cDzg", + "name": "Good Music Academy", + "address": "4705 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487824, + "longitude": -75.2174317, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Musical Instruments & Teachers, Shopping", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-18:0" + } + }, + { + "business_id": "2er_V-oAd7IbQ5YTY56r7A", + "name": "Bareburger - Midtown Village", + "address": "1109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489334, + "longitude": -75.1595088, + "stars": 4.0, + "review_count": 622, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Caters": "True", + "BYOB": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Burgers, American (New), Food, American (Traditional), Nightlife, Bars, Cocktail Bars, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-21:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "FmQygwfW_x8AkEWLXESezQ", + "name": "Dough Boy Pizza", + "address": "1059 Van Kirk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.036154, + "longitude": -75.0881369, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'formal'", + "OutdoorSeating": "None", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "NjUjzEvHfyRcKI7VYwLY0Q", + "name": "Cafe Habana", + "address": "102 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519011, + "longitude": -75.175709, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'" + }, + "categories": "Restaurants, Nightlife, Lounges, Bars", + "hours": null + }, + { + "business_id": "M0_Yc94Yq-G7HV8rrl9fQA", + "name": "Gaetanoโ€™s", + "address": "3820 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9604844097, + "longitude": -75.1977337, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants, Sandwiches, Cheesesteaks", + "hours": { + "Monday": "11:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-22:45", + "Thursday": "11:0-22:45", + "Friday": "11:0-22:45", + "Saturday": "11:0-22:45", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "4i4AA184MUz3wobkhdAA3A", + "name": "Rite Aid", + "address": "6201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0428585375, + "longitude": -75.1798537374, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Food, Drugstores, Convenience Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "C7ZNfxgDQWinNzRfTkevxg", + "name": "The Men's Club Barber Shop", + "address": "7617 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0513239278, + "longitude": -75.236084573, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "I5KZm-NnxYeEQsmp6nK5_w", + "name": "Las Cazuelas Restaurant BYOB", + "address": "426 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9698623, + "longitude": -75.1439919, + "stars": 4.0, + "review_count": 338, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Corkage": "False", + "Caters": "True", + "DriveThru": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': False}", + "HasTV": "True", + "HappyHour": "False", + "BYOB": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Tacos, Mexican, Latin American, Restaurants, Spanish", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Bb4mYZA4qda-2OP6Gku0SA", + "name": "PA Fabric Outlet Inc", + "address": "758 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388618, + "longitude": -75.1499877, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Home & Garden, Arts & Crafts, Shopping, Fabric Stores", + "hours": null + }, + { + "business_id": "WJN51928dvjYmaFw-zPKXg", + "name": "D'S Caribbean And American Food", + "address": "3009 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.000452, + "longitude": -75.1662905577, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caribbean, Cajun/Creole, Restaurants, Southern", + "hours": null + }, + { + "business_id": "I8eSWVzc_y9ORuKWgl07Tw", + "name": "European Wax Center", + "address": "35 South 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952, + "longitude": -75.1701969, + "stars": 4.0, + "review_count": 298, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "CoatCheck": "False", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-20:30", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:30-20:30", + "Saturday": "8:30-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "BOUtTh0u4TScrrPMBmsyPg", + "name": "Fox Philadelphia WTXF", + "address": "330 Market St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501059, + "longitude": -75.1468309, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Television Stations, Mass Media", + "hours": null + }, + { + "business_id": "P8QLcGZZOPgl9w_3ARBKiQ", + "name": "Hai Street Kitchen & Co", + "address": "125 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954687, + "longitude": -75.202181, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "Caters": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Japanese, Asian Fusion, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "PzmxNRjfOQCaKgSI8O_MKw", + "name": "Bath & Body Works", + "address": "1851 South Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9235204, + "longitude": -75.1404988, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Skin Care, Beauty & Spas, Gift Shops, Perfume, Flowers & Gifts, Shopping, Home & Garden, Day Spas, Cosmetics & Beauty Supply, Candle Stores", + "hours": { + "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" + } + }, + { + "business_id": "kTLHh3e_59XZduNwydxuAw", + "name": "Xfinity Store by Comcast", + "address": "1351 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929918, + "longitude": -75.143519, + "stars": 2.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Security Systems, Internet Service Providers, Home Services, Television Service Providers, Professional Services", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "GIq9z7R9e497A4kv6rGhPQ", + "name": "iDope Philly", + "address": "258 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.96964, + "longitude": -75.13197, + "stars": 4.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Local Services, Mobile Phone Repair, IT Services & Computer Repair, Wholesale Stores", + "hours": { + "Monday": "11:30-18:30", + "Tuesday": "11:30-18:30", + "Wednesday": "11:30-18:30", + "Thursday": "11:30-18:30", + "Friday": "11:30-18:30", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "89CEDMXZjJRHXGeVIWTwcA", + "name": "Dae Jang Geum", + "address": "1910 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0675529, + "longitude": -75.1472469, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Korean", + "hours": null + }, + { + "business_id": "WWUJTTEcN_J3AZcS8BbCiQ", + "name": "TSA Checkpoint C - Philadelphia International Airport", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8771354, + "longitude": -75.2406682, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Airport Terminals, Hotels & Travel, Airports, Public Services & Government", + "hours": null + }, + { + "business_id": "4BCKlTVLcYfBp5xwdC9z3g", + "name": "US Post Office", + "address": "6711 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0522177, + "longitude": -75.1855522, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Post Offices, Public Services & Government, Local Services", + "hours": { + "Monday": "10:0-16:30", + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-16:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:30", + "Saturday": "8:0-13:30" + } + }, + { + "business_id": "u51xmBHAyiq6BBS2pRt8qA", + "name": "The Mens Salon", + "address": "1611 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500227, + "longitude": -75.1680133, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Men's Hair Salons, Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "d9VqIHwmNj1VOfZc-gWwag", + "name": "Oregon Beauty", + "address": "1901 W Oregon Ave, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9181842, + "longitude": -75.1803717, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Skin Care, Nail Salons, Beauty & Spas, Massage, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:30-19:30", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "262I6X8Vi5PXygFmhjeLyA", + "name": "Sorrento Pizzeria And Grill", + "address": "646 S 55th St, West Phildelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9498507065, + "longitude": -75.2332982, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Pizza, Burgers, Restaurants", + "hours": { + "Monday": "17:0-4:0", + "Tuesday": "17:0-4:0", + "Wednesday": "17:0-4:0", + "Thursday": "17:0-4:0", + "Friday": "17:0-4:0", + "Saturday": "17:0-4:0", + "Sunday": "17:0-4:0" + } + }, + { + "business_id": "Vq77GKtHp2nMsiKbjumgvA", + "name": "Tony Express", + "address": "3334 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.004478, + "longitude": -75.152804, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Alcohol": "u'none'" + }, + "categories": "Food, Food Trucks, Mediterranean, Sandwiches, Restaurants, Burgers, Falafel", + "hours": { + "Monday": "8:0-18:45", + "Tuesday": "8:0-18:45", + "Wednesday": "8:0-18:45", + "Thursday": "8:0-18:45", + "Friday": "8:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "b3YIPBHXoyZU13-HFBJv8A", + "name": "The Resource Exchange", + "address": "1800 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9785353, + "longitude": -75.1396377, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Art Supplies, Arts & Crafts, Shopping, Home & Garden, Thrift Stores", + "hours": { + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "zUJMvjK6aBeQtVCowZ85-w", + "name": "Panasian Buffet", + "address": "833 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0308845266, + "longitude": -75.1041150063, + "stars": 3.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "Caters": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': None, u'classy': True, u'upscale': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Pan Asian, Japanese, Buffets, Restaurants, American (Traditional), Chinese, Seafood", + "hours": { + "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" + } + }, + { + "business_id": "vdpxxb6fxjYtJMnW_V0GZg", + "name": "Lucky Goat Coffeehouse", + "address": "888 N 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9725217939, + "longitude": -75.1792898199, + "stars": 4.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "VGrXV1lgO8skquXUyeWgig", + "name": "HelloTech", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "TV Mounting, Shopping, Home Services, Home Theatre Installation, IT Services & Computer Repair, Local Services, Computers", + "hours": { + "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" + } + }, + { + "business_id": "XQ_wVhRayMJGQT9J_WANkw", + "name": "4 Seasons Grill Mexican Restaurant", + "address": "3503 B St, Ste 4B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0030161, + "longitude": -75.1239721, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "WZPCfTRiN4ipajP7gFfziA", + "name": "The Centennial Cafe", + "address": "4700 States Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9849894194, + "longitude": -75.2161406602, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Caters": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Coffee & Tea, Food, Breakfast & Brunch, Sandwiches", + "hours": { + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "gXy0a9tOQYLGflwRtqmY5A", + "name": "Camac", + "address": "1305 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948202, + "longitude": -75.162588, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Gay Bars, Bars, Nightlife, American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "8hgo446H2HoYlZocEi1SJw", + "name": "Paris Baguette", + "address": "6773 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0546357, + "longitude": -75.1261125, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Food", + "hours": null + }, + { + "business_id": "jhkEcEtWalfkRN7UmoKv5Q", + "name": "Hudson Group", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.876472, + "longitude": -75.247366, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Print Media, Mass Media", + "hours": null + }, + { + "business_id": "6OqdrZ5rh54m-MSQK-yqdQ", + "name": "Templetown Realty", + "address": "1535 N Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977235, + "longitude": -75.1609452, + "stars": 1.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Commercial Real Estate, Home Services", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "eJhXqSKaYzDS4WBeDq8vEQ", + "name": "Bistro La Bรชte", + "address": "1703 South 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280043, + "longitude": -75.1600446, + "stars": 5.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "French, Restaurants", + "hours": { + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:30", + "Sunday": "10:30-14:30" + } + }, + { + "business_id": "ne4NHcrVU8ZakOOg-lnB7Q", + "name": "The Monster Minders", + "address": "916 League St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368239, + "longitude": -75.1589286, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Services, Pet Sitting", + "hours": null + }, + { + "business_id": "6D_ZBVcUPje3IyVg1n_Edw", + "name": "Jin Jae", + "address": "28 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522818, + "longitude": -75.1735853, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Food, Fruits & Veggies", + "hours": { + "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": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "liy3id4Wj1AaIduwETiVSQ", + "name": "Sam's Pizza", + "address": "5450 Rutland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0310045, + "longitude": -75.0836118, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "s_ypQXJm1d94PfmY6JLzRA", + "name": "Bargain Thrift Center", + "address": "5245 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0320419, + "longitude": -75.167607, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Thrift Stores, Shopping", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "rAUaBd1BMOrY9K6kZzcEEw", + "name": "Queen Nails & Spa", + "address": "1701 Welsh Rd, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0859109155, + "longitude": -75.0394481421, + "stars": 2.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas, Massage", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "6jNFUIKiCCKnLCpGJpkyrg", + "name": "McDonald's", + "address": "710 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0323183, + "longitude": -75.106562376, + "stars": 1.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Fast Food, Restaurants, Food, Coffee & Tea, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "YJ4jzBFJU2EJhM-zatdLRQ", + "name": "Dunkin'", + "address": "300 Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0068644, + "longitude": -75.1230914, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "Hj_mWzPoyyX1es-a_x1eXA", + "name": "Philadelphia Photographics", + "address": "129 S 13th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495566, + "longitude": -75.1617091, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Arts & Entertainment, Shopping, Photography Stores & Services", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "M2mkUv39B6E_1UOC24gPqw", + "name": "Port Richmond Books", + "address": "3037 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.981066, + "longitude": -75.1044119, + "stars": 5.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "egtZ6tRJV-MtSsjQESTM-w", + "name": "Royal Jewelers", + "address": "1369 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.085936, + "longitude": -74.9626337, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "zwTmOj4B_OVPMTMYijQiKg", + "name": "Queen Sheba", + "address": "4511 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9489954358, + "longitude": -75.2135489881, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "Music": "{'dj': True, 'live': True, 'video': False, 'jukebox': True}", + "RestaurantsPriceRange2": "1", + "Open24Hours": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': False}", + "Smoking": "u'outdoor'", + "CoatCheck": "False", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WiFi": "u'no'", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True" + }, + "categories": "Nightlife, Restaurants, Sports Bars, Bars, Ethiopian", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "UhIdCsdiWS4K0EkbvVdlAw", + "name": "Ed's Pizza House", + "address": "6047 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0474259, + "longitude": -75.1507643, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-12:0", + "Thursday": "11:0-12:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "BVe-jR0szZPC6o7r15jp4g", + "name": "Enzo's", + "address": "120 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505432, + "longitude": -75.1660506, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (New), Restaurants, Food", + "hours": null + }, + { + "business_id": "hBoXl-5Evn7ScoY65u2TwQ", + "name": "Hollywood Nails", + "address": "2122 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9238055, + "longitude": -75.170168, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "Bih0eT_lbbCUwKmGYpX0hw", + "name": "Ricci's Hoagies", + "address": "1165 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9353601, + "longitude": -75.1615836, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Corkage": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Caters": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Italian, Sandwiches", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "qot32tHVWZpiJibLTwQGyw", + "name": "Pina's Pizza", + "address": "8919 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0694581, + "longitude": -75.2398454, + "stars": 3.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': None, 'classy': False, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Italian, Pizza, Seafood", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "UaqDNhnmVFhFkVwcp_mBRQ", + "name": "Keep It Clean With Raylene", + "address": "2972 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.980386, + "longitude": -75.1067042, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Cleaning, Party & Event Planning, Caterers, Professional Services, Home Services, Office Cleaning, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "u-MF7O0mULjBnjz71fNplQ", + "name": "Advanced Urgent Care", + "address": "5058 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9982751, + "longitude": -75.2316345, + "stars": 2.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Health & Medical", + "hours": null + }, + { + "business_id": "RI33oswGDkIsc0fuQ8GzjA", + "name": "Oregon Steaks", + "address": "2654 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.91579, + "longitude": -75.1653879, + "stars": 3.5, + "review_count": 184, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "Alcohol": "u'none'", + "DogsAllowed": "True" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches, Steakhouses, Local Flavor", + "hours": { + "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" + } + }, + { + "business_id": "Bu-hZZaseWQ6wb15DpkLOA", + "name": "Planet Fitness", + "address": "501 Adams Ave, Unit 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.039544, + "longitude": -75.108653, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tanning, Fitness & Instruction, Gyms, Active Life, Beauty & Spas, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "ta7CjdjmH9cVcwc8AQyUFg", + "name": "European Wax Center", + "address": "203 South 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948571, + "longitude": -75.161924, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "HasTV": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "HappyHour": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Waxing, Beauty & Spas, Hair Removal, Skin Care, Eyebrow Services", + "hours": { + "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" + } + }, + { + "business_id": "-Be75AsLHhBrrDYZwfwSCA", + "name": "Gutter Gurus", + "address": "431 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0770777, + "longitude": -75.0837417, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Roofing, Home Services, Gutter Services, Siding", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "gBaiZpCFNEx0gIJQrHWT5w", + "name": "Elite Flooring Installations", + "address": "1344 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0165613, + "longitude": -75.1488018, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Carpet Cleaning, Carpeting, Local Services, Flooring, Home Services, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "YWfOxkw6ZqMOsVm3hsv2ig", + "name": "New Happy Nails", + "address": "7630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0671763146, + "longitude": -75.1967356429, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "1pkuCWlH3iEuUAQVHpIuHQ", + "name": "China Star", + "address": "425 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9702483665, + "longitude": -75.144223438, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Cantonese, Restaurants, Chinese, Szechuan", + "hours": null + }, + { + "business_id": "ukt4QdEiwDubi991eF75TA", + "name": "Paseo Tapas Bar", + "address": "726 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9684914, + "longitude": -75.176962, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Tapas Bars, Restaurants", + "hours": { + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "rjuWz_AD3WfXJc03AhIO_w", + "name": "The N Crowd", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "BikeParking": "True", + "Smoking": "u'no'" + }, + "categories": "Performing Arts, Arts & Entertainment, Nightlife, Comedy Clubs", + "hours": { + "Monday": "0:0-0:0", + "Friday": "19:15-21:15" + } + }, + { + "business_id": "cCP7ued6F6ScOpQSVs-Mrw", + "name": "Linda's Beauty Salon", + "address": "8758 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0493844, + "longitude": -75.0122875, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "ZBaetx-wjXvQVzfB_OnASQ", + "name": "The Rotisserie At the Porch", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954877, + "longitude": -75.18207, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Caters": "False", + "BikeParking": "True" + }, + "categories": "Beer Gardens, Food, Food Trucks, Nightlife", + "hours": null + }, + { + "business_id": "JUVtr9lqM1dCaiLPFPCeBw", + "name": "Daydreams Gentlemen's Club", + "address": "5200 Unruh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0183873, + "longitude": -75.0424964, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Bars, Adult Entertainment, Event Planning & Services, Nightlife, Arts & Entertainment, Sports Bars, Strip Clubs, Party & Event Planning, Dance Clubs", + "hours": { + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-0:0", + "Saturday": "18:0-0:0", + "Sunday": "18:0-0:0" + } + }, + { + "business_id": "CTCYk-k84VA5vCkRgv03Dg", + "name": "SLT - Philadelphia", + "address": "1625 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501392, + "longitude": -75.168616, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "True" + }, + "categories": "Gyms, Fitness & Instruction, Trainers, Cardio Classes, Pilates, Active Life", + "hours": null + }, + { + "business_id": "HFuAKE0uZ-frIMjroeA-cA", + "name": "SET NoLibs", + "address": "1030 N 2nd St, Unit 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671493, + "longitude": -75.1404232, + "stars": 4.0, + "review_count": 108, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Mexican, Bars, Restaurants, Asian Fusion, Lounges, Nightlife, Salad, Tacos", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "aAMop7hpw7rtLL0bnS5lLQ", + "name": "La Cucina at the Market", + "address": "1206 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953663, + "longitude": -75.159889, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cooking Schools, Education, Party & Event Planning, Event Planning & Services, Specialty Schools", + "hours": null + }, + { + "business_id": "u2v1Ml7xb-l5NUmOk5bcNA", + "name": "Wilensky Locks & Hardware", + "address": "1113 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93549, + "longitude": -75.15664, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Home Services, Home & Garden, Hardware Stores, Keys & Locksmiths, Door Sales/Installation, Shopping, Building Supplies", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "qWTzwt7IyrElM2g9nVHm2Q", + "name": "Super Acucare Inc", + "address": "46 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531797, + "longitude": -75.1565947, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Massage, Acupuncture, Health & Medical", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "XLEgHW4tdk6VMt9uy10aog", + "name": "Raxx Vintage Clothing", + "address": "534 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941724, + "longitude": -75.152021, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Thrift Stores, Used, Vintage & Consignment, Shopping, Fashion", + "hours": { + "Monday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "E-DcL1u330qwvoxXhipmUQ", + "name": "George's Sandwich Shop", + "address": "900 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388315986, + "longitude": -75.1579846257, + "stars": 4.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Italian, Cheesesteaks, Restaurants, Sandwiches", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "GUNpbcLvHZLE3NpOifjNUQ", + "name": "Slate", + "address": "102 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519011, + "longitude": -75.175709, + "stars": 3.0, + "review_count": 124, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Bars, American (New), Nightlife", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "8ZcVHh6cFEd1Nhqgqp11Hw", + "name": "Relentless Fitness", + "address": "249 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9468869, + "longitude": -75.157476, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Gyms, Health & Medical, Active Life, Fitness & Instruction, Beauty & Spas, Trainers", + "hours": null + }, + { + "business_id": "Cv0yn-dxwg9lJVhu4i66_Q", + "name": "Oxford Nails", + "address": "5311 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0288084, + "longitude": -75.0849616, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "9EgoCSRFfXUEGiJWFQLJ1w", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "180 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969236, + "longitude": -75.138876, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "eFvzHawVJofxSnD7TgbZtg", + "name": "Good Karma Cafe", + "address": "928 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446092, + "longitude": -75.1578331, + "stars": 4.0, + "review_count": 249, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Caters": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Cafes, Coffee & Tea, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "CIKlh4vEQy6d1lanzmDQXw", + "name": "2u Cleans", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Car Wash, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "teGUSCn6Vlrs07qIgilFHA", + "name": "Oriental Kitchen", + "address": "919 N 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.971725, + "longitude": -75.1657105, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsReservations": "True" + }, + "categories": "American (Traditional), Restaurants, Chinese", + "hours": { + "Wednesday": "12:0-12:30", + "Thursday": "12:0-12:30", + "Friday": "12:0-12:30", + "Saturday": "12:0-12:30", + "Sunday": "12:0-12:30" + } + }, + { + "business_id": "6RUY3l7pQKk1HhM3uwGQSA", + "name": "Philadelphia Chinatown", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "m1DE-V1QWEkQ_vtwB51rzQ", + "name": "Roto-Rooter Plumbing & Water Cleanup", + "address": "4821 Longshore Ave, Unit C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0243951, + "longitude": -75.0417519, + "stars": 3.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Plumbing, Home Services, Water Heater Installation/Repair, Damage Restoration", + "hours": { + "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" + } + }, + { + "business_id": "5S3Cc7EsEo66BSL7s6iF-w", + "name": "Whirled Peace Frozen Yogurt & Smoothies", + "address": "4321 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253, + "longitude": -75.2226663, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "Alcohol": "'beer_and_wine'", + "Caters": "False" + }, + "categories": "Bubble Tea, Ice Cream & Frozen Yogurt, Food, Juice Bars & Smoothies", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "KuLi91b-N_0XY_3IA72RJQ", + "name": "MexiPhilly Food Cart", + "address": "37TH St And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510287, + "longitude": -75.1972745, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food", + "hours": null + }, + { + "business_id": "NOPk3f5TedR-fw9HO4VJlQ", + "name": "Athenian Restaurant", + "address": "6824 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0259565956, + "longitude": -75.0442917475, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WiFi": "'no'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, American (New), Diners, Restaurants, American (Traditional)", + "hours": { + "Monday": "6:0-18:30", + "Tuesday": "6:0-18:30", + "Wednesday": "6:0-18:30", + "Thursday": "6:0-18:30", + "Friday": "6:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-18:30" + } + }, + { + "business_id": "7jTaLGVD3jy9VF7lxPEgww", + "name": "Zoey's Yogurt Bar", + "address": "1205-7 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9337352394, + "longitude": -75.1589332072, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Food, Bars, Ice Cream & Frozen Yogurt, Nightlife, Hookah Bars", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-22:0" + } + }, + { + "business_id": "qT37Sz23qPG08y9Q97QVnw", + "name": "Penn Micro Center Inc", + "address": "33 S 42nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563922733, + "longitude": -75.206219852, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, IT Services & Computer Repair, Mobile Phone Repair, Computers, Professional Services, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "D6xXxefPLQ70JhDKEQk_3Q", + "name": "Ben Hair Salon", + "address": "113 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539499882, + "longitude": -75.156021975, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "zYty3y2eQZQfdCSzyUUbzw", + "name": "Valley Shepherd Creamery", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953168623, + "longitude": -75.1589321091, + "stars": 4.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Grocery, Specialty Food, Cheese Shops, Food, Restaurants", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "eA_FpMeiRDk7E1Zte_CHgw", + "name": "Stan's Used Tires", + "address": "4730 Paschall Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9410333, + "longitude": -75.2093666, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive", + "hours": null + }, + { + "business_id": "c6r29yLfVhZaSyrtsNVLRQ", + "name": "The Palace of Indian", + "address": "1533 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299499, + "longitude": -75.1629175, + "stars": 4.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:30", + "Saturday": "16:0-22:30", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Az1Xl-Wz_VXgswIW4OyAGQ", + "name": "Shops At Liberty Place", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519291288, + "longitude": -75.1679449332, + "stars": 3.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Shopping Centers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "H1LPlb5J4K-TmSRruICJug", + "name": "Pastore Auto Tags & Insurance", + "address": "6774 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0419949, + "longitude": -75.2262331, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'" + }, + "categories": "Auto Insurance, Professional Services, Legal Services, Insurance, Lawyers, Financial Services, Registration Services, Notaries, Automotive, Local Services", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-14:30" + } + }, + { + "business_id": "mNu6xYO2bn-rvacN12h9WA", + "name": "In & Out Pizza", + "address": "7600 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0700275, + "longitude": -75.1575821, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-1:0", + "Saturday": "8:0-1:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "SIoCIxjn4jLt2O-4DajWJw", + "name": "Mac's Tavern", + "address": "226 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949794, + "longitude": -75.144739, + "stars": 3.5, + "review_count": 446, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "HasTV": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Restaurants, American (New), Bars, Pubs", + "hours": { + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "KuMz8-0-uEFlaNQrzsD_9g", + "name": "EMCO Tech", + "address": "7934 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0310785, + "longitude": -75.0220839, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Home Services, Heating & Air Conditioning/HVAC, Plumbing, Water Heater Installation/Repair, Local Services, Air Duct Cleaning", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "KrJyAjAUnZZB0nbVAroSCQ", + "name": "Atlantis Gentlemen's Club", + "address": "3813 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95537, + "longitude": -75.19884, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'very_loud'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "Pd-r2emx-k0GB3f2Iv4-zA", + "name": "Roosevelt Inn", + "address": "7600 Roosevelt Blvd, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0507104, + "longitude": -75.0519427, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "yBLLLb6mD4fI50ew95xP0A", + "name": "Party City", + "address": "10500 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0990929, + "longitude": -75.0110047, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Costumes, Arts & Crafts, Party Supplies, Event Planning & Services", + "hours": null + }, + { + "business_id": "E_WLgiNMLk1dH7QYd_grmg", + "name": "Novo Salon", + "address": "1609 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295764, + "longitude": -75.1635511, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "3kiB39JzdovdlOhQj-nMCw", + "name": "Pho Hoa Noodle Soup", + "address": "1111 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9366969, + "longitude": -75.1614094, + "stars": 3.5, + "review_count": 116, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "Caters": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "83IeQHroXEctmMpK19TJKw", + "name": "The Richel D'Ambra Spa & Salon", + "address": "10 Avenue of the Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512980845, + "longitude": -75.1642701024, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Salons, Day Spas, Beauty & Spas", + "hours": { + "Monday": "8:0-20: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": "8:0-19:0" + } + }, + { + "business_id": "m3KWIfQQFGcWdX1fyy51Bw", + "name": "Delancey Internal Medicine Washington Square", + "address": "800 Walnut St, 17th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19108", + "latitude": 39.9480428828, + "longitude": -75.1543801278, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Internal Medicine, Doctors", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-16:30", + "Saturday": "8:0-12:30" + } + }, + { + "business_id": "rNIb5eQtEHf8UvGCISvuYw", + "name": "Instant Cash", + "address": "6208 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0357184, + "longitude": -75.2177592, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Banks & Credit Unions, Jewelry, Gold Buyers, Shopping, Pawn Shops, Financial Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "i_5PaxI8DK9EErsHBdwP1A", + "name": "Tiffin-Etc", + "address": "712 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701516, + "longitude": -75.1488281, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "HasTV": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "PwJWwvIhn1L9yjoUnPyOAA", + "name": "Atlantic Books", + "address": "920 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9426863, + "longitude": -75.1578142, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "UtfuLzO7c2N0m8oogeu_SQ", + "name": "Philadelphia Training Academy", + "address": "831-33 Ellsworth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352289563, + "longitude": -75.1583170242, + "stars": 4.0, + "review_count": 112, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Gun/Rifle Ranges, Specialty Schools, Education, Active Life", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "HThZ53HBR4UktXa2TyCaaQ", + "name": "Liz Nail Salon", + "address": "2017 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950843, + "longitude": -75.174373, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-5:0" + } + }, + { + "business_id": "pEa6tpYyl2NDOPfY1OfFyQ", + "name": "Milk + Honey Studio", + "address": "1600 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9742247, + "longitude": -75.1335249, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Eyebrow Services, Hair Extensions, Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "pj8Y-5vfbRitnnm2xJFH9w", + "name": "Jamaican Jerk Hut", + "address": "1436 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944275, + "longitude": -75.166787, + "stars": 2.5, + "review_count": 276, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Corkage": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "'none'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "xYOETY4C57qgs0ldtDYX_Q", + "name": "Moon Flower House", + "address": "6414 Frankford Ave, Unit 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0295791831, + "longitude": -75.0583349168, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Burgers, Restaurants, Sandwiches", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:30" + } + }, + { + "business_id": "wADYKG5qIyJcq7iisTPlPg", + "name": "All About Hair", + "address": "42 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522679, + "longitude": -75.1720602, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Waxing, Hair Salons, Barbers, Hair Removal, Beauty & Spas", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "dE2gEdVmQNgLNkJAoiGSZQ", + "name": "Nail Art Bar", + "address": "6121 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0342014, + "longitude": -75.215669, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "XpTNCVbO5wL1DtDyKzKqfA", + "name": "Holmesburg Bakery", + "address": "7935 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0410115, + "longitude": -75.0284172, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food, Bakeries", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-13:0" + } + }, + { + "business_id": "eoooZrFnFZhRVuBH_LGcQw", + "name": "A Taste of Jamaica", + "address": "7169 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0638727, + "longitude": -75.1524294, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True" + }, + "categories": "Caribbean, Southern, Restaurants", + "hours": { + "Tuesday": "11:30-19:30", + "Wednesday": "11:30-19:30", + "Thursday": "11:30-19:30", + "Friday": "11:30-21:0", + "Saturday": "11:30-21:0" + } + }, + { + "business_id": "skW4boArIApRw9DXKXukkA", + "name": "Champps Penn's Landing", + "address": "2100 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9206642975, + "longitude": -75.1416778564, + "stars": 2.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "American (Traditional), Sandwiches, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "fYXCk6Usfd2wzyaBBIM4dw", + "name": "Rasavat", + "address": "9321 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0859735, + "longitude": -75.0463612, + "stars": 5.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "HasTV": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "m1ohyfs8gcS9X-ZQ3Coj2Q", + "name": "Chez Yasmine", + "address": "3740 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510399, + "longitude": -75.1989093, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'none'" + }, + "categories": "Food, Street Vendors, Food Trucks, Specialty Food", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "DJZQCN0NUej_EtviN4rUlg", + "name": "Ulta Beauty", + "address": "7600 City Line Ave, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.978981, + "longitude": -75.27146, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Skin Care, Cosmetics & Beauty Supply, Hair Salons, Beauty & Spas", + "hours": { + "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-18:0" + } + }, + { + "business_id": "6LCZLGa09Qifn6rG7-DNrg", + "name": "Erawan Thai Cuisine", + "address": "925 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953793, + "longitude": -75.155832, + "stars": 3.5, + "review_count": 180, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Thai, Restaurants", + "hours": { + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-21:30", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "bHzHDhAtgyueG2UwqKutqw", + "name": "Ellis Prescription Pharmacy", + "address": "2441 West Brown Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9702469, + "longitude": -75.1778739, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Health & Medical, Drugstores, Pharmacy", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-14:0" + } + }, + { + "business_id": "yD6cXmbmhRxcd3Y84Ry5wA", + "name": "Special Occasion Alterations", + "address": "1309 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9304352, + "longitude": -75.1668614, + "stars": 4.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "_kSaLnFZIEpOZEg6ZIxKvQ", + "name": "High Point Cafe", + "address": "1925 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673949, + "longitude": -75.1696764, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Creperies, Bakeries, Cafes, Food, Restaurants", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "6:30-17:0", + "Sunday": "6:30-17:0" + } + }, + { + "business_id": "iJOwwuhHP_0BCHmpmJ8l4Q", + "name": "McDonald's", + "address": "5945 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9307946183, + "longitude": -75.2276433154, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Food, Restaurants, Coffee & Tea, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "I6DZQ3EvWniopa1O35titg", + "name": "Kristopher Barillas - BHHS Fox & Roach, Realtors", + "address": "530 Walnut St, Ste 480", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947353, + "longitude": -75.150958, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Home Services, Real Estate Agents", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "B2TRCYPklp7a8Ipcz5y-BA", + "name": "Halal Gyro King", + "address": "1 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95187, + "longitude": -75.159913, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'breakfast': False, 'brunch': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "False" + }, + "categories": "Food Trucks, Halal, Food, Street Vendors, Sandwiches, Middle Eastern, Food Stands, Restaurants", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "BWo8s2skxQGZUgVooK2HZQ", + "name": "\"No Macarena\" DJ & Custom Music Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0703334, + "longitude": -75.2070644, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, DJs", + "hours": null + }, + { + "business_id": "1b81nmM0JQJc2ogciZzfhw", + "name": "Wag the Dog", + "address": "1730 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9778045, + "longitude": -75.1437297, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Dog Walkers, Pet Services, Pets, Pet Photography", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "fzZxqe9XAtKrx10959x1Rg", + "name": "Oh So Good", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530859, + "longitude": -75.1722814, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "HasTV": "False", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Asian Fusion, Barbeque, Sandwiches, Restaurants, Soul Food, Delis, Food, Desserts, American (New), Breakfast & Brunch, Buffets, American (Traditional)", + "hours": { + "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": "8:0-14:0" + } + }, + { + "business_id": "-rGocJekjtLnrn3MYKxJVg", + "name": "Joey C's Towing and Collision", + "address": "3065 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9815576, + "longitude": -75.0926421, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Auto Repair, Automotive, Towing", + "hours": { + "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" + } + }, + { + "business_id": "wAUkOyvAoyE6F7zuQ3g_UA", + "name": "Flow State CoffeeBar", + "address": "2413 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.981907, + "longitude": -75.127012, + "stars": 5.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Gelato, Restaurants, Cafes, Food, Coffee & Tea", + "hours": { + "Friday": "10:0-13:0", + "Saturday": "10:0-13:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "YSQkA13M3dVSrWynCqybaA", + "name": "The Pink Dolphin", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399345, + "stars": 3.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Food, Restaurants, Grocery, Delis, Specialty Food, Health Markets", + "hours": null + }, + { + "business_id": "J-ciDDEdIHMcChGIyKZnOg", + "name": "Cake Life Bake Shop", + "address": "1306 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970468014, + "longitude": -75.1345396622, + "stars": 4.5, + "review_count": 241, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "False", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Caterers, Cafes, Event Planning & Services, Food, Cupcakes, Bakeries, Restaurants, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "8:0-12:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "XBdaG2kQ2Iz9VNGPZokjYg", + "name": "Maria's Ristorante on Summit", + "address": "8100 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0567171, + "longitude": -75.2363521, + "stars": 3.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Italian, Pizza, Restaurants", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "MKHJy86fkFnMAhZac6wuLw", + "name": "Chuck E. Cheese", + "address": "9175 Roosevelt, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.076239, + "longitude": -75.03146, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Pizza, Venues & Event Spaces, Arcades, Arts & Entertainment, Event Planning & Services, Party & Event Planning, Restaurants, Active Life, Indoor Playcentre, Kids Activities", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "WIv5kTb_P3jnngPkMeRRNw", + "name": "Jay's Favorite Sushi Bar", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950303, + "longitude": -75.166856, + "stars": 3.5, + "review_count": 97, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "13:0-21:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "C_EtrXTygRX5RTUOKtO6Dg", + "name": "Copabanana", + "address": "4000 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9515586, + "longitude": -75.2032578, + "stars": 3.0, + "review_count": 334, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Nightlife, Bars, Restaurants, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "DmaGQqKOjxkJtHjnxuXjAw", + "name": "Barclay Caterers", + "address": "10960 Dutton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.09118, + "longitude": -74.98811, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": null + }, + { + "business_id": "10wt8eSXI_PZfl9dRIiWmg", + "name": "Rangoli: Vibrant Flavors of India", + "address": "10863 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.110566, + "longitude": -75.0238988, + "stars": 4.0, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Pakistani, Specialty Food, Halal, Restaurants, Indian, Health Markets, Vegetarian, Vegan, Ethnic Food, Food", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "AbtYqoBGuvlWmR1gU0c3XA", + "name": "Foodery", + "address": "324 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9448121788, + "longitude": -75.158305077, + "stars": 3.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Delis, Beer, Wine & Spirits, Restaurants", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "WFRro-8uIBpKoJ1VSKrpdw", + "name": "Berry Sweet Frozen Yogurt", + "address": "901 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942777, + "longitude": -75.1572649, + "stars": 4.0, + "review_count": 73, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Coffee & Tea, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "7x76ngzub3j4PijMHm71nQ", + "name": "Fratelly Pizza & Restaurant", + "address": "2383 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0478786128, + "longitude": -75.0593309498, + "stars": 2.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Italian, Sandwiches, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "KRhAC2scnvxlGuiiOKfzDQ", + "name": "Birchtree Catering", + "address": "4500 Worth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.008612, + "longitude": -75.081733, + "stars": 5.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Planning, Local Flavor, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "MeptjglT9R6k0PyQRq5-nA", + "name": "Toys R Us", + "address": "2703 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9143429, + "longitude": -75.1526324, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Toy Stores, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "ILi7_ep3fBfUZdJrXLGW2g", + "name": "Midas", + "address": "8141 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0763604, + "longitude": -75.158563411, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Oil Change Stations, Automotive, Auto Repair", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "vA5MHe9LqNQcp8k_CaFkHg", + "name": "Dagwood's Pub", + "address": "4625 Linden Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0506387, + "longitude": -74.9997615712, + "stars": 4.0, + "review_count": 123, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Restaurants, Pubs, Nightlife, Bars, Seafood", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "OvMc0NNMFdiHVoU5l_y6Iw", + "name": "Bed Bugs, Etc. Pest Control", + "address": "1442 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944624, + "longitude": -75.166901, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Pest Control, Local Services, Home Cleaning", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "pzhvHwe_3-4JYTC-wXDJpA", + "name": "Jimmies Cupcake", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19004", + "latitude": 40.0131418, + "longitude": -75.2304038, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Trucks, Food, Cupcakes, Street Vendors", + "hours": { + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "NDHgJsy-4Lb6WhERPXPs0A", + "name": "Alenaโ€™s Cafe", + "address": "6669 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0513741, + "longitude": -75.1849412, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Restaurants", + "hours": { + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "7:30-15:0", + "Sunday": "7:30-15:0" + } + }, + { + "business_id": "owQgiBoTu821TG8d-w5shg", + "name": "Fleisher Art Memorial", + "address": "719 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391884, + "longitude": -75.1553361, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": null, + "categories": "Art Classes, Art Schools, Community Service/Non-Profit, Local Services, Venues & Event Spaces, Education, Event Planning & Services, Specialty Schools", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "X5fWO9e82EICHXzzs6eQMg", + "name": "Rescue Spa", + "address": "1601 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500123, + "longitude": -75.1676889, + "stars": 4.5, + "review_count": 476, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True" + }, + "categories": "Makeup Artists, Laser Hair Removal, Cosmetics & Beauty Supply, Hair Removal, Day Spas, Medical Spas, Shopping, Beauty & Spas, Skin Care, Massage Therapy, Hair Salons, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "PvJB9euN4qsH0yzTBzWpmw", + "name": "Cristalvetro, Ltd", + "address": "1143 N Third St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96879, + "longitude": -75.141467, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home & Garden, Furniture Stores", + "hours": null + }, + { + "business_id": "gIdsoqeal31OEuBXhAaPPw", + "name": "Cornerstone Inn", + "address": "6080 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.033236, + "longitude": -75.215314, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "WiFi": "'no'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "CoatCheck": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Smoking": "u'outdoor'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Breakfast & Brunch, American (Traditional), American (New), Restaurants, Sports Bars, Bars, Nightlife", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "aplm3-xr1RRgHAMdDS2OUw", + "name": "Best Exterminating", + "address": "191410000 N Broad St Phila", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0427954219, + "longitude": -75.1440428667, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Home Services, Home Inspectors, Pest Control", + "hours": null + }, + { + "business_id": "1i78w_Du0UIgwnD7iFckQQ", + "name": "Wells Fargo Bank", + "address": "2710 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9142544, + "longitude": -75.1526703, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "iJfAoWtETn-F8WjC4g_hgw", + "name": "Conversion", + "address": "38 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94915, + "longitude": -75.146097, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Gift Shops, Furniture Stores, Flowers & Gifts, Antiques, Shopping", + "hours": { + "Thursday": "12:0-16:0", + "Friday": "12:0-16:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "WA2dW8HafdFte-dEWStZzg", + "name": "Kato's Cajun", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Cajun/Creole, Restaurants", + "hours": null + }, + { + "business_id": "F1hbIYD1lNzbprtckd7bVg", + "name": "Venuto's Old World Pizza", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322069, + "longitude": -75.2142546, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "-OIUunijjcq_ZzyyQhPPFQ", + "name": "Zorba's Taverna", + "address": "2230 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671642, + "longitude": -75.1748969, + "stars": 4.5, + "review_count": 510, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False" + }, + "categories": "Restaurants, Greek, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "ZrELIjB9mi7IkvGyFdIpNQ", + "name": "American Dental Associates - Philadelphia", + "address": "3428 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0433943559, + "longitude": -75.0303743436, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Cosmetic Dentists, Endodontists, Orthodontists, Health & Medical, Dentists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "3nM3QNlex3OkNqM7FZTFPg", + "name": "Heng Fa Food Market", + "address": "130 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954417, + "longitude": -75.156357, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ethnic Food, Food, Specialty Food, International Grocery, Grocery, Imported Food", + "hours": null + }, + { + "business_id": "hxGPQvQLwMQzOz72Cx8UGg", + "name": "Woolly Mammoth", + "address": "430 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416322, + "longitude": -75.1503319, + "stars": 3.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "BikeParking": "True", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "Corkage": "False", + "BYOB": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True" + }, + "categories": "Karaoke, Nightlife, Bars, Sports Bars, Music Venues, Arts & Entertainment", + "hours": { + "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" + } + }, + { + "business_id": "piLUryfru20TQEafOj4QRA", + "name": "CrossFit Renaissance", + "address": "3251 Cedar St, Unit B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9886986, + "longitude": -75.1037277, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Trainers, Gyms, Boot Camps, Active Life, Interval Training Gyms, Fitness & Instruction", + "hours": { + "Monday": "5:30-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "5:30-19:0", + "Thursday": "8:0-19:0", + "Friday": "5:30-19:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "5KG0RjpG933SOPvBExKouw", + "name": "Paper Moon", + "address": "520 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420437, + "longitude": -75.149205, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cards & Stationery, Arts & Crafts, Gift Shops, Flowers & Gifts, Shopping, Event Planning & Services", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "VJEzpfLs_Jnzgqh5A_FVTg", + "name": "Jasmine Rice - Rittenhouse", + "address": "306 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9470839462, + "longitude": -75.1682054067, + "stars": 3.5, + "review_count": 307, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Soup, Thai, Restaurants, Salad", + "hours": { + "Monday": "13:30-22:30", + "Tuesday": "13:30-22:30", + "Wednesday": "13:30-22:30", + "Thursday": "13:30-22:30", + "Friday": "13:30-22:30", + "Saturday": "15:0-22:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "1UNorskttXSWuEcgzKzXcA", + "name": "Xochitl", + "address": "408 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428742, + "longitude": -75.1456449, + "stars": 3.5, + "review_count": 453, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WiFi": "u'no'", + "WheelchairAccessible": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': False, u'dinner': True, u'latenight': None, u'dessert': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Lounges, Restaurants, Asian Fusion, Mexican, Latin American, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-23:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "0qbMXG1Aw3a2beoQhU52lQ", + "name": "Al Sham Restaurant - Philadelphia", + "address": "306 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0300231, + "longitude": -75.1803247, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "HasTV": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': None}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Halal, Kebab, Middle Eastern", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "WYrITmacXpS3twSpf6SkPg", + "name": "Mr Wish", + "address": "5520 Whitaker Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0353731864, + "longitude": -75.0997766417, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Bubble Tea", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "9aQYLiO49rX5OHJi46J0Gw", + "name": "Andrew F. Gillespie Tree Service, Landscape Design & Install", + "address": "8738 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.070294, + "longitude": -75.2352582, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Tree Services, Home Services, Landscaping", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "NoaeOhk_wLceJqFruhRX1A", + "name": "The Set Table", + "address": "3572 Indian Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0098914, + "longitude": -75.1905348, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'" + }, + "categories": "American (New), Breakfast & Brunch, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "hUX1yAimviBIhb21D_KtcQ", + "name": "Cactus Restaurant & Bar", + "address": "4243 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0245627, + "longitude": -75.2209958, + "stars": 3.0, + "review_count": 312, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForDancing": "False", + "Caters": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Mexican, Restaurants, Bars, Tex-Mex, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "RVLF2RaStLkJiQCqBHknDw", + "name": "Mom Mom's Kitchen and Polish Food Cart", + "address": "1505 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439859, + "longitude": -75.167449, + "stars": 5.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "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': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True" + }, + "categories": "Food, Polish, Food Trucks, Street Vendors, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "0JoB3ThhI-DS78-1Ks1EUQ", + "name": "Hibachi 2 Go", + "address": "1414 Synder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9242167, + "longitude": -75.1703845, + "stars": 3.5, + "review_count": 105, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-21:30", + "Saturday": "10:30-21:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "D4AJVjAiJULF04BjN7bhiA", + "name": "Snackbar", + "address": "253 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948831, + "longitude": -75.1740669, + "stars": 3.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True" + }, + "categories": "Bars, Tapas Bars, Nightlife, Wine Bars, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "p2SakAsYqdAvLqPpAhkekw", + "name": "Dunkin' Donuts", + "address": "14254 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1346700008, + "longitude": -75.0082556575, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Donuts, Bagels, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "SVV1VmybJGXGge6nFuHy_A", + "name": "Williams-Sonoma", + "address": "200 S Broad St, Ste M6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Specialty Food, Shopping, Home & Garden, Kitchen & Bath, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-16:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "-tx2Fb2MWnEqiCmr23uOrQ", + "name": "The Body Shop Center City", + "address": "518 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9598051, + "longitude": -75.1420422, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Auto Detailing, Body Shops, Towing, Car Wash, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "HTJWXGmZA5dCBV9ylvLjUA", + "name": "BAS Cleaning", + "address": "607 Dudley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9244832, + "longitude": -75.1567929, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Carpet Cleaning, Glass & Mirrors, Professional Services, Home Services, Handyman, Window Washing, Local Services, Office Cleaning, Home Cleaning", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "IKXaAODca0KYqr8Fo4sgjw", + "name": "Gabyโ€™s Station Pizza", + "address": "1629 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9282246, + "longitude": -75.1568413, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Mexican, Restaurants, Pizza", + "hours": { + "Monday": "16:0-4:0", + "Tuesday": "16:0-4:0", + "Wednesday": "16:0-4:0", + "Thursday": "16:0-4:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "16:0-4:0" + } + }, + { + "business_id": "K4fLZqHVuJjGZjM5iv9B6w", + "name": "Lauren Buckley, L.AC", + "address": "1532 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302939, + "longitude": -75.1631455, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Traditional Chinese Medicine, Health & Medical, Acupuncture, Massage Therapy", + "hours": { + "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": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "S0TBIuX2tkMjM0SCILJrtw", + "name": "Day Break Eggs", + "address": "2900 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387267, + "longitude": -75.1923844, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:0-13:0", + "Tuesday": "7:0-13:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "dVKHPRNhgpclJ-E2CoZiXA", + "name": "Stuff'd Buns", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'" + }, + "categories": "Food, Event Planning & Services, Caterers, Food Trucks", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "z-wYdFvKCc-4hSt-MW0B9Q", + "name": "iDope Philly", + "address": "1030 N 2nd St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671055, + "longitude": -75.1402219, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Electronics Repair, Local Services, IT Services & Computer Repair, Mobile Phone Repair, Electronics, Shopping", + "hours": { + "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-18:0" + } + }, + { + "business_id": "VMIsjL0oKUtDFPFbhqIVoQ", + "name": "O'neal Animal Hospital", + "address": "4424 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9579368, + "longitude": -75.2104607, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pet Groomers, Pets, Pet Sitting, Pet Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "10:0-12:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "7T1VAYHIS3cgsDj3iS6JWQ", + "name": "The Frosted Fox Cake Shop", + "address": "6511 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487762, + "longitude": -75.1834594, + "stars": 5.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Bakeries, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "17Y8circEnkMMXKfLo8Ztg", + "name": "Bitar's", + "address": "947 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9346516, + "longitude": -75.1602726, + "stars": 4.0, + "review_count": 154, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Corkage": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "NoiseLevel": "'average'", + "HappyHour": "False", + "BYOB": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Middle Eastern, Falafel, Bakeries, Food, Greek, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "bJazyxju69RqC35WSSY-_g", + "name": "Solace Pharmacy and Wellness Shop", + "address": "1526 Ridge Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9686232, + "longitude": -75.1629175, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "DogsAllowed": "False", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Pet Services, Vitamins & Supplements, Shopping, Drugstores, Pets, Health & Medical, Pharmacy", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "HsRyFKdU70DKYpqai2HEIQ", + "name": "Corner Landscaping & Tree Service", + "address": "824 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0731948, + "longitude": -75.0768255, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Landscape Architects, Tree Services, Landscaping, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "tlhv-IT6zokg78sG9t3mWw", + "name": "Philadelphia Record Exchange", + "address": "618 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412368, + "longitude": -75.1510004, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Vinyl Records, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "xEJAn8fVO6d2Cx2NB7yGRg", + "name": "Lawn Love Lawn Care", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Landscaping, Home Services, Gardeners", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "z5YxP_jyIU7dRKUA7V_H0w", + "name": "Cily Chicken Rice", + "address": "933 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955545, + "longitude": -75.1554729, + "stars": 4.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hainan, Fast Food, Chinese, Coffee & Tea, Food, Restaurants, Thai", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "DGvkU7CkdBs6lNbncQmF3A", + "name": "Franklin's", + "address": "3521 Bowman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0110062, + "longitude": -75.189062, + "stars": 3.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "GoodForDancing": "True", + "Music": "{u'dj': None, u'live': None, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Burgers, Nightlife, Beer, Wine & Spirits, American (New), Bars, Food, Karaoke, Sports Bars", + "hours": { + "Tuesday": "14:0-0:0", + "Wednesday": "14:0-0:0", + "Thursday": "14:0-0:0", + "Friday": "14:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "MF5-JPr0auUkY_WLTTVUaA", + "name": "Tacodelphia", + "address": "427 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9448608451, + "longitude": -75.1652079004, + "stars": 4.0, + "review_count": 240, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "New Mexican Cuisine, Mexican, Tex-Mex, Tacos, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "fQXqQ-3pdDzOBGnZPr1qgg", + "name": "Doc Bresler's Cavity Busters", + "address": "240 Geiger Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1086365, + "longitude": -75.0483973, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetic Dentists, Orthodontists, Dentists, Health & Medical, Pediatric Dentists, General Dentistry", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "rBIwGqpV2CKq8UBJ5SLSOQ", + "name": "US Post Office", + "address": "5209 Greene St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0299059, + "longitude": -75.1684465, + "stars": 1.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Local Services, Post Offices, Public Services & Government", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-12:0" + } + }, + { + "business_id": "e4lrDi48799CTlV6CYVufw", + "name": "Refresh Computers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "FHNIvNgh3fS7VZQq2Y3dsA", + "name": "Cheu Noodle Bar", + "address": "255 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467949, + "longitude": -75.1577025, + "stars": 4.0, + "review_count": 818, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "Caters": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Asian Fusion, Tapas/Small Plates, American (New), Restaurants, Vietnamese, Korean, Noodles, Ramen, Japanese", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "-Wyh5nrgFXVlkkbb1xC1yg", + "name": "McCoy's Auto Service Center", + "address": "2323 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9813505, + "longitude": -75.173166, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Transmission Repair, Auto Repair, Tires, Automotive, Oil Change Stations", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "LY6OCkHEwfZtdOoQawNkWg", + "name": "Samosa Vegetarian", + "address": "1214 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488451, + "longitude": -75.1612613, + "stars": 4.5, + "review_count": 74, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Indian, Restaurants, Vegetarian, Buffets", + "hours": { + "Monday": "17:30-20:30", + "Tuesday": "17:30-20:30", + "Wednesday": "17:30-20:30", + "Thursday": "17:30-20:30", + "Friday": "17:30-20:30", + "Saturday": "17:30-20:30", + "Sunday": "17:30-20:30" + } + }, + { + "business_id": "zJErbOQMKX-MwHs_ulV7DA", + "name": "Philadelphia Marriott Old City", + "address": "One Dock St, 2nd and Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9452460633, + "longitude": -75.1433300972, + "stars": 3.0, + "review_count": 217, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "qZk3lDvVwOV6FcCnDOyo4Q", + "name": "Number 1 Beauty Supply", + "address": "5806 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9315216, + "longitude": -75.2248884, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Monday": "9:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "3DDRYqCzc3Yhh7WOpNh7tg", + "name": "El Limon", + "address": "4514 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0027825, + "longitude": -75.2222705, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "_O_KBH1MStcUkS1xk5pxsg", + "name": "Franny Lou's Porch", + "address": "2400 Coral St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9835674, + "longitude": -75.1293858, + "stars": 4.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "WiFi": "'free'", + "HappyHour": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Books, Mags, Music & Video, Bookstores, Tea Rooms, Bagels, Shopping, Sandwiches, Restaurants, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "3J8PwNptOmUSwPI6WTTaiw", + "name": "Keshet Kitchen", + "address": "705 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404826, + "longitude": -75.1507871, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Desserts, Comfort Food, Food, Middle Eastern", + "hours": null + }, + { + "business_id": "7EdQA9eGwSuQTzomG4QBjw", + "name": "Johnnie Bleu", + "address": "812 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9684789932, + "longitude": -75.1605921239, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Smoking": "u'no'", + "GoodForDancing": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False" + }, + "categories": "Bars, Lounges, Sports Bars, Nightlife", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "NSOQiCdvojQjKOAXcr8WVQ", + "name": "Dom's Shoe Repair", + "address": "203 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500676, + "longitude": -75.1736983, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "RjISdNawGnpjsewMTSGgsA", + "name": "KASUMI SUSHI", + "address": "2201 Penrose Ave, Ste3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9102554, + "longitude": -75.1869588, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "TYmX9kGUoktbJZvaS_7zNw", + "name": "Coldwell Banker Preferred - Old City", + "address": "223-25 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507154, + "longitude": -75.1446862, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Real Estate Services, Mortgage Brokers, Real Estate Agents, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "pCZDimMP8kdkc6TnVPzoYg", + "name": "The Renfrew Center of Philadelphia", + "address": "475 Spring Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.06442, + "longitude": -75.250601, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Hospitals, Counseling & Mental Health, Health & Medical, Nutritionists, Psychologists", + "hours": null + }, + { + "business_id": "mmBwAe9q062vKWanRfoagQ", + "name": "Free Tours By Foot", + "address": "20 N 3rd St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509398664, + "longitude": -75.1458675238, + "stars": 5.0, + "review_count": 184, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Walking Tours, Tours, Food Tours", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "uMT7H0shZK4-pQ_J2qMEWA", + "name": "The Spice Corner", + "address": "904 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938715, + "longitude": -75.158049, + "stars": 4.0, + "review_count": 76, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Grocery, Herbs & Spices, Specialty Food, Food", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "GphyhvJ8tX-ZZ3cDxJwdZg", + "name": "Trilogy Nightclub & Hookah Lounge", + "address": "601 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615459974, + "longitude": -75.1483290643, + "stars": 2.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "BikeParking": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True" + }, + "categories": "Dance Clubs, Arts & Entertainment, Bars, Music Venues, Nightlife, Hookah Bars, Lounges", + "hours": { + "Friday": "23:0-3:30", + "Saturday": "23:0-3:30", + "Sunday": "22:0-3:30" + } + }, + { + "business_id": "kxX2SOes4o-D3ZQBkiMRfA", + "name": "Zaika", + "address": "2481 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0798480557, + "longitude": -75.025079772, + "stars": 4.0, + "review_count": 181, + "is_open": 1, + "attributes": { + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Halal, Pakistani, Restaurants, Indian", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "FsRAHiYUERqUIeGVt49svA", + "name": "Qdoba Mexican Grill", + "address": "1900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951634, + "longitude": -75.1721, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "oh2wCX3pzTTEYaynLgmMQw", + "name": "Domenick's Men's Hairstyling", + "address": "267 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484469, + "longitude": -75.1741498, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "MUQDp-1rzSN3lCjUycNLug", + "name": "Dunkin'", + "address": "3313 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9385148, + "longitude": -75.1981973, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "FGd8MNC_IArIpxeXe_5u8w", + "name": "Auntie Anne's", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519182279, + "longitude": -75.1678565093, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pretzels, Food", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "eW-x-E1rmHeDxgymj2j2Kw", + "name": "Boathouse Row", + "address": "1 Boathouse Row", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9695828, + "longitude": -75.1876317, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Landmarks & Historical Buildings, Active Life, Boating, Public Services & Government", + "hours": null + }, + { + "business_id": "iBHCv93BnYdSR1gnmUjhpg", + "name": "Good's Vintage", + "address": "1022 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369784, + "longitude": -75.1584413, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True" + }, + "categories": "Antiques, Shopping, Fashion, Thrift Stores, Jewelry, Used, Vintage & Consignment", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "LnZvGYbqozanOSevcftnrw", + "name": "HipCityVeg - University City", + "address": "214 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953549, + "longitude": -75.202991, + "stars": 4.0, + "review_count": 314, + "is_open": 1, + "attributes": { + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Food, Burgers, Restaurants, Vegan, Desserts", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "lqBurWf5LxIhUQ0HtXTu_A", + "name": "Philadelphia Cricket Club", + "address": "415 W Willow Grove Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0650212, + "longitude": -75.2065334, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Venues & Event Spaces, Restaurants, Active Life, Event Planning & Services, Sports Clubs, Beaches, Tennis, Swimming Pools, Golf", + "hours": null + }, + { + "business_id": "A2a0dPK1W4E1pMaefhNxBg", + "name": "Rosenbaum & Associates", + "address": "1818 Market St, Ste 3200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530854415, + "longitude": -75.1711415785, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Lawyers, Professional Services, Personal Injury Law, Legal Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "TyFYyn5hP7TRXOkAO-pRDw", + "name": "FSI Restorations", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Gutter Services, Painters, Damage Restoration, Contractors, Roofing", + "hours": { + "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" + } + }, + { + "business_id": "RXItVN-qOBgbp_vBalAkOw", + "name": "Goldie", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953074, + "longitude": -75.192585, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "DriveThru": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Mediterranean, Falafel, Restaurants, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "Qnbwhb-L5q4mLIBdF_DUOQ", + "name": "Gateway Towers", + "address": "3900 Gateway Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9066077, + "longitude": -75.1912604, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "4ID028tc3wG2QT2LS-iLHQ", + "name": "Flowers By Dante", + "address": "2601 S 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9226532, + "longitude": -75.2258982, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Flowers & Gifts, Florists, Event Planning & Services, Floral Designers, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "jULIPydhMj18KOI5OHTwfA", + "name": "Buena Onda", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609147337, + "longitude": -75.1708267829, + "stars": 4.0, + "review_count": 552, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "False", + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True" + }, + "categories": "Tacos, Restaurants, Mexican", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "XHG8JXyUm4MgmrZ4BhqNdw", + "name": "Oliver's Antiques", + "address": "2052 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967118, + "longitude": -75.172029, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Antiques", + "hours": null + }, + { + "business_id": "7BmboJEmyQ_DAgTCoCgpgg", + "name": "Vientiane Bistro", + "address": "2537 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9881000819, + "longitude": -75.1282148436, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Vegan, Restaurants, Laotian, Asian Fusion, Thai, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:30-20:0", + "Wednesday": "12:30-20:0", + "Thursday": "12:30-20:0", + "Friday": "12:30-21:0", + "Saturday": "12:30-21:0" + } + }, + { + "business_id": "WkNJ3FnK5WVW3thVUe-WSw", + "name": "Izzy's 33", + "address": "1703 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280043249, + "longitude": -75.160044618, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "True", + "Caters": "True", + "BYOB": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTableService": "True" + }, + "categories": "Mexican, Restaurants, Cafes, Breakfast & Brunch, Italian", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "jsUzVBGEIoer6l_fxbad2A", + "name": "Homejoy", + "address": "1229 Chesnut St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Organization, Local Services, Office Cleaning, Carpet Cleaning, Handyman, Professional Services, Home Services, Home Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "qNdDhnauAdhkWyZJHVqUNQ", + "name": "Meagan Q Macklin", + "address": "2016 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9521221119, + "longitude": -75.1681137085, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Active Life, Health & Medical, Physical Therapy, Massage", + "hours": { + "Monday": "17:0-20:0", + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "-RzbRfPnKcwTixtokN-p6A", + "name": "Cosi", + "address": "215 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422572, + "longitude": -75.145956, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "hTUSv9wNM1XQXW2b3NEwFA", + "name": "Hornstein, Platt and Associates", + "address": "255 S 17th St, Ste 1010", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Counseling & Mental Health, Nutritionists, Acupuncture", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "kEeM1rPVm2npocfdyT_0ZA", + "name": "Bella Turka", + "address": "113 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500010775, + "longitude": -75.1616662582, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Jewelry, Shopping", + "hours": null + }, + { + "business_id": "52KaQ6LSMgzjqhDuHBheJQ", + "name": "Frugal Frames", + "address": "1234 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94512, + "longitude": -75.1626198, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Crafts, Framing, Art Galleries, Shopping, Arts & Entertainment", + "hours": { + "Monday": "11:0-18:30", + "Tuesday": "11:0-18:30", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-18:30", + "Friday": "11:0-18:30", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "b6hV7LXWQawY6OF7Dgmf_g", + "name": "Hop MD", + "address": "1618 South St, Ground Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439651, + "longitude": -75.169445, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Sports Medicine, Acupuncture, Doctors, Health & Medical, Family Practice, Naturopathic/Holistic", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "v7YRuZlPMwbi82q5I15few", + "name": "DT Nails & Spa", + "address": "15501 Bustleton Ave, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1329369, + "longitude": -75.0094528, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "9uHEhLKTVXATCt7JSvUsCg", + "name": "John's Water Ice", + "address": "701 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9382846, + "longitude": -75.1548943, + "stars": 4.5, + "review_count": 274, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Local Flavor, Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "vixUPc4ab4eeFVWnM4cngA", + "name": "NovaCare Rehabilitation", + "address": "230 W Washington Sq, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9463342687, + "longitude": -75.1537775695, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Physical Therapy", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:30", + "Wednesday": "7:0-14:0", + "Thursday": "8:0-18:30", + "Friday": "7:0-14:0" + } + }, + { + "business_id": "4nmSdHijY4skUHuHebtOvQ", + "name": "Noble Dental - Conover, Leonard & Assoc", + "address": "1601 Walnut St, Medical Arts Bldg, Ste 1101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500123, + "longitude": -75.1676889, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Endodontists, Cosmetic Dentists, Health & Medical, Dentists, General Dentistry, Beauty & Spas, Teeth Whitening", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "rDYU2Zsj1rKYcP31F4OZTA", + "name": "Queen Village Laundry", + "address": "824 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9375419, + "longitude": -75.1501031, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "sCmhmw-iSQEJYDQa0V-EGg", + "name": "Woodward Properties", + "address": "5050 Wynnefield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.991243, + "longitude": -75.2270533, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Property Management, Real Estate", + "hours": null + }, + { + "business_id": "1xb4MBAUGQRU7n5C-WqCtw", + "name": "FedEx Office Print & Ship Center", + "address": "3535 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956305, + "longitude": -75.193599, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Shipping Centers, Professional Services, Notaries, Local Services, Signmaking", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "8:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "F5Oy_o1JR9lagi_RsEoJmA", + "name": "Matt's Locksmith Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412268, + "longitude": -75.149419, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "UjXH7iq8eYauQoGswkxGYw", + "name": "Wawa", + "address": "7236-40 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0607947, + "longitude": -75.1920424, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Convenience Stores, Delis, Coffee & Tea, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "kkcQYuF3w5iHnHMf0EnRhQ", + "name": "Joe's Steaks + Soda Shop", + "address": "6030 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0185131, + "longitude": -75.0581372, + "stars": 4.5, + "review_count": 380, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Alcohol": "'none'", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'free'", + "HasTV": "True", + "Caters": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "10:30-19:0" + } + }, + { + "business_id": "Pab9VzWLe20vrdGn0rxNfQ", + "name": "Ava Restaurant", + "address": "518 S Third St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420412, + "longitude": -75.147714, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Corkage": "False" + }, + "categories": "Restaurants, American (New), Italian", + "hours": null + }, + { + "business_id": "W-WPA5pOLtJujLST3Y3XJA", + "name": "RadioShack", + "address": "8501 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0630920584, + "longitude": -75.2383979782, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Mobile Phones, Hobby Shops, Electronics", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "fnjKM583kumn7z0Z00Rc9g", + "name": "Little Caesars Pizza", + "address": "7153 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0627091, + "longitude": -75.1520337, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "'paid'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Pizza", + "hours": null + }, + { + "business_id": "zzyx5x0Z7xXWWvWnZFuxlQ", + "name": "Walnut Street Pizza", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491834, + "longitude": -75.1647772, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "HasTV": "False" + }, + "categories": "Pizza, Caterers, Italian, Gluten-Free, Event Planning & Services, Restaurants", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "jSs2iTKe3Mb-esVU3FmsDA", + "name": "Tweedy For Nails", + "address": "1146 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360057, + "longitude": -75.1620739, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "10:0-17:0" + } + }, + { + "business_id": "8wQq1jGlJ4hj691c7WLdQQ", + "name": "Amici's Deli", + "address": "2355 S Woodstock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.921989042, + "longitude": -75.1805423945, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Delis, Italian", + "hours": { + "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": "9:0-16:0" + } + }, + { + "business_id": "7yPzOek7Af2dKWGYKpcHWA", + "name": "Khmer Kitchen", + "address": "1700 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9274110049, + "longitude": -75.1556555182, + "stars": 4.5, + "review_count": 372, + "is_open": 0, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Cambodian", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "LUXRw-mr9emGL2gw4otvVA", + "name": "Benjamin Franklin Bridge", + "address": "US 676", + "city": "Philadelphia", + "state": "PA", + "postal_code": "08102", + "latitude": 39.9529445595, + "longitude": -75.1343607903, + "stars": 4.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Local Flavor, Active Life, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "zspnOaAN4jpseR3X7YtX5Q", + "name": "Brownies Pub", + "address": "46 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488403, + "longitude": -75.1441287, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': None}" + }, + "categories": "Pubs, Nightlife, Bars, Sports Bars", + "hours": { + "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": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "JAMmjTFdUGBpV24K1riSjQ", + "name": "Yellow Bicycle Canteen", + "address": "930 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472244065, + "longitude": -75.1572515, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "BYOB": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "HasTV": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "Corkage": "False", + "OutdoorSeating": "True" + }, + "categories": "Caterers, Event Planning & Services, Cafes, Vegetarian, Restaurants, Sandwiches", + "hours": { + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "vUrTGX_7HxqeoQ_6QCVz6g", + "name": "Suraya", + "address": "1528 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9736865005, + "longitude": -75.1339557767, + "stars": 4.5, + "review_count": 1121, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "Smoking": "u'outdoor'", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "HappyHour": "False", + "Corkage": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "BYOB": "False", + "OutdoorSeating": "None", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "3", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Active Life, Beer Gardens, Grocery, Middle Eastern, Specialty Food, American (New), Parks, Cafes, Food, Nightlife, Restaurants, Coffee & Tea, Lebanese", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "h4aJWIS8drud_1iD8FDIJg", + "name": "FMJ Electrical Contracting", + "address": "2415 W Jefferson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9781561, + "longitude": -75.1751855, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Lighting Fixtures & Equipment, Generator Installation/Repair, Local Services, Electricians", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "-0fvhILrC9UsQ6gLNpZlTQ", + "name": "David's Southern Fried Pies", + "address": "8601 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.046191, + "longitude": -75.0150899, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "8:0-12:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "aJet5OBtxIEbmLZwA4VphA", + "name": "Emmanuelle", + "address": "1052 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664905, + "longitude": -75.1387277, + "stars": 4.5, + "review_count": 83, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cocktail Bars, Bars, Nightlife", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "LdK6Tqr9-QK8eNezCUes9A", + "name": "Mel's Kitchen", + "address": "5001 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0359954, + "longitude": -75.2359063583, + "stars": 4.5, + "review_count": 206, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Sandwiches, Soup, Cheesesteaks, Event Planning & Services, Breakfast & Brunch, Restaurants, Caterers", + "hours": { + "Monday": "0:0-0: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": "8:0-14:0" + } + }, + { + "business_id": "o9Gru-QFoxGK26FSWRCLXA", + "name": "National Car Rental", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8787104089, + "longitude": -75.2452735795, + "stars": 3.5, + "review_count": 160, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "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" + } + }, + { + "business_id": "mFE9V6LPpsDRUQLEBsBRRA", + "name": "Pearl of East", + "address": "2049 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9186353, + "longitude": -75.1824221, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Caters": "False" + }, + "categories": "Restaurants", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "r2cjbHG_WGWUkaPCbLpo-A", + "name": "Philly Fusion & Grill Chicken Bowl", + "address": "2000 Hamilton St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962004, + "longitude": -75.1722752, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "HasTV": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "0eJ6GTYQerMPEndBIQmXAQ", + "name": "Full & Happy", + "address": "N 15th St Fairmount Ave & Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967102, + "longitude": -75.162135, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Schools, Event Planning & Services, Do-It-Yourself Food, Cooking Classes, Cooking Schools, Shopping, Personal Chefs, Professional Services, Food, Arts & Crafts, Education", + "hours": null + }, + { + "business_id": "cuf0GPuuMwB9uRR8HSuT6g", + "name": "Mr Storage - Manayunk", + "address": "5026 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.041427, + "longitude": -75.226452, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Oyll2luYo8tvaUgR-m8UlA", + "name": "Your Mobile Tire Geekz", + "address": "1309 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9379149, + "longitude": -75.198532, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Roadside Assistance, Wheel & Rim Repair", + "hours": { + "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" + } + }, + { + "business_id": "SiHnuDYGCzm4NeMQILPyzw", + "name": "Ramada Philadelphia Northeast", + "address": "11580 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1033326, + "longitude": -75.0051621, + "stars": 1.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Event Planning & Services, Restaurants, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "DytKODMqcvQ7MWA0NN2uNw", + "name": "Lloyd Whiskey Bar", + "address": "529 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9713575331, + "longitude": -75.127588677, + "stars": 4.0, + "review_count": 210, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "GoodForDancing": "False" + }, + "categories": "Nightlife, Restaurants, Wine Bars, Cocktail Bars, Gastropubs, Bars, American (New), Lounges", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "gCcJTKC40CL0XtYYGfcXDw", + "name": "Smiley's Cafe", + "address": "4251 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024774, + "longitude": -75.2214354, + "stars": 4.5, + "review_count": 423, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Juice Bars & Smoothies, Food, Mediterranean, Greek, Restaurants, Sandwiches", + "hours": { + "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:30-21:0" + } + }, + { + "business_id": "NSDhtsrXY78oZ8B3MkaxnQ", + "name": "Mattress Firm Front Street", + "address": "2720 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139705119, + "longitude": -75.1505574285, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Decor, Furniture Stores, Shopping, Shades & Blinds, Mattresses, Home & Garden, Home Services", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "S8qm3P9q2UtSyKP5AKm3ig", + "name": "Philadelphia Realty Exchange", + "address": "1608 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9472706, + "longitude": -75.1684923, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Property Management, Real Estate Services, Real Estate Agents, Real Estate, Home Services", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "t5RIuLUvE5fxr0TaRWxeQg", + "name": "Il Tartufo", + "address": "4341 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255207, + "longitude": -75.2232588, + "stars": 3.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "9EkU93HxB6gMAvuvkfVqVA", + "name": "Park Manor Deli", + "address": "240 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0303618, + "longitude": -75.1799143, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "BusinessParking": "None", + "OutdoorSeating": "False", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Delis, Cheesesteaks, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "6bF90BK6byDOVcPtKWe7Qw", + "name": "Mobil 1 Lube Express", + "address": "8244 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0438253, + "longitude": -75.0221644, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Auto Repair, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "HhU92tUeDvBGaFfgQHISAw", + "name": "Gilbert Dental Care", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-19:0", + "Wednesday": "8:30-15:30", + "Thursday": "7:0-17:0", + "Friday": "7:0-14:0" + } + }, + { + "business_id": "ss1oWXeNNjq7bd2bZvR3pA", + "name": "The Salvation Army", + "address": "5830 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0437362, + "longitude": -75.1034261, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Religious Organizations, Fashion, Shopping, Used, Vintage & Consignment, Thrift Stores, Churches", + "hours": null + }, + { + "business_id": "dGLmZh5xXBbJfTGRLh5epQ", + "name": "Barry's Castle Hair Designers", + "address": "14425 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1323802, + "longitude": -75.0108678, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "WRMlifrYLjRY8q5YUUbfZA", + "name": "iPho Vietnamese Restaurant", + "address": "1921 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674553, + "longitude": -75.169558, + "stars": 3.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "fFA6bjWbq724vB1tW4V9pQ", + "name": "McDonald's", + "address": "8901 Franford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0503776775, + "longitude": -75.0094825029, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Caters": "False", + "Alcohol": "'none'", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Coffee & Tea, Food, Fast Food, Restaurants, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "71cUrGn9enOIIiPtwqp82w", + "name": "Germantown Cab", + "address": "5350 Belfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.03696, + "longitude": -75.166095, + "stars": 1.5, + "review_count": 29, + "is_open": 1, + "attributes": null, + "categories": "Taxis, Hotels & Travel, Transportation", + "hours": { + "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" + } + }, + { + "business_id": "BkzPB-keyU1Ri1Fd8YuiAw", + "name": "Happy Joy Family Restaurant", + "address": "1328 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9710521, + "longitude": -75.1582199, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Restaurants", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "wnsvzUn2eqJqGJalrJiT4g", + "name": "ShenNong Acupuncture and Oriental Medicine", + "address": "926 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532187, + "longitude": -75.1557922, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Traditional Chinese Medicine, Acupuncture, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "wCluBbW9nzS7MEMFltMwJw", + "name": "Tasties", + "address": "1212 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 39.9717941, + "longitude": -75.2261989, + "stars": 2.5, + "review_count": 106, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "OutdoorSeating": "True", + "Caters": "True", + "HappyHour": "True" + }, + "categories": "Food, Imported Food, Food Trucks, Desserts, Seafood, Steakhouses, Ethnic Food, Sandwiches, Soul Food, Specialty Food, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "a4H1mxquTjZnREriPff2-Q", + "name": "Heart + Paw", + "address": "322 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9594763, + "longitude": -75.1622783, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Pet Services, Pets, Pet Groomers, Veterinarians", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "hSjvNCjp6_3xmnfNmiDAeQ", + "name": "Father and Son Builders", + "address": "2718 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9836011, + "longitude": -75.1023249, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Flooring, Roofing, Contractors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "_msFUghqBbYNmO8grFJNAQ", + "name": "Fine Wine & Good Spirits", + "address": "Ivy Ridge Shopping Ctr, 7146 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.044217875, + "longitude": -75.2323440575, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "None", + "RestaurantsTakeOut": "False" + }, + "categories": "Bars, Wine Bars, Nightlife, Beer, Wine & Spirits, Local Flavor, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "qjGS_7iaQDpbVhS6W8qkHQ", + "name": "The Sweet Life Bakeshop", + "address": "740 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942203, + "longitude": -75.155223, + "stars": 5.0, + "review_count": 316, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "BikeParking": "True", + "Caters": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Cupcakes, Desserts, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:30", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "12:0-17:0", + "Sunday": "11:0-18:30" + } + }, + { + "business_id": "EM38BqTh8q4V4I8WEmOWnw", + "name": "South Philly Comics", + "address": "1840 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9267283, + "longitude": -75.1673603, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video, Comic Books", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Ug5KqH8kcE_PhbivCa_2jA", + "name": "Perfect Touch Nails & Spa", + "address": "770 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9418956, + "longitude": -75.1742717, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "n09hgXTl3gsDo1lLDvHZGQ", + "name": "Fairmount Water Works", + "address": "640 Waterworks Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9660351, + "longitude": -75.1834918, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Landmarks & Historical Buildings, Arts & Entertainment, Public Services & Government, Museums", + "hours": null + }, + { + "business_id": "pKg4NleedNE_SxkfN_NlTQ", + "name": "The Original Hot Dog Factory", + "address": "125 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9554278, + "longitude": -75.1643767, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "BYOB": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "Caters": "True" + }, + "categories": "Hot Dogs, Restaurants", + "hours": null + }, + { + "business_id": "Dx3s4k3_a1XcM9k9Fvi8dA", + "name": "City Engraving & Awards", + "address": "1220 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94879, + "longitude": -75.1616189, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Professional Services, Screen Printing, Trophy Shops, Signmaking, Local Services, Shopping", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "cRJIf2i9LX8X8DKDG2qjiQ", + "name": "Toasted Walnut", + "address": "1316 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489275, + "longitude": -75.162876, + "stars": 3.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "GoodForDancing": "True", + "HasTV": "True", + "CoatCheck": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False" + }, + "categories": "Gay Bars, Karaoke, Music Venues, Bars, Nightlife, Arts & Entertainment", + "hours": { + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "Fe5Q2saATrFH4V-y6yhfAw", + "name": "Bell Beverage", + "address": "2809 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9117548, + "longitude": -75.1499777, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "FnEkr6LzjuGsg93Z7fkl7Q", + "name": "Misconduct Tavern", + "address": "1801 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954395, + "longitude": -75.169849, + "stars": 3.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Bars, American (New), Nightlife, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "HoSD12A8J7m-q-F_Z7s7uQ", + "name": "The Beauty Institute", + "address": "9902 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.093496, + "longitude": -75.019582, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Cosmetology Schools, Adult Education, Vocational & Technical School, Education, Specialty Schools", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Bmh7d4yVxpgLPQ8KLcy_4Q", + "name": "Mediterra Grill", + "address": "2119 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9887627, + "longitude": -75.249793, + "stars": 3.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, American (New), Salad, Sandwiches, Mediterranean", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "wsr5zfPb6OZX4mQ7S-D8rQ", + "name": "The Boilermaker", + "address": "216 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948104, + "longitude": -75.159407, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Bars, Food, American (New), Restaurants, Nightlife, Beer, Wine & Spirits", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "6IZTPy1g5ez3SCbKgKWwkA", + "name": "Ligne Roset", + "address": "4131 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0228665, + "longitude": -75.2188297, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "KGo93t2QwqryygJXGv9MTw", + "name": "Michelfelder's Deli", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516322, + "longitude": -75.1558474, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Delis, Sandwiches, Restaurants, Salad", + "hours": null + }, + { + "business_id": "GnXLe-SHVmlvx8vcU-I68w", + "name": "Patelka Dental", + "address": "8332 Bustleton Ave, Unit C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.06877, + "longitude": -75.0518283, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "General Dentistry, Health & Medical, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "3sdlpskDaXr1P59BYjGoFw", + "name": "Giovani Pizza", + "address": "1515 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512536, + "longitude": -75.1661282, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Burgers, Salad, Pizza, Restaurants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "uu0n1Xn0Hl3u9aCjFcN7Xw", + "name": "Bells Flowers", + "address": "8332 Bustleton Ave, # A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.068568361, + "longitude": -75.051023373, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Flowers & Gifts, Florists, Shopping", + "hours": null + }, + { + "business_id": "fB_VJEJTIMyWv5hC9T-xwA", + "name": "So Korean Grill", + "address": "6201 N Front St, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0453172867, + "longitude": -75.1176526374, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "Corkage": "True", + "RestaurantsDelivery": "False", + "BYOB": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "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}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsReservations": "True" + }, + "categories": "Korean, Barbeque, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "cNfeKIYIv07oxqVozMbjpw", + "name": "Marathon", + "address": "10th and Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948486, + "longitude": -75.1573477, + "stars": 3.5, + "review_count": 90, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Sandwiches, American (New), Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "yYpU8EWucx32OYIIHqP63A", + "name": "Oteri's Italian Bakery | North 5th St", + "address": "4919 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0263283, + "longitude": -75.1324873, + "stars": 2.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Shopping, Jewelry, Event Planning & Services, Desserts, Bakeries, Caterers, Food", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "wP0SSjU7R-m9j-VRhOCzmg", + "name": "Paris Baguette", + "address": "3816 Chestnut St, Unit 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551256, + "longitude": -75.1998158, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Food, Patisserie/Cake Shop, Bakeries, Coffee & Tea", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "MoU6F7B9bSLG6Ykan-9G_g", + "name": "Los Jimenez", + "address": "2654 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.915332, + "longitude": -75.1584048, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "Xbxh--kHUKJgTugsYcBmsQ", + "name": "Decarlo Hair Salon", + "address": "1722 Sansom St, 2 FL", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950624, + "longitude": -75.16973, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': False}" + }, + "categories": "Cosmetics & Beauty Supply, Nail Salons, Hair Salons, Beauty & Spas, Shopping, Barbers", + "hours": { + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "aTUDMqpfoXbvYxL2dEenjg", + "name": "Hertz Rent A Car", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956091, + "longitude": -75.182095, + "stars": 1.5, + "review_count": 59, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Hotels & Travel, Truck Rental, Car Rental, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "4_W5pstoN1166TGjjPOrMg", + "name": "Prohibition Taproom", + "address": "501 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9613018, + "longitude": -75.1593118, + "stars": 4.0, + "review_count": 618, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "Corkage": "False", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Caters": "False", + "BYOB": "False", + "WiFi": "u'free'", + "HappyHour": "True" + }, + "categories": "American (Traditional), Bars, Nightlife, Restaurants, Beer Bar, Gastropubs, Breakfast & Brunch, Tapas/Small Plates", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "mLJJa9r2h1yoh1dWUqekKQ", + "name": "Docucare Copy Service", + "address": "900 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9704451, + "longitude": -75.1601543, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Printing Services, Signmaking, Mailbox Centers, Local Services, Professional Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "OL9CgTWy7rU2eNq6F13JBg", + "name": "Checkers", + "address": "9173 Roosevelt Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0752499144, + "longitude": -75.0323500112, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "WiFi": "'free'", + "Alcohol": "u'none'", + "DriveThru": "True", + "GoodForKids": "True" + }, + "categories": "Burgers, Restaurants, Chicken Wings, Fast Food, Hot Dogs", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "t0u_YYND1OWPDGUL4bCWbA", + "name": "Ocean Nails & Spa Andorra", + "address": "701 Cathedral Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0643191, + "longitude": -75.2367851, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": null + }, + { + "business_id": "N-MVwAcmsQDZCxbZjZhPDA", + "name": "Best Buy", + "address": "9733 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.081368, + "longitude": -75.024423, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Mobile Phones, Computers, Shopping, Electronics", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "zxY4DgtXsVHihSUpsmwamg", + "name": "P & S Ravioli", + "address": "1640 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928473, + "longitude": -75.1619827, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False" + }, + "categories": "Food, Do-It-Yourself Food, Restaurants, Italian", + "hours": null + }, + { + "business_id": "AWJyivVwe3t9BO-k8D0ynQ", + "name": "Cafe Square One", + "address": "50 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489068, + "longitude": -75.1460802, + "stars": 4.5, + "review_count": 245, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "Caters": "True", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Food, Coffee & Tea, Cafes, Salad, Sandwiches, Sushi Bars, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "8CU6Hj2SBPC6nhSEHLCJvw", + "name": "Brick House Bar & Grille", + "address": "3334 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068094, + "longitude": -75.00631, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "None", + "HappyHour": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Sports Bars, Nightlife, Karaoke, Pubs, Bars", + "hours": { + "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:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "SADPX8WX34EQDj_jqtacMw", + "name": "Bai Wei", + "address": "1038 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554771, + "longitude": -75.1572987, + "stars": 4.0, + "review_count": 231, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Chinese, Food, Bubble Tea, Restaurants, Dim Sum, Szechuan", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "E-zz8gs1riWX0r3hxAn60A", + "name": "Biscardi Vision", + "address": "1420 Walnut St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949155, + "longitude": -75.165497, + "stars": 4.5, + "review_count": 136, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Optometrists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-12:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "roc-xyyzN5b_nImb0NdRLQ", + "name": "Earl of Sandwich", + "address": "8500 Essington Ave, Terminal D, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8768139466, + "longitude": -75.2398777179, + "stars": 3.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': None, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Restaurants, Sandwiches, Wraps, Salad", + "hours": { + "Monday": "4:0-19:0", + "Tuesday": "4:0-19:0", + "Wednesday": "4:0-19:0", + "Thursday": "4:0-19:0", + "Friday": "4:0-19:0", + "Saturday": "4:0-19:0", + "Sunday": "4:0-19:0" + } + }, + { + "business_id": "wdMuaYX5_RmPEx2FYgUTzA", + "name": "Aesthetics & Wellness at Rittenhouse Laser", + "address": "322 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9468001, + "longitude": -75.1683667, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': True}" + }, + "categories": "Skin Care, Beauty & Spas, Massage, Medical Spas, Laser Hair Removal, Health & Medical, Hair Removal", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-19:30", + "Sunday": "10:30-17:30" + } + }, + { + "business_id": "uE40984_YDgVvPeRpFcCaQ", + "name": "The Fat Ham", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524388, + "longitude": -75.1873387, + "stars": 4.0, + "review_count": 286, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "HappyHour": "True", + "WheelchairAccessible": "True" + }, + "categories": "Southern, Tapas/Small Plates, Restaurants", + "hours": { + "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": "16:0-21:0" + } + }, + { + "business_id": "l4-OFqq_9kRhZNbd3ttM5w", + "name": "Protech Electrical Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Electricians, Lighting Fixtures & Equipment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:30", + "Wednesday": "7:0-22:30", + "Thursday": "7:0-22:30", + "Friday": "7:0-22:30", + "Saturday": "7:0-22:30", + "Sunday": "7:0-22:30" + } + }, + { + "business_id": "HTqXI5S2XcSlh_ylx9sE6g", + "name": "Termini Bros Bakery", + "address": "12th St & Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530477103, + "longitude": -75.1590135265, + "stars": 4.0, + "review_count": 263, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "RYLGohzuMvtADK19ZfbBBg", + "name": "Capriotti Bros", + "address": "7132 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0354067, + "longitude": -75.0439681, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Fruits & Veggies, Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "L6oy16zB52ZkaD6N8-D-Yg", + "name": "Jeisy Grilled Chicken", + "address": "5701 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.036142, + "longitude": -75.174734, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Barbeque, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "2j7i82BNAalfIL75KninSA", + "name": "Reinhart Carpet Outlet", + "address": "67 W Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.03051197, + "longitude": -75.17034526, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home & Garden, Interior Design, Carpeting, Shades & Blinds, Flooring, Rugs, Shopping, Home Services, Carpet Installation", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "9:0-15:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "mDd3GFkYQKXhTlpm7SHtCQ", + "name": "Green Basil Thai Kitchen", + "address": "240 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413000709, + "longitude": -75.1472321594, + "stars": 4.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-20:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "vM3W3-ILN10eaF1HVJ8m_w", + "name": "Barber's Hall", + "address": "1402 W Oxford St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9771894, + "longitude": -75.1588931, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Sports Bars, Venues & Event Spaces, Event Planning & Services, Nightlife, Bars", + "hours": null + }, + { + "business_id": "NMtUD873aWrNjljt3VOcFA", + "name": "Juniper Commons", + "address": "521 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9440648, + "longitude": -75.1653273, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "GoodForKids": "False" + }, + "categories": "American (Traditional), Breakfast & Brunch, Restaurants, Diners", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "KMQrA590JiprwoOnu4UKVQ", + "name": "Park Salad Bar", + "address": "708 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491534, + "longitude": -75.1529191, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Asian Fusion, Pizza, Salad, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "7UJZQyroV-TvndJabqiXqw", + "name": "Asadero los tios", + "address": "3087 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0568875, + "longitude": -75.0154664, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "Caters": "True", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Dominican, Caribbean, Mexican, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "HUp0fqvl0XbZmrCp5FfBjw", + "name": "Fresh Gulf Seafood", + "address": "2528 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920544, + "longitude": -75.188066, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Restaurants, Distilleries, Farmers Market, Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "Y8JqVTJ5xsLu3KzfIyRsXQ", + "name": "Canal Cleaners", + "address": "4341 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261579, + "longitude": -75.2230309, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "X_X60vlWlPLWcW97LPrSjw", + "name": "7-Eleven", + "address": "1912 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9820199478, + "longitude": -75.1560544968, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "ZAPCUuZBUKbhLF5tiyxDig", + "name": "Pep Boys", + "address": "1201 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9353442, + "longitude": -75.1667137, + "stars": 2.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Automotive, Auto Repair, Oil Change Stations, Tires", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "YIdYc6tQIFRJPNIaPBupYQ", + "name": "Zio Pizza Palace & Grill", + "address": "157 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955065, + "longitude": -75.1541846, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Corkage": "False", + "BYOB": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Fast Food, Italian, Vegetarian, Burgers, Vegan, Restaurants, Pizza, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0" + } + }, + { + "business_id": "fpde_5H6mH5ufv1tUfBAKQ", + "name": "Authentic LanZhou Handpulled Noodles", + "address": "935 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536866, + "longitude": -75.1561742, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'" + }, + "categories": "Noodles, Restaurants", + "hours": { + "Monday": "8:0-10:0", + "Tuesday": "8:0-10:0", + "Wednesday": "8:0-10:0", + "Thursday": "8:0-10:0", + "Friday": "8:0-10:0", + "Saturday": "8:0-10:0", + "Sunday": "8:0-10:0" + } + }, + { + "business_id": "kPl_YGxEiYLQZmYI8i1Ksw", + "name": "PennDOT", + "address": "2904 S 70th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9124668455, + "longitude": -75.2324452454, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Departments of Motor Vehicles", + "hours": null + }, + { + "business_id": "j99PtxlKTW_u5alE4jiqHQ", + "name": "Ralphs Italian Restaurant", + "address": "760 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400584, + "longitude": -75.1578655, + "stars": 3.5, + "review_count": 653, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "16:0-20:30", + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-20:30" + } + }, + { + "business_id": "B-DiQpcSTJ7oMMnwzbAGTQ", + "name": "Cucina Zapata", + "address": "S 31st & Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542886, + "longitude": -75.1855377, + "stars": 4.5, + "review_count": 248, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Thai, Food Stands, Restaurants, Mexican", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0" + } + }, + { + "business_id": "TxT_v3sUf5XU6vi1iAsdhg", + "name": "ACME Markets", + "address": "8200 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0602797226, + "longitude": -75.0453370691, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Fashion, Grocery, Drugstores, Department Stores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "6CsLAjWXFlLpErBZEmGQ5g", + "name": "Sky Cafe", + "address": "1540 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9208882, + "longitude": -75.173682, + "stars": 4.5, + "review_count": 135, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Indonesian, Restaurants", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "cb1qOn3wAGVw8oINX4tqFQ", + "name": "Philadelphia Flyers", + "address": "Wells Fargo Ctr, 3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Professional Sports Teams, Venues & Event Spaces, Music Venues, Event Planning & Services, Nightlife", + "hours": null + }, + { + "business_id": "bpEiVcivZFHixcDGKXQQJA", + "name": "Valerio Coffee Roasters", + "address": "4373 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0252890632, + "longitude": -75.2227872271, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "HappyHour": "True", + "RestaurantsTableService": "False", + "BYOB": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Bagels, Food, Breakfast & Brunch, Restaurants", + "hours": { + "Tuesday": "8:0-14:30", + "Wednesday": "8:0-14:30", + "Thursday": "8:0-14:30", + "Friday": "8:0-14:30", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "5ezrDoezdUlJpUa5Jg6dUQ", + "name": "In the Valley", + "address": "1615 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929453, + "longitude": -75.1636243, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "WiFi": "'no'", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False" + }, + "categories": "Nightlife, Restaurants, Wine Bars, Bars, Tapas/Small Plates, Cocktail Bars, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "Sve_KZ4fithOnqVm1brg8A", + "name": "Salon JKU", + "address": "1528 Walnut St, Ste 701", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Stylists, Hair Salons, Makeup Artists", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "4RMHlggaIdNibPUJPVEd6w", + "name": "Bridgewater's Pub", + "address": "30th Street Station", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95528, + "longitude": -75.18251, + "stars": 3.5, + "review_count": 162, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "False", + "HappyHour": "True", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False" + }, + "categories": "American (New), Bars, Restaurants, Nightlife", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "n0GmfsLp0Ea10X1bbH6Bqw", + "name": "Any Garment 219 Cleaners", + "address": "7350 Oxford Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0626011, + "longitude": -75.085046, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "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" + } + }, + { + "business_id": "deVwhY98J_r69DVedK2x8A", + "name": "Sonrisa Old City Dental", + "address": "309 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503653, + "longitude": -75.1460683, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-16:0" + } + }, + { + "business_id": "GdqZaRx-gN8IxrmqYTXcbA", + "name": "Terron", + "address": "3426 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.011687, + "longitude": -75.18933, + "stars": 4.5, + "review_count": 65, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BYOB": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "Corkage": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "Caters": "False" + }, + "categories": "Vegetarian, Restaurants, Food, Mexican, Vegan, Tacos, Desserts, Juice Bars & Smoothies", + "hours": { + "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" + } + }, + { + "business_id": "pe01uqQsa6raj-4HWRjgGg", + "name": "Independence Brew Pub", + "address": "1150 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952616, + "longitude": -75.159445, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Food, Restaurants, Breweries, Bars, Nightlife", + "hours": null + }, + { + "business_id": "dIwOZoxwSpPUV3eMYFzPqw", + "name": "El Guero Mexican Food Truck", + "address": "1256 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9797909, + "longitude": -75.1546781, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "Caters": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "WXwRcHGaV8W3twAOJtWlew", + "name": "Village Burger", + "address": "401 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9424508214, + "longitude": -75.1420305669, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Burgers, Food, Food Trucks", + "hours": null + }, + { + "business_id": "0zWAsCBzvuCI_Ydx7yH1Jw", + "name": "Shing Kee", + "address": "600 Washington Ave, Ste 18 A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9346322655, + "longitude": -75.1551747608, + "stars": 4.0, + "review_count": 84, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Caters": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'full_bar'", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Noodles, Chinese, Restaurants, Soup", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "50MNOCMK3OxqR_VL3Bsupg", + "name": "Sprint Store", + "address": "1700 Market St Ste 108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526775, + "longitude": -75.1690841, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mobile Phones, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "p4_cwv_NAFduuDz5RcTLeg", + "name": "Nail In the City", + "address": "2401 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.974182, + "longitude": -75.1202043, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal", + "hours": null + }, + { + "business_id": "q10gQHRRga0o0A37YsvodQ", + "name": "The Pet Mechanic", + "address": "920 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426010475, + "longitude": -75.1578200608, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "qSjUgS1CG2_-MzSWHjvO0w", + "name": "Little Flower Catholic High School For Girls", + "address": "1000 W Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0133723638, + "longitude": -75.1441937, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Education, Middle Schools & High Schools", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:30", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30", + "Saturday": "7:30-15:30", + "Sunday": "7:30-15:30" + } + }, + { + "business_id": "0a8t_Th0jtWUMmtq0q2dqA", + "name": "DK Sushi", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531984523, + "longitude": -75.1928739332, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "pOKlPUu1ecsedBwKqNfWUg", + "name": "Scarlet Fiorella", + "address": "113 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500321, + "longitude": -75.1616605, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Home & Garden, Shopping, Home Decor, Children's Clothing, Fashion", + "hours": null + }, + { + "business_id": "BzQiDngZIG0MfbjJFg-yUQ", + "name": "The Post", + "address": "129 S 30th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524469799, + "longitude": -75.1836892962, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "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}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Smoking": "u'no'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "OutdoorSeating": "True" + }, + "categories": "Bars, Nightlife, Arts & Entertainment, Restaurants, Arcades, Beer Bar, Cocktail Bars, Burgers, Chicken Wings", + "hours": { + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "Derr7dcpu_BRwl8OwGQtyg", + "name": "Pizza Wings Steaks", + "address": "3235 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.960644, + "longitude": -75.189224, + "stars": 3.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Chicken Wings, Pizza, Restaurants, Steakhouses, Sandwiches, Vegan, Vegetarian", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "JLggLAox_ABHrGERr2zybw", + "name": "Adolf Biecker Spa/Salon", + "address": "1605 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950854, + "longitude": -75.168645, + "stars": 4.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Day Spas, Cosmetics & Beauty Supply, Hair Salons, Hair Removal, Shopping, Massage, Nail Salons, Skin Care", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "KgozvZ1UFfXuJToqe8CfQg", + "name": "Fortune Chinese Restaurant", + "address": "1828 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444060526, + "longitude": -75.1728806172, + "stars": 3.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Xq-8-I0U8Artr7d70SjX-g", + "name": "30th Street Station", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955757, + "longitude": -75.181993, + "stars": 4.0, + "review_count": 381, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Public Transportation, Transportation, Train Stations, Public Services & Government, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "RhRQhyGHurL9WqRoAn7luQ", + "name": "Uptown Grill Breakfast", + "address": "38 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9609427, + "longitude": -75.2412374, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "nSSoWHnmdkTRj8MA3Gj4AA", + "name": "IceMax", + "address": "252 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94128, + "longitude": -75.147448, + "stars": 4.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "Caters": "False", + "BikeParking": "True", + "WiFi": "'free'", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "13:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "pBJ9hVagqI4dwj6wPKTePA", + "name": "Pita Pocket Falafel & Grille", + "address": "218 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491679, + "longitude": -75.1677507, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True" + }, + "categories": "Falafel, Restaurants, Mediterranean, Greek", + "hours": null + }, + { + "business_id": "KlAocfljVDKA1VyXoiCrPQ", + "name": "We Assemble It", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Furniture Assembly, Home Services, Movers", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "DNA6jRC6wt0QXO4zN-BdXw", + "name": "New Napoli Famous Pizza", + "address": "911 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.052735, + "longitude": -75.0804037, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "rzDTtIfcxUwQBLKG1RSQGw", + "name": "Mr Bravo Pizza & Grill", + "address": "2310 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9804419, + "longitude": -75.17299, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "None", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "American (New), American (Traditional), Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "Hxt8qo2hEraEbxEO9k4TVA", + "name": "Chez Bow Wow Pet Grooming", + "address": "707 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620817, + "longitude": -75.1407803, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Pet Services, Pet Groomers, Pet Training", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "KFmyGXB4oW8JXw6qywhBYw", + "name": "Citizens Bank", + "address": "1234 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9518101724, + "longitude": -75.1611398, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "mNNBDRkF0c2oGdeKVpv8rA", + "name": "The Duke Barber", + "address": "1001 N 2nd St, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96742, + "longitude": -75.14, + "stars": 4.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "PQva56jc2JZ5J2ZSqAWubQ", + "name": "Nat'l Authorized Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Local Services, Appliances & Repair, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "cKSGrUPLEMTcA8oiIDn_RA", + "name": "PennDOT", + "address": "1530 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.927695, + "longitude": -75.145522, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Departments of Motor Vehicles, Public Services & Government", + "hours": { + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "ALVX2hbStpIIRvnv1_7x7w", + "name": "Little Caesars Pizza", + "address": "2895 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396854995, + "longitude": -75.1923877001, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Restaurants, Pizza", + "hours": null + }, + { + "business_id": "SJEJgULLv4uxNJp-55NGow", + "name": "Edible Arrangements", + "address": "120 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495429, + "longitude": -75.1605067, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Gift Shops, Florists, Chocolatiers & Shops, Specialty Food, Flowers & Gifts, Shopping", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "H47H_73y7aZ9KHpzct-xBg", + "name": "Cold Stone Creamery", + "address": "2530 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9781891509, + "longitude": -75.1193685896, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BikeParking": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Custom Cakes, Cupcakes", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "NYJ1PTYcQhQ8aVJiBPgIQg", + "name": "Cappuccio's Meats", + "address": "1019 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9370969, + "longitude": -75.1580723, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Meat Shops, Specialty Food", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:0-18:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Fkl9q6P0PIAY1_JQxbqc7A", + "name": "Paper Impex USA", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Shipping Centers, Movers, Home Services, Local Services", + "hours": null + }, + { + "business_id": "9hlCvuR5yqPNQZ0Dpgleug", + "name": "JD's Soul Food Kitchen", + "address": "4056 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9641219, + "longitude": -75.2043607, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Chicken Wings, American (Traditional), Barbeque, Soul Food, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "nsZMsV91PfYQ8w2lbktpjA", + "name": "Non Stop Pizza & Grille", + "address": "6601 Hegerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.022248, + "longitude": -75.0472798, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "v7ibuvyZutqZ7pjMCH1exg", + "name": "Frank's Spaghetti House", + "address": "7602 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.056184, + "longitude": -75.061858, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Italian, Restaurants, Bars, Wine Bars, American (New), Nightlife", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "14:0-22:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "3dl7FI3cG8C1v3uaj4_78w", + "name": "Lincoln Green Apartments by Greystar", + "address": "4000 Presidential Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.005182, + "longitude": -75.209651, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "10:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "yjcpRvhOtqgu7ykZiL4xFQ", + "name": "Nuts Vs Fruit", + "address": "2110 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924072, + "longitude": -75.170111, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Candy Stores, Food", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Ac6NdLwXzX9EWqqWxx94ZQ", + "name": "The Jiu Jitsu Company", + "address": "31 S 2nd St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949049, + "longitude": -75.143627, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Brazilian Jiu-jitsu, Active Life, Kids Activities, Sports Clubs, Martial Arts, Fitness & Instruction", + "hours": { + "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": "10:0-21:0", + "Sunday": "12:0-15:0" + } + }, + { + "business_id": "MnCs5pIA0BF3FN7T6wTNyg", + "name": "O blue cafรฉ", + "address": "400 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625734, + "longitude": -75.1447558, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Cafes", + "hours": { + "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-16:0" + } + }, + { + "business_id": "l_u2KGYWvx2LBcRV1G-wyA", + "name": "Dentex Dental", + "address": "1732 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.928211, + "longitude": -75.16929, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Endodontists, Cosmetic Dentists, General Dentistry, Health & Medical, Periodontists, Dentists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "Hbd-b99EBCYTZfSaZz3tHQ", + "name": "Sbarro", + "address": "1455 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0876473, + "longitude": -74.9610288, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "r8gB1EKj-YDfmfOm30TSHA", + "name": "Cee Johnson's Auto Service", + "address": "5532 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9591838, + "longitude": -75.2322698, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive, Body Shops, Car Stereo Installation", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-18:0" + } + }, + { + "business_id": "atSO7SYsHhKVSML1g8wDjg", + "name": "American Jewelry Co", + "address": "132 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485134, + "longitude": -75.1543329, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "bSWL0YxfawjS03_g2kgujA", + "name": "Allegro Pizza", + "address": "3942 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9514453, + "longitude": -75.2029159, + "stars": 3.0, + "review_count": 221, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Corkage": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "HasTV": "True", + "BYOBCorkage": "'no'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'beer_and_wine'", + "WiFi": "u'no'", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': None, u'latenight': True, u'dessert': False}", + "BikeParking": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza, American (Traditional), Italian", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "ipaHtb0jzsnzuxkjQxvxgQ", + "name": "Solly Pizza", + "address": "8108 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618594, + "longitude": -75.0520111, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-21:45", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-22:45", + "Saturday": "11:0-22:45", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "y--UQiSyVPAmWjRkZ9tdPQ", + "name": "Pep Boys", + "address": "6200 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0577619, + "longitude": -75.1641145, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Oil Change Stations, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "PU6_b7Z5G7fZRjiDMkoFeA", + "name": "Italian Market Laundromat", + "address": "1153 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934846, + "longitude": -75.158559, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundromat, Laundry Services", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "NnlQhXtuVOVjUFYB1Hqp8Q", + "name": "Lather Hair Studio", + "address": "2736 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974138, + "longitude": -75.18173, + "stars": 5.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Skin Care, Hair Salons, Beauty & Spas, Makeup Artists", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "9:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "NeY1bH6IKJxnn4YAixibsQ", + "name": "Cosi", + "address": "140 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536708974, + "longitude": -75.1949572908, + "stars": 2.5, + "review_count": 115, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "HasTV": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Coffee & Tea, Restaurants, Sandwiches, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "-VGUpTEsCUE9gJk50gbU6w", + "name": "JetBlue", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876019, + "longitude": -75.242969, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Airports, Food, Transportation, Shopping, Hotels & Travel, Airlines", + "hours": null + }, + { + "business_id": "Bfjx1m4INbd7DMQ9pMfYww", + "name": "Yes Dental", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0489395221, + "longitude": -75.0579528718, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Orthodontists, Cosmetic Dentists, Health & Medical, General Dentistry, Endodontists, Oral Surgeons", + "hours": { + "Monday": "9:30-7:0", + "Tuesday": "9:30-7:0", + "Wednesday": "9:30-7:0", + "Thursday": "9:30-7:0", + "Friday": "9:30-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "d_tRshM-w6S4QxE4VVi8tQ", + "name": "Jones", + "address": "700 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493144, + "longitude": -75.1525254, + "stars": 3.5, + "review_count": 1141, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "DogsAllowed": "False", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "American (New), Restaurants, Southern, Diners, American (Traditional)", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "11:0-20:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "O286wXm4mcznQn_1JieD1g", + "name": "Whole Foods Market", + "address": "2001 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.961634, + "longitude": -75.1726892, + "stars": 3.5, + "review_count": 159, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Specialty Food, Food, Health Markets, Grocery, Caterers, Organic Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "QrIV69RPS4LTpIwPoL22_w", + "name": "Applebee's Grill + Bar", + "address": "2535-37 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.993173, + "longitude": -75.092621, + "stars": 2.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "GoodForDancing": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "'free'", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': True}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Bars, Fast Food, Sports Bars, Chicken Wings, Restaurants, Steakhouses, Nightlife, American (Traditional), Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "jvCNijeK9ZOf2Vb6pGNySg", + "name": "Bury The Hatchet", + "address": "1719 Washington Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93883, + "longitude": -75.17232, + "stars": 5.0, + "review_count": 153, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Flavor, Recreation Centers, Amateur Sports Teams, Active Life", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Ak34oJ8zxN8Av7dxS9T8IQ", + "name": "The Centurion Lounge", + "address": "Terminal A West, near Gate A14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8752249002, + "longitude": -75.2477547773, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Airport Lounges, Bars, Nightlife", + "hours": { + "Monday": "5:30-17:0", + "Tuesday": "5:30-17:0", + "Wednesday": "5:30-17:0", + "Thursday": "5:30-17:0", + "Friday": "5:30-17:0", + "Saturday": "5:30-17:0", + "Sunday": "5:30-17:0" + } + }, + { + "business_id": "woEzdPOYu5KmRHu1NjxKYw", + "name": "Bottom of the Sea", + "address": "714 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422163, + "longitude": -75.1544172, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "RZtGWDLCAtuipwaZ-UfjmQ", + "name": "LaScala's", + "address": "615 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949529, + "longitude": -75.152139, + "stars": 3.5, + "review_count": 367, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "Corkage": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Pizza, Restaurants, Italian, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "12:0-20:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "15:0-1:0" + } + }, + { + "business_id": "alUk6OwNhofyc90NDMDY-Q", + "name": "Fabio's Chicken Restaurant Takeout", + "address": "4805 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0232879, + "longitude": -75.1237642, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Latin American, Restaurants, Chicken Wings", + "hours": null + }, + { + "business_id": "kimOwpoIWzJJx7NHTAj74Q", + "name": "Little Kitchen", + "address": "5000 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0000840441, + "longitude": -75.2284179916, + "stars": 2.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Thai, Restaurants, Japanese, Chinese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "mbglgx3nbRRPKxh0SxDjNQ", + "name": "Parada Maimon", + "address": "345 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9590025431, + "longitude": -75.1582302558, + "stars": 4.5, + "review_count": 202, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Latin American, Caribbean, Dominican, Mexican, Restaurants", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "LDepg4jhTLwxY2YN6YGHtw", + "name": "Illadelph by All in One Smoke Shop", + "address": "14230 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1323517, + "longitude": -75.0119861, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Head Shops, Tobacco Shops, Vape Shops", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "hJnW5-ovJQkecq0EZhHaKw", + "name": "DoDo Bakery", + "address": "2653 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9163107, + "longitude": -75.1659042976, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Bubble Tea, Custom Cakes, Bakeries, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-18:0", + "Sunday": "7:30-18:0" + } + }, + { + "business_id": "RNEhva5S8AlvwgaF6Z-l8g", + "name": "ACME Markets", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.071813194, + "longitude": -75.1938728294, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Drugstores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "QDvQmizwCiFGf3y0Om9jyA", + "name": "Frog at the Yard", + "address": "16th & Flagship Dr, Bldg 543", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.888531, + "longitude": -75.1785888, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Caters": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "American (Traditional), Coffee & Tea, Restaurants, Food", + "hours": null + }, + { + "business_id": "oiwRXkajqqT4Yq5SpEsy3w", + "name": "Bellhop Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Movers, Home Services, Self Storage, Packing Supplies, Shopping", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "nt1jLHRIeV5HqB5PfFWbKA", + "name": "Kary's Beauty Salon", + "address": "1601 S 7th", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9288599, + "longitude": -75.1566897, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "7yBuPIRjDxq0urQzjp1g3w", + "name": "Dollar Tree", + "address": "7600 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9769957315, + "longitude": -75.2747348463, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "4ZSKrjtl_B9ytuR0o1PvEA", + "name": "Thread Bar", + "address": "2007 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952298, + "longitude": -75.173811, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Hair Removal, Waxing, Eyelash Service, Event Planning & Services, Henna Artists, Beauty & Spas, Threading Services", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "14:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "YG7qCDqFE_3EieWB_GQSlw", + "name": "The Event Spot", + "address": "7215 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0597768, + "longitude": -75.0853197, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Officiants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "OHplb2m_dKPXY46mS0CqJQ", + "name": "Stella Sera", + "address": "8630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770647, + "longitude": -75.2087089, + "stars": 4.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "rMokmPwVXuftCVKVgSBlPg", + "name": "Solo Real Estate", + "address": "2017 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949998, + "longitude": -75.174757, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Real Estate Agents, Property Management, Home Services, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "iX-B-N84nktxvhSwTYSfDw", + "name": "Nauti Mermaid Crab House", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480691001, + "longitude": -75.1430340484, + "stars": 4.0, + "review_count": 108, + "is_open": 0, + "attributes": { + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Caters": "True", + "HasTV": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "Smoking": "u'no'", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Seafood, Piano Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "kqbZ8euPJFYrIbeMJXPkzg", + "name": "The Bar by Bluebird Distilling at the Bourse", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Cocktail Bars, Bars, Nightlife", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-23:0" + } + }, + { + "business_id": "tkJRnUUhHqp3XB6SEQC7-g", + "name": "Midas", + "address": "4138-52 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9573379358, + "longitude": -75.2055199926, + "stars": 2.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Auto Repair, Oil Change Stations, Automotive", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "6_HDH0EIt2QvX0adkZdsTw", + "name": "Goree", + "address": "5514 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0334671, + "longitude": -75.1159524, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Imported Food, Specialty Food, Food, Ethnic Food, Restaurants, Halal, Senegalese, African", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "8QGXgKl1aH3W15YYVcSixg", + "name": "Lane Bryant", + "address": "1851 S Columbus Blvd, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923491, + "longitude": -75.1405828, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Women's Clothing, Shopping, Fashion, Accessories", + "hours": null + }, + { + "business_id": "NSDifyQNkKyPUV_f23ldaQ", + "name": "The Stock Group", + "address": "542 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0466057, + "longitude": -75.1954428, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Painters, Contractors, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "eLbKuFpCtHEjCkoWkDDk7g", + "name": "Trattoria Carina", + "address": "2201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488052, + "longitude": -75.1779537, + "stars": 4.5, + "review_count": 213, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, American (Traditional), Italian", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "5CZIGD5oNpS5gQTiVxHCdg", + "name": "The Chair Massage Studio", + "address": "1416 Frankford Ave, Suite B3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9722525, + "longitude": -75.134627, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Massage Therapy, Beauty & Spas, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eM5CowLA4lGmATovJrLRXQ", + "name": "Al's Italiano Pizzeria & Ristorante", + "address": "8202 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0605711, + "longitude": -75.0448466, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "False" + }, + "categories": "Delis, Sandwiches, Restaurants, Pizza, Desserts, Italian, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "JlbPG1auhjZcLCAi2lG1vA", + "name": "Sun Laundromat", + "address": "2431 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.993744, + "longitude": -75.09299, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Laundromat", + "hours": { + "Monday": "6:0-2:0", + "Tuesday": "6:0-2:0", + "Wednesday": "6:0-2:0", + "Thursday": "6:0-2:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "6:0-2:0" + } + }, + { + "business_id": "xz3z2vqP8XkAsA11HA9pDg", + "name": "Smokey Pint", + "address": "2549 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.001447, + "longitude": -75.07655, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Smoking": "u'outdoor'", + "WiFi": "u'free'", + "CoatCheck": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsReservations": "False" + }, + "categories": "Beer Bar, Nightlife, Comfort Food, Restaurants, Bars, Barbeque", + "hours": null + }, + { + "business_id": "jQDXPPEfRlGiiH7kmRfM0w", + "name": "ABV% Beverage", + "address": "3421 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985543, + "longitude": -75.0957743, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "2GYg3liJ9-m6Z67L_4_BRQ", + "name": "Weavers Way Co-Op", + "address": "559 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0465949, + "longitude": -75.1960823, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pets, Cheese Shops, Health Markets, Grocery, Food, Specialty Food", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "WXVAGgrGtRmlgO5i4fqrpg", + "name": "Jerusalem Furniture", + "address": "2300 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9223197, + "longitude": -75.1855823, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "feycIWpE_lOM9iPu1FMmww", + "name": "E.L.I.T.E. Control & Design", + "address": "1634 N Randolph St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976412, + "longitude": -75.14479, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Automation, Home Theatre Installation, Security Systems, Electronics, Home Services, Shopping", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "0U4PsGJynuzEBrEn1HaU7w", + "name": "Expert Tailor", + "address": "164 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9538599, + "longitude": -75.1451386, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Sewing & Alterations, Leather Goods, Fashion, Dry Cleaning, Carpet Cleaning, Laundry Services, Shopping", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "CinrOH8rMB2hEvPY_iFOHA", + "name": "Casselli's Ristorante", + "address": "7620 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.1414879, + "longitude": -74.9846616, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "jDSWTtmsrq5_0z_ZK4Au3Q", + "name": "Yoga on the Pier", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Yoga, Active Life, Local Flavor", + "hours": null + }, + { + "business_id": "KydLm9nUhLSK0K6VnDLVjw", + "name": "Green Guys Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0542169, + "longitude": -75.1603752, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services, Local Services, Couriers & Delivery Services, Junk Removal & Hauling", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "rytqWB6v6AAAxZiqy7Flww", + "name": "War Horse Barbell", + "address": "801-5 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9630208, + "longitude": -75.1406717, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Gyms, Fitness & Instruction, Active Life", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "4i1to26tzHGWDpquEeazwg", + "name": "Lee's Breakfast", + "address": "3152 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0014002, + "longitude": -75.153227, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "6:0-14:30", + "Tuesday": "6:0-14:30", + "Wednesday": "6:0-14:30", + "Thursday": "6:0-14:30", + "Friday": "6:0-14:30", + "Saturday": "6:0-14:30" + } + }, + { + "business_id": "9TNrkJ8HRO9ba_y5ZDqo6w", + "name": "Coco's Cookies & Creamery", + "address": "3632 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.959605, + "longitude": -75.1950971, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Pretzels, Shaved Ice, Desserts, Patisserie/Cake Shop", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "YA4OQvZFowHG4_78xis7sg", + "name": "Boricua Restaurant", + "address": "1149 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968903, + "longitude": -75.141464, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "Caters": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "HasTV": "True" + }, + "categories": "Caribbean, Spanish, Puerto Rican, Latin American, Restaurants", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30" + } + }, + { + "business_id": "e1L7zxPnI9TeCqFexdstdw", + "name": "International House Philadelphia", + "address": "3701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552474, + "longitude": -75.1969099, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Adult Education, Arts & Entertainment, Education, University Housing, Real Estate, Performing Arts, Cinema", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "JZVK_yoV48O_2gDykG_1Ow", + "name": "Bonks Bar", + "address": "3467 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863915, + "longitude": -75.0943523, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "None", + "Caters": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Seafood, Nightlife, Bars, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "c6DUOuLuX8pKVNgKUlZf9A", + "name": "Brindle Cafe", + "address": "221 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694475, + "longitude": -75.1331964, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "WYulP4JpEVnFjhydDoxWjA", + "name": "Mushmina", + "address": "1540 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440040588, + "longitude": -75.1685256958, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Accessories, Fashion", + "hours": null + }, + { + "business_id": "NKP_jXl7Gn6hkiR8D206Gw", + "name": "Air Canada", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8737683, + "longitude": -75.2472932, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Airlines, Hotels & Travel", + "hours": null + }, + { + "business_id": "qfFKVxDqFbPtBTlKGQDapQ", + "name": "Master Wok", + "address": "1934 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982461, + "longitude": -75.156031, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "UkN-K9T_hDLGD9m_AAtXyw", + "name": "Riverside Cycles", + "address": "360 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0414973, + "longitude": -75.2376511, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Motorcycle Repair, Automotive, Motorcycle Dealers", + "hours": null + }, + { + "business_id": "SczLxo7EPukLqteIJ_c7OA", + "name": "Three Elements", + "address": "2501 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9883801, + "longitude": -75.1351888, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "lIOEBs50Uk45ehz7zrtYmQ", + "name": "Tandoori Of India", + "address": "1100 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922337, + "longitude": -75.164854, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForKids": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "BYOB": "True", + "RestaurantsReservations": "True", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False" + }, + "categories": "Indian, Venues & Event Spaces, Desserts, Food, Salad, Halal, Event Planning & Services, Restaurants", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "G5aLEWu4uOCSXGlHE_LZwA", + "name": "Ancient Eye Media", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Video/Film Production, Videographers, Event Planning & Services, Professional Services, Event Photography, Photographers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "t6KsC3otfr9PUK3d0pSS3g", + "name": "Whitman Cleaners", + "address": "1530 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9113386, + "longitude": -75.1750841, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "WMjy9IgiiuxN1tenNvJ4ew", + "name": "Papertini Floral & Event Design", + "address": "16 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950721, + "longitude": -75.1458136, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Florists, Shopping, Party & Event Planning, Flowers & Gifts, Event Planning & Services", + "hours": null + }, + { + "business_id": "fDZjJvs3sikPHqRs_4HPTg", + "name": "The United States Mint", + "address": "151 N Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9533704258, + "longitude": -75.148115658, + "stars": 4.0, + "review_count": 97, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "umqAlYC0OtFjFI-sTNSEYw", + "name": "Jeni's Splendid Ice Creams", + "address": "1322 Frankford Ave, Unit 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9708619, + "longitude": -75.134813, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "kuof8pQvg5dSGXzBdlsIPA", + "name": "Bella Locs", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0390934, + "longitude": -75.064035, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': False, 'kids': False, 'perms': False, 'asian': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Nail Technicians, Hair Stylists, Beauty & Spas, Shopping, Nail Salons, Hair Extensions, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-21:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "pDurCski6kcl8mcXmpcKKw", + "name": "Ace of Steaks", + "address": "3020 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9126407143, + "longitude": -75.1728923991, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches, Burgers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "2IOlw5AaluuCSci3Bd0u4w", + "name": "Violet Salon III", + "address": "1330 S Alder St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9325745, + "longitude": -75.1615338, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Hair Removal, Beauty & Spas, Nail Salons", + "hours": { + "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": "9:0-18:0" + } + }, + { + "business_id": "YAYIiWShAU4R9z-xNUqVig", + "name": "Logan Circle", + "address": "200 N 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9585853, + "longitude": -75.1706228, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Local Flavor, Parks", + "hours": null + }, + { + "business_id": "Udlivg8oVF_JRgfL5TV33w", + "name": "Trophy Limousine Service", + "address": "7000 Holstein Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9029763, + "longitude": -75.2268484, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair, Hotels & Travel, Limos, Transportation", + "hours": { + "Monday": "0:0-23:59", + "Tuesday": "0:0-23:59", + "Wednesday": "0:0-23:59", + "Thursday": "0:0-23:59", + "Friday": "0:0-23:59", + "Saturday": "0:0-23:59", + "Sunday": "0:0-23:59" + } + }, + { + "business_id": "QPwEwRE5jiOS3d8IqwxVbA", + "name": "First Choice Auto Repair", + "address": "7801 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0722409, + "longitude": -75.0842678, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Towing, Oil Change Stations, Tires, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "d6bUs1pohZndzv-76YpcYw", + "name": "Pet Health Center", + "address": "3365 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9949976, + "longitude": -75.1058509, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians, Pet Services, Emergency Pet Hospital", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-16:0", + "Saturday": "7:30-14:0" + } + }, + { + "business_id": "eRa4aOztXDs0px7bUakoVQ", + "name": "My T-Sharp Barbering Company", + "address": "160 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.030551, + "longitude": -75.227682, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "gSw5N8h5lpC4XGw_nthyrQ", + "name": "Sorrento's Pizza", + "address": "1624 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.038781, + "longitude": -75.149469, + "stars": 2.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "uymhAMBgsI1vxOd--8J9Mw", + "name": "Colonial Penn Insurance", + "address": "399 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950451, + "longitude": -75.146807, + "stars": 1.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Insurance, Life Insurance", + "hours": { + "Monday": "8:30-22:0", + "Tuesday": "8:30-22:0", + "Wednesday": "8:30-22:0", + "Thursday": "8:30-22:0", + "Friday": "8:30-22:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "0QdcIaX7Mp9cXLXt-zv1BQ", + "name": "Safeguard Self Storage", + "address": "1221 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9724908, + "longitude": -75.1587018371, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Self Storage, Local Services, Movers, Shopping, Packing Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:30-16:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "bH1HbFxDv6WquY-vK3fwww", + "name": "Selcouth Massage", + "address": "212 E Girard Ave, Ste 2B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9689967554, + "longitude": -75.1330304146, + "stars": 5.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Massage Therapy, Beauty & Spas, Massage", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "AcMwma_tRlmAp2BTDjZ3Kg", + "name": "Crown and Feather Tattoo", + "address": "2628 Martha St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.985314, + "longitude": -75.122395, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "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" + } + }, + { + "business_id": "4SQ5uczVt66-GGGeNQRfEA", + "name": "Rotten Ralph's", + "address": "201 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484876, + "longitude": -75.1442086, + "stars": 2.5, + "review_count": 200, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "Caters": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "HappyHour": "True", + "Smoking": "u'no'", + "RestaurantsDelivery": "None" + }, + "categories": "Nightlife, Restaurants, American (Traditional), Pubs, Bars", + "hours": { + "Monday": "11:0-1:30", + "Tuesday": "11:0-1:30", + "Wednesday": "11:0-1:30", + "Thursday": "11:0-1:30", + "Friday": "11:0-1:30", + "Saturday": "11:0-1:30", + "Sunday": "11:0-1:30" + } + }, + { + "business_id": "vCHNWdW-ys-nWUx3Cpvk8Q", + "name": "Swiss Haus Cafe & Pastry Bar", + "address": "1740 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507452, + "longitude": -75.1701679, + "stars": 4.0, + "review_count": 261, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "HasTV": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Bakeries, Kosher, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "0:0-0: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": "9:0-15:0" + } + }, + { + "business_id": "iB8TMAjQEUfldgolrRyKiQ", + "name": "William Didden Flower Shop", + "address": "6401 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9197188505, + "longitude": -75.2254907666, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Floral Designers, Flowers & Gifts, Event Planning & Services, Home & Garden, Nurseries & Gardening", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "lGw75AaWNUayMJxXD5ahpg", + "name": "Levy Law LLC", + "address": "1515 Market St, Ste 950", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529792, + "longitude": -75.1658929, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Legal Services, Local Services, General Litigation, Professional Services, Divorce & Family Law, Lawyers, Criminal Defense Law, Estate Planning Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-4:0" + } + }, + { + "business_id": "c6fmdw06KPAsPxzvwyRBAA", + "name": "Master Garage Door", + "address": "2675 Tremont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0687454, + "longitude": -75.0324541, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Insulation Installation, Garage Door Services, Contractors, Keys & Locksmiths, Home Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "htO_nlxkEsYHzDrtbiUxew", + "name": "La Colombe Coffee", + "address": "130 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506099, + "longitude": -75.172368, + "stars": 4.0, + "review_count": 614, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Caters": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "DsKzHnkLKnxZTVsFpts4oA", + "name": "Red Owl Tavern", + "address": "433 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492805, + "longitude": -75.1489288, + "stars": 3.5, + "review_count": 618, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True" + }, + "categories": "Breakfast & Brunch, American (New), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-15:0", + "Wednesday": "11:30-15:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "17:0-22:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "eznriqn0sKt0D594H5OCcA", + "name": "La Fonda De Teresita", + "address": "1446 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9304879336, + "longitude": -75.1582029462, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "bguzzvkFJ2gPGvtvXwfPCQ", + "name": "The Yoga Garden Philly", + "address": "240 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466765867, + "longitude": -75.1546849957, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Fitness & Instruction, Yoga", + "hours": { + "Monday": "9:30-19:15", + "Tuesday": "9:30-19:15", + "Wednesday": "9:30-19:15", + "Thursday": "9:30-19:15", + "Friday": "9:30-19:15", + "Saturday": "9:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "uIg5rdP-VmiBa-3kHa7AHQ", + "name": "US Post Office", + "address": "9925 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0994881, + "longitude": -75.0294441, + "stars": 1.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Public Services & Government, Post Offices, Shipping Centers", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "iTqSLah6DnnXGaYQWDl7cQ", + "name": "Swan Waterfall Caterers", + "address": "2015 S Water St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9221703, + "longitude": -75.1470133, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": null + }, + { + "business_id": "0lQKj8f1CJSdLJRLYEsqnQ", + "name": "Betty Ann's Italian Market Florist", + "address": "902 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9387584, + "longitude": -75.1580381, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-17:30", + "Sunday": "9:0-14:30" + } + }, + { + "business_id": "gHMN4jk8kjG50CH-IRY2Dw", + "name": "Arbys Roast Beef", + "address": "2560 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9788169932, + "longitude": -75.1191148148, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "DriveThru": "True", + "Caters": "None" + }, + "categories": "Sandwiches, American (Traditional), Fast Food, Restaurants", + "hours": null + }, + { + "business_id": "AxcyIxsjJbRNG2RFTguavw", + "name": "Mike's Hot Dog Cart", + "address": "24th & Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9223806, + "longitude": -75.1869289, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "iQMGNjgTqZWhgDH_nGwKfQ", + "name": "Nova Star Pharmacy", + "address": "301 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.96999, + "longitude": -75.131785, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Medical Supplies, Drugstores, Shopping", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "Rk-qL4enpuz3WA3xKetnzw", + "name": "Anastacia's Antiques", + "address": "617 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413162, + "longitude": -75.153113, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Antiques, Shopping, Jewelry", + "hours": { + "Thursday": "12:0-18:30", + "Friday": "12:0-18:30", + "Saturday": "12:0-18:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "sHZP73HSW1eCBorgi8pUjQ", + "name": "College Pizza/College Cafe", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "6:0-3:0", + "Tuesday": "6:0-3:0", + "Wednesday": "6:0-3:0", + "Thursday": "6:0-3:0", + "Friday": "6:0-3:0", + "Saturday": "6:0-3:0", + "Sunday": "6:0-3:0" + } + }, + { + "business_id": "_PQzeo8P2sGczzFEifrK-Q", + "name": "Claudio's Specialty Foods", + "address": "924-26 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9381953, + "longitude": -75.1582206, + "stars": 4.5, + "review_count": 148, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Food, Cheese Shops, Specialty Food, Meat Shops", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "8:30-17:30", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "CMLS5r0rOAWqlnu5lnC0TA", + "name": "Revolution Fitness Factory", + "address": "1516 N 5th St, Unit 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.974968, + "longitude": -75.144123, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Boot Camps, Yoga, Fitness & Instruction, Active Life, Trainers, Gyms, Dance Studios", + "hours": { + "Monday": "17:0-20:0", + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-18:30", + "Saturday": "8:0-12:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "zNi8ceY3sLBXZoTUstjrvg", + "name": "Burger Lane", + "address": "2805 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9973553, + "longitude": -75.1669794, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Burgers", + "hours": { + "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-21:0" + } + }, + { + "business_id": "Gmj3Lrg0wHaJnzshCxNG_g", + "name": "Nocturnal Skateshop", + "address": "612 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414478794, + "longitude": -75.1509103962, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Shoe Stores, Sporting Goods, Men's Clothing", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "7b-4PtkVI_qZ76jp4rz8Bg", + "name": "Ricky Cafe", + "address": "2-4 N 32nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555927735, + "longitude": -75.1885843277, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "American (New), Sandwiches, Food, Restaurants, Street Vendors, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "7crp8LZA4HbkMAKyh8Wcdg", + "name": "Romano's Pizza Express", + "address": "2901 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9952251, + "longitude": -75.1393742, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-11:15", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "ihXHRu99MxQDiy_p1FKqhQ", + "name": "Philly's Finest Pizza", + "address": "7962 Dungan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0681765, + "longitude": -75.068702, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "zshJGJPip5oKjocYXhLofw", + "name": "Philly Dawgz", + "address": "3240 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0022087, + "longitude": -75.1527447, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Hot Dogs, American (Traditional)", + "hours": null + }, + { + "business_id": "NBlB85ch_WCxYJ4fPWHxJA", + "name": "MexiCali", + "address": "38th & Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954940073, + "longitude": -75.2023024894, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "'no'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Mexican, Food Trucks, Restaurants, Food", + "hours": null + }, + { + "business_id": "K9gaM9XdGqGWsQMdjpxFIQ", + "name": "7-Eleven", + "address": "226 W Rittenhouse Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9492424097, + "longitude": -75.1739857577, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "ldTsXru9q1V-aC6iM7BH-w", + "name": "Subway", + "address": "1936 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9824443591, + "longitude": -75.1559102741, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'no'", + "Corkage": "False", + "Caters": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "BYOB": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants, Fast Food", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "9gObo5ltOMo6UgsaXaHPWA", + "name": "R2L", + "address": "50 S 16th St, Fl 37", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9516172612, + "longitude": -75.167190457, + "stars": 3.5, + "review_count": 787, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'dressy'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "DogsAllowed": "False" + }, + "categories": "American (New), Lounges, Nightlife, Cocktail Bars, Bars, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "1t_QZpj9jTg-VSQDnWM7PQ", + "name": "Philly Spy", + "address": "1823 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 39.9470877, + "longitude": -75.2814365, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Home & Garden, Safety Equipment, Appliances, Electronics", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "f8S-27ATMBpRwcXkRPExZQ", + "name": "Shop Sixty Five", + "address": "128 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505615, + "longitude": -75.1691979, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Accessories, Jewelry, Women's Clothing, Fashion", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "oxo-zgeEHH_kzDSEbZe4xw", + "name": "Brandy Melville", + "address": "1527 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499518, + "longitude": -75.1670763804, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Accessories, Jewelry, Shopping, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "uUYr4mxdptgy8faIxB-8Ew", + "name": "Cedar Park", + "address": "50th St & Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9482189152, + "longitude": -75.2226483822, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "uwF2zLAnZZ1SCwEF8QQKQA", + "name": "Wissahickon Valley Trail", + "address": "Valley Green Rd At Wissahickon", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0855907865, + "longitude": -75.2297830582, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Hiking, Parks, Active Life", + "hours": null + }, + { + "business_id": "LrMVQ2TlZyS82qTkDM9mxw", + "name": "Feltonville Express Pizza", + "address": "4812 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0236527, + "longitude": -75.1243229, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "9:0-23:30", + "Tuesday": "9:0-23:30", + "Thursday": "9:0-23:30", + "Friday": "9:0-0:30", + "Saturday": "9:0-0:30", + "Sunday": "9:0-22:30" + } + }, + { + "business_id": "qrVCN6M272dDdEKPB1E44w", + "name": "Moore Beverage", + "address": "601 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9266145, + "longitude": -75.1560886, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "xWvxtxqvcLSZSraR86MT8w", + "name": "Absolute Termite Control", + "address": "2942 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9131215, + "longitude": -75.171079, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pest Control, Local Services", + "hours": null + }, + { + "business_id": "fFG_tetXNiW9u0lN1W2dBQ", + "name": "Prowax Auto Detailing", + "address": "1735 Market St, Ste 3750", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9537107, + "longitude": -75.1695108, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "9b0Mrvs6uJu2jJqet_Jwew", + "name": "Asia Nail 2 & Spa", + "address": "1720 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9381565, + "longitude": -75.1723224, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Waxing, Nail Salons, Beauty & Spas, Health & Medical, Hair Removal, Reflexology, Eyelash Service", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Z5po0aTuzKKblek5y6Sp8Q", + "name": "500 Degrees", + "address": "1504 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503631, + "longitude": -75.1662246, + "stars": 3.5, + "review_count": 443, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Food, Burgers, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0" + } + }, + { + "business_id": "0K66djyR4yvBG4mEW5y_xw", + "name": "Home Spun Resale Boutique", + "address": "1523 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673208, + "longitude": -75.1630885, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Community Service/Non-Profit, Thrift Stores, Used, Vintage & Consignment, Shopping, Women's Clothing, Fashion", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "AwmeLVLEfdFoCa0LaF0UYA", + "name": "The Beer Store", + "address": "399 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0844192769, + "longitude": -74.9649981286, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "xJWchnP9x_5STCQzEazQ7Q", + "name": "Charlie's Jeans", + "address": "1735 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518768, + "longitude": -75.170012, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VXTypAQ-BwdNJyLWHQEl9A", + "name": "The Dog Enthusiast", + "address": "838 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938705, + "longitude": -75.157579, + "stars": 5.0, + "review_count": 18, + "is_open": 0, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Sitting, Pet Groomers, Pet Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "jj9-k3CsTJz0a3_pP4RkJw", + "name": "Tsaocaa & sushi corner", + "address": "1042 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942847, + "longitude": -75.159885, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food, Bubble Tea", + "hours": { + "Monday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "GzWIBhi32It2LMgX2-c_hA", + "name": "Justin's Snack Corner", + "address": "601 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9502962, + "longitude": -75.2266546, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Burgers, Restaurants, Steakhouses, Breakfast & Brunch", + "hours": { + "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-16:0" + } + }, + { + "business_id": "dVtFSZCtuhCNaUhWfo2vng", + "name": "Forman Mills", + "address": "4806 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9586996, + "longitude": -75.2185522, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shoe Stores, Department Stores, Women's Clothing, Sports Wear, Fashion, Shopping, Sporting Goods, Accessories", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30" + } + }, + { + "business_id": "GNnDvJwtA9C1XFf-yv4KVA", + "name": "La Marqueza - Food Truck", + "address": "Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9610084469, + "longitude": -75.1666989129, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mexican, Breakfast & Brunch, Food Trucks, Street Vendors, Restaurants, Food Stands, Food", + "hours": null + }, + { + "business_id": "muL0Op-fX17L39-i9L5Gsw", + "name": "The WorkHorse", + "address": "4201 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0237744, + "longitude": -75.2202067, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "aGlcso7FnM30cqCzEk8xNw", + "name": "Melady Landscaping", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": null, + "categories": "Home Services, Landscape Architects, Tree Services, Landscaping", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "wDhNKCkOObNSw54av90ZmQ", + "name": "AutoZone Auto Parts", + "address": "7350 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0628541263, + "longitude": -75.0836977727, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Auto Parts & Supplies, Automotive", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-9:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "tqBkgu2wyCjYBWuTQoy2aw", + "name": "Orchard Smoothie and Cafe", + "address": "1200 S Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9349405, + "longitude": -75.1636927, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Restaurants, Food, Juice Bars & Smoothies", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "7CXSQYrIep0jdvoYPUIGdQ", + "name": "Sephora", + "address": "1714 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513955, + "longitude": -75.1693585, + "stars": 3.5, + "review_count": 188, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Beauty & Spas, Shopping, Skin Care, Cosmetics & Beauty Supply, Perfume", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-16:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "IwjkFCbCyovE72tT2ekr6A", + "name": "Oxford Beverage", + "address": "7517 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0664431362, + "longitude": -75.0835920506, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "i6I82bBMgxkV8RU5JDypTA", + "name": "AutoZone Auto Parts", + "address": "3451 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9915557, + "longitude": -75.0994851, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Parts & Supplies, Automotive", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "8FALz8g6oaTca0ufiUuF6w", + "name": "Tabu Lounge & Sports Bar", + "address": "254 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947086, + "longitude": -75.161151, + "stars": 3.5, + "review_count": 121, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "BikeParking": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "OutdoorSeating": "True", + "WiFi": "u'no'" + }, + "categories": "Nightlife, Bars, Lounges, Sports Bars, Gay Bars", + "hours": { + "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" + } + }, + { + "business_id": "mLDJH5ic5_digOyWxBA71Q", + "name": "Jefferson Health - Navy Yard", + "address": "3 Crescent Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.89594, + "longitude": -75.1740104, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Medical Centers, Health & Medical, Hospitals", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "L2pmVQMrpY-yZwZkZoRt5g", + "name": "Giovanni's Pizzeria", + "address": "5604 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0334795, + "longitude": -75.1758562, + "stars": 2.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Sandwiches, Italian, Pizza", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "Gd6yIH-qhf9uCdtUWs382g", + "name": "Speedy Beverage Drive Thru", + "address": "5408 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.022363, + "longitude": -75.2092982, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "fAKJLkzh71-K8ra82xZJWw", + "name": "Liberty Bar & Grill", + "address": "2204 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538230896, + "longitude": -75.1769866943, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "WiFi": "u'free'" + }, + "categories": "Nightlife, Dance Clubs, Bars, Restaurants, American (New), Dive Bars, Pubs, Sports Bars, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-0:30", + "Tuesday": "11:0-0:30", + "Wednesday": "11:0-0:30", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "E3V6zb2wpHEo-1dfpIaUYA", + "name": "Symphony Nails", + "address": "207 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484837, + "longitude": -75.1621601, + "stars": 3.5, + "review_count": 117, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Nail Technicians, Skin Care, Hair Removal, Waxing, Massage, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "bFO_XYnYMDF1GMY9LK3oxQ", + "name": "Otolith Sustainable Seafood", + "address": "2133 Huntingdon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9842403, + "longitude": -75.123013, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Seafood Markets, Specialty Food, Restaurants, Food, Seafood, Grocery", + "hours": { + "Thursday": "15:0-18:0", + "Friday": "15:0-18:0", + "Saturday": "15:0-18:0", + "Sunday": "15:0-18:0" + } + }, + { + "business_id": "cDPHu4gct96U0BHIdL4wiA", + "name": "Philadelphia Photo Arts Center", + "address": "1400 N American St, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.973259, + "longitude": -75.140398, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Local Services, Specialty Schools, Education, Shopping, Photography Classes, Special Education, Summer Camps, Community Service/Non-Profit, Art Galleries, Active Life, Arts & Entertainment, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "D2gONomZQyRjxR3TMHJovw", + "name": "Wawa", + "address": "201 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949233, + "longitude": -75.164075, + "stars": 3.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Sandwiches, Food, Gas Stations, Restaurants, Coffee & Tea, Automotive, Convenience Stores", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "b1T39R2EPxuOXJIR61j1DA", + "name": "Paxia", + "address": "746 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9384421, + "longitude": -75.1561233, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, Restaurants, Food", + "hours": { + "Monday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "cdqTpsr110wSNPMtLCPh7A", + "name": "SRS Real Estate", + "address": "1610 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94739, + "longitude": -75.16854, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "toMVWIsPJmS7-LiLAf2AfA", + "name": "Ippolito's Seafood", + "address": "3400 S Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9049727, + "longitude": -75.1588247, + "stars": 4.0, + "review_count": 101, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Specialty Food, Sandwiches, American (Traditional), Butcher, Fish & Chips, Seafood Markets, Restaurants, Seafood, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "8YTbOl9x7WSJwZuKgCSF0g", + "name": "Holt's Cigar Company", + "address": "1522 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494832, + "longitude": -75.1671127, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "None", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Shopping", + "hours": { + "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": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "FKrP06TDAKtxNG1vrRQcQQ", + "name": "Johnny Rockets", + "address": "443 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419525, + "longitude": -75.1505858, + "stars": 2.5, + "review_count": 110, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': True, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Burgers, American (Traditional), American (New), Restaurants, Sandwiches, Fast Food", + "hours": { + "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": "11:30-19:0" + } + }, + { + "business_id": "j0D6RaGSZMjfiOfux8aKng", + "name": "U-Haul Moving & Storage at Quartermaster Plaza", + "address": "2990 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9152054504, + "longitude": -75.1870922932, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Trailer Rental, Parking, Shopping, Packing Supplies, Automotive, Truck Rental, Local Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "vR9SKMvXCXyrl6u5ouWHBQ", + "name": "Chan's Halal Restaurant", + "address": "5500 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9798334, + "longitude": -75.232945, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Asian Fusion, Chinese, Restaurants, Halal", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "R76nXl5oTep-d1ZGPZSimQ", + "name": "Trio Breakfast & Lunch", + "address": "5548 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.03145806, + "longitude": -75.1788476379, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese, American (Traditional), Fast Food, Breakfast & Brunch", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0" + } + }, + { + "business_id": "dCFptNgnFQ8t0IG1Mj1NQA", + "name": "Ham + Bone", + "address": "1824 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9773159274, + "longitude": -75.1315780865, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pet Groomers, Pets, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "BJnnPDTZXsyXou42HnHfHA", + "name": "U-Haul of University City", + "address": "4857 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.957819, + "longitude": -75.218783, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Propane, Truck Rental, Movers, Automotive, Home Services, Self Storage, Local Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "0Lug9lpS3mdky77wsr3wmQ", + "name": "Carl's Vineland Farm Eggs", + "address": "1031 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936779, + "longitude": -75.1581763, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Butcher, Food", + "hours": null + }, + { + "business_id": "uE_4H__4kj4Xjb115_LBvA", + "name": "Victoria Flower", + "address": "10869 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1111596, + "longitude": -75.0243333, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Floral Designers, Flowers & Gifts, Event Planning & Services, Shopping, Florists", + "hours": { + "Monday": "10:30-19:30", + "Tuesday": "10:30-19:30", + "Wednesday": "10:30-19:30", + "Thursday": "10:30-19:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "MN-Em6pY0ZXZQsLv6uBhrA", + "name": "Asian Garden", + "address": "4047 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9576083, + "longitude": -75.2036365, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "NB9wGhMqy27suWqNzk3laA", + "name": "Ariana", + "address": "134 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481961938, + "longitude": -75.1437439718, + "stars": 4.0, + "review_count": 115, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True" + }, + "categories": "Middle Eastern, Afghan, Restaurants", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "FIQZMB4G1pfqOAByuJ1SYA", + "name": "Ruby Garden Restaurant", + "address": "6842 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041631, + "longitude": -75.06483, + "stars": 3.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False" + }, + "categories": "Dim Sum, Diners, Seafood, Restaurants, American (Traditional), Chinese, Cantonese", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "a93-oNkJsUWOCiHu5O9xLA", + "name": "Burger King", + "address": "90 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0879342598, + "longitude": -74.9671626596, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-5:0", + "Tuesday": "10:0-5:0", + "Wednesday": "10:0-5:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "LACylKxImNI29DKUQpWuHw", + "name": "Burger King", + "address": "15 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949709197, + "longitude": -75.1549760369, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-2:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "GKPtlxe7wdCWZ67Fx904dQ", + "name": "Homebridge Financial Services", + "address": "601 Walnut St, Ste 765", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.151952, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Financial Services, Mortgage Lenders, Real Estate, Home Services, Mortgage Brokers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "DRnvSL_I8MLuTLhl6O4JBQ", + "name": "Gennaro's Tomato PIE", + "address": "1533 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299503, + "longitude": -75.162894, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "zy7uNOvpykrq-XlmDY_wHA", + "name": "Sadiki's Restaurant & Lounge", + "address": "7152 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.063543, + "longitude": -75.153158, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Southern, Restaurants", + "hours": null + }, + { + "business_id": "rgkz13vQnU2WFZBQBMqMAg", + "name": "Retrospect Vintage", + "address": "508 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417907758, + "longitude": -75.1511803318, + "stars": 3.5, + "review_count": 124, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Used, Vintage & Consignment, Local Services, Home Decor, Shopping, Women's Clothing, Thrift Stores, Community Service/Non-Profit, Home & Garden, Fashion", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "HSXvx9ajd9cGDzYIScmrig", + "name": "TyeMeka's Soul Food", + "address": "5920 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0381549, + "longitude": -75.1769466, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Soul Food", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "zbu2BgZJMCScHtyFnyy6YQ", + "name": "Red's Creative Cuts Unisex Salon", + "address": "1611 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0809207, + "longitude": -75.172366, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "RaPhU7UdbjlbpR1reCEwVw", + "name": "Old City Tans", + "address": "11 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503585, + "longitude": -75.1433454, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tanning, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "eaDZlSuVS0EY67Ke6pRP6Q", + "name": "Penang", + "address": "117 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954044, + "longitude": -75.15598, + "stars": 3.5, + "review_count": 1112, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Malaysian, Asian Fusion, Cambodian, Chinese, Restaurants, Thai", + "hours": { + "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-23:0" + } + }, + { + "business_id": "fskPbD8G1DDQbCslHV-v_A", + "name": "Domino's Pizza", + "address": "4600 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.029773, + "longitude": -75.0994, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food, Pizza, Sandwiches, Chicken Wings", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "3slJKckw5feGTOHopRTiPA", + "name": "2nd Ave Thrift Superstore", + "address": "163 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0907366, + "longitude": -74.9655363, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Thrift Stores, Shopping, Discount Store, Fashion, Used, Vintage & Consignment", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "M0vE83RgTuYBhd3qkAIdpA", + "name": "Petrelli Previtera", + "address": "1845 Walnut St, Fl 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950825, + "longitude": -75.17152, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, DUI Law, Legal Services, Lawyers, Estate Planning Law, Divorce & Family Law", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "ra0Xp7uUxkdVxawtdZSrEQ", + "name": "Forman Mills", + "address": "3500 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9929653, + "longitude": -75.0991591, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Fashion, Women's Clothing, Children's Clothing, Shopping", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "jDpTvYGJWqjIHw5OQKBINw", + "name": "WM Proud Masonry Restoration", + "address": "2610 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9903093, + "longitude": -75.1368474, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Masonry/Concrete, Home Services, Waterproofing", + "hours": { + "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" + } + }, + { + "business_id": "KqvaJX11rb4Hp70D8Dw4oQ", + "name": "Admirals Club PHL Terminal F", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.880694, + "longitude": -75.23737, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "HappyHour": "False", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "OutdoorSeating": "None", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Bars, Nightlife, Airport Lounges", + "hours": { + "Monday": "5:0-21:30", + "Tuesday": "5:0-21:30", + "Wednesday": "5:0-21:30", + "Thursday": "5:0-21:30", + "Friday": "5:0-21:30", + "Saturday": "5:0-21:30", + "Sunday": "5:0-21:30" + } + }, + { + "business_id": "cFnBmQ8recCHLF1-KNXkiA", + "name": "AAA Distributor", + "address": "2501 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0791, + "longitude": -75.0238, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Appliances, Home & Garden, Shopping, Kitchen & Bath, Flooring", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "7E0VkDqc_86Zz9d5kQJCJQ", + "name": "Philadelphia Orthodontics", + "address": "1420 Walnut St, Ste 518", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493970005, + "longitude": -75.1654304292, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Dentists, Orthodontists, Professional Services, Cosmetic Dentists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "1XBxnolv7ZpHQBVE_gBAWg", + "name": "Mobile Ninja", + "address": "1208 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431682424, + "longitude": -75.1624356684, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Mobile Phones, Mobile Home Repair, Electricians, Security Systems, Plumbing, Waterproofing, Local Services, Home Services, Shopping, IT Services & Computer Repair, Electronics Repair, Handyman, Mobile Phone Repair, Water Heater Installation/Repair", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "z5qihVAArG351hpN3riTOA", + "name": "Joseph Fonash - Keller Williams", + "address": "2424 E York St, Ste 239", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9772486, + "longitude": -75.1242606, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Home Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "3hFAXKo69x2om7z9OWG7kA", + "name": "Cottman Beverage", + "address": "7544 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0394453, + "longitude": -75.0342361, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "1wwH1dnkTtDnCfpHORlgBQ", + "name": "Mommy Telly's Famous BBQ", + "address": "23 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9565322, + "longitude": -75.1891783, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Food Trucks, Barbeque, Restaurants, Filipino", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "vFaZ55TFdW5GxtsS_0VKXg", + "name": "Northeast Academy Taxi Assoc", + "address": "8125 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425931, + "longitude": -75.0245184, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Limos, Taxis, Transportation, Airport Shuttles, Hotels & Travel", + "hours": null + }, + { + "business_id": "Dv6RfXLYe1atjgz3Xf4GGw", + "name": "HipCityVeg", + "address": "127 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950774, + "longitude": -75.170397, + "stars": 4.0, + "review_count": 1082, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "OutdoorSeating": "True" + }, + "categories": "Burgers, Vegetarian, Restaurants, Vegan", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "9iBlpXwgBFLVnx6RmHsiCQ", + "name": "Foods On First", + "address": "1429 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.954879, + "longitude": -75.1644704, + "stars": 3.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Cheesesteaks, Restaurants, Event Planning & Services, Diners, Caterers, American (Traditional), Breakfast & Brunch", + "hours": { + "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": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "Mr9YZZhMTG7Xk3Cr4awxPQ", + "name": "The Randy Goose", + "address": "434 North 32nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9629184, + "longitude": -75.1886571, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Dive Bars, Nightlife, Sports Bars, Bars", + "hours": null + }, + { + "business_id": "9PCPV34KV1B_E3v1IUi4tQ", + "name": "African Small Pot", + "address": "6505 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9255169287, + "longitude": -75.2345210196, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': None}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Senegalese, African", + "hours": { + "Monday": "7:0-1:0", + "Tuesday": "7:0-1:0", + "Wednesday": "7:0-1:0", + "Thursday": "7:0-1:0", + "Friday": "7:0-1:0", + "Saturday": "7:0-1:0", + "Sunday": "7:0-1:0" + } + }, + { + "business_id": "WneyRrLCxcbYn3qo7p58-g", + "name": "DXL", + "address": "2329 Cottman Ave, Space 51", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048327, + "longitude": -75.057473, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Shoe Stores, Men's Clothing, Fashion, Shopping, Accessories, Department Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "F8yozE3NWnImNApHO347gQ", + "name": "Marrakesh", + "address": "517 S Leithgow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420436, + "longitude": -75.1495102, + "stars": 4.5, + "review_count": 659, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'full_bar'", + "Caters": "False", + "Corkage": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mediterranean, Moroccan", + "hours": { + "Monday": "17:30-21:0", + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-21:0", + "Saturday": "17:30-21:0", + "Sunday": "17:30-21:0" + } + }, + { + "business_id": "n4Ns3xLRhpkRwglwiQGKVA", + "name": "Rodeway Inn Center City", + "address": "1208 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948766, + "longitude": -75.161061, + "stars": 2.5, + "review_count": 119, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "AfassS1QI0DHsqwuof9-lA", + "name": "Dirty Franks", + "address": "347 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9453923, + "longitude": -75.1627698, + "stars": 3.5, + "review_count": 290, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "HappyHour": "True", + "GoodForDancing": "False", + "Alcohol": "'full_bar'", + "Smoking": "'no'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "HasTV": "True", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "Music": "{'dj': False, 'background_music': False, 'karaoke': False, 'live': False, 'video': False, 'jukebox': True}", + "WiFi": "'no'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False" + }, + "categories": "Arts & Entertainment, Bars, Jazz & Blues, Dive Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "BJphaOPeTtqUFF5pauQEhw", + "name": "Los Caballos Locos", + "address": "101 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9179108, + "longitude": -75.1491694, + "stars": 4.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Salvadoran, Desserts, Mexican, Restaurants, Food, Southern, Latin American", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "UhSVDwQFW6mKmaEA5OTU7A", + "name": "Sansom Kabob House", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950303, + "longitude": -75.166856, + "stars": 4.0, + "review_count": 128, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "HasTV": "False" + }, + "categories": "Vegetarian, Middle Eastern, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "13:0-22:0" + } + }, + { + "business_id": "wyT044EirxfcotSSqG_S6Q", + "name": "iBeach Club", + "address": "150 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0282537, + "longitude": -75.2255038, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Day Spas", + "hours": { + "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-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "voBKS7xPilHv3iWD54SOfw", + "name": "Blatt Tire & Auto Repair", + "address": "2001 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.112617, + "longitude": -75.003706, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive, Tires", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "IbdpXTUI56Jb5uCqUsKzhw", + "name": "Manny & Phil's Pub", + "address": "1801 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9257971, + "longitude": -75.1525004, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "zLViSytSrWambgwGECNyZA", + "name": "Philadelphia Eagles", + "address": "One Lincoln Financial Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.907408, + "longitude": -75.178212, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Professional Sports Teams, Arts & Entertainment", + "hours": null + }, + { + "business_id": "NVN_23yYJDf_RAinqFICDA", + "name": "Hot Diggity!", + "address": "630 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419555, + "longitude": -75.1532373, + "stars": 4.5, + "review_count": 191, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Hot Dogs, Restaurants, Vegetarian", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "pDOzKiTh3_2vwFiasBcEaQ", + "name": "Dino Casa of Beauty", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9480384, + "longitude": -75.1658929, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "FGMWwMg9ZJ1prb-NBMng2A", + "name": "Axelrod Flowers", + "address": "4429 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0167086, + "longitude": -75.1158459, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Event Planning & Services, Caterers, Flowers & Gifts, Shopping, Flowers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "ldPcDAa_u66jQINDlutTsQ", + "name": "Isaac's Moving & Storage", + "address": "4309 G St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.014142, + "longitude": -75.110798, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Shopping, Home & Garden, Movers, Home Services, Local Services, Packing Services, Self Storage", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "eMiN8nm70jjKg8izikVWDA", + "name": "Chickie's & Pete's", + "address": "1526 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9114175, + "longitude": -75.1745111, + "stars": 3.5, + "review_count": 590, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Corkage": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "Caters": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "Alcohol": "'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Seafood, Nightlife, Sports Bars, Bars, Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "igokTeBzqlsltxz7lPzVqA", + "name": "Columbus Square Dog Park", + "address": "1200 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9326449362, + "longitude": -75.1642181005, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Dog Parks, Parks", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "tJCnUtGdyPyOGt5kudLrTA", + "name": "Wise Guys Pizza & Steaks", + "address": "4026 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95703, + "longitude": -75.203031, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True" + }, + "categories": "Pizza, Cheesesteaks, Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "QjktE2M71v56CVHERuyiTg", + "name": "Layalena Hookah Lounge", + "address": "708 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962279, + "longitude": -75.141283, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "Caters": "True", + "GoodForKids": "False", + "RestaurantsReservations": "None", + "OutdoorSeating": "True", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Bars, Nightlife, Restaurants, Middle Eastern, Hookah Bars", + "hours": null + }, + { + "business_id": "CldkS_vTY-vQKYw3LPXpuw", + "name": "Domino's Pizza", + "address": "5711 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0275052, + "longitude": -75.2094578, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pizza, Chicken Wings, Restaurants, Sandwiches", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-1:0" + } + }, + { + "business_id": "4xms8NaJgu_YFXhvR78w9Q", + "name": "Cadence Cycling Centers- Manayunk", + "address": "3740 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0156091473, + "longitude": -75.2111461029, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Local Services, Motorcycle Gear, Bikes, Bike Repair/Maintenance, Bike Rentals, Sporting Goods, Fashion, Active Life, Shoe Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "tfpsjbdRWhvIR_04tKrbiQ", + "name": "Giant Heirloom Market", + "address": "3401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548143059, + "longitude": -75.192007497, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Kombucha, Grocery, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "JUlsvVAvZvGHWFfkKm0nlg", + "name": "El Camino Real", + "address": "1040 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673004, + "longitude": -75.1403984, + "stars": 3.5, + "review_count": 1014, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Tex-Mex, Restaurants, Barbeque", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "C73qKghiS8ZoFM6E9DYkQg", + "name": "City Nails", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953549, + "longitude": -75.165458, + "stars": 2.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "I0AJ0BKPdzT-fIUo1z9TUw", + "name": "Jefferson Headache Center", + "address": "900 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481859, + "longitude": -75.1559807, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "Kty7iDGZqwQeqUz75CQyoQ", + "name": "Patterson Appliance Repair", + "address": "3408 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0382799, + "longitude": -75.0441279, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Appliances & Repair", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "PW6C4OMpPQ_Zm7oiwNIVgw", + "name": "Anjou Restaurant", + "address": "206 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497115, + "longitude": -75.1441504, + "stars": 2.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "True" + }, + "categories": "French, Restaurants, Sushi Bars, Asian Fusion", + "hours": null + }, + { + "business_id": "HJSY4FQViwzHnTF7d-IUdQ", + "name": "Brewer's Outlet", + "address": "309 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9535265, + "longitude": -75.2181452, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-15:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "tJ8aNrenrBATz0fM3mcVcg", + "name": "Spruce Internal Medicine", + "address": "800 Walnut St, 16th Floor, Penn Medicine Washington Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477865, + "longitude": -75.1546211, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Internal Medicine, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:30-0:30" + } + }, + { + "business_id": "0zf4KKZqbqoxiuKzeZLDdg", + "name": "PrimoHoagies", + "address": "128 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949216187, + "longitude": -75.1590522333, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Italian, Sandwiches, Restaurants", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "rjWmcVqhXlevrXDPRNUrrQ", + "name": "Thunderbird Lanes", + "address": "5830 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0330105, + "longitude": -75.0841183, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Active Life, Bowling, Sporting Goods", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "I9DCtzUgR4gamBFMVsdY8g", + "name": "Capital Beer", + "address": "2661 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976126, + "longitude": -75.119234, + "stars": 3.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Sushi Bars", + "hours": null + }, + { + "business_id": "j9Ea81ctJGCVdU-qM1OuSQ", + "name": "Rose's Water Ice", + "address": "4240 Pechin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0281725, + "longitude": -75.2151447, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food, Specialty Food", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "GnCO-g9SyJxnOwFmGpjXng", + "name": "The Edge Fitness Clubs", + "address": "15501 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.132974, + "longitude": -75.009625, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False" + }, + "categories": "Gyms, Fitness & Instruction, Pilates, Active Life, Trainers", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-21:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "piUZEndStsWNnRUwOPk8jA", + "name": "King's Garden", + "address": "8225 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074311, + "longitude": -75.202909, + "stars": 3.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "Caters": "False", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Chinese, Cantonese, Restaurants, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "13:30-21:0" + } + }, + { + "business_id": "m_hMeLTodOd07zWtfD-IPg", + "name": "PetSmart", + "address": "2360 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9180079, + "longitude": -75.1889193, + "stars": 3.0, + "review_count": 74, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pet Services, Pets, Pet Training, Pet Groomers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Pcxef4vgyFAfNgsFW7peNw", + "name": "Enterprise Rent-A-Car", + "address": "1201 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.005848, + "longitude": -75.104891, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "PaQYIjuNNCgKmfc_gzIA5g", + "name": "Square Peg Artery and Salvage", + "address": "2527 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.983717, + "longitude": -75.125088, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Arts & Entertainment, Jewelry, Art Galleries", + "hours": { + "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" + } + }, + { + "business_id": "jOhRFAJYBHU3chGwg1e4_A", + "name": "1st NE International Market", + "address": "2850-2876 Saint Vincent St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0415935137, + "longitude": -75.0547986031, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Grocery, Restaurants, International Grocery, Asian Fusion", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "wLqMLEOEtDSpYl9so6Yf8g", + "name": "Sabel's Gaslight Pub", + "address": "3979 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.999872, + "longitude": -75.2091474, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Bars, Pubs, Adult Entertainment, Nightlife", + "hours": null + }, + { + "business_id": "M77MQ0Gge2ZbSz0FM0oGgg", + "name": "Krispy Kreme", + "address": "7855 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0740735373, + "longitude": -75.0845174909, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Donuts, Bakeries, Food", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-0:0", + "Saturday": "6:30-0:0", + "Sunday": "6:30-22:0" + } + }, + { + "business_id": "_AQEYAyi0o6ML7yuSpQcOw", + "name": "Pizano's Family Pizza and BreakFast Kitchen", + "address": "1536 N Carlisle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9772502, + "longitude": -75.1593264, + "stars": 1.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "WiFi": "u'paid'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Halal, Restaurants, Pizza", + "hours": { + "Monday": "8:30-0:0", + "Tuesday": "8:30-0:0", + "Wednesday": "8:30-0:0", + "Thursday": "8:30-0:0", + "Friday": "8:0-1:0", + "Saturday": "8:0-1:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "VUf9trcyknSQO21imDEOiQ", + "name": "CKO Kickboxing Center City", + "address": "1616 Walnut St, Ste B2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496553, + "longitude": -75.1684693, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Boxing, Martial Arts, Kickboxing, Active Life, Gyms, Fitness & Instruction", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "7:0-19:30", + "Saturday": "8:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "v-AC2JmLx1cLW8wJUB8gSg", + "name": "Doggie Style Pets ", + "address": "1434 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9726087, + "longitude": -75.1344844, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pets, Pet Groomers, Pet Services", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "Q4vYTHejsVkm6cA8qOJXUg", + "name": "Rittenhouse Claridge", + "address": "201 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498321, + "longitude": -75.1703161, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "11:0-15:30" + } + }, + { + "business_id": "GYAX9mPGYx9VfwDiuIl_9Q", + "name": "Nhu Y", + "address": "802 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938591, + "longitude": -75.156532, + "stars": 4.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Sandwiches, Delis, Vietnamese", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Friday": "8:0-18:30", + "Saturday": "7:30-19:0", + "Sunday": "7:30-19:0" + } + }, + { + "business_id": "ydY1FKBgpgXvhxpVPMbinA", + "name": "Numa", + "address": "108 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951392, + "longitude": -75.17062, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Sushi Bars, Japanese", + "hours": null + }, + { + "business_id": "OHzX-ZD9qyoeoxR8Z0dlIA", + "name": "Khyber Pass Pub", + "address": "56 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486423, + "longitude": -75.1441173, + "stars": 4.0, + "review_count": 845, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "Smoking": "u'no'", + "RestaurantsDelivery": "True", + "BYOB": "False", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (Traditional), Bars, Pubs, Nightlife, Gastropubs", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "-qZ3GVQpEa02BXg1ehzaMQ", + "name": "Cloud Factory Hookah Lounge", + "address": "1201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467814, + "longitude": -75.1611265, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HappyHour": "True", + "BYOB": "True", + "Corkage": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "Alcohol": "u'beer_and_wine'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "Smoking": "u'outdoor'", + "CoatCheck": "False", + "OutdoorSeating": "False", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Hookah Bars, Nightlife, Cafes, Bars, Restaurants", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "19:0-2:0", + "Wednesday": "19:0-2:0", + "Thursday": "19:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-0:0" + } + }, + { + "business_id": "z_HjcSyGqKePmpjta8T1LA", + "name": "Rivers Poker Room Philadelphia", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9638134, + "longitude": -75.1324645, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WiFi": "u'free'" + }, + "categories": "Casinos, Arts & Entertainment", + "hours": { + "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" + } + }, + { + "business_id": "C72KQ0aYKFREtkbLWRXsVw", + "name": "Warwick Cleaners & Laundry", + "address": "250 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949058, + "longitude": -75.1780107, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "10:0-13:0", + "Tuesday": "10:0-13:0", + "Wednesday": "10:0-13:0", + "Thursday": "10:0-13:0", + "Friday": "10:0-13:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "wQWhY5vA3ESMh6qFHMYvrg", + "name": "Queen Nails & Day Spa", + "address": "16 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507095, + "longitude": -75.1458162, + "stars": 4.0, + "review_count": 98, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Massage, Hair Removal, Skin Care, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:30" + } + }, + { + "business_id": "VRnJgj0IvxoksHppE78X2Q", + "name": "Lee How Fook", + "address": "219 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562631, + "longitude": -75.1570795, + "stars": 4.0, + "review_count": 231, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Dim Sum, Restaurants, Cantonese, Chinese", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "6Tk-1wFyywckZOongs32bw", + "name": "3 Day Blinds", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shutters, Home Services, Interior Design, Shades & Blinds, Home Decor, Shopping, Home & Garden", + "hours": { + "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" + } + }, + { + "business_id": "G_j7x1JiHw8_RrXNX3JiPw", + "name": "Nazareth Hospital", + "address": "2601 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0588411, + "longitude": -75.0421637, + "stars": 1.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "ljrllgLLEYRZ_4aGkwzlWw", + "name": "1776 Allman", + "address": "1701 Walnut St, Fl 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501382, + "longitude": -75.1692145, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Event Planning & Services, Professional Services, Shared Office Spaces, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "tQYOAfl33tmP4oWpfyRr6g", + "name": "El Sabor Poblano", + "address": "1438 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9358187, + "longitude": -75.1686973, + "stars": 3.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "None", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mexican, Latin American, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "FiPzoDUHkE-W7TdtyuBRBA", + "name": "Dependable Concrete", + "address": "7715 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073429, + "longitude": -75.19362, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Snow Removal, Contractors, Demolition Services, Home Services, Local Services, Masonry/Concrete, Waterproofing", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "0mijbNf-7wiKJ9xto1pAyg", + "name": "Spice Finch", + "address": "220 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493776356, + "longitude": -75.169540979, + "stars": 4.5, + "review_count": 325, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': None}", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "5qeARcvYVpFvyyg0Q_-nog", + "name": "Weather Tight Roofing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Contractors, Roofing, Home Services", + "hours": null + }, + { + "business_id": "Abejc-Rwq-73V95830wQPg", + "name": "Surf and Turf Market", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741932, + "longitude": -75.2030576, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Specialty Food, Restaurants, Food, American (New), Seafood, Seafood Markets", + "hours": { + "Wednesday": "10:0-15:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "xzqdcjrtyrxWWh7XWbKSRw", + "name": "Michael DeAntonio Auto Repair", + "address": "1141 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936013, + "longitude": -75.161457, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "l2CsQQin7niiCq9AAcuYAg", + "name": "Penn Fertility Care", + "address": "3701 Market St, 8th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568165, + "longitude": -75.1962141, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fertility, Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "a-p-n7JMqAtF133Ckn-DYg", + "name": "Papa John's Pizza", + "address": "1555 Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0804412, + "longitude": -75.1730921, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "LbhHgTK94bFKIq4owlS9NA", + "name": "Tower Place", + "address": "1400 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9625311867, + "longitude": -75.1611845741, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Zh8X1au_crT9jBs2LlPb2Q", + "name": "Aldine", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519296405, + "longitude": -75.1721942396, + "stars": 4.0, + "review_count": 156, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "Smoking": "u'no'", + "GoodForDancing": "False", + "RestaurantsAttire": "'casual'", + "CoatCheck": "False" + }, + "categories": "Restaurants, Nightlife, Breakfast & Brunch, American (New), Cocktail Bars, Bars", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "EtKSTHV5Qx_Q7Aur9o4kQQ", + "name": "Village Whiskey", + "address": "118 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514165949, + "longitude": -75.1737677917, + "stars": 4.0, + "review_count": 1553, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "ByAppointmentOnly": "False", + "CoatCheck": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Bars, Nightlife, Whiskey Bars, Burgers, Restaurants, American (New)", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "_rzSvpr1WnAkbvcMlL4qWQ", + "name": "Terrace Apartments", + "address": "4931 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9543726, + "longitude": -75.2213522, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "s-uc3_JdpgYQk0iJr89BnQ", + "name": "Michelle Eisenhower MD", + "address": "2342 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9208547, + "longitude": -75.1706735, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "P04saImnacIzszWd7SGFjg", + "name": "Sprint Store", + "address": "5026 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9991779319, + "longitude": -75.2299821062, + "stars": 1.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "IT Services & Computer Repair, Shopping, Mobile Phones, Telecommunications, Electronics, Local Services, Mobile Phone Accessories", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "jX8i0O2x-koganf8WwHXdA", + "name": "Halo Hair", + "address": "1728 E Passyunk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9281387, + "longitude": -75.1657447, + "stars": 5.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "tBT4yR-8dRwH89nzjpOzOw", + "name": "Voree IT Solutions", + "address": "1601 Walnut St, Ste 1514", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, IT Services & Computer Repair, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "TZ_pTn6SeZwRcnx6v3bREQ", + "name": "Tsaocaa", + "address": "4415 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026369, + "longitude": -75.2251847, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Ice Cream & Frozen Yogurt, Restaurants, Chicken Wings, Food, Bubble Tea", + "hours": null + }, + { + "business_id": "E1gf1YIWOo1BgzMUwJtEZg", + "name": "Top Tomato Bar & Pizza", + "address": "116 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495688, + "longitude": -75.1589615, + "stars": 3.5, + "review_count": 232, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "None" + }, + "categories": "Pizza, Breakfast & Brunch, Nightlife, Sandwiches, Italian, Restaurants, Cheesesteaks, Food Delivery Services, Cocktail Bars, Sports Bars, Food, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "tdnwVan6owIH8JwHd6-qEA", + "name": "BPM Fitness", + "address": "1808 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9632138767, + "longitude": -75.1684797169, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cycling Classes, Fitness & Instruction, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-11:0", + "Wednesday": "17:0-19:30", + "Thursday": "17:0-19:30", + "Friday": "16:0-18:0", + "Saturday": "8:0-11:0", + "Sunday": "9:0-11:0" + } + }, + { + "business_id": "99zoELPcbwRBUqiPoaPqiQ", + "name": "Bold Coffee Bar", + "address": "1623 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9699772, + "longitude": -75.1639247, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "False" + }, + "categories": "Coffee & Tea, Food, Cafes, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "8:0-12:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "7ENaqdbPmYGSFaa8tXZzFA", + "name": "Enterprise Rent-A-Car", + "address": "15 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553242786, + "longitude": -75.1941820141, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-16:0", + "Friday": "7:30-17:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "SfpJLbqHjLTR6FZ0s7upXQ", + "name": "Mazag Cafe", + "address": "1001 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9379293, + "longitude": -75.1596294, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Specialty Food, Coffee & Tea, Ethnic Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "eihrYhmj7c-guNYUgKLVmg", + "name": "All Affordable Repairs And Construction", + "address": "2363 E Dauphin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9779236, + "longitude": -75.1258737, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Painters, Home Services, Electricians, Damage Restoration, Drywall Installation & Repair", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "Bt_GzREmPMgYZGVgTMlWNg", + "name": "Top Hat Espresso", + "address": "3139 Salmon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9827018, + "longitude": -75.1032535, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "WH4nWKXUxpLLRvARqdjlVQ", + "name": "Designer Eyes", + "address": "931 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953606, + "longitude": -75.155696, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "AcceptsInsurance": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Ophthalmologists, Optometrists, Eyewear & Opticians, Shopping, Health & Medical, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-18:0" + } + }, + { + "business_id": "mj29-9AHH3OfaGWLPM2Jnw", + "name": "Tankie's Tavern", + "address": "1720 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.914962, + "longitude": -75.176638, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Salad, Sandwiches, Restaurants, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "Ouz6NevgUHn-rGXbcw7DOQ", + "name": "American Thrift", + "address": "747 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9205938, + "longitude": -75.1599237, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Home & Garden, Used, Vintage & Consignment, Shopping", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "8:30-16:30" + } + }, + { + "business_id": "hr75pzFjl6twEgyBRBQwkw", + "name": "Bao Auto Repair", + "address": "707 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9292375, + "longitude": -75.1572396, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "HiQkn7Rp1mZda-oy-2PBjg", + "name": "The Dental Spa", + "address": "1601 Walnut St, Ste 704", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500339065, + "longitude": -75.167694, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Cosmetic Dentists, Periodontists, Prosthodontists, Health & Medical, General Dentistry, Dentists", + "hours": { + "Monday": "8:10-17:0", + "Tuesday": "8:10-17:0", + "Wednesday": "8:10-17:0", + "Thursday": "8:10-17:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "vDiD0bskBRmJMawAK2YWNg", + "name": "The Liacouras Center", + "address": "1776 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9798791, + "longitude": -75.1585587, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Performing Arts, Arts & Entertainment, Venues & Event Spaces, Music Venues, Nightlife, Stadiums & Arenas, Event Planning & Services", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30" + } + }, + { + "business_id": "qd-K8ZNpgyNTlYWBgXm2uA", + "name": "Hair Cuttery", + "address": "330 W Oregon Ave, Space 35", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9130294902, + "longitude": -75.1546011108, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}", + "BikeParking": "False" + }, + "categories": "Barbers, Beauty & Spas, Men's Hair Salons, Hair Salons, Hair Stylists", + "hours": { + "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-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "v7wTLvdffjdgrQz9406a-A", + "name": "Jack Flash Electric", + "address": "2812 Norcom Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.1004054, + "longitude": -74.9940469, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Electricians, Home Services", + "hours": null + }, + { + "business_id": "3qud1ZweO0CpkEfOhZCwGA", + "name": "Five Below", + "address": "1529 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.951319, + "longitude": -75.1667, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "fYRKwhn8STy8MvUkvD2cAA", + "name": "Philadelpia Mailroom", + "address": "8001 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618354, + "longitude": -75.055502, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Notaries, Local Services, Lawyers, Couriers & Delivery Services, Shipping Centers, Professional Services, Printing Services, Mailbox Centers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:30", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "DXYhpEv17mWqSqFjau7vhg", + "name": "Eatalia", + "address": "2723 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9749514719, + "longitude": -75.1184531736, + "stars": 4.0, + "review_count": 166, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "17:0-22:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "bUnqKEP7h48ePxHMXV0fNw", + "name": "Bridesburg Pizza", + "address": "4776 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0016758779, + "longitude": -75.0653133347, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "False", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "etzkwuhZGHUXJhdPC_y4pA", + "name": "Pure Design", + "address": "500 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.946209, + "longitude": -75.178566, + "stars": 4.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Home & Garden, Shopping, Flowers & Gifts", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "2Z7vV_BUcNaGYXikJqq-Lw", + "name": "Veterinary Hospital University of Pennsylvania", + "address": "3800 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9506189281, + "longitude": -75.200988623, + "stars": 3.0, + "review_count": 142, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "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" + } + }, + { + "business_id": "Gw7UW0E2BguzL9suQnwDeg", + "name": "SPOT Gourmet Burgers", + "address": "2821 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9747101233, + "longitude": -75.1825701445, + "stars": 4.5, + "review_count": 282, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "DriveThru": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, Food, Cheesesteaks, Food Trucks, Burgers", + "hours": { + "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", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "fMazAEKLMRu1n5V37Bt6Eg", + "name": "It Can Fit Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Packing Services, Home Services, Movers", + "hours": { + "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" + } + }, + { + "business_id": "NJJ6dOcDmB5nflOChgMbig", + "name": "Genesis Nails & Spa", + "address": "171 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9468434, + "longitude": -75.1442233, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "ohQQaiHge3vZWO_l5OlEnw", + "name": "Nicole Miller Manayunk", + "address": "4249 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024861, + "longitude": -75.221516, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Formal Wear, Shopping, Women's Clothing, Accessories, Bridal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "IoBETK0vHznKX008QYQ07g", + "name": "vybe urgent care", + "address": "1217 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934951, + "longitude": -75.167171, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Diagnostic Imaging, Diagnostic Services, Laboratory Testing, Walk-in Clinics, Health & Medical, Medical Centers, Doctors, Sports Medicine", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "BzDbphyIfHWZUoaQQdAUYw", + "name": "Goodwill Fashions", + "address": "2601 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9149547, + "longitude": -75.1486095, + "stars": 3.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Local Services, Shopping, Fashion, Community Service/Non-Profit, Used, Vintage & Consignment", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "pEFR13HPhaS_My5WEUfMhA", + "name": "Great World Supermarket", + "address": "927 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537636, + "longitude": -75.1559062, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "mBcvp7NarEQEviJyRiX23Q", + "name": "Starbucks", + "address": "57-63 North Third St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952062, + "longitude": -75.1451409228, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0", + "Sunday": "5:0-20:0" + } + }, + { + "business_id": "TPfhxYwdxj4XExyW2vl6fA", + "name": "Apsara Cutting Edge", + "address": "900 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939085, + "longitude": -75.159714, + "stars": 4.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "kPnpaRR4Eed4xBRoYqr-cg", + "name": "Mt Airy Family Practice", + "address": "760 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0435032918, + "longitude": -75.1989709632, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Hospitals, Family Practice, Doctors", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "HG0Djdv_hQwFeE_-R2XFaA", + "name": "Federal Donuts", + "address": "21 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951007, + "longitude": -75.159898, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Chicken Shop, Donuts, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "f88P1gIbRpRzsYAHj9hGdA", + "name": "Sid Booker's Shrimp", + "address": "4600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0233829, + "longitude": -75.1483587, + "stars": 3.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Restaurants, Food, Seafood", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-4:0", + "Saturday": "12:0-4:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "7eBE5XlS4fqL4Gxl6qfFxQ", + "name": "Skybox Event Center", + "address": "2424 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774533, + "longitude": -75.1245282, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "Dfv6BewAcEokLLLpBXS2QA", + "name": "Checkers", + "address": "232-50 W. Lehigh Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9910878, + "longitude": -75.1357333, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-4:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "r-kln94enJMMmCWmzbXO2g", + "name": "Kermit's Bake Shoppe", + "address": "2204 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394185445, + "longitude": -75.1803047991, + "stars": 4.0, + "review_count": 183, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Bakeries, Pizza", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "dWoYU1l6t7_VB2LHYLHxmw", + "name": "Olde City Food Market", + "address": "202 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949726, + "longitude": -75.1440717, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Grocery, Breakfast & Brunch, Delis, Food, Convenience Stores, Restaurants, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "eeKJYP614nNnDwnjKpl7XA", + "name": "Punch Buggy Brewing", + "address": "1445 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9736435923, + "longitude": -75.1395907626, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Breweries, Brewpubs, Food, Hot Dogs, Restaurants, Sandwiches", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "qJvM5u83AB8utZItF2N8Ag", + "name": "Massage Rittenhouse", + "address": "2016 Walnut St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95046, + "longitude": -75.1745566, + "stars": 4.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Massage, Beauty & Spas", + "hours": { + "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": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "xmesPOov35ysPjY8ck3tXQ", + "name": "Young's Florist", + "address": "1124 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948657, + "longitude": -75.1603002, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Event Planning & Services, Shopping, Florists, Floral Designers, Flowers & Gifts", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "2SYEGA2fZLdzZQ9lmIfM5Q", + "name": "Urban Village Brewing Co", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9667, + "longitude": -75.13997, + "stars": 4.0, + "review_count": 221, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "Alcohol": "'full_bar'", + "WiFi": "'free'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HappyHour": "True", + "BYOB": "False", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Corkage": "False" + }, + "categories": "American (New), Bars, Food, Pubs, Breweries, Pizza, Restaurants, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "5K_9ViMBVdlpV-jK4v_fLg", + "name": "City Grange", + "address": "99 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951931, + "longitude": -75.1679499, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'dressy'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "OutdoorSeating": "False" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "AjFgnR0TwDxThO5lOv_WQQ", + "name": "AAA - Philadelphia", + "address": "1801 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9534412, + "longitude": -75.1702501, + "stars": 2.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Rental, Local Services, Financial Services, Travel Services, Roadside Assistance, Automotive, Insurance, Notaries, Hotels & Travel, Auto Repair", + "hours": null + }, + { + "business_id": "EM09kU9ZTWN5YyWh1rh_-w", + "name": "Momo's Tree House", + "address": "205 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9521112, + "longitude": -75.1435473, + "stars": 5.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Toy Stores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-15:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "HMlqFPIHqiDV7qE1vREQXg", + "name": "1617 Barber Shop & Beauty Salon", + "address": "1617 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9794991, + "longitude": -75.1616749, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': False}" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Men's Hair Salons, Shopping, Barbers, Hair Salons", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "fvnh3uojBa47ooZPyF7-2w", + "name": "Wilson Famous Blue Ribbon Meats", + "address": "2325 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9946476, + "longitude": -75.0964736, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Specialty Food, Meat Shops, Food, Shopping, Restaurants, Chicken Wings, Wholesale Stores", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "31Br29F2hhd4NJJdD-VtPg", + "name": "David A Tecosky, DMD", + "address": "2438 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9699316, + "longitude": -75.1779993, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Dentists, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "9:0-17:0", + "Saturday": "9:30-14:30" + } + }, + { + "business_id": "u7_3L1NBWgxhBM_B-cmmnA", + "name": "Pizzeria Vetri", + "address": "1939 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960888, + "longitude": -75.171213, + "stars": 4.0, + "review_count": 651, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Pizza, Restaurants, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-16:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "GK-IbObdUilYtlfgqnQ1Kw", + "name": "Lemoncello Restaurant Philly", + "address": "4903 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0258777, + "longitude": -75.1325899, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BYOB": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "u'free'" + }, + "categories": "Latin American, Colombian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "x1CpCXik31TwTtMPMcrcug", + "name": "A Tutti, Ristorante Italiano", + "address": "5154 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.018238, + "longitude": -75.2115092, + "stars": 4.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza, Coffee & Tea, Italian, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "dfKF-oAUf3yjnD0WBYDyZQ", + "name": "The Cow and The Curd", + "address": "2210 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0487537, + "longitude": -75.062078, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BikeParking": "False", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Food Trucks", + "hours": null + }, + { + "business_id": "9xgHivXmL1Vzaz5P97PzCg", + "name": "The Book Trader", + "address": "7 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502589, + "longitude": -75.1433444, + "stars": 4.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping, Vinyl Records, Used Bookstore", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "DfIZd-uCYMBOXfFOvnAeZQ", + "name": "2 in One Cafe", + "address": "5045 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0195284, + "longitude": -75.1745343, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Asian Fusion", + "hours": null + }, + { + "business_id": "tmd2YcAkqkenj22noHW2YQ", + "name": "Stonehenge Advisors", + "address": "1321 Intrepid Ave, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0100096, + "longitude": -75.1981038, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Property Management, Home Services, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "3puk4beQqK6zz8N4nTdhtQ", + "name": "Hello Hair Salon", + "address": "1905 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263431, + "longitude": -75.1668914, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "21:0-21:30", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "EAtdpksdWfWAaqh3XdnNNg", + "name": "Essene Market & Cafรฉ", + "address": "719 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9399804, + "longitude": -75.1492562, + "stars": 3.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Food, Vegetarian, Organic Stores, Health Markets, Bakeries, Specialty Food, Grocery", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "iqN5CY_BpZ5pQFBnISYy-Q", + "name": "Pennsylvania Oral & Maxillofacial Surgery", + "address": "1601 Walnut St, Ste 215", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Oral Surgeons, Dentists", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "7:30-14:0" + } + }, + { + "business_id": "-s4YiQuUM21pScGCrzW2KQ", + "name": "The Weave Bar", + "address": "2228 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9870048, + "longitude": -75.1564192, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Makeup Artists, Shopping, Hair Extensions, Hair Salons, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "XQWZQjC73fCTRGWnD18-Eg", + "name": "Mac Mart", + "address": "104 South 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514489, + "longitude": -75.1705213, + "stars": 4.0, + "review_count": 321, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "Corkage": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (Traditional), Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "uVJkqQ1U9MH7hBorrwGhBg", + "name": "Wishbone", + "address": "4034 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539029, + "longitude": -75.204325, + "stars": 3.5, + "review_count": 191, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "HasTV": "False" + }, + "categories": "Thai, Restaurants, Coffee & Tea, Chicken Wings, Comfort Food, Food, Specialty Food, American (New), Chicken Shop", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "djtU6hvMyFN7emAJu9FvhQ", + "name": "Walmart", + "address": "9745 Roosevelt Blvd, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0830025, + "longitude": -75.022598, + "stars": 2.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsTakeOut": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Mobile Phones, Grocery, Shopping, Department Stores, Fashion, Electronics, Food", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "10:0-14:0", + "Thursday": "10:0-14:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "VEdEuOfDGhgRWO-PipfB7w", + "name": "Fill A Seat Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment", + "hours": null + }, + { + "business_id": "WqfseuZYHYWrBmQE9Snxrg", + "name": "Lucatelli's", + "address": "1709 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951761, + "longitude": -75.16913, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "OutdoorSeating": "True" + }, + "categories": "Salad, Restaurants, Pizza, Gluten-Free, Italian", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "QISg9_me-kDqfneokdNM6Q", + "name": "Bahdeebahdu", + "address": "1522 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9744644, + "longitude": -75.1402408, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Home Decor, Lighting Fixtures & Equipment, Event Planning & Services, Art Galleries, Home & Garden, Home Services, Interior Design, Arts & Entertainment, Shopping", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "wbxUJ8U6Ll6vbgF9ukihcw", + "name": "Stanley Steemer", + "address": "7300 Milnor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0241303, + "longitude": -75.0297635, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Damage Restoration, Local Services, Home Cleaning, Carpet Cleaning, Home Services, Air Duct Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "vcyyzUqEiCTSrFmHgqvxpg", + "name": "SALERNO'S Ristorante & Pizzeria", + "address": "6500-02 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0512797, + "longitude": -75.0943052, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "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": "15:0-22:0" + } + }, + { + "business_id": "MWC9cX5tGaeWRiFJB-IXWA", + "name": "Unique Custom Closets", + "address": "3465 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9865326, + "longitude": -75.0945783, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Cabinetry, Contractors, Home Services, Shopping, Home & Garden", + "hours": { + "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" + } + }, + { + "business_id": "YtSqYv1Q_pOltsVPSx54SA", + "name": "Rittenhouse Grill", + "address": "1701 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9489487, + "longitude": -75.1695317, + "stars": 3.5, + "review_count": 290, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'dressy'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "Caters": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': True, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Wine Bars, Restaurants, Nightlife, Steakhouses, Seafood, Bars", + "hours": { + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "YMoXwiXIst-pnTYwKgs0Nw", + "name": "Flourish Bakeshop", + "address": "310 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9531368, + "longitude": -75.2186607, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Bakeries, Custom Cakes, Food, Desserts", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "rQW9iupvhk6ScPn2VPNLVQ", + "name": "Octopus Falafel Truck", + "address": "20th & Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952932, + "longitude": -75.173293, + "stars": 4.5, + "review_count": 420, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food Trucks, Falafel, Food Stands, Food, Mediterranean, Restaurants, Middle Eastern", + "hours": { + "Monday": "12:0-14:30", + "Tuesday": "12:0-14:30", + "Wednesday": "12:0-14:30", + "Thursday": "12:0-14:30", + "Friday": "12:0-14:30" + } + }, + { + "business_id": "Tb1lEb1DTSgxanRHJjTDpQ", + "name": "A.C. Moore Arts & Crafts", + "address": "100 S Broad St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9502943, + "longitude": -75.1645249, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Arts & Crafts, Shopping, Framing, Art Supplies", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "PYUI1OJVksGUbCrteU68bw", + "name": "Bourbon & Branch", + "address": "705 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96207, + "longitude": -75.14104, + "stars": 4.0, + "review_count": 392, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForDancing": "False", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "CoatCheck": "False", + "WiFi": "'free'", + "WheelchairAccessible": "False", + "Music": "{'live': True}", + "RestaurantsAttire": "'casual'", + "Smoking": "u'outdoor'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Corkage": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': True, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "BYOB": "False", + "DogsAllowed": "False" + }, + "categories": "Bars, American (Traditional), Breakfast & Brunch, Music Venues, Arts & Entertainment, Nightlife, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "HF1YWT8QVR7095r-aLbV5g", + "name": "Element Philadelphia", + "address": "1441 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9511572392, + "longitude": -75.1653848735, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "JbKTtN9goxrWEvuGmE4FOQ", + "name": "Pizza Hut", + "address": "3451 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9914698988, + "longitude": -75.0997334182, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Caters": "False" + }, + "categories": "Restaurants, Italian, Pizza, Chicken Wings", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "pf8qxSWPpdfanQEoEqenZQ", + "name": "Lowe's Home Improvement", + "address": "1500 North 50th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9778945407, + "longitude": -75.2218081568, + "stars": 1.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Home & Garden, Appliances, Nurseries & Gardening, Kitchen & Bath, Hardware Stores", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "pHBwvBG3iZdOfpLNZTkVWQ", + "name": "Pasqually's Pizza", + "address": "200 S 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9545323, + "longitude": -75.2089392, + "stars": 4.0, + "review_count": 96, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True" + }, + "categories": "Italian, Food Delivery Services, Beverage Store, Food, Pizza, Restaurants, Beer, Wine & Spirits", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "_YdvkXME0h2PNqP8yyA7Jg", + "name": "ShoeWoo", + "address": "Shops at Liberty Pl, 1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516498, + "longitude": -75.1682121, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Shoe Stores, Fashion", + "hours": null + }, + { + "business_id": "Vwt2NXWtEzJVzp8wSzmUoA", + "name": "Perelman Center for Advanced Medicine", + "address": "3400 Civic Center Blvd, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.947748, + "longitude": -75.192729, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Internal Medicine, Medical Centers, Doctors", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "Zkak6zxCokmPYt-BOmE6Fg", + "name": "Chai Hong Market", + "address": "2200 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921571, + "longitude": -75.1586309, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ethnic Food, Specialty Food, Imported Food, Grocery, Food", + "hours": null + }, + { + "business_id": "NOiZcmPRZyDNSnvLo-c5Tw", + "name": "Koresh Dance Company", + "address": "2002 Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486297, + "longitude": -75.1746479, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "GoodForKids": "True" + }, + "categories": "Dance Studios, Fitness & Instruction, Active Life, Education, Arts & Entertainment, Specialty Schools, Dance Schools, Performing Arts", + "hours": { + "Monday": "10:0-20:30", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-19:15", + "Saturday": "10:0-15:30" + } + }, + { + "business_id": "lkeilNhrF0zqee8dZSBamA", + "name": "Bottom Dollar Food", + "address": "3101 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9754700109, + "longitude": -75.1868879994, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "9zaXFApfobvEKgfGt-NUxA", + "name": "Rittenhouse Hardware", + "address": "2001 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.946921, + "longitude": -75.1747336, + "stars": 4.5, + "review_count": 170, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hardware Stores, Shopping, Home & Garden", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "g3YySsUwqe0Z-FfHAhkXng", + "name": "Rowhouse Spirits", + "address": "2440 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9826101, + "longitude": -75.1273561, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "Caters": "False" + }, + "categories": "Distilleries, Food", + "hours": { + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "bZRd9Jsfr-uLWwiyFMwSWg", + "name": "Pearle Vision", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493715, + "longitude": -75.1675029, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "'free'", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Health & Medical, Shopping, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "9:0-17:0", + "Wednesday": "10:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "CUksnsKMcWykT-rm0Lnw-w", + "name": "South Philly Smรถkhaus", + "address": "821 Dudley St, Room 108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9251920306, + "longitude": -75.1600814983, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Smokehouse, Barbeque, Food", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "vmWDmLMnEJ0bEfEwqo-Y-g", + "name": "Arrow Swim Club", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664073, + "longitude": -75.1386733, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Swimming Pools", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "X3pLW1Fq9SlbrUFsxgynwA", + "name": "Moy Fong Restaurant", + "address": "7411 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0608409, + "longitude": -75.1672091, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "qci60H4AWEOcXZcJg4E2EQ", + "name": "Hair Cuttery", + "address": "9475 Roosevelt Blvd, Ste 14C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0796885, + "longitude": -75.0273356, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "BikeParking": "True", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "skIhu9uQsD1JZwGakjXNJw", + "name": "Wings To Go", + "address": "1439 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.958405, + "longitude": -75.163972, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False" + }, + "categories": "Chicken Wings, Restaurants, Fast Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "zLRRim8tu00cvU7QjAJAmQ", + "name": "Convenient Food Mart", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946666, + "longitude": -75.163993, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'beer_and_wine'", + "HappyHour": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForDancing": "False", + "Smoking": "u'outdoor'" + }, + "categories": "Delis, Nightlife, Food, Beer Bar, Convenience Stores, Bars, Restaurants", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "_LtJsAcsygWR54vxvmChEw", + "name": "Bloomingdale's Outlet - Liberty Place", + "address": "1625 Chestnut St, Ste 240-248", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951584, + "longitude": -75.168547, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Fashion, Department Stores, Shopping, Outlet Stores, Women's Clothing", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "qWWS8jR0w87J3L_6GUHWew", + "name": "ECO Cleaners", + "address": "2300 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9417579, + "longitude": -75.1812293, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Dry Cleaning, Dry Cleaning & Laundry, Laundry Services, Local Services, Sewing & Alterations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "dm9UbH8XPAP6735lHRYILA", + "name": "Ruby's Roof Jamaican Restaurant", + "address": "5706 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0382907, + "longitude": -75.1303845, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-23:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "naln1yB9kdFEeZKbHz0qgQ", + "name": "Franklin Flea", + "address": "801 Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951757, + "longitude": -75.154079, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Flea Markets", + "hours": null + }, + { + "business_id": "_SUBeKkT-JwivJtC6f1Etw", + "name": "Task Up", + "address": "104 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522883002, + "longitude": -75.1741475823, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Commercial Real Estate, Home Services, Shared Office Spaces, Real Estate", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Q9T9PKQZSs571tS0lQLoIg", + "name": "Koliyan", + "address": "806 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383502, + "longitude": -75.153168, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "Caters": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "HasTV": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ethnic Food, Shopping, Food, Arts & Crafts, Cambodian, Specialty Food, Desserts, Vegan, Restaurants, Coffee & Tea, Cheesesteaks, Gluten-Free, Cooking Classes", + "hours": null + }, + { + "business_id": "Shywx8-jqV1IxwLaefbcSA", + "name": "Val's Bakery", + "address": "1916 Welsh Rd, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0811093, + "longitude": -75.038243, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "hMcgO98QaOFmQVTfCUeGzw", + "name": "Dentistry For Life", + "address": "1601 Walnut St, Ste 1217", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950362, + "longitude": -75.167774, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Orthodontists, General Dentistry, Dentists, Cosmetic Dentists, Oral Surgeons, Health & Medical, Endodontists", + "hours": null + }, + { + "business_id": "Oei0GwiHmITLgORIF0g8BA", + "name": "Blazin Flavorz", + "address": "2406 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9881756049, + "longitude": -75.146304667, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Pretzels, Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "14:0-21:0", + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "AHqYW_taqAvhBkYBElkcTQ", + "name": "Boom Buns", + "address": "6649 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0428555, + "longitude": -75.0737309, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "BikeParking": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "None", + "HasTV": "False", + "BYOB": "False" + }, + "categories": "Dim Sum, Noodles, Restaurants, Food, Cantonese, Chinese, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "TVe1FyolMt9xjBtY7oMTOQ", + "name": "Pitruco Pizza Franklin's Table", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529913, + "longitude": -75.1922872, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "Corkage": "False", + "RestaurantsTableService": "False", + "BYOB": "False" + }, + "categories": "Restaurants, American (New), Pizza, Italian", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "5eldbLrF_oodWvu1VuEP8w", + "name": "1925 Cocktail Lounge", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510336, + "longitude": -75.1686696, + "stars": 2.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "GoodForDancing": "True", + "CoatCheck": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "'no'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Bars, Adult Entertainment, Lounges, American (New), Nightlife", + "hours": { + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "MnaUUSxuaM8aKKhhjxLXWA", + "name": "Mango Mango Dessert", + "address": "6830 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0413892, + "longitude": -75.0650277, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Ice Cream & Frozen Yogurt, Desserts, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "KnyuQ1D7QE7X8eMk8T3kTA", + "name": "Tasties", + "address": "5241 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0317308, + "longitude": -75.1677993, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "_Cqhs1ajez0yXle5Ms0mrg", + "name": "Ly Michael's", + "address": "101 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540692, + "longitude": -75.1576822, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "1-OSwGhAUi7w9T4Ru-IRjA", + "name": "Chef's Market", + "address": "231 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413824, + "longitude": -75.1470575, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Event Planning & Services, Food, Specialty Food, Grocery, Bakeries, Caterers", + "hours": { + "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": "7:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "r0Gz71sm-Wsh4J4kjiaViw", + "name": "Mom's Seafood", + "address": "2312 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9914019, + "longitude": -75.1800551, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "None", + "Caters": "True" + }, + "categories": "Food, Seafood Markets, Restaurants, Specialty Food, Seafood", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "qDkbudGRfmJvf7trQZea4g", + "name": "Ruth's Chris Steak House", + "address": "260 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9472570078, + "longitude": -75.164857377, + "stars": 3.0, + "review_count": 110, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForKids": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Steakhouses", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "EBfSeT0IobgzfcNWhMev-g", + "name": "Mama Maria's Homemade Italian Ice", + "address": "2900 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9850329, + "longitude": -75.1134098, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Desserts, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "6RZEB2SRK0uK4nOt27JciQ", + "name": "Men's Wearhouse", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.079424, + "longitude": -75.029126, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Men's Clothing, Shopping, Fashion, Formal Wear, Plus Size Fashion, Bespoke Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "45pdkf09S5VaM0CN60g9Ow", + "name": "Sunrise 2 Authentic Thai Food", + "address": "250 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694197, + "longitude": -75.1320426, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Thai", + "hours": null + }, + { + "business_id": "SfrCpke2fi6nynKPms2jZA", + "name": "Threadwell", + "address": "8432 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0755492, + "longitude": -75.2060005, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Jewelry, Fashion, Flowers & Gifts, Beauty & Spas, Accessories, Home Decor, Children's Clothing, Gift Shops, Shopping, Cosmetics & Beauty Supply, Personal Shopping, Home & Garden", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "10:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "D2C_oX41MdCWhPY7eD0FVw", + "name": "Pennsylvania Center for Dental Excellence", + "address": "11905 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1215521, + "longitude": -75.0159391, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Oral Surgeons, Dentists, Orthodontists, Cosmetic Dentists, Pediatric Dentists, General Dentistry, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "12:0-20:0", + "Wednesday": "9:0-13:0", + "Thursday": "12:0-20:0" + } + }, + { + "business_id": "j5fzB-R9kbynYUEFiw8Bkg", + "name": "Infinity Health & Wellness Center", + "address": "3502 Scotts Ln, Ste 1721", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078745, + "longitude": -75.1860145, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Rehabilitation Center, Chiropractors, Colonics, Reproductive Health Services, Physical Therapy, Medical Centers, Reflexology, Medical Spas, Massage, Weight Loss Centers, Health & Medical, Waxing, Beauty & Spas, Hair Removal", + "hours": { + "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-14:0" + } + }, + { + "business_id": "GmomRGW_omclyKXKDppsIg", + "name": "Public House at Logan Square", + "address": "2 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9559112336, + "longitude": -75.1696651373, + "stars": 2.5, + "review_count": 120, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "AlwCPSsNAh2XCJxOZ28Rng", + "name": "NotaryService100", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Notaries", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "Xffs0XzJD1feygtz2a0lWg", + "name": "Kmart", + "address": "7101 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041201, + "longitude": -75.056065, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Specialty Food, Fashion, Department Stores, Food, Candy Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "SyUMSLVVDvPcejPfgmr9-Q", + "name": "Fiso Lounge", + "address": "1437 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94403, + "longitude": -75.1666722, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Nightlife, Dance Clubs", + "hours": null + }, + { + "business_id": "GRMKMKiNabc9DNwCMNgG0Q", + "name": "Puls", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "TV Mounting, Local Services, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "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" + } + }, + { + "business_id": "DSGHZnDLRbR9wk-u1trRUQ", + "name": "16th Street Seafood", + "address": "1542 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9307459, + "longitude": -75.1715522, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Local Flavor, Restaurants, Specialty Food, Seafood Markets, Food, Seafood", + "hours": null + }, + { + "business_id": "97BnuM-u5MwG71m_s9p4Iw", + "name": "Potato Corner", + "address": "1001 Market St, Ste K07", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9521727155, + "longitude": -75.1555366884, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Food Stands, Chicken Wings, Restaurants, Fast Food, Specialty Food", + "hours": null + }, + { + "business_id": "70STxTke5G_Y5e-W9xcGdw", + "name": "Big Geez Chicken Shack ", + "address": "5148 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9556563, + "longitude": -75.2255038, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "Caters": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Fast Food, Chicken Shop", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "cfjXBXseOIBKKnAIVf4fMw", + "name": "Tbar", + "address": "117 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497196, + "longitude": -75.1602632, + "stars": 4.0, + "review_count": 58, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Tea Rooms, Food", + "hours": { + "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" + } + }, + { + "business_id": "1m_Lh7vCDP4H8MoyO45JCw", + "name": "2040 Market Street", + "address": "2040 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532184024, + "longitude": -75.1749956143, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "tr2_pKQRojSt_vEISfGApg", + "name": "Main Street Snack Store", + "address": "4239 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024495, + "longitude": -75.220937, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True" + }, + "categories": "Grocery, Convenience Stores, Food, International Grocery, Imported Food, Candy Stores, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-16:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "QvjY9esYNRMe_5kvT6TC5g", + "name": "Chaat and Chai", + "address": "1532 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245858, + "longitude": -75.1726715, + "stars": 4.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'" + }, + "categories": "Pakistani, Indian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:30" + } + }, + { + "business_id": "OKPUO8zvBBL-OA6-SfDx8Q", + "name": "Heirloom Fine American Cookery", + "address": "Top of the Hill Plaza, 8705 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077882, + "longitude": -75.2088615, + "stars": 4.0, + "review_count": 87, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "False" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "1DkolDhbc0kydORZCIp7Fw", + "name": "Night Market", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9542677, + "longitude": -75.1678993, + "stars": 3.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "Caters": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food Stands, Restaurants, Local Flavor", + "hours": null + }, + { + "business_id": "jedx8vDpVvutiw44B1KLpw", + "name": "Philadelphia City Paper", + "address": "123 Chestnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948524, + "longitude": -75.1437297, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Print Media", + "hours": null + }, + { + "business_id": "Im4IDA9RXycirW_EZqAj5Q", + "name": "The Fresh Market", + "address": "8208-18 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073447, + "longitude": -75.203065, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "Caters": "True" + }, + "categories": "Grocery, Specialty Food, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-16:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "aCHS5pnDjChkHpFo4-EfKg", + "name": "Bistro La Baia", + "address": "1700 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945162, + "longitude": -75.1702591, + "stars": 3.5, + "review_count": 225, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "HappyHour": "True", + "Corkage": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "BikeParking": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "16:0-21:30", + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-20:0", + "Friday": "16:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "wuRdlQ8jwEjWGeiRpAa3TA", + "name": "Vino Volo", + "address": "Philadelphia International Airport, Terminal A West, Gate A17", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8751219438, + "longitude": -75.2497494221, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Alcohol": "'beer_and_wine'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Bars, Wine Bars, Nightlife", + "hours": null + }, + { + "business_id": "iNXKjN_LHiozA8HX-UWHoQ", + "name": "The Summit at University City", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570681, + "longitude": -75.1916189, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Home Services, University Housing, Property Management, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "nl_La1sCrZG0xq0HNt4WsQ", + "name": "Gianna's Grille", + "address": "507 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426854, + "longitude": -75.151963, + "stars": 3.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "Caters": "False" + }, + "categories": "Restaurants, Vegan, Vegetarian", + "hours": null + }, + { + "business_id": "TQloD2_k3J67Q1J_picgfw", + "name": "Wawa", + "address": "2535 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9771998493, + "longitude": -75.1184864286, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Convenience Stores, Sandwiches, Restaurants, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "TZhCpOoo4TIg7dgftWNKyQ", + "name": "W Philadelphia", + "address": "1439 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515202, + "longitude": -75.1650621, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "DogsAllowed": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "BLjK2H6Vdb8S8zPpa2dh7Q", + "name": "Heart and Soul Bakery", + "address": "201 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500718, + "longitude": -75.1808116734, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Desserts, Bakeries, Food, Cupcakes", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "7vSahcMGVWAra7M1RkwH0Q", + "name": "Big Boyz", + "address": "1940 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0513054696, + "longitude": -75.0666264582, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "HappyHour": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Soul Food", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "d9eI_GFFIvR22f63Jt1MtA", + "name": "RowZone Indoor Rowing & Fitness Studio", + "address": "2006 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519604469, + "longitude": -75.1739293473, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False" + }, + "categories": "Paddleboarding, Boot Camps, Cardio Classes, Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "dHn2MDmexNc61rcLbtv6tA", + "name": "Genius Ecommerce", + "address": "20 N 3rd St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9508851, + "longitude": -75.1457865, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Marketing, Software Development, Professional Services, Advertising, Web Design", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "wUnLSg_GKfEIQ5CQQ770_g", + "name": "Vetri Cucina", + "address": "1312 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466441, + "longitude": -75.1631867, + "stars": 4.5, + "review_count": 489, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'dressy'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsPriceRange2": "4", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "None", + "NoiseLevel": "u'average'" + }, + "categories": "Italian, Cuban, Restaurants", + "hours": { + "Monday": "18:0-21:30", + "Tuesday": "18:0-21:30", + "Wednesday": "18:0-21:30", + "Thursday": "18:0-21:30", + "Friday": "18:0-21:30", + "Saturday": "18:0-21:30", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "vOa5-do5qhRMGWhn_x0_Vw", + "name": "Amato's Deli Restaurant", + "address": "3000 S Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.913208, + "longitude": -75.17467, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False" + }, + "categories": "Food, Grocery, Burgers, Cheesesteaks, Restaurants, Delis, Pizza", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "HqqU6VFDSEcV7s9FWyM9Qg", + "name": "Noah's Ark Animal Hospital", + "address": "7414 Frankford Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0382606, + "longitude": -75.0375106, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "f96nmEyl3mNec9HrMZSSVQ", + "name": "Mom's Bake At Home Pizza", + "address": "219 E Willow Grove Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0736927, + "longitude": -75.1978144, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "Caters": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Tuesday": "12:0-19:30", + "Wednesday": "12:0-19:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-20:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "vAoOqMPwfw1vYNxEh5pPxQ", + "name": "PECO", + "address": "2301 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9548325471, + "longitude": -75.1784364556, + "stars": 1.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Utilities, Home Theatre Installation", + "hours": null + }, + { + "business_id": "LWxC1AisOHQV-cfo5tprLQ", + "name": "Burrito Bonito", + "address": "212 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496713, + "longitude": -75.1442542, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Corkage": "False", + "BYOB": "False", + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "aVRVBncwdK3GrqLKLFPKAg", + "name": "Paradise Pizzeria", + "address": "1363 E Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0091223, + "longitude": -75.1004709, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "nk2a2nI1jfln9zLpxEvTnw", + "name": "Crime & Punishment Brewing", + "address": "2711 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9744581, + "longitude": -75.1808263, + "stars": 4.5, + "review_count": 178, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "Smoking": "u'no'", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "Alcohol": "'beer_and_wine'", + "Music": "{'dj': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Bars, Food, Breweries", + "hours": { + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-21:30", + "Saturday": "14:0-21:30", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "DRr5xdfHtqgWfhmdTU1B8Q", + "name": "London Grill", + "address": "2301 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675638, + "longitude": -75.1754915, + "stars": 3.0, + "review_count": 350, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BYOB": "False" + }, + "categories": "Breakfast & Brunch, Italian, Restaurants, American (New)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "_RwlMTw9uFeOkfX9Ctf1HA", + "name": "Dinardo's Famous Crabs", + "address": "312 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9540048, + "longitude": -75.1454969, + "stars": 2.5, + "review_count": 256, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Food, Restaurants, Seafood", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "sr9RI_LHMXGZfpDApPsDEw", + "name": "Luxe Nails", + "address": "337 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701529, + "longitude": -75.1428202, + "stars": 3.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Waxing, Beauty & Spas, Hair Removal, Nail Salons, Eyelash Service", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "4-TKASCNK5-XBWdXmeXWbA", + "name": "Wawa", + "address": "1300 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950533787, + "longitude": -75.1619937165, + "stars": 2.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Coffee & Tea, Convenience Stores, Sandwiches, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "ZKnzTLxLFkMmipKcvC8FrQ", + "name": "Halcyon Floats", + "address": "1314 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9697682661, + "longitude": -75.1398980512, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Massage, Medical Spas, Physical Therapy, Float Spa, Health & Medical, Beauty & Spas", + "hours": { + "Monday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "8:0-23:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "L3V21nAe-CicW2bvtNWa0g", + "name": "Mixx Japanese Cuisine and Noodle Bar", + "address": "1002 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953333, + "longitude": -75.156571, + "stars": 3.0, + "review_count": 118, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Sushi Bars, Restaurants, Japanese, Asian Fusion", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "vQsKUW_hYWQ7cRmUEF1QSA", + "name": "Dr Thunder Karaoke", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Event Planning & Services, DJs, Party & Event Planning, Karaoke, Nightlife, Trivia Hosts, Officiants", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "4mR4qVugMha2GPGnT2lUDQ", + "name": "X the Salon", + "address": "822A S 4th St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376679, + "longitude": -75.1502215, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "HairSpecializesIn": "None", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Wednesday": "11:30-18:30", + "Friday": "11:30-18:30", + "Saturday": "10:30-17:30" + } + }, + { + "business_id": "htK289P8_5AhuTGM99tlUA", + "name": "The Salvation Army", + "address": "4555 Pechin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0336187315, + "longitude": -75.2202507407, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Donation Center, Local Services, Shopping, Thrift Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "l3gM4Wa-iC9TQBweishC3g", + "name": "Devon Self Storage", + "address": "1831 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0030054, + "longitude": -75.1602858, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "Br673Q8kCKQtzolARAjUcw", + "name": "Roses Florist", + "address": "3551 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548169, + "longitude": -75.1942601, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "3ydk69StFw-7DKPqX3smcQ", + "name": "Giant Fitness", + "address": "3250 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080703, + "longitude": -74.994965, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Fitness & Instruction, Cardio Classes, Active Life, Trainers", + "hours": { + "Monday": "4:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "4:0-23:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "YAT0yzBf4o96xJJiWVsgNg", + "name": "American Male", + "address": "37 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9516254, + "longitude": -75.1670582, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Skin Care", + "hours": null + }, + { + "business_id": "Z7wXqTLTxSXazmoyxwYwhw", + "name": "Police & Fire Federal Credit Union", + "address": "3338 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9087984, + "longitude": -75.1740095, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": null + }, + { + "business_id": "45tvAZaoMo0VhsJvPHf9sw", + "name": "Lite Choice", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9497521, + "longitude": -75.1674681, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Ice Cream & Frozen Yogurt, Gluten-Free, Food, Restaurants, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "aagI1gxO9-Jo3HPf4C7s2w", + "name": "Provenance", + "address": "1801 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9786567, + "longitude": -75.1379376, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Building Supplies, Antiques, Home Services, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "u9XTeDl_If4U5Eixl6ys7g", + "name": "The Foodery", + "address": "837 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9639423223, + "longitude": -75.1405212045, + "stars": 4.0, + "review_count": 156, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'no'" + }, + "categories": "Nightlife, Food, Delis, Bars, Beer, Wine & Spirits, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "JK6a5IRnPg1tQA3FruwaQw", + "name": "Philadelphia Runner", + "address": "3621 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534959802, + "longitude": -75.196276985, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Shoe Stores, Shopping, Fashion, Sporting Goods, Sports Wear", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "BADXe_hPnAnTNCwdz7mNLw", + "name": "Son's Hair Salon", + "address": "5101 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0213714, + "longitude": -75.0791708, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "False" + }, + "categories": "Barbers, Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "VD4Rdyj0tauBckrTYgIcpQ", + "name": "The Concourse at Comcast Center", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547208, + "longitude": -75.1689532, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Food, Shopping Centers, Shopping", + "hours": { + "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": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "e_3I3UEy6ibfDiABDPQCTg", + "name": "7-Eleven", + "address": "1084 Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9658989991, + "longitude": -75.1324717902, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Propane, Food, Coffee & Tea, Local Services, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "uHoQF3cCeReumuyQvjuf5g", + "name": "Logan Square Self-Park Garage", + "address": "1815 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9558029, + "longitude": -75.1703323, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "M6loL6C6I84UxVj899qykQ", + "name": "Thomas J Stern, DMD", + "address": "833 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93667, + "longitude": -75.1464065718, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Endodontists, General Dentistry, Cosmetic Dentists, Orthodontists, Periodontists, Health & Medical", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "FBof1_DJG-IMRdk6WmY2IA", + "name": "Poke Burri", + "address": "255 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467455, + "longitude": -75.1575593, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Japanese", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "v5-iWb3HSIbnjMzQxYE4JA", + "name": "Alston Stucco", + "address": "2153 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0434999, + "longitude": -75.0602135, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Home Services, Masonry/Concrete, Stucco Services", + "hours": { + "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-12:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "SjS7bdnS3KAkhq5bWut9XQ", + "name": "Toscanini Grill and Pizza", + "address": "2200 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9839188, + "longitude": -75.1198871, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants, Italian, Salad", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "CAnV18mOhhpQYlOqF40-Dw", + "name": "Skyview Plaza Hotel", + "address": "2033 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9124332, + "longitude": -75.1839978, + "stars": 1.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Event Planning & Services, Airports, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "rwextTfRrg2YNoe96SLYoQ", + "name": "Famous Hair Salon", + "address": "1010 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9544935613, + "longitude": -75.1566227898, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "OLJa45DF165Je7TeyamreA", + "name": "LYL Realty Group", + "address": "3000 W Girard Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9745712, + "longitude": -75.1852946, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Apartments, Real Estate Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "ue3FLSX9zINnCInCw-ilEQ", + "name": "Jade Palace", + "address": "1714 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9268645, + "longitude": -75.1542417, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "cvaUrsEX7RnD0XOCwscqYA", + "name": "Solomon, Sherman & Gabay", + "address": "1628 John F Kennedy Blvd, Ste 2200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538, + "longitude": -75.167743, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Workers Compensation Law, Estate Planning Law, General Litigation, Lawyers, Personal Injury Law", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "nvDX1n7k9HsLuefqdHCTow", + "name": "Xfinity Store by Comcast", + "address": "3903 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9978844985, + "longitude": -75.0870734453, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Telecommunications, Television Service Providers, Professional Services, Local Services, Security Systems, Internet Service Providers, Home Services, IT Services & Computer Repair", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "t58IPc9Y0kOIfktPBRp1Ng", + "name": "SoulCycle Rittenhouse Square", + "address": "113 S 16th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9506558, + "longitude": -75.1671469, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "None" + }, + "categories": "Active Life, Cycling Classes, Fitness & Instruction", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-19:45", + "Saturday": "7:0-17:30", + "Sunday": "7:0-18:30" + } + }, + { + "business_id": "u3Krpt7IdsJ26jj83uwNBQ", + "name": "Rock N' Rolls Egg Rolls", + "address": "1308 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9705409, + "longitude": -75.1577989, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Fast Food, Food Delivery Services, Desserts, American (New), Food Trucks, Restaurants, Chinese, Pizza, Food, Cheesesteaks", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "G4P_3-Gj3b5pizqDmitP3w", + "name": "Barbers On Broad", + "address": "905 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9703477, + "longitude": -75.1592124, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Barbers, Men's Hair Salons, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "GFBuCSY2jMRzg-E7Zhg1SA", + "name": "Don Panchito Mexican Grill", + "address": "3180 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0693548, + "longitude": -75.0084942, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': True, 'romantic': True, 'divey': None, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "DriveThru": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'" + }, + "categories": "Halal, Restaurants, Mexican, Steakhouses", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Vz_4pvJjRBGRA5t-ZHL7Wg", + "name": "Philadelphia Weekly", + "address": "1500 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9501823, + "longitude": -75.1660753, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Print Media, Mass Media", + "hours": null + }, + { + "business_id": "x7FzuMni_AxeiiyAcGJtGw", + "name": "Blue Collar Roofing", + "address": "8416 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0612569, + "longitude": -75.2393147, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Stucco Services, Roofing, Siding", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "2Ht6SIY3oWnqX28S8Cj8DQ", + "name": "CID Entertainment", + "address": "1 S Broad St, Fl 17, Ste 1710", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511843, + "longitude": -75.1635217, + "stars": 1.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Arts & Entertainment, Travel Services, Hotels & Travel", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "AEgaEEWNGuXWBHUkf_fN3A", + "name": "Starbucks", + "address": "1839 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520413, + "longitude": -75.1717524, + "stars": 3.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForKids": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "5:30-20:30", + "Tuesday": "5:30-20:30", + "Wednesday": "5:30-20:30", + "Thursday": "5:30-20:30", + "Friday": "5:0-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "P1DkSlegzHKdxJAXe0QevA", + "name": "Kumo Hibachi Sushi", + "address": "17 S 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9571569052, + "longitude": -75.208009522, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food Delivery Services, Food, Sushi Bars", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "tJPaPZwRqFmDSEc8VEx9hA", + "name": "Cosi", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95572, + "longitude": -75.1819072, + "stars": 2.0, + "review_count": 70, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Food, Sandwiches, Restaurants, Coffee & Tea, Salad", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "GnRLt9KWJ1vOC5BLw5BRpw", + "name": "Eugen's Auto Sales & Repairs", + "address": "8917 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0508356, + "longitude": -75.0089475, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Dealers, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "32m9wJDqmjKrG2Jnn0QlCA", + "name": "Spice Mandarin Cuisine", + "address": "6836 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0414916, + "longitude": -75.0648356, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Dim Sum, Chinese", + "hours": null + }, + { + "business_id": "7gAuV290DGRPvrGa8Vio3g", + "name": "Always on the Glow", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tanning, Spray Tanning, Beauty & Spas", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "_9x1oSQghxEPuUeb5NPShw", + "name": "Fez Moroccon Restaurant", + "address": "620 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405590859, + "longitude": -75.1458802706, + "stars": 3.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "Smoking": "u'outdoor'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False" + }, + "categories": "Bars, Event Planning & Services, Nightlife, Venues & Event Spaces, Restaurants, Hookah Bars, Moroccan", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "jxAJrIQ2JjjTs8ZzEytP-w", + "name": "The Bridge: Cinema de Lux", + "address": "220 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534914, + "longitude": -75.2029562, + "stars": 3.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Nightlife, Arts & Entertainment, Cinema, Lounges, Bars", + "hours": null + }, + { + "business_id": "78kUZU8GPfHgoYO_2CNbuQ", + "name": "Ben & Jerryโ€™s", + "address": "218 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535368, + "longitude": -75.2029584, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Caterers, Event Planning & Services, Custom Cakes, Food, Desserts", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "X8MJlrpZO-UA9-y3X8V5kg", + "name": "Frankinstien Bike Worx", + "address": "1529 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947479, + "longitude": -75.1676257, + "stars": 3.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Bikes, Shopping, Bike Repair/Maintenance, Local Services, Sporting Goods, Bike Rentals, Active Life", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "YoKhdgVLEqNPsZ9tBdXqlQ", + "name": "Riverwest", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952626, + "longitude": -75.175766, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate", + "hours": null + }, + { + "business_id": "YAUUdbESr8BYQ_TFgDjT5Q", + "name": "Tokai Sushi Hibachi Steakhouses", + "address": "1699 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0865991051, + "longitude": -75.0379489, + "stars": 4.0, + "review_count": 209, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "WheelchairAccessible": "True", + "HappyHour": "False" + }, + "categories": "Asian Fusion, Sushi Bars, Japanese, Steakhouses, Restaurants", + "hours": { + "Monday": "0:0-0: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": "13:0-21:30" + } + }, + { + "business_id": "n-iPn34tLaqnq-dI8m8Bkw", + "name": "Howl At the Moon Philadelphia", + "address": "258 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9477765, + "longitude": -75.1664246, + "stars": 3.0, + "review_count": 222, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WiFi": "u'no'", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Event Planning & Services, Music Venues, Dance Clubs, Venues & Event Spaces, Arts & Entertainment, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "19:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "13:0-2:0" + } + }, + { + "business_id": "TxJ_LSVVkRqSrIJYlY9P-Q", + "name": "KFC", + "address": "6114 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9832925286, + "longitude": -75.243818, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True" + }, + "categories": "Fast Food, Chicken Wings, Chicken Shop, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "LHzg5i6hX1Qb3OxtWJ4QDQ", + "name": "Polka Deli Inc", + "address": "2719 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9837685, + "longitude": -75.1017843, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "BusinessParking": "None", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "None", + "WiFi": "'no'", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "None", + "GoodForMeal": "None", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "O3XiguiWmlOWR72KerRoDA", + "name": "Hale & True", + "address": "613 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416368379, + "longitude": -75.1538993418, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cideries, Food, Bars, Beer, Wine & Spirits, Nightlife, Beer Bar, Kombucha, Cocktail Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "UMuKkJsiN1L__HOu8TA3og", + "name": "Phoenix Shoe Shine", + "address": "30TH Station", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9558152659, + "longitude": -75.1816821142, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Local Services, Shoe Shine", + "hours": null + }, + { + "business_id": "HAfeuAQDHknXY1jzq7HJ3A", + "name": "Schummers Auto Repair - Mayfair", + "address": "6700 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0321305, + "longitude": -75.0526044, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Oil Change Stations, Tires", + "hours": { + "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" + } + }, + { + "business_id": "mQ6GtJxjHZndqKSRieiBLg", + "name": "Mexican Grill Stand", + "address": "1736 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979529, + "longitude": -75.155748, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Mexican, Restaurants, Street Vendors, Food, Food Trucks", + "hours": null + }, + { + "business_id": "1aOjfsDJOZMCKOi0xro3Xw", + "name": "Feel Better Reflexology Center", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Health & Medical, Flowers & Gifts, Reflexology, Day Spas, Massage, Shopping", + "hours": null + }, + { + "business_id": "zVNktUm3KRhAz_613zCSOQ", + "name": "Computer Guy", + "address": "430 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9627603, + "longitude": -75.1457364, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Computers, Professional Services, Web Design, Shopping, Local Services, IT Services & Computer Repair", + "hours": { + "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" + } + }, + { + "business_id": "EtR7fUoAPNcUH-j8aXCGqg", + "name": "vybe urgent care", + "address": "1500 Spring Garden St, Ste R105", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962594, + "longitude": -75.16404, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Urgent Care, Health & Medical, Walk-in Clinics, Medical Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "2OWEnB1sbh9xpjYxu9tcJw", + "name": "Arby's", + "address": "577 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0898672, + "longitude": -74.9641437, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "True" + }, + "categories": "Restaurants, Sandwiches, Fast Food, Salad", + "hours": null + }, + { + "business_id": "C5zdtQSfK_bjWi81MMI0SQ", + "name": "Chickpeas Falafel & Grill", + "address": "630 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9420524, + "longitude": -75.1531772, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mediterranean, Kosher, Falafel, Restaurants", + "hours": null + }, + { + "business_id": "fjAbzsW03bW3EvC4-e184g", + "name": "Penn Dermatology", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9476279, + "longitude": -75.192598, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dermatologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "PKrOUk8IXuiRWN-z6uR_xw", + "name": "Village Bar and Kitchen", + "address": "705 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400552, + "longitude": -75.1509519, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Smoking": "u'no'", + "CoatCheck": "False", + "WiFi": "u'no'", + "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': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "True" + }, + "categories": "Restaurants, Cocktail Bars, Nightlife, Salad, American (New), Bars, Wine Bars", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "ceSjm0nHamTmAd1tWcuDhw", + "name": "Bread & Butter Philly - Breakfast Junction", + "address": "1517 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0797906, + "longitude": -75.1736235982, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Food, American (Traditional), Breakfast & Brunch, Juice Bars & Smoothies, Restaurants", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "SRt_CBBo9a7MuW629T0egw", + "name": "Hair Cuttery", + "address": "47 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218578029, + "longitude": -75.147066, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}" + }, + "categories": "Beauty & Spas, Hair Stylists, Men's Hair Salons, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "GUMVStVaJfWmCIpQA4TtHg", + "name": "Crazy Sushi", + "address": "1837 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952045, + "longitude": -75.17167, + "stars": 4.0, + "review_count": 550, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Corkage": "False", + "HappyHour": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "BYOB": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "13:0-22:30", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "G5kg0wEuDk5eGdS8Dgb2vw", + "name": "Marcus Harold H, DDS", + "address": "7215 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9137366, + "longitude": -75.2398958, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Orthodontists, General Dentistry, Health & Medical, Endodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "YvPNkMeeKmilYrGW-Akuuw", + "name": "Coco Blue Nail & Spa", + "address": "108 N 2nd St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9522849, + "longitude": -75.1435245, + "stars": 3.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Massage, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "7ATYjTIgM3jUlt4UM3IypQ", + "name": "Body Cycle Spinning Studio", + "address": "1923 Chestnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 39.9521029, + "longitude": -75.1727526, + "stars": 5.0, + "review_count": 144, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Cycling Classes, Trainers, Gyms, Fitness & Instruction", + "hours": { + "Monday": "6:30-20:30", + "Tuesday": "6:30-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "6:30-20:30", + "Friday": "6:0-19:30", + "Saturday": "7:30-12:30", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "ZUmYjX2-kfyNjaSTSd224A", + "name": "Mark Cement Contractors", + "address": "1513 W Passyunk Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9253488, + "longitude": -75.171731, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Contractors, Masonry/Concrete", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "JlKaAWO7yHAJXWGcMQ3ZYA", + "name": "Richard Ip, DDS", + "address": "2678 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0673365, + "longitude": -75.028691, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Health & Medical, Dentists, Oral Surgeons", + "hours": null + }, + { + "business_id": "uv0dQlemI8GNm1SvBxwhFQ", + "name": "Burkett Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0703334, + "longitude": -75.2070644, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Session Photography, Arts & Entertainment, Event Photography, Beauty & Spas, Professional Services, Event Planning & Services, Photographers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "GmJDCmDhtKbjofeO35yBrw", + "name": "The Freshworks of Port Richmond", + "address": "2634 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97961, + "longitude": -75.117647, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "Caters": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'free'" + }, + "categories": "Delis, Salad, Cheesesteaks, Wraps, Restaurants, Sandwiches", + "hours": { + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "8Ak2iPlR4fCziMQZ11ohAA", + "name": "Les Bons Temps", + "address": "114 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949854, + "longitude": -75.160596, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Cajun/Creole, Dance Clubs, Nightlife, Bars", + "hours": null + }, + { + "business_id": "GAZMcRxy2i8ZHlwl7otD6Q", + "name": "Ann & Nell's African Hair Braiding", + "address": "7605 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0702316, + "longitude": -75.156898, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "IfTiafVaBhG2_4vV_WKHiA", + "name": "Guy's Upholstering", + "address": "1645 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929003, + "longitude": -75.1642399, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Furniture Reupholstery", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "4S_yN5o0EvXvV6GNvesTKw", + "name": "Sister Muhammad's Kitchen", + "address": "4441 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.022826208, + "longitude": -75.1590914279, + "stars": 4.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Halal, American (Traditional), Bakeries, Food, Soul Food", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "SfUgDt8-6GAVTuwBMnedgQ", + "name": "Wawa Food Markets", + "address": "14101 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.1319593894, + "longitude": -75.0115236634, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Convenience Stores, Delis, Restaurants", + "hours": null + }, + { + "business_id": "U09S6VSTWCKteCDa72Td7Q", + "name": "Watami Sushi & Hibachi", + "address": "11000 Roosevelt Blvd, Ste 154", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.103147, + "longitude": -75.0102491, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'very_loud'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars, Soup, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "kEh4Wk13q12PEbjiYF9CBQ", + "name": "Endodontics Limited, PC", + "address": "2137 Welsh Rd, Ste 3A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0755865, + "longitude": -75.0349921, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Endodontists, Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "lqXcdf0Ndh8W7LihWPSYuA", + "name": "Dunne Law Offices", + "address": "1515 Market St, Ste 1200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529853, + "longitude": -75.1658929, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Divorce & Family Law, Bankruptcy Law, Personal Injury Law, Lawyers", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30" + } + }, + { + "business_id": "3pb-4gEtN_HfemAZImo3ig", + "name": "Fast Painting 10", + "address": "268 W Nedro Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0404273, + "longitude": -75.1261588, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Flooring, Electricians, Contractors, Painters, Handyman, Lighting Fixtures & Equipment, Home Cleaning", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "afz_AwNNHMqqRo9OaKF_bw", + "name": "America's Best Contacts & Eyeglasses", + "address": "7636 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.977735, + "longitude": -75.272151, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Doctors, Shopping, Eyewear & Opticians, Optometrists, Ophthalmologists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "Hv8nT4XiAvIW4PEwBvykPg", + "name": "Roula's Pizza", + "address": "6200 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.042051, + "longitude": -75.1802359, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "wNj6mfivohSUpwP5AjmLoQ", + "name": "La Esquina del Bronco", + "address": "2265 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9848367, + "longitude": -75.1331135, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Latin American", + "hours": null + }, + { + "business_id": "sXSGezktRDQpR6BvM1LseA", + "name": "Bus Stop", + "address": "727 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9396623, + "longitude": -75.149456, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Shoe Stores", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "yJKPxrrQO1Ycp0jKO91t9w", + "name": "Suite Extensions Salon", + "address": "5622 Germantown Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0354971, + "longitude": -75.1746799, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Makeup Artists, Hair Stylists, Blow Dry/Out Services, Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Hair Extensions", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "1_BzX6o0O6w_9yx9NczMrg", + "name": "Wawa", + "address": "6701 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0403385055, + "longitude": -75.2234230242, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Restaurants, Delis, Convenience Stores, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "rxqcQ3fMMFsmKFo3EsBnEQ", + "name": "Cousinโ€™s Supermarket", + "address": "1900 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9802158, + "longitude": -75.1431111, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "3pbc89Mbi-L7HjuAw-DQfw", + "name": "Common Grounds Philly", + "address": "1626 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9790629, + "longitude": -75.162316, + "stars": 2.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Food, Soup, Coffee & Tea, Restaurants", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "1ZOyc39cRMNmEFvTOvQ_Uw", + "name": "New Ben City Supermarket", + "address": "5520 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.035518, + "longitude": -75.100398, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Food, Grocery", + "hours": { + "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:30", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "uBDXcXlLR9IuRV1N2m0SPQ", + "name": "Pho Street", + "address": "2104 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536619, + "longitude": -75.1754204, + "stars": 4.0, + "review_count": 150, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "Qfy1pJcBvOiHlQpPUZbL3w", + "name": "Boardwalk Bar", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664073, + "longitude": -75.1386733, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Arts & Entertainment, Arcades, Nightlife, Bars", + "hours": { + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "JI-n3NJ4yTJBOybNPQQ9aw", + "name": "Pennypack Flowers", + "address": "9315 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0854481, + "longitude": -75.0454887, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "lccVg98PECC-2mKivDgaVg", + "name": "Victory Taxi Radio Dispatch", + "address": "1405 W Pike St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0123992, + "longitude": -75.1506992, + "stars": 1.5, + "review_count": 48, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Taxis, Hotels & Travel", + "hours": null + }, + { + "business_id": "H4t7YAtaDQ8bKOW452zSaA", + "name": "Kopi Latte", + "address": "530 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9709602, + "longitude": -75.1274537, + "stars": 4.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Breakfast & Brunch, Cafes, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "rz_an69uzlVtRzkRSMqrsw", + "name": "China House", + "address": "7141 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0631649, + "longitude": -75.1519159, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "TOOuPArV9vEpf8YhVRuzjw", + "name": "Yoon's Auto Repair", + "address": "6701 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0534449, + "longitude": -75.1264211, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-15:30" + } + }, + { + "business_id": "KFZNgF44I7SoMi-B4p9oAQ", + "name": "2400 Dry Cleaners", + "address": "2400 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526350284, + "longitude": -75.1794407008, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Dry Cleaning, Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "WbhbX18YghYXNe321biFJg", + "name": "Brazilian Wax Studio and Spa", + "address": "3356 Grant Ave, Unit 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0676663, + "longitude": -75.0056414, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-12:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "IAyHcNx5IHoLf3V4dlgFCw", + "name": "Pagoda Noodle Cafe", + "address": "125 Sansom Walkway", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9474496788, + "longitude": -75.1439342278, + "stars": 3.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "WiFi": "u'no'", + "HasTV": "False", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Food, Specialty Food, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "pVHbXwsqLxNzAx9rdwy2EA", + "name": "Marmont Steakhouse & Bar", + "address": "222 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497397, + "longitude": -75.1445806, + "stars": 3.5, + "review_count": 316, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "None" + }, + "categories": "American (Traditional), Steakhouses, Nightlife, Bars, Seafood, Restaurants, Lounges", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-1:0", + "Friday": "16:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "vXExv-M2X53sBy1PH8yBfg", + "name": "Liberty Locksmith Philadelphia", + "address": "2728 N Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9949974, + "longitude": -75.1572059, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "6LHm5237s7sDCtoFncODLA", + "name": "Let's Cultivate Food", + "address": "4658 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0307476, + "longitude": -75.2304722, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Event Planning & Services, Arts & Crafts, Food Delivery Services, Cooking Classes, Team Building Activities, Cooking Schools, Special Education, Caterers, Specialty Schools, Education, Shopping, Personal Chefs", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "HlzbNeFmy-EyZUBth5iNWQ", + "name": "The Center For Art In Wood", + "address": "141 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95339409, + "longitude": -75.14478933, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Art Galleries, Shopping, Jewelry, Art Museums, Museums", + "hours": { + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "mDplRQe0GajH76EzHJhucQ", + "name": "New Lee's Chinese Restaurant", + "address": "9220 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0643495083, + "longitude": -75.021128657, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "4", + "WiFi": "'no'", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "LINqYppbDjHbPrjpfHqCaQ", + "name": "Richmond Hall", + "address": "2619 E Indiana Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9825642, + "longitude": -75.1075139, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Party & Event Planning, Caterers", + "hours": null + }, + { + "business_id": "Trd7H5_YJRzGoH890zgwtQ", + "name": "Ground Zero South", + "address": "752 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938985, + "longitude": -75.14988, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Q-prSTdggNlxAEFV88BZOw", + "name": "Tria Cafe Wash West", + "address": "1137 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466238, + "longitude": -75.1609139, + "stars": 4.5, + "review_count": 770, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "'beer_and_wine'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForDancing": "False", + "HasTV": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Beer, Wine & Spirits, Wine Bars, Modern European, American (New), Cheese Shops, Specialty Food, Food, Restaurants, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "14:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "5FuQbcHTF_I7PWJzhCMObw", + "name": "Larry's Steaks", + "address": "2459 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9958264, + "longitude": -75.233934, + "stars": 3.0, + "review_count": 204, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Cheesesteaks, Sandwiches, Pizza, Restaurants, Delis", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-3:30", + "Saturday": "10:0-3:30", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "Z8uwE4woiskwAWLyPTs5lw", + "name": "Salon L Manayunk", + "address": "4120 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0228352847, + "longitude": -75.2194559172, + "stars": 4.0, + "review_count": 163, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Hair Salons, Day Spas, Beauty & Spas, Reflexology, Massage", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "nB9dev-4Wzxo4NHJkQQmUQ", + "name": "Market on Ninth", + "address": "943 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378087, + "longitude": -75.1579422, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "Caters": "True", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Coffee & Tea, Specialty Food, Food, Sandwiches, Restaurants", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "f9Oemv5FsqjcDwDDz1P3_Q", + "name": "Rothman Orthopaedics Rink", + "address": "1 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952773, + "longitude": -75.1645681968, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Skating Rinks, Active Life", + "hours": null + }, + { + "business_id": "bGBK1r0I46Oc8eU8fNc0bg", + "name": "Wawa", + "address": "3341 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0688844854, + "longitude": -75.0052062453, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Gas Stations, Coffee & Tea, Sandwiches, Automotive, Delis, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "1I58IN0Ar5Qd3WnE1smgVg", + "name": "Pikes Corner", + "address": "1940 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.066525, + "longitude": -75.158273, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Food, Specialty Food, Seafood, Seafood Markets, Restaurants", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "-Or44IdY51Ukd618kikmtA", + "name": "Federal Donuts", + "address": "701 N Seventh St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9641791314, + "longitude": -75.1494241306, + "stars": 4.0, + "review_count": 321, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "DogsAllowed": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "True", + "WiFi": "'free'", + "HappyHour": "False" + }, + "categories": "Restaurants, Donuts, Chicken Wings, Food, Coffee & Tea", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Ugoyu-TIppruxRTkbej3lA", + "name": "Sole II Soul", + "address": "6139 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0286051611, + "longitude": -75.2275279909, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BikeParking": "True" + }, + "categories": "Karaoke, Restaurants, Seafood, American (New), Nightlife, Soul Food", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "uBLzGGjHthoUlheOD5JEww", + "name": "Salon J Moirai", + "address": "3981 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9999111, + "longitude": -75.2091899, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Skin Care, Hair Stylists, Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "7:0-15:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "I3LSnL6UfkgoslMzXSYvDA", + "name": "Anthropologie", + "address": "1801 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504106966, + "longitude": -75.1709130875, + "stars": 4.0, + "review_count": 157, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Home & Garden, Home Decor, Women's Clothing, Fashion, Health & Medical, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "RbXUQx_aW5WVWgl4HCwnsA", + "name": "Jacob Joly DMD", + "address": "443 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9704292, + "longitude": -75.1448014, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "15:0-20:0", + "Wednesday": "9:0-19:0", + "Thursday": "15:0-20:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "jLDwSeoQ_kDQwhnUJQO2yw", + "name": "Sansom Kabob House", + "address": "1300 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432697, + "longitude": -75.1634989, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True" + }, + "categories": "Soup, Vegetarian, Afghan, Kebab, Indian, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "Pyr5bTFM3PJtphoWDtIYlQ", + "name": "Tiedhouse", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9628296, + "longitude": -75.1719117, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Breweries, Restaurants", + "hours": null + }, + { + "business_id": "Es39sSDXiReBthHLBSD_Xw", + "name": "Phillips Seafood", + "address": "17th & Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.956841, + "longitude": -75.167597, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Seafood, Restaurants", + "hours": null + }, + { + "business_id": "faSi7EoZ38xMPJEpp7-pqg", + "name": "Algorithm Restaurants", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 40.116933, + "longitude": -75.355294, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "HappyHour": "True", + "Caters": "True", + "BYOB": "None", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "HasTV": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Food Trucks, Pop-Up Restaurants, Business Consulting, Professional Services, Event Planning & Services, Street Vendors, Restaurants, Mexican, Burgers, Party Equipment Rentals, Tacos, Vegan", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "GLG7Xxbwcahg1DZ0E7WHbQ", + "name": "School of Dance Arts", + "address": "47 High St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0407471, + "longitude": -75.1770158, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Specialty Schools, Dance Schools, Education", + "hours": { + "Monday": "4:30-19:30", + "Tuesday": "4:30-19:30", + "Wednesday": "4:30-19:30", + "Friday": "4:30-19:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "QyWxTsVvvqSEpU1KNblRbQ", + "name": "Say Cheese", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9613329598, + "longitude": -75.1550674438, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Food, Sandwiches, Street Vendors", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:30-15:30" + } + }, + { + "business_id": "nOVUeN4lQAnrwskMMJ4nEw", + "name": "Pho Mi Rittenhouse", + "address": "106 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517712444, + "longitude": -75.1737245, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Restaurants, Vietnamese", + "hours": null + }, + { + "business_id": "eEW2LAE2Fb8rZVE2rtNeyQ", + "name": "DGX", + "address": "1001 N 2Nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665629, + "longitude": -75.1399899, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Convenience Stores, Coffee & Tea, Grocery, Discount Store, Shopping, Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "zBOy9arp97nuwKuTal5Mkg", + "name": "New Number One Chinese Restaurant", + "address": "4251 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551025, + "longitude": -75.208546, + "stars": 2.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "HappyHour": "False", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "Corkage": "False", + "DogsAllowed": "True", + "BYOB": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False" + }, + "categories": "Chinese, Asian Fusion, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "gGyqnAlpFrka_qzpO7j4lQ", + "name": "Citizens Bank Park", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9059929, + "longitude": -75.1666401, + "stars": 4.5, + "review_count": 515, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Active Life, Baseball Fields, Stadiums & Arenas, Arts & Entertainment", + "hours": null + }, + { + "business_id": "stnNDWmNgQzndXN2FBm__A", + "name": "Lolli Lolli", + "address": "713 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481059, + "longitude": -75.153195, + "stars": 3.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Fashion, Toy Stores, Children's Clothing, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "w_JNBcdRer2wZlKMiC4hHA", + "name": "Flannel", + "address": "1819 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9272227151, + "longitude": -75.1663260162, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}", + "DogsAllowed": "True" + }, + "categories": "Southern, American (Traditional), Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "vAWxyiJuTrWsoX92GCvclg", + "name": "Urban & Bye Realtor", + "address": "3529 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9585654, + "longitude": -75.1931311, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": null + }, + { + "business_id": "1DFvkUjtsqNRNlORaUYlFQ", + "name": "Warsaw Cafe", + "address": "306 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947091, + "longitude": -75.1682158, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Modern European, Polish, Restaurants", + "hours": null + }, + { + "business_id": "WlECTpoD6JXD2oJc_mdvkg", + "name": "Lyceum Physical Medicine", + "address": "6062 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0329246, + "longitude": -75.2148084, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Medical Centers, Weight Loss Centers, Physical Therapy, Chiropractors, Doctors, Rehabilitation Center", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "4:0-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-13:30" + } + }, + { + "business_id": "5W3_J8LPpOQFvfw7Bb-mSQ", + "name": "Ground Zero Mills", + "address": "3502 Scotts Ln, Ste 1721", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0077857, + "longitude": -75.1861901, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "znYbdOLX_HUr8RLIAMpXqw", + "name": "Hancock Funeral Home", + "address": "8018 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057576, + "longitude": -75.0467055, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "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" + } + }, + { + "business_id": "XKhACCLtkT29uWmEBx-DHQ", + "name": "Rowhouse Grocery", + "address": "1713 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9264200131, + "longitude": -75.1746901497, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Specialty Food, Grocery, Coffee & Tea, Convenience Stores, Food", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "MbKhuO-4uYPc0NRZDRWoew", + "name": "MexiCali", + "address": "110 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95499, + "longitude": -75.202699, + "stars": 3.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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": "12:0-20:30" + } + }, + { + "business_id": "MIn4G1dI0iJaDw3U3uKofg", + "name": "Carre d'artistes Art Gallery Philadelphia", + "address": "104 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501114, + "longitude": -75.1620853, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Museums, Framing, Art Galleries, Shopping, Professional Services, Arts & Entertainment, Arts & Crafts", + "hours": null + }, + { + "business_id": "1ENdYUfYzDu9yyI3-MVklA", + "name": "Boostin' Bowls", + "address": "100 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261216129, + "longitude": -75.2246050321, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Juice Bars & Smoothies, Acai Bowls, Restaurants, American (New), Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "_RGH0PIjwMoFaYUm2P5dKQ", + "name": "Lombard Swim Club", + "address": "2040 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9458521, + "longitude": -75.1761041, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beaches, Active Life, Swimming Pools, Restaurants, Greek", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-23:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "sDCqBdVZ59kPyytHAC8r4g", + "name": "Giovanni & Pileggi", + "address": "258 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9469282, + "longitude": -75.1594956, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:30-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "FfF-juvpvrF9T4670vCrXA", + "name": "Wingstop", + "address": "7124 Ridge Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0442404, + "longitude": -75.2317485, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "3ZynJ94VpIdDlaArmEp2Rg", + "name": "More Than Just Ice Cream", + "address": "1119 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947791, + "longitude": -75.1603392, + "stars": 3.5, + "review_count": 239, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Sandwiches, Ice Cream & Frozen Yogurt, Comfort Food, Breakfast & Brunch, Diners, Restaurants, Desserts", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "yCircN2ybEcUrWUzqfXlew", + "name": "West Coast Optical", + "address": "132 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504874, + "longitude": -75.1691989, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Eyewear & Opticians, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-16:30", + "Thursday": "10:30-16:30", + "Friday": "10:30-16:30", + "Saturday": "10:30-17:0" + } + }, + { + "business_id": "49wcB-ofwY20ggk7Kd4rfw", + "name": "Hong Kong Chinese Restaurant", + "address": "12333 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.095702, + "longitude": -74.9750493, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "Xkn6vebYLTY1aCe2J07MfA", + "name": "Heffe", + "address": "1543 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963057286, + "longitude": -75.1643311232, + "stars": 2.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Caters": "True", + "DogsAllowed": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Tacos, Latin American, Mexican, Salad, American (New)", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "LfrCUDzg66jncxLvNxBnlg", + "name": "Bocconcini", + "address": "1334 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9453439, + "longitude": -75.1642327, + "stars": 4.5, + "review_count": 163, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Corkage": "False", + "HasTV": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True" + }, + "categories": "Gluten-Free, Pizza, Venues & Event Spaces, Italian, Restaurants, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "16:0-21:30", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "7e4Z9_qGA0Vjb8xlFC61PA", + "name": "Chef Joseph Poon", + "address": "1010 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9543466, + "longitude": -75.156613, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "HasTV": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Ethnic Food, Local Flavor, Hotels & Travel, Cooking Classes, Chinese, Restaurants, Arts & Crafts, Tours, Arts & Entertainment, Food, Specialty Food, Shopping", + "hours": null + }, + { + "business_id": "CVrU9WrUHs2SShb6RRMwVA", + "name": "Xenos Candy 'N' Gifts", + "address": "231 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486947, + "longitude": -75.1452689, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "Caters": "False" + }, + "categories": "Specialty Food, Food, Candy Stores, Gift Shops, Shopping, Souvenir Shops, Flowers & Gifts", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "9:30-18:30", + "Wednesday": "9:30-18:30", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "10:0-20:0", + "Sunday": "10:30-18:30" + } + }, + { + "business_id": "XfDgchxycc8-Bt4fSOHryA", + "name": "Grape Street", + "address": "4100 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 40.022144, + "longitude": -75.218707, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Bars, Music Venues, Lounges, Dance Clubs, Nightlife, Arts & Entertainment", + "hours": null + }, + { + "business_id": "fsQvN1s1EchwblEPls6O5Q", + "name": "Relax Therapy Spa", + "address": "7151 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059863, + "longitude": -75.190609, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Massage Therapy, Active Life, Beauty & Spas, Fitness & Instruction, Yoga, Day Spas, Massage", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "11:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Rxv4m4UkkLE8224qCKmUAQ", + "name": "Enterprise Rent-A-Car", + "address": "217 W Chelten Ave, Ste 233", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0312755503, + "longitude": -75.179796204, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "7:30-16:0", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "Q6dqCcvBDeRYmz5MV3AqDA", + "name": "Rita's Italian Ice", + "address": "2499 H Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9753298, + "longitude": -75.1196932, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "'no'" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food, Shaved Ice", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "lRbHFOIFuusN2WOR_ypQ_A", + "name": "Ants Pants Cafรฉ", + "address": "2212 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451562, + "longitude": -75.179105, + "stars": 4.0, + "review_count": 531, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Coffee & Tea, Sandwiches, Desserts, Food, Breakfast & Brunch", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Uw8fF9HCUMGrHso0KDxr1w", + "name": "Youngs Custom Tailor and Cleaners", + "address": "1801 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545741, + "longitude": -75.1705183957, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Sewing & Alterations, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "PjknD8uD_0tisZQbomiYoQ", + "name": "McDonald's", + "address": "1706 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498587626, + "longitude": -75.1695573452, + "stars": 2.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Burgers, Food, Coffee & Tea, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "e5JRwLlsLUgt-q2WBnGkqA", + "name": "Golden China Wok Restaurant", + "address": "3447 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0057676, + "longitude": -75.1494953, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "Caters": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-2:30", + "Tuesday": "11:0-2:30", + "Wednesday": "11:0-2:30", + "Thursday": "11:0-2:30", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "ctOOp80WBFPj3wPZyFw1tw", + "name": "Taco Bell", + "address": "4600 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0025296, + "longitude": -75.2227004, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DriveThru": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "Waz1bXpzTgfB9DOouGjJ2Q", + "name": "Midori Sushi", + "address": "516 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423842, + "longitude": -75.1507361, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "Corkage": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "BYOB": "True", + "WheelchairAccessible": "True" + }, + "categories": "Salad, Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "tm94_vqmMMeAv01L-7FJzQ", + "name": "Mayura Indian Restaurant", + "address": "9321-23 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.086176, + "longitude": -75.045126, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Indian, Food, Soup, Desserts, Restaurants", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "11:0-19:0", + "Friday": "17:0-21:30", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "cXSyVvOr9YRN9diDkaWs0Q", + "name": "Honey's Sit-N-Eat", + "address": "800 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96399, + "longitude": -75.1444822, + "stars": 4.0, + "review_count": 1396, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "Corkage": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Southern, Restaurants, American (Traditional)", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "H9YalVFugskHF38MfJWT_w", + "name": "@Ramen", + "address": "1608 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950475902, + "longitude": -75.1677184179, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Japanese, Ramen", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30" + } + }, + { + "business_id": "6g3pHoyXeMXFC7WD0rbJMA", + "name": "Happy Panda", + "address": "9969 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1013209, + "longitude": -75.0287078, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "Xcbl8kRa45Bb2tkvHSXd3Q", + "name": "Mandalay Bowl", + "address": "627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422847, + "longitude": -75.1532384, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "DogsAllowed": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Salad, Asian Fusion, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "9Vdjwd9nesIGRx_1CvnS6g", + "name": "Riff Tailoring & Dry Cleaning", + "address": "314 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9445319, + "longitude": -75.1504031, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning, Local Services, Dry Cleaning & Laundry, Laundry Services, Sewing & Alterations", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "D5V0Fawd6ODVgqCY8xngsw", + "name": "Loews Philadelphia Hotel", + "address": "1200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517461, + "longitude": -75.1602286, + "stars": 3.5, + "review_count": 505, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'paid'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Hotels & Travel, Restaurants, Hotels, Seafood", + "hours": null + }, + { + "business_id": "x03j48hmv0R7NQcUjD0MQg", + "name": "Naf Naf Grill", + "address": "4040 City Ave, 2B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0074349, + "longitude": -75.2124437, + "stars": 3.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "WiFi": "'free'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': False, 'validated': None, 'lot': True, 'valet': False}" + }, + "categories": "Salad, Falafel, Restaurants, Middle Eastern, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "oLuOJ-3q8zJ-mhrwcR28eg", + "name": "B&B Breakfast and Lunch", + "address": "5601 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0353055, + "longitude": -75.173616, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WiFi": "'no'", + "Caters": "False", + "Alcohol": "'none'" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Su_KoRa64akK19myzyK3xA", + "name": "Tre Scalini Ristorante", + "address": "1915 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262103, + "longitude": -75.1675231, + "stars": 3.5, + "review_count": 159, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "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": "16:0-21:0" + } + }, + { + "business_id": "sTO4Q8KMEB0idJetndFx2g", + "name": "Frequency Tattoo Co", + "address": "4038 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0075964, + "longitude": -75.1902673, + "stars": 5.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "Iy9IBht60mlX9bEyez-oCA", + "name": "Martelli's Men's Grooming Salon", + "address": "4352 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253773, + "longitude": -75.2236998, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'" + }, + "categories": "Men's Hair Salons, Barbers, Hair Salons, Teeth Whitening, Hair Removal, Hair Stylists, Waxing, Beauty & Spas", + "hours": { + "Monday": "13:0-18:0", + "Tuesday": "12:0-19:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "r5LcXzYJaNRJHCS1TGs57A", + "name": "Demarino Chiropractic Ctr", + "address": "2505 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919153, + "longitude": -75.1704871, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Chiropractors, Health & Medical", + "hours": null + }, + { + "business_id": "HxBT-rFCLh3KKWcl8Rtf2A", + "name": "Peekaboo Pediatrics Philadelphia", + "address": "821 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634778, + "longitude": -75.14056, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Pediatricians, Doctors, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:30", + "Wednesday": "9:0-13:0", + "Thursday": "9:30-18:30", + "Friday": "9:0-11:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "6aRS_XdAA9g9dWxNBAnLew", + "name": "Auntie Anne's", + "address": "1210 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0879615, + "longitude": -74.9589842, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Food, Pretzels, Bakeries", + "hours": null + }, + { + "business_id": "dbfm8H0KQRrxT_QSXrQZ-A", + "name": "Darnelโ€™s Cakes", + "address": "444 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9583181, + "longitude": -75.1449356, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Food, Bakeries, Coffee & Tea", + "hours": null + }, + { + "business_id": "PusG7tp0Yu7qz1ql1viXqw", + "name": "Adz Kozloski", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Golf", + "hours": null + }, + { + "business_id": "_hsEJv3KtH5Vwp2b14wCAQ", + "name": "Cherry Lounge", + "address": "1201 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560366, + "longitude": -75.1591747, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Steakhouses, Bars, American (New), Nightlife, Breakfast & Brunch, Food", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "XahxHmkaFOAwXix2VGRAUQ", + "name": "Richie's", + "address": "1835 N 12th St, Ste 9, Temple University Main Campus", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9809158, + "longitude": -75.153284, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Caters": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "WiFi": "u'free'", + "DogsAllowed": "True" + }, + "categories": "Food Stands, Restaurants, Sandwiches, Pizza, Burgers, Breakfast & Brunch, Delis, Food, Coffee & Tea", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0" + } + }, + { + "business_id": "AQfAhiVYzRDH9h0t1TiIIA", + "name": "Wired Beans Cafe", + "address": "301 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0300415212, + "longitude": -75.1807833307, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Cafes, Coffee & Tea, American (New)", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "hWuLvI5QqPyQ1x9ww0HeRw", + "name": "Giorgio Pizza on Pine", + "address": "1334 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9453439, + "longitude": -75.1642327, + "stars": 2.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "-ATiAtTikuGuqvaW2O6tNA", + "name": "Marathon", + "address": "121 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504833638, + "longitude": -75.1673305865, + "stars": 3.5, + "review_count": 593, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': None}" + }, + "categories": "Sandwiches, American (New), Lounges, Nightlife, Bars, Restaurants, Breakfast & Brunch", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "hnfk4OHq2k0nkHBoX79i9g", + "name": "Lowell Meyerson, DO", + "address": "7516 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9788022, + "longitude": -75.2697355, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Proctologists, Podiatrists, Health & Medical", + "hours": { + "Wednesday": "15:30-19:30", + "Thursday": "8:0-19:30" + } + }, + { + "business_id": "irwBGAGqMPam4YLbn04TYQ", + "name": "Drexel Family Medicine - Tower Health", + "address": "10 Shurs Ln, Ste 203", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0225755619, + "longitude": -75.2179199676, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Medicine, Doctors, Family Practice, Health & Medical", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "W-sA8QCwkbkHnFJG1D5IGw", + "name": "The American Swedish Historical Museum", + "address": "1900 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9059506526, + "longitude": -75.1810532598, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Art Galleries, Shopping, Museums, Arts & Entertainment", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "qPRhgIbdFdnA2n3rn69jow", + "name": "Gentle Touch Car Wash", + "address": "7885 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0737369, + "longitude": -75.0843766175, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Car Wash", + "hours": null + }, + { + "business_id": "Xxo58tuutnV2nPAvQwzSmQ", + "name": "Masquerade", + "address": "1100 Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932427, + "longitude": -75.144556, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Adult, Party Supplies, Accessories, Costumes, Hobby Shops, Arts & Crafts, Event Planning & Services, Fashion", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "HsBN0LiWQnbcltRIOWOslg", + "name": "The Windsor Suites", + "address": "1700 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557404, + "longitude": -75.1683553, + "stars": 3.5, + "review_count": 172, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "DogsAllowed": "True" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "Monday": "0:0-23:59", + "Tuesday": "0:0-23:59", + "Wednesday": "0:0-23:59", + "Thursday": "0:0-23:59", + "Friday": "0:0-23:59", + "Saturday": "0:0-23:59", + "Sunday": "0:0-23:59" + } + }, + { + "business_id": "WpV19z7TAlKDFtd2f2CUHg", + "name": "Lock's Philadelphia Gun Exchange", + "address": "6700 Rowland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.031957, + "longitude": -75.053485, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Guns & Ammo, Active Life, Sporting Goods, Antiques, Shopping, Gun/Rifle Ranges, Gunsmith, Local Services", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "LU16w79SDkHD5G-iR6unMw", + "name": "Soda African Hair Braiding", + "address": "5103 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0214068, + "longitude": -75.0791491, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "AfOovhtD296J_Gi3GJ_hdw", + "name": "Keswick Cycle", + "address": "4040 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9528747, + "longitude": -75.204691, + "stars": 4.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Bikes, Sporting Goods, Bike Repair/Maintenance, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "s9qB7VvbbSNTp3u8InMG0w", + "name": "Rite Aid", + "address": "704-20 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402229, + "longitude": -75.151665, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Drugstores, Shopping, Food, Convenience Stores", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "nQTJn9kdpU9Mns-b_qduVw", + "name": "The Barbary", + "address": "951 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.965554, + "longitude": -75.1342204, + "stars": 4.0, + "review_count": 197, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "WiFi": "u'no'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Dance Clubs, Music Venues, Bars, Nightlife", + "hours": { + "Monday": "22:0-2:0", + "Tuesday": "22:0-2:0", + "Wednesday": "22:0-2:0", + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "22:0-2:0" + } + }, + { + "business_id": "oqkbdfrXNcFNJBTSFu8RjQ", + "name": "Friendly Grocery", + "address": "1515 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9296512, + "longitude": -75.1707949, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Indonesian, Restaurants, Grocery, Convenience Stores, Food", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "xCXGV3wEvYd4xBGx8ZRFQA", + "name": "La Va Cafe", + "address": "2100 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9449991381, + "longitude": -75.1770997246, + "stars": 3.5, + "review_count": 201, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, Breakfast & Brunch, Coffee & Tea, Salad, Food, Mediterranean", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Fc_8eLlcq5yy4DzrEeqEaQ", + "name": "Ken's Seafood Restaurant", + "address": "1004 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9551567, + "longitude": -75.1562026, + "stars": 3.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "GoodForDancing": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "BikeParking": "True", + "HappyHour": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': True, u'dessert': False}", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Seafood, Chinese, Nightlife, Restaurants, Karaoke", + "hours": null + }, + { + "business_id": "M-qVYCSpKlNlxKWEq6vraw", + "name": "North by Northwest", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.060177, + "longitude": -75.190676, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, Music Venues, Arts & Entertainment, Restaurants", + "hours": null + }, + { + "business_id": "OG8er33dEnzM1Bc9nErUmA", + "name": "1 Stop Pizza", + "address": "3701 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0093835, + "longitude": -75.1506617, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "OutdoorSeating": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Burgers, Pizza, Restaurants, Italian, Delis", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "uKAbrDSJJzZliY1Yqu5KxQ", + "name": "Scannicchio's", + "address": "2500 S Broad & Porter", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.919346, + "longitude": -75.171033, + "stars": 4.0, + "review_count": 187, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "Corkage": "False", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Seafood, Italian, Restaurants, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:30", + "Saturday": "16:0-20:30", + "Sunday": "15:30-19:30" + } + }, + { + "business_id": "_9_aqbw4ak8qFskzxHxrpQ", + "name": "University Family Fun Center", + "address": "4006 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9515382, + "longitude": -75.2034857, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Local Flavor, Arcades, Arts & Entertainment, Kids Activities", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "8:0-18:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "5ogNmbqNE5U2YO_HGenGfg", + "name": "Mary's Lunch", + "address": "3600 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9879973, + "longitude": -75.092056, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch", + "hours": { + "Monday": "4:0-13:0", + "Tuesday": "4:0-13:0", + "Wednesday": "4:0-13:0", + "Thursday": "4:0-13:0", + "Friday": "4:0-13:0", + "Saturday": "4:0-12:0" + } + }, + { + "business_id": "NwNGKIf_eQwvr6tzFX6eRA", + "name": "ShopRite of Whitman Plaza", + "address": "330 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9143301122, + "longitude": -75.1531118029, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Restaurants, Delis, Bakeries", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "SyrELEDXKWjuBM6Pekx9Fw", + "name": "The Irish Pol", + "address": "45 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948996, + "longitude": -75.1457269, + "stars": 4.0, + "review_count": 122, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'touristy': False, 'casual': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HappyHour": "True" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "WpxcyiUAYYQAnivqz62JtA", + "name": "3J's Food Market", + "address": "801 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9629932991, + "longitude": -75.1406934857, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Cheesesteaks, Grocery, Delis, Food, Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "6e85By5Jy7MMnW2cEaGv4A", + "name": "Wanderwell", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Tax Services, Bookkeepers, Business Consulting, Financial Advising, Accountants, Financial Services, Professional Services", + "hours": null + }, + { + "business_id": "FU6CaKb9hePVMAsXO5W6pw", + "name": "Aya's Pizza", + "address": "7144 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.915063, + "longitude": -75.240049, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food Delivery Services, Pizza, Food", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "HXNnAl94bXuhBJjP0jPL2A", + "name": "O'doodles", + "address": "8532 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0763964504, + "longitude": -75.2074891007, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Toy Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:30-17:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "7rMxt2f3uvC6xPQtHgQKLQ", + "name": "R&D", + "address": "1206 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9691718956, + "longitude": -75.1345449025, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Lounges, Nightlife, Cocktail Bars, Bars", + "hours": { + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "qWHFayi0d2bDnMs0nQXWHw", + "name": "Furniture SIR Plus", + "address": "5351 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9788558, + "longitude": -75.2297782, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Furniture Stores, Home & Garden", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "lwVVKe4W5_NZp98WdnVIpw", + "name": "Norman's", + "address": "1714 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9261951, + "longitude": -75.1496233, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": null + }, + { + "business_id": "J6MGQigHItdSlG-3XZ1myA", + "name": "Bobo's Sports Bar", + "address": "6424 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.040521, + "longitude": -75.0769374, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Restaurants, Nightlife, Karaoke, Korean, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "REt83ozDeIl6fCYZuAjNrA", + "name": "Tran's Chinese Food Cart", + "address": "216 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.96009, + "longitude": -75.189482, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Chinese, Food Stands, Food, Food Trucks, Restaurants", + "hours": null + }, + { + "business_id": "D4PD-ZKV06keByyoouJzhg", + "name": "Mack's Boardwalk Pizza", + "address": "2700 S Hutchinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9156866, + "longitude": -75.1640201, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Food, Pizza, Restaurants", + "hours": { + "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:30-22:0" + } + }, + { + "business_id": "OIBjmaKxaYMjPkxhHnLKlw", + "name": "Affordable Plumbing", + "address": "4554 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0103596, + "longitude": -75.0800367, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Plumbing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "eaV07HGOcyb27XobHVl8LQ", + "name": "Jean Madeline Aveda Institute Salon", + "address": "3943-45 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9559821, + "longitude": -75.201914, + "stars": 3.5, + "review_count": 190, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Schools, Nail Salons, Hair Salons, Cosmetology Schools, Education, Makeup Artists, Beauty & Spas", + "hours": { + "Tuesday": "16:45-21:0", + "Wednesday": "16:45-21:0", + "Thursday": "16:45-21:0", + "Friday": "9:30-16:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "y_JZFlF-4fwSIn4RJ2vMGw", + "name": "Italiano's", + "address": "2551 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.917764, + "longitude": -75.1671583, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BikeParking": "False", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Desserts, Restaurants, Italian, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "19:0-22:0", + "Wednesday": "19:0-22:0", + "Thursday": "19:0-22:0", + "Friday": "14:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "j_dA2oE0St07hd7bqLKgBg", + "name": "To-Yo Japanese Restaurant", + "address": "13032 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1246991, + "longitude": -75.0155235, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": null + }, + { + "business_id": "GNbRgiEV_XoaFQep-W2BOg", + "name": "Greene Manor", + "address": "259 W Johnson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0417824989, + "longitude": -75.18771837, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "k3SZAPbt-Kt8lbibHK5pOQ", + "name": "Wings & More", + "address": "900 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9362327, + "longitude": -75.1586195, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Food, Convenience Stores, Beer, Wine & Spirits", + "hours": null + }, + { + "business_id": "TCdNYh5tdjoNmA1WMx3ZPg", + "name": "Roselena's", + "address": "1623 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929374, + "longitude": -75.1638426, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "5kZtETKu37RuwHATrB4a5g", + "name": "City Fitness - Graduate Hospital", + "address": "2101 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451837241, + "longitude": -75.1773490574, + "stars": 3.5, + "review_count": 193, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-1:0", + "Wednesday": "5:0-1:0", + "Thursday": "5:0-12:0", + "Friday": "5:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "iabTLSZ0Jf3ZPlyFMAusMw", + "name": "Suplex Philadelphia", + "address": "624 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419716, + "longitude": -75.1531084, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Sporting Goods, Local Flavor, Used, Vintage & Consignment, Sports Wear, Shoe Stores, Shopping", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "_XqG090bh8QAELm4GvN4iQ", + "name": "Greenman's Deli", + "address": "2900 Robbins Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.030102, + "longitude": -75.064457, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Salad, Sandwiches, Eyewear & Opticians, Shopping, Delis, Restaurants", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "y1HcGuIOchLnsuRCT-8LjA", + "name": "Authorized Motor Service", + "address": "1112 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9355044, + "longitude": -75.1572515, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Repair, Oil Change Stations, Transmission Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "vlaLpBMm4Hzz5PXkxBNzfg", + "name": "Allen Tire & Service", + "address": "4410 E Howell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0195906, + "longitude": -75.0633527, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Tires, Auto Parts & Supplies, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-12:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "0LpmLt3d6BK_ljVOadrMVQ", + "name": "Mitchell & Ness Nostalgia Company", + "address": "121 S Broad St, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502258, + "longitude": -75.1637041, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Sports Wear, Sporting Goods, Fashion, Shopping", + "hours": null + }, + { + "business_id": "vEyfMDd1u00EwCRGbpz36A", + "name": "Carpenters' Hall", + "address": "320 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480501031, + "longitude": -75.1469577849, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Event Planning & Services, Venues & Event Spaces", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "ojiqsGdPa4jCTBQ7Ir7Bjg", + "name": "The President's House", + "address": "600 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505118852, + "longitude": -75.1507678628, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "kz8OeP88ZYjDBWb0LePJ3A", + "name": "Chill On the Hill", + "address": "5 E Highland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0765359514, + "longitude": -75.2062382294, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "12:0-20:30", + "Tuesday": "12:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "12:0-20:30", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "Ctudqb9DOaf_BTxOSqwA7Q", + "name": "AutoZone Auto Parts", + "address": "6758 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0415055, + "longitude": -75.2259368, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "D4DZztR7vkbiED6txGUYFg", + "name": "Red Kings 2 Restaurant", + "address": "1006 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553515, + "longitude": -75.1562283, + "stars": 3.5, + "review_count": 68, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': True}" + }, + "categories": "Nightlife, Karaoke, Food, Szechuan, Chinese, Restaurants", + "hours": { + "Monday": "17:0-3:0", + "Wednesday": "17:0-3:0", + "Thursday": "17:0-3:0", + "Friday": "17:0-4:0", + "Saturday": "17:0-4:0", + "Sunday": "17:0-3:0" + } + }, + { + "business_id": "VUy-FsS2DZZVpiUG63VDBw", + "name": "The Shade Store", + "address": "1725 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518131, + "longitude": -75.1697005, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Shades & Blinds", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "lkPAmyZDva5Bt4EaqzjS8g", + "name": "Kevin's Hair Salon", + "address": "538 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934859, + "longitude": -75.153675, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-19:30", + "Sunday": "9:30-19:30" + } + }, + { + "business_id": "utzJv6jAHhsWT3tAz5kesw", + "name": "Miami Cafe", + "address": "429 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941958, + "longitude": -75.15019, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bars, Nightlife, Cuban, Tapas Bars, Restaurants, Lounges", + "hours": null + }, + { + "business_id": "CQgCsfUUZduNz0fNyeAsyA", + "name": "Uptown Beer Garden", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658879, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Beer Gardens, Nightlife", + "hours": null + }, + { + "business_id": "AlxnbBd2JNkozNvI0OvRLQ", + "name": "Murph's Bar", + "address": "202 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9689397, + "longitude": -75.1334333, + "stars": 4.0, + "review_count": 315, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "BYOB": "False", + "RestaurantsDelivery": "None", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "Smoking": "u'yes'", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Music": "{u'dj': False, u'live': None, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Dive Bars, Sports Bars, Nightlife, Irish Pub, Restaurants, Bars, Pubs", + "hours": { + "Monday": "13:0-2:0", + "Tuesday": "13:0-2:0", + "Wednesday": "13:0-2:0", + "Thursday": "13:0-2:0", + "Friday": "12:30-2:0", + "Saturday": "12:30-2:0", + "Sunday": "12:30-2:0" + } + }, + { + "business_id": "JHmif2Bu9nmRY_-wBptbXg", + "name": "Michele Wilderman Freelance Hair and Makeup Artist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Makeup Artists, Beauty & Spas, Hair Salons, Hair Stylists, Shopping, Cosmetics & Beauty Supply", + "hours": { + "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" + } + }, + { + "business_id": "NXwEDLZjv8dUqbc5g5dCYg", + "name": "Abunai Poke", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Poke, Food, Restaurants, Hawaiian", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "spOZBCgkoz75xmKabtuWzQ", + "name": "High Tech Car Wash & Speedy Lube", + "address": "4090 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0294225, + "longitude": -75.107149, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Wash", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "0k8DG6BPaVKCRfnWJZhLUA", + "name": "Chinatown Friendship Gate", + "address": "10th & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537097058, + "longitude": -75.156232, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "pp5kzAaBLkr3n_iwHVNSmw", + "name": "MK Management Group", + "address": "1533-1535 N Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977293, + "longitude": -75.160578, + "stars": 1.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "University Housing, Education, Real Estate, Apartments, Property Management, Colleges & Universities, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "GYn2pPeu3rwIcWmo1m1nmA", + "name": "Subway", + "address": "106 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510096, + "longitude": -75.1674321, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsReservations": "False" + }, + "categories": "Sandwiches, Restaurants, Fast Food", + "hours": null + }, + { + "business_id": "L3h60m908xbwVGI0_O4Ikw", + "name": "Palm Tree Market", + "address": "4368 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262436, + "longitude": -75.2240679, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0" + } + }, + { + "business_id": "paO0ETshl56TNSaEyzm9Cw", + "name": "Brodo", + "address": "31 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521366, + "longitude": -75.170218, + "stars": 3.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Coffee & Tea, Restaurants, Sandwiches, Food, Soup", + "hours": null + }, + { + "business_id": "hoYHhfn4w0mVjI60eHDHzA", + "name": "Poke Bowl", + "address": "958 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965637, + "longitude": -75.140681, + "stars": 4.0, + "review_count": 194, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Seafood, Poke, Food, Restaurants, Hawaiian", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "yDiLZXnZE4BwWVtIeZAllg", + "name": "Ming Self Storage", + "address": "720 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9641331, + "longitude": -75.1468186, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Local Services, Self Storage", + "hours": null + }, + { + "business_id": "3dd9a6QMCZc71UNMrBfSNA", + "name": "Philadelphia School of Circus Arts", + "address": "6452 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0415666, + "longitude": -75.1892902, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "DogsAllowed": "False" + }, + "categories": "Active Life, Specialty Schools, Pole Dancing Classes, Aerial Fitness, Fitness & Instruction, Performing Arts, Arts & Entertainment, Education", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-0:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "0dfspevYKsugYiU1UVl94Q", + "name": "Brewerytown Taproom", + "address": "1363 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9775302, + "longitude": -75.1855542, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True" + }, + "categories": "Brewpubs, Food, Restaurants, American (Traditional), Breweries", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "YCxJQTkH6BPbYlWc1YDRdA", + "name": "Lithe Method", + "address": "1030 N 2nd St, Ste 401-501", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671396, + "longitude": -75.1401769, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Pilates, Gyms, Fitness & Instruction, Yoga", + "hours": { + "Monday": "17:30-20:0", + "Tuesday": "17:30-20:0", + "Wednesday": "17:30-20:0", + "Thursday": "17:30-20:0", + "Saturday": "8:30-11:0" + } + }, + { + "business_id": "4q4huGL_tQj1XpRB8P5F6A", + "name": "Children's Hospital of Philadelphia", + "address": "3401 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9474761125, + "longitude": -75.1953659767, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pediatricians, Doctors, Health & Medical, Hospitals", + "hours": null + }, + { + "business_id": "1QprdzNzcYKRcSTIfh5BGw", + "name": "Vice Coffee, Tattoos & Books", + "address": "1031 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9617583, + "longitude": -75.1555925, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Tattoo, Coffee & Tea, Beauty & Spas, Arts & Entertainment, Art Galleries, Internet Cafes, Food, Shopping", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "8:30-20:0", + "Sunday": "8:30-19:0" + } + }, + { + "business_id": "_g5T4TTMoaCipPSuHMFkRw", + "name": "Material Culture", + "address": "4700 Wissahickon Ave, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.015328, + "longitude": -75.173716, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Decor, Antiques, Home & Garden, Shopping, Auction Houses", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-5:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "hDOx4ltBlXmGdR3b4RRGeQ", + "name": "Shanti Medical Spa", + "address": "132 S 17th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504874, + "longitude": -75.1692131, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Hair Removal, Day Spas, Medical Spas, Beauty & Spas, Skin Care", + "hours": { + "Tuesday": "10:30-17:30", + "Thursday": "10:30-17:30", + "Friday": "10:30-17:30", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "IH_ZeeTh13jQURbh31d1Kw", + "name": "Bui's", + "address": "38th St & Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9512903, + "longitude": -75.1992768, + "stars": 4.5, + "review_count": 104, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Restaurants, Vietnamese, Sandwiches, Local Flavor, Food Stands", + "hours": { + "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" + } + }, + { + "business_id": "tnqSNlr1JjqLd720PrDzOw", + "name": "Look Great MD", + "address": "1500 John F Kennedy Blvd, Ste 301, 2 Penn Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953351, + "longitude": -75.165933, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Medical Spas, Plastic Surgeons, Doctors, Weight Loss Centers, Beauty & Spas, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "LlT0_n7AU4C-WBP-I5DkeA", + "name": "Pizza Hut", + "address": "9850 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.093788, + "longitude": -75.0317830592, + "stars": 1.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Italian, Chicken Wings, Restaurants, Pizza", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "u-8sFq05DQ6PYCR5HiKZ2w", + "name": "Axis Pizza", + "address": "20 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553365, + "longitude": -75.1946097, + "stars": 3.0, + "review_count": 159, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "False" + }, + "categories": "Pizza, Food, Restaurants, Sandwiches, Burgers, Coffee & Tea, Italian", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "8Dx8DzaGjLWjzWO9Xmubgw", + "name": "Royal Valet", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Automotive, Parking, Valet Services, Party & Event Planning", + "hours": { + "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" + } + }, + { + "business_id": "DJJtybSWY0BygESsSrabqg", + "name": "Texas Wieners", + "address": "1426 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9243351, + "longitude": -75.1708176, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, American (Traditional), Burgers, Food, Hot Dogs", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "u7OkjGuBsj6YlMc6T5SY4w", + "name": "Hair Cuttery", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0295573, + "longitude": -75.1003975, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "wk06Ac3RCipXqtgyqaSzxA", + "name": "Phils Appliances", + "address": "2802 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9917148, + "longitude": -75.1223502, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Appliances & Repair, Local Services", + "hours": null + }, + { + "business_id": "5oARHKPqDvT4x5blRvPjXg", + "name": "New Tavern Bar", + "address": "232 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542243, + "longitude": -75.212136, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "HappyHour": "True", + "GoodForDancing": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Venues & Event Spaces, Nightlife, Restaurants, Event Planning & Services, Ethiopian, Bars, American (Traditional), Hookah Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "ZAycDVJeQ1QwGVTLROCKlA", + "name": "Lidl", + "address": "9175 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07673722, + "longitude": -75.03237045, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Grocery, Shopping, Food, Public Markets, Discount Store", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "4TRaSx4vcKfhm9Jx-heiqg", + "name": "Cleopatra Cafe", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 2.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "ByAppointmentOnly": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Cafes, Bars, Restaurants, Hookah Bars, Nightlife, Wine Bars", + "hours": { + "Monday": "17:0-3:0", + "Tuesday": "17:0-3:0", + "Wednesday": "17:0-3:0", + "Thursday": "17:0-3:0", + "Friday": "17:0-3:0", + "Saturday": "17:0-3:0", + "Sunday": "17:0-3:0" + } + }, + { + "business_id": "-CRjqZ4GxZ6lIa_qMj7-yw", + "name": "Spring Chinese Restaurant", + "address": "3739 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9602344, + "longitude": -75.1966365, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "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}", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "KTGEa8V9ec0QBYM_uk1YLQ", + "name": "Czerw's Kielbasy", + "address": "3370 Tilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.986119, + "longitude": -75.0979492, + "stars": 5.0, + "review_count": 150, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Specialty Food, Meat Shops", + "hours": { + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-17:0", + "Saturday": "7:0-14:0" + } + }, + { + "business_id": "s3Q1J4XEVOBiZy9dYUpqpg", + "name": "Green Eggs Cafe", + "address": "2327 Gaul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9769736, + "longitude": -75.1241144, + "stars": 3.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': True, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': False}", + "OutdoorSeating": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "0f-W5-8cGFp8lU_IzL3RLQ", + "name": "Basement Gurus", + "address": "431 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.077026705, + "longitude": -75.083774573, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waterproofing, Home Services, Environmental Testing, Local Services, Environmental Abatement", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "3lBooCffgkW7tVSG5kILBA", + "name": "Porcini", + "address": "2048 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951348, + "longitude": -75.1751139, + "stars": 3.5, + "review_count": 317, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Corkage": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "17:0-20:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "cX-g1iOlexkMU-jKINKTKQ", + "name": "Inis Nua Theatre Company at The Drake", + "address": "302 S Hicks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9468698, + "longitude": -75.1671697, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Performing Arts, Arts & Entertainment", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "uIZwBkvWicqyWraXvYOipw", + "name": "Sbraga", + "address": "440 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9455017733, + "longitude": -75.1653677598, + "stars": 4.0, + "review_count": 375, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'dressy'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "GneLbZUn_GrzMz-GE6KfRg", + "name": "Wawa Food Markets", + "address": "401 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622478, + "longitude": -75.1729739, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "fbyvLKxT0LZX7VGokTBipw", + "name": "Indique Virgin Hair Extensions", + "address": "1607 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9442349, + "longitude": -75.16912, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': True, 'africanamerican': True, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BikeParking": "True" + }, + "categories": "Printing Services, Web Design, Hair Extensions, Marketing, Hair Salons, Local Services, Professional Services, Beauty & Spas", + "hours": { + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "15:0-19:0", + "Saturday": "13:0-18:0" + } + }, + { + "business_id": "5rryuz2myZJI0EfWtrTMxw", + "name": "MIUCHA", + "address": "222 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562052, + "longitude": -75.155914, + "stars": 3.5, + "review_count": 122, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Bubble Tea", + "hours": { + "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" + } + }, + { + "business_id": "krTHKI0YOpASr4gz2CVWFw", + "name": "Cosi", + "address": "235 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9481797, + "longitude": -75.1660502, + "stars": 2.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Sandwiches, Breakfast & Brunch, Salad", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "UGQWLyBoHNF3Uxip5DciXg", + "name": "DMont Reese Photography and Video", + "address": "3525 I St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0018825, + "longitude": -75.1097491, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Videographers, Event Planning & Services, Professional Services, Video/Film Production, Event Photography, Wedding Planning, Photographers, Session Photography", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "cYU-9JM4x4ra-aCxbgtxfg", + "name": "Mayfair Pizza", + "address": "7424 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0384395, + "longitude": -75.0368603, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "14:0-22:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "GjvRSEmkCd19T3MkSOataA", + "name": "Faulkner Hyundai", + "address": "11500 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1024653139, + "longitude": -75.0057541897, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Tires, Automotive, Auto Repair, Car Dealers, Auto Parts & Supplies", + "hours": { + "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-17:0" + } + }, + { + "business_id": "L62NXZYNN0A2dWZvCj0RkQ", + "name": "Devlin Collision Center", + "address": "817 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9732316, + "longitude": -75.1237528, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": null + }, + { + "business_id": "2D4xIM1ahHTQa6iV4m3p9Q", + "name": "Whirled Peace", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9606228, + "longitude": -75.1700704, + "stars": 4.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "Caters": "False", + "Alcohol": "'beer_and_wine'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Juice Bars & Smoothies, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "udsU77Rh2wAN7tEOmIUY7w", + "name": "Binto", + "address": "4345 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256599048, + "longitude": -75.2235197648, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Grocery, Cafes, Food, Thai, Asian Fusion, Vietnamese", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Oun4NN-u5yiHIxDqtJnxgA", + "name": "Federal Donuts", + "address": "1219 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932223, + "longitude": -75.147463, + "stars": 4.0, + "review_count": 530, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "Caters": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Korean, American (Traditional), Breakfast & Brunch, Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "6aoXAXNrL7KrGBVRYBMFWw", + "name": "Andre Richard Salon", + "address": "130 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482288, + "longitude": -75.1437105, + "stars": 4.5, + "review_count": 348, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False" + }, + "categories": "Hair Stylists, Barbers, Bridal, Beauty & Spas, Hair Extensions, Men's Hair Salons, Makeup Artists, Blow Dry/Out Services, Shopping, Hair Salons, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Thursday": "12:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "E8l_XGabADbFzal1p_HMTA", + "name": "Giant Heirloom Market", + "address": "2303 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9447648785, + "longitude": -75.18079184, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "TCROPjxfzCZzrQjqLqstSg", + "name": "Red Cup Cafe & Hookah Lounge", + "address": "400 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625769974, + "longitude": -75.1447479799, + "stars": 4.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': True}", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "CoatCheck": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Coffee & Tea, Hookah Bars, Nightlife, Bars, Food, Restaurants, Cafes", + "hours": { + "Thursday": "19:0-2:0", + "Friday": "19:0-2:0", + "Saturday": "19:0-2:0" + } + }, + { + "business_id": "JhIh2416j-t9ybpiHSLGLQ", + "name": "Central City Toyota", + "address": "4800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9570817, + "longitude": -75.2181875, + "stars": 3.0, + "review_count": 139, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Car Dealers, Body Shops, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "trCimr_PVNVi5Vghb7GYCg", + "name": "Nu Era Automotive", + "address": "707 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929258, + "longitude": -75.157233, + "stars": 4.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Auto Glass Services, Automotive, Oil Change Stations, Tires, Car Stereo Installation", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "R4V_g8fR2mB6RjvpBjBElw", + "name": "Greenhouse Cafe", + "address": "1324 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507046, + "longitude": -75.1627658, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Sandwiches, Buffets, Restaurants, Convenience Stores, Salad, Caterers, Food, Cafes", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "RTT0obAwvioYv2LjcD1HOA", + "name": "Safeguard Self Storage", + "address": "6224 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0422733156, + "longitude": -75.1808086038, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Local Services, Shopping, Self Storage, Packing Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:30-16:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "DZaHxnUe4QZRqY16g_2-fw", + "name": "Catalyst Cleanse", + "address": "1713 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963515, + "longitude": -75.166718, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Juice Bars & Smoothies, Food, Nutritionists, Health & Medical, Medical Centers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "TxVzPVEasZKTevlcNIxENw", + "name": "Tank Bar", + "address": "261 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9489134, + "longitude": -75.1759463, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "HasTV": "False", + "HappyHour": "True" + }, + "categories": "Lounges, Nightlife, Bars", + "hours": null + }, + { + "business_id": "SVtmgLhl2vxsMjMCOhNmsg", + "name": "Trade Winds Aquarium & Pet Center", + "address": "29 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9562815, + "longitude": -75.2021196, + "stars": 2.0, + "review_count": 22, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": null + }, + { + "business_id": "_eRGBtmxBGovUQcnIjqEOA", + "name": "European Wax Center", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0742819, + "longitude": -75.0331506, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsReservations": "True", + "HasTV": "False", + "WiFi": "u'no'" + }, + "categories": "Hair Removal, Skin Care, Waxing, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-17:30", + "Sunday": "8:30-17:30" + } + }, + { + "business_id": "n2fM9wcP6f4_-0zKUlwkPg", + "name": "Allure Window Treatments", + "address": "137 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9531447, + "longitude": -75.1449894, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Home Automation, Home Decor, Home Services, Shades & Blinds, Shutters, Home & Garden, Windows Installation, Interior Design", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "IV9Zoou8edeyGZqaUQ2c7Q", + "name": "Domino's Pizza", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.992732, + "longitude": -75.100242, + "stars": 1.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "NoiseLevel": "'quiet'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "None", + "BusinessParking": "None", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza, Italian, Chicken Wings", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "cPDX2Y4H0fks-Qj5tfBduA", + "name": "Tartes Pastry Shop", + "address": "212 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9518037, + "longitude": -75.1438627, + "stars": 4.0, + "review_count": 181, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Desserts, Bakeries, Food, Restaurants", + "hours": { + "Wednesday": "16:0-18:0", + "Friday": "16:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "9c7MUiE6VI8NesjPdj5FkA", + "name": "Bubblefish", + "address": "909 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536791, + "longitude": -75.1551081, + "stars": 4.0, + "review_count": 544, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, Sushi Bars, Japanese, Bubble Tea, Taiwanese, Food", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "hKAh9ngwQ4pLpn8KfP3G_g", + "name": "Wahoo's Fish Taco", + "address": "3180 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535917, + "longitude": -75.1871746, + "stars": 3.5, + "review_count": 133, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "HappyHour": "True", + "Caters": "True", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Restaurants, Tex-Mex, Tacos, Mexican, Seafood", + "hours": { + "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": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "RduXI7HuaXs82yMWGNpIrg", + "name": "Star Locksmith", + "address": "1530 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9325097, + "longitude": -75.1816584, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Door Sales/Installation, Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "ldr7iDtxFXX-q7tJuXqlGQ", + "name": "Revolution House", + "address": "200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497082, + "longitude": -75.1439349, + "stars": 3.5, + "review_count": 554, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Pizza, Beer, Wine & Spirits, Food, Nightlife, American (New), Italian, Restaurants, Breakfast & Brunch, Bars, American (Traditional)", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "10:30-16:0" + } + }, + { + "business_id": "dIuZ9SDAkiFzg1yuA8RkeA", + "name": "Mediterranean Banquet Hall", + "address": "2033 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9253058646, + "longitude": -75.1732910797, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "None", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Alcohol": "None" + }, + "categories": "Venues & Event Spaces, Wedding Planning, Mediterranean, Party & Event Planning, Food Delivery Services, Restaurants, Caterers, Italian, Event Planning & Services, Food", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "4U_ZLUJOhVLgweJAs7yRdw", + "name": "Stunkard John G OD", + "address": "301 S 8th St, Ste 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94992, + "longitude": -75.14664, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Optometrists", + "hours": null + }, + { + "business_id": "wXFKcJEgCtsHuVBU56tjig", + "name": "Lou's Tailors Cleaners", + "address": "201 W Spencer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0436265, + "longitude": -75.1239345, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BikeParking": "False" + }, + "categories": "Sewing & Alterations, Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "BGX9PWNgcDfPuuuPNtLkTw", + "name": "Philadelphia Flower Show", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546231383, + "longitude": -75.1580399508, + "stars": 2.5, + "review_count": 178, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': True, u'validated': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Flowers & Gifts, Community Service/Non-Profit, Local Flavor, Shopping", + "hours": null + }, + { + "business_id": "h3EdXoBK2JV2jzWIQCfWJA", + "name": "Twins at Foxchase Auto Body", + "address": "7931 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.075422, + "longitude": -75.084255, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Automotive, Body Shops, Auto Detailing", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "m700WzvnKWSNp_HU_XhRPA", + "name": "Jack Wills", + "address": "1617 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500084, + "longitude": -75.16825, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Women's Clothing, Fashion, Shopping, Men's Clothing", + "hours": { + "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": "11:0-19:0" + } + }, + { + "business_id": "61RiTA-T02sU84FhoCLz_g", + "name": "The Lola Bean", + "address": "1325 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710245, + "longitude": -75.134328, + "stars": 4.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "7:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "bphzh1v0d23p53MROgxFKA", + "name": "Eye Encounters", + "address": "1925 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521107, + "longitude": -75.1728126, + "stars": 2.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Eyewear & Opticians, Optometrists, Health & Medical, Shopping", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "dxf_k01xk9bdlv6kM45Z5w", + "name": "Dollar Tree", + "address": "7740 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9777540212, + "longitude": -75.2742312688, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Art Supplies, Beauty & Spas, Discount Store, Shopping, Cosmetics & Beauty Supply, Arts & Crafts, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "gQCKrqkalAc--4cuW_C_Ow", + "name": "Tacconelli's Pizzeria", + "address": "2604 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.980483, + "longitude": -75.11303, + "stars": 4.0, + "review_count": 372, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "7hpUoYdAVToZXwuPRgoqdA", + "name": "Chapterhouse Cafรฉ & Gallery", + "address": "620 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419516309, + "longitude": -75.1573562007, + "stars": 4.5, + "review_count": 477, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "False", + "DogsAllowed": "True" + }, + "categories": "Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "59JWP6tOxoKIKeMSXcgNFw", + "name": "Gilben's Bakery", + "address": "7405 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0607621001, + "longitude": -75.167045854, + "stars": 4.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "Caters": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Food, Cupcakes, Bakeries, Restaurants", + "hours": { + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "kHLDlg26A1dvaO8pBVaNYA", + "name": "My Little Redemption", + "address": "126 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9529663, + "longitude": -75.1453601, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Fashion, Shopping, Jewelry, Women's Clothing, Personal Shopping, Plus Size Fashion", + "hours": { + "Tuesday": "12:30-16:30", + "Wednesday": "12:30-16:30", + "Thursday": "12:30-16:30", + "Friday": "12:30-16:30", + "Saturday": "12:30-17:0", + "Sunday": "12:30-16:0" + } + }, + { + "business_id": "MIHimGbxaz72fL05rv6QWA", + "name": "Only You Wedding", + "address": "1901B Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939079, + "longitude": -75.174785, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Videographers, Wedding Planning, Bridal, Photographers, Event Planning & Services", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "QFzJKnSUtkgSs1lKOOxXeA", + "name": "Academy of Natural Sciences", + "address": "1900 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957018627, + "longitude": -75.1712603922, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Museums, Arts & Entertainment", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "LDeHaPK7ShIvMD2zrwH8xQ", + "name": "Atlas Hair Company", + "address": ", 117 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499452, + "longitude": -75.1616967, + "stars": 5.0, + "review_count": 67, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}" + }, + "categories": "Hair Salons, Men's Hair Salons, Bridal, Hair Stylists, Shopping, Beauty & Spas, Barbers, Hair Extensions", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "H3bRWGQMuX6_c0INmLh7Ug", + "name": "Lost in the Woods", + "address": "357 Main Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "08340", + "latitude": 40.022959, + "longitude": -75.21933, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "BikeParking": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Food Trucks", + "hours": null + }, + { + "business_id": "wxIhOSa-ywz8eDrUQAGkCA", + "name": "Next Generation Pest Control", + "address": "6505 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0520794814, + "longitude": -75.1377095282, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wildlife Control, Local Services, Pest Control", + "hours": { + "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" + } + }, + { + "business_id": "oa5h-kz5oFYHBKpasKYXQw", + "name": "Charlie Gray's Rib Crib", + "address": "6333 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0445681, + "longitude": -75.1813871, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'none'" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "r1JBMs5FJlM4AgDvgx08NA", + "name": "Colonial Wallcoverings", + "address": "707 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404237, + "longitude": -75.1507871, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home & Garden, Home Decor, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "KZl-0F4hKwhKSLPmT-A6dw", + "name": "Star Fusion", + "address": "2013 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9861271598, + "longitude": -75.2474845, + "stars": 3.5, + "review_count": 122, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': None}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Cafes", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "xOr3cP1xO2qC4lx2E9jnBg", + "name": "Ebenezer Maxwell Mansion", + "address": "200 W Tulpehocken St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0381645, + "longitude": -75.183676, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Arts & Entertainment, Museums", + "hours": { + "Friday": "12:0-15:0", + "Saturday": "12:0-15:0" + } + }, + { + "business_id": "VoIX90UM5jwD7FSMAMCwrw", + "name": "Johnnie's Italian Restaurant", + "address": "4201 Comly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0227483, + "longitude": -75.0634418, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False" + }, + "categories": "Venues & Event Spaces, Italian, Event Planning & Services, Pizza, Seafood, Caterers, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "13:0-18:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "IORvbG2rAIVJ-1d148cCmg", + "name": "Voyeur Nightclub", + "address": "1221 Saint James St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483445218, + "longitude": -75.161862657, + "stars": 3.0, + "review_count": 163, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "AgesAllowed": "u'21plus'", + "HasTV": "True", + "GoodForDancing": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "CoatCheck": "True" + }, + "categories": "Nightlife, Dance Clubs, Gay Bars, Bars", + "hours": { + "Tuesday": "23:45-3:0", + "Wednesday": "23:0-3:0", + "Thursday": "22:0-3:30", + "Friday": "22:0-3:0", + "Saturday": "22:0-3:0", + "Sunday": "23:0-3:0" + } + }, + { + "business_id": "sqkFTos0GDwLY6WWQ0Hezg", + "name": "Yamaki Sushi Bar", + "address": "209 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500043, + "longitude": -75.1738167, + "stars": 3.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "S8ZFYEgMejpChID8tzKo9A", + "name": "Amada", + "address": "217 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485863525, + "longitude": -75.1449131188, + "stars": 4.0, + "review_count": 2109, + "is_open": 1, + "attributes": { + "Corkage": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "NoiseLevel": "u'average'", + "Caters": "True", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Spanish, Restaurants, Breakfast & Brunch, Tapas Bars, Iberian", + "hours": { + "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", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "73Efjb70ykGRL842Hp1bvA", + "name": "Philadelphia Science Festival", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Local Flavor, Arts & Entertainment, Education", + "hours": null + }, + { + "business_id": "tflePB9FNS0kK5fPqJy-Dg", + "name": "9th Street Dog Grooming", + "address": "905 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938752, + "longitude": -75.1577729, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Groomers, Pets", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "1jb7qNrb7y24jRWy9Mrs3w", + "name": "Callowhill Archery", + "address": "446 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605699766, + "longitude": -75.1581898704, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Party & Event Planning, Archery, Team Building Activities, Event Planning & Services", + "hours": { + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "aMIRfasPN_HCYdR4lQqzDA", + "name": "Philadelphia Zoo", + "address": "3400 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9719921474, + "longitude": -75.1962714728, + "stars": 4.0, + "review_count": 450, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Museums, Zoos, Arts & Entertainment", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "yC4Mk9qWwq-0VVTv2yQ1XQ", + "name": "Rent Scene", + "address": "1500 Jfk Blvd, Ste 1510", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534541, + "longitude": -75.1659879, + "stars": 4.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Real Estate Services, Real Estate Agents, Home Services, Apartments, Real Estate", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "2ykuXX5qGkQjPh9PaIA3eg", + "name": "Franklin Square Holiday Festival", + "address": "6TH And Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9546873, + "longitude": -75.1495017, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Festivals", + "hours": { + "Monday": "16:30-20:0", + "Tuesday": "16:30-20:0", + "Wednesday": "16:30-20:0", + "Thursday": "16:30-20:0", + "Friday": "16:30-20:0", + "Saturday": "16:30-20:0", + "Sunday": "16:30-20:0" + } + }, + { + "business_id": "JzY3UsaDijXuSflzChNSYw", + "name": "King of Pizza", + "address": "Philadelphia International Airport, D Concourse", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.878522, + "longitude": -75.241785, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "8iWk2GMX0e4YrmH_K-zogA", + "name": "Sophisticated Seconds", + "address": "2019 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951634, + "longitude": -75.1743515, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Used, Vintage & Consignment, Women's Clothing, Thrift Stores, Fashion, Shopping", + "hours": { + "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", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "1YbHnoddvsGXRvhkcTRkiw", + "name": "vybe urgent care", + "address": "618 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507, + "longitude": -75.151414, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Urgent Care, Medical Centers, Walk-in Clinics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "nYdQzTgdAyCfWeRIJaI7dw", + "name": "NEO Carpet Cleaning", + "address": "444 N 4th St, Ste 118", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590445, + "longitude": -75.1458468, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Home Cleaning, Rugs, Damage Restoration, Air Duct Cleaning, Flooring, Shopping, Pressure Washers, Local Services, Carpet Cleaning, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "OoFCe8VbzzCr88SGC08omw", + "name": "Buk Chon Korean Cuisine", + "address": "132 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482156, + "longitude": -75.143697, + "stars": 4.5, + "review_count": 221, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "BYOB": "True", + "Corkage": "False", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False" + }, + "categories": "Korean, Restaurants, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "LXTKiTlGw50LxWAkDgzCVg", + "name": "City Beauty Salon", + "address": "1024 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955208, + "longitude": -75.156937, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:0-19:30", + "Sunday": "9:0-19:30" + } + }, + { + "business_id": "qaDImxPguQz0jToNYvB1Eg", + "name": "Cafรฉ y Chocolate", + "address": "1532 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924584, + "longitude": -75.172676, + "stars": 4.5, + "review_count": 369, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "DogsAllowed": "False", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BYOB": "True", + "DriveThru": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True" + }, + "categories": "Mexican, Restaurants, Vegetarian, Coffee & Tea, Juice Bars & Smoothies, Cafes, Desserts, Bakeries, Food, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "RLtlS9CJlyGU3WIOLHxLwQ", + "name": "Oishii", + "address": "138 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948271, + "longitude": -75.1438587, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BikeParking": "False", + "HasTV": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Japanese, Sushi Bars, Ramen, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "BOUmrR6yo4cjeDJn-l_zFg", + "name": "Dream House Asian Bistro", + "address": "6127 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0343850509, + "longitude": -75.2161171262, + "stars": 3.0, + "review_count": 140, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Sushi Bars, Thai, Asian Fusion, Japanese, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "HmabivmdZ2N5SE5rLDsviA", + "name": "Rocket Fizz", + "address": "302 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9521507406, + "longitude": -75.1453954251, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Candy Stores, Food, Specialty Food", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "TIKewA9tWdkS2GBfSkzRHA", + "name": "Mahogany On Walnut", + "address": "1524 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493317, + "longitude": -75.1671903, + "stars": 4.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WheelchairAccessible": "False" + }, + "categories": "Tobacco Shops, Bars, Shopping, Lounges, Nightlife", + "hours": { + "Monday": "16:0-1:30", + "Tuesday": "16:0-1:30", + "Wednesday": "12:0-1:30", + "Thursday": "12:0-1:30", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0" + } + }, + { + "business_id": "yy3XuGkFIowGr3jL4uJkdA", + "name": "Naked Chocolate Cafe", + "address": "31 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521384, + "longitude": -75.1702353, + "stars": 4.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Desserts", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-23:30", + "Friday": "7:0-23:30", + "Saturday": "10:0-23:30", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "iyHwf4fGGQwoKo1pHfrp5g", + "name": "Centerpoint Pilates", + "address": "1719 Chestnut St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951803, + "longitude": -75.1694799, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Pilates, Active Life, Fitness & Instruction", + "hours": null + }, + { + "business_id": "MhRuvCzNrexLs7BgNACIgA", + "name": "Philadelphia Real Estate Classes", + "address": "9227 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0552207834, + "longitude": -75.0041540809, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Education, Specialty Schools, Home Services, Real Estate Services, Real Estate", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "s_RStWu76oxfAPhmqmUMMw", + "name": "The Yachtsman", + "address": "1444 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9728533, + "longitude": -75.1343445, + "stars": 3.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Hawaiian, Dive Bars, Cocktail Bars, Bars, Restaurants, Nightlife", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "bzgAFmNxvQ7i-YscAiDoDA", + "name": "Vince's Pizzeria of Fishtown", + "address": "965 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9658107, + "longitude": -75.1343005, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-20:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "9-Lkw_1lfYDopvKNXCgDLw", + "name": "Rock 'n' Roll Marathon Series", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9027956, + "longitude": -75.2369674, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Festivals, Active Life, Races & Competitions", + "hours": null + }, + { + "business_id": "6VIr0uY9k4CCHpbV91_UFQ", + "name": "Bonillas Brick Pointing and Concrete", + "address": "2339 N Phillip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9860366, + "longitude": -75.1365351, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Home Services, Masonry/Concrete", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0" + } + }, + { + "business_id": "tiBIjSy-tvRqFY1BrQ-kXg", + "name": "Freeman's", + "address": "2400 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9540302443, + "longitude": -75.1793450516, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Auction Houses, Shopping", + "hours": null + }, + { + "business_id": "BqoOkuGKlbDI3L_A4I3pkA", + "name": "Joa Mart", + "address": "361 W Hortter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.044087, + "longitude": -75.1912085, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "False" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "8:30-19:30", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "mrMNJ_g5qF2PRT7NP-ZLjA", + "name": "Pho Nam Vietnamese Restaurant", + "address": "501 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0392904629, + "longitude": -75.1080869401, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "9:30-21:30" + } + }, + { + "business_id": "CSCm7XPkoz72Ovfa0ugu7Q", + "name": "Maplewood Nutrition & Dietary Food Shop", + "address": "51 Maplewood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0334158, + "longitude": -75.1754611, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Cosmetics & Beauty Supply, Specialty Food, Shopping, Health Markets, Beauty & Spas, Restaurants, Vegetarian", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "p1PQZFieSwQVd3PPtuaL8A", + "name": "Core De Roma", + "address": "214 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410667419, + "longitude": -75.146232605, + "stars": 4.0, + "review_count": 76, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-22:30", + "Saturday": "16:0-22:30", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "Nfi1P52iDTXY8pfE5rzM-w", + "name": "Pet Posse", + "address": "1530 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.974459, + "longitude": -75.138734, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Dog Walkers, Pets", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "SBu_YuEnZY2TsWAzxyhGRw", + "name": "J Signature Hair and Nails Spa", + "address": "2115 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0500086, + "longitude": -75.0631331, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "3wg8xiywSGA96DWCF0WOLw", + "name": "Jimmy G's Steaks", + "address": "695 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9662097908, + "longitude": -75.1603736876, + "stars": 4.0, + "review_count": 300, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Cheesesteaks, Food, Restaurants, Steakhouses, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "KLw1CW87qo3Fw4i9vuietg", + "name": "Roxborough Shoe & Luggage Repair", + "address": "6116 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.03385, + "longitude": -75.21564, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Local Services, Shoe Stores, Fashion, Shopping, Leather Goods, Shoe Repair, Professional Services", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-17:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "_f3JQU6IXpGmTLaSqGy79g", + "name": "BRรœ Craft & Wurst", + "address": "1318 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503152253, + "longitude": -75.1624865435, + "stars": 3.5, + "review_count": 526, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Smoking": "u'no'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': None}" + }, + "categories": "German, Beer Bar, Food, Bars, Nightlife, Restaurants, Beer, Wine & Spirits, Beer Gardens", + "hours": { + "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-14:0" + } + }, + { + "business_id": "oJxsRgj8Un9VAPXpaDuufA", + "name": "Bank & Bourbon", + "address": "1200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517241479, + "longitude": -75.1601829009, + "stars": 3.5, + "review_count": 390, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': None}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "WiFi": "'free'", + "Alcohol": "'full_bar'" + }, + "categories": "Restaurants, Gastropubs, American (New)", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "Iyopb5uFIBT_HOgp8ipSfw", + "name": "Le Viet Restaurant", + "address": "1019 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376867, + "longitude": -75.1610435, + "stars": 4.0, + "review_count": 322, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "51yuY_qpVGtdrezuPsMjQg", + "name": "Liz Lutz - KW Philly", + "address": "728 S Broad St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9422651, + "longitude": -75.1664857, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate Services, Real Estate Agents, Property Management, Real Estate", + "hours": null + }, + { + "business_id": "U0voDyTp7mD1poGc1lTcCw", + "name": "Pete's Pizza", + "address": "201 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9589789749, + "longitude": -75.2412560129, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "7:0-1:0", + "Tuesday": "7:0-1:0", + "Wednesday": "7:0-1:0", + "Thursday": "7:0-1:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "MTU8sJBwOtaDreDIEOeung", + "name": "Philadelphia Psychic Center", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9116195992, + "longitude": -75.151478412, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "None", + "DogsAllowed": "True" + }, + "categories": "Reiki, Health & Medical, Psychics, Supernatural Readings, Arts & Entertainment, Psychic Mediums, Professional Services, Home & Garden, Shopping, Life Coach, Spiritual Shop, Candle Stores", + "hours": { + "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": "9:0-11:0" + } + }, + { + "business_id": "s6CzgNXoBP98pUHuSY8JAQ", + "name": "Roxborough Nails and Spa", + "address": "6218 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0361688, + "longitude": -75.2182103, + "stars": 3.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "GAmJ-icAu-0z_FduzJOtJQ", + "name": "Dee & Son Handyman Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9915379, + "longitude": -75.2187346, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Carpenters, Handyman, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "qtNCq2sRvDFHZK9V8kKYoQ", + "name": "Master Wok", + "address": "1625 Chestnut St, Ste F11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523553233, + "longitude": -75.168056685, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "9:30-18:30", + "Wednesday": "9:30-18:30", + "Thursday": "9:30-18:30", + "Friday": "9:30-18:30", + "Saturday": "9:30-18:30", + "Sunday": "9:30-18:30" + } + }, + { + "business_id": "i-Td9gDwz4xLLYv5soGp9g", + "name": "Lovash Indian Cart", + "address": "37TH Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509213207, + "longitude": -75.1964378357, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForKids": "True" + }, + "categories": "Food Trucks, Restaurants, Indian, Food", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "A7IirIN-tHF0f7X7TrJQFQ", + "name": "Soleil Tanning Center", + "address": "202 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948465, + "longitude": -75.160863, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Tanning, Beauty & Spas", + "hours": null + }, + { + "business_id": "mzJ7BxxhLtm-TD1vyne1yg", + "name": "Neighborhood Ramen", + "address": "617 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408923, + "longitude": -75.147458, + "stars": 4.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Corkage": "False", + "RestaurantsTableService": "False", + "BYOB": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ramen, Japanese, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "r7nuOK2VR0Xw4n8vv4w8AQ", + "name": "Nu Way Discount Cleaners", + "address": "2020 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9233443892, + "longitude": -75.1812540386, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-14:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "NclhxRbf369-sVEKDNmdaQ", + "name": "Tsaocaa", + "address": "1715 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516409, + "longitude": -75.1693482, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bubble Tea, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "iS6tecN4q88knAgPGLVHnA", + "name": "Ten Thousand Villages", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492783751, + "longitude": -75.1629710845, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Home & Garden, Shopping, Home Decor, Gift Shops", + "hours": null + }, + { + "business_id": "P-wxKPAdWaU7tsCdA5ZfGQ", + "name": "Saladworks", + "address": "2508-10 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0730228774, + "longitude": -75.0350286614, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vegetarian, Sandwiches, American (New), Salad, Soup, American (Traditional)", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "yEjvR9cWu7zCmos6QZcZfg", + "name": "Penn Eye Care-Scheie Eye Institute", + "address": "51 N 39th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.958441, + "longitude": -75.199509, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Optometrists, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "EMjC_SpCgx8-UnjrBVRylQ", + "name": "Enterprise Car Share", + "address": "1226 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503525, + "longitude": -75.1614904, + "stars": 2.0, + "review_count": 101, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": null + }, + { + "business_id": "-UgmhgFa6biagbAXEPpNhA", + "name": "H. K. Golden Phoenix", + "address": "911 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955447, + "longitude": -75.154839, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "WiFi": "u'no'" + }, + "categories": "Dim Sum, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "0o8k654DD4h8ywBOXP1GRA", + "name": "El Purepecha", + "address": "315 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9581334616, + "longitude": -75.158424899, + "stars": 4.5, + "review_count": 239, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Alcohol": "'none'", + "WheelchairAccessible": "True", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Corkage": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:30", + "Saturday": "12:0-21:30" + } + }, + { + "business_id": "evM71YsOcaH9NVNWbJqMxg", + "name": "SS Franklin Fountain", + "address": "299 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9443204479, + "longitude": -75.1412815601, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "xX-8OPSM_rp23ns3MlbrEw", + "name": "Gilly Jeans", + "address": "320 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413695, + "longitude": -75.1482561, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Accessories, Shopping, Men's Clothing, Leather Goods, Fashion", + "hours": { + "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-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Gf0SvZmsvEvB3BWpl4oBzw", + "name": "East Falls Eye Associates", + "address": "4189 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0087446, + "longitude": -75.1934786, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-18:30", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-15:0" + } + }, + { + "business_id": "v6tFMx_fKBcfiBagKb_EIg", + "name": "Daleng Restaurant", + "address": "4653 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9560363, + "longitude": -75.2154296, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Cambodian, Thai, Vietnamese, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "e1CBgTsKHCcJrhx-BzNhzg", + "name": "Eyes Gallery", + "address": "402 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415697, + "longitude": -75.1493983, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Entertainment, Fashion, Shopping, Women's Clothing, Jewelry, Art Galleries, Home Decor, Home & Garden", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "eQpxl12H7hhcpcvPnFh1MA", + "name": "Metro Philadelphia", + "address": "30 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9515601, + "longitude": -75.1658017, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Print Media", + "hours": null + }, + { + "business_id": "MsjH4RvhAY_PHiI6PFpQLg", + "name": "Jefferson Outpatient Imaging", + "address": "850 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479947, + "longitude": -75.1553992, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Diagnostic Services, Health & Medical, Diagnostic Imaging", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "48hwr-F1xEFfHdTD1ueE2A", + "name": "Starbucks", + "address": "337-341 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945624, + "longitude": -75.16484, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "Caters": "False", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:30", + "Saturday": "6:30-20:30", + "Sunday": "6:30-19:30" + } + }, + { + "business_id": "gSFVZRVqJ2jatgEAmtQaxg", + "name": "George Smith Towing", + "address": "3103 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9217257255, + "longitude": -75.2153263386, + "stars": 1.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Roadside Assistance, Towing, Junk Removal & Hauling, Local Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "3aMw2qK9d6QIZj7P9KM7xQ", + "name": "Serene Blรผ", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062807, + "longitude": -75.2352982, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Massage Therapy, Health & Medical, Beauty & Spas, Skin Care, Massage", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "o7pgTVJqX2PYWbotk1uMug", + "name": "Madame Saito - Queen of Sushi", + "address": "122 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419236, + "longitude": -75.1447558, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Japanese, Arts & Crafts, Caterers, Restaurants, Shopping, Event Planning & Services, Cooking Classes", + "hours": { + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "sodCONXD2u4ljoK2c_W5OA", + "name": "Fan's Cafe", + "address": "1835 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254329, + "longitude": -75.177009, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery, Indonesian, Restaurants", + "hours": null + }, + { + "business_id": "4S-PakBV_zrtw2t0A2ut-A", + "name": "Cradles to Crayons", + "address": "4700 Wissahickon Ave, Ste 142", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0159527, + "longitude": -75.1724136, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Public Services & Government, Community Service/Non-Profit, Local Services", + "hours": null + }, + { + "business_id": "V6nHZ__onRImXrX0u5Mu8w", + "name": "Philomena Santucci's Square Pizza", + "address": "4010 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0361386, + "longitude": -75.0404656, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "Alcohol": "'none'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "DriveThru": "False" + }, + "categories": "Chicken Wings, Pizza, Salad, Italian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "7Oa1F9WjQ1qcfa3OoaNd2g", + "name": "Chapman Chevrolet", + "address": "6925 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9048048, + "longitude": -75.2248884, + "stars": 2.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Car Dealers, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "TjwWB-ET-qmO2-8bfIHMig", + "name": "Cheu Fishtown", + "address": "1416 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9722034535, + "longitude": -75.1346028596, + "stars": 4.0, + "review_count": 250, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "HasTV": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "NoiseLevel": "u'average'", + "BYOB": "False", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Noodles, Asian Fusion, Japanese", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:0", + "Saturday": "13:0-22:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "09yzPKqhvm_kJo6S5vsS3w", + "name": "John Yi Fish Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953163, + "longitude": -75.1591, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Seafood Markets, Specialty Food, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "IUQLbsQYryEO6py1araQ4A", + "name": "Floraltology", + "address": "2601 S 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9226532, + "longitude": -75.2258878, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Florists, Floral Designers, Event Planning & Services, Flowers & Gifts, Shopping", + "hours": { + "Monday": "10:0-14: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": "10:0-14:0" + } + }, + { + "business_id": "c3j1irGxpIJ-8RmMBnyXxg", + "name": "Posh Fuel and Food", + "address": "8901 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0689365111, + "longitude": -75.2402465477, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Automotive, Gas Stations, Food, Convenience Stores, Restaurants, Cafes", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "sol7NcwEKzkkyO4mptirrw", + "name": "Percy Street Project", + "address": "1300 Block S Percy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9326831178, + "longitude": -75.1595464765, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Public Art, Local Flavor", + "hours": null + }, + { + "business_id": "VBBIPqGtWzZRP6pA3F6oHQ", + "name": "Sarah & Sylvia's Soul Food", + "address": "43 N 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583988, + "longitude": -75.2080055, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Restaurants, Soul Food", + "hours": null + }, + { + "business_id": "YlqtquW-0jrHzj4xo4HrPQ", + "name": "Steven Leuzzi", + "address": "2625 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9181392, + "longitude": -75.175822, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Masonry/Concrete, Contractors", + "hours": null + }, + { + "business_id": "VEJKp3OEePyqnez_GrmamQ", + "name": "Omega Pizza & Restaurant", + "address": "2145 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9978235, + "longitude": -75.1109507, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "PBjjuAkc9QX2UWMc3RWXQQ", + "name": "Fiorella's Sausage", + "address": "817 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938873, + "longitude": -75.156937, + "stars": 5.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "Caters": "False" + }, + "categories": "Italian, Food, Specialty Food, Restaurants, Meat Shops, Butcher", + "hours": null + }, + { + "business_id": "UphaS1bBPQLqX1cKvXQLyQ", + "name": "Annies Seafood", + "address": "6600 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9719159, + "longitude": -75.2515749, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Seafood Markets, Food, Specialty Food", + "hours": null + }, + { + "business_id": "gFbp8YOYDSs6zwl01f72Fg", + "name": "Kadampa Meditation Center Philadelphia", + "address": "1102 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447974727, + "longitude": -75.1600315894, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Community Service/Non-Profit, Buddhist Temples, Active Life, Fitness & Instruction, Health & Medical, Counseling & Mental Health, Meditation Centers, Religious Organizations, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:30-17:30", + "Thursday": "18:30-20:30", + "Friday": "8:0-8:30", + "Sunday": "10:30-12:0" + } + }, + { + "business_id": "_IBNFK1vn-zy8mto_Kh5Tw", + "name": "The Old Quaker Building by Reinhold Residential", + "address": "The Old Quaker Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9585231753, + "longitude": -75.195522146, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "RRIJlZUVvz2CkMrDn2UziQ", + "name": "El Merkury", + "address": "2104 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952185, + "longitude": -75.1758693, + "stars": 4.5, + "review_count": 162, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "DriveThru": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Desserts, Restaurants, Gluten-Free, Food, Salvadoran, Latin American, American (Traditional)", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "nrbFVhFcoe49a6jL4LPJWg", + "name": "AA Auto Protection", + "address": "1515 Market Street 528 Philadelphia Pa", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529792, + "longitude": -75.1658929, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Insurance, Auto Insurance", + "hours": null + }, + { + "business_id": "b1okJ5qEPCIHbIgQ1NGyXQ", + "name": "La Mula Terca", + "address": "2053 S Beechwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9260794, + "longitude": -75.1820459, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': True, u'romantic': None, u'classy': False, u'upscale': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True" + }, + "categories": "American (New), Restaurants, Tacos, Mexican, Latin American, Vegetarian, New Mexican Cuisine, Breakfast & Brunch", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "62t3f4cltXG8xyH8ammGqA", + "name": "Ez Dollar Plus", + "address": "1013 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9237474577, + "longitude": -75.1630458, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Department Stores, Fashion", + "hours": null + }, + { + "business_id": "J0_WwhnmqLLR83WArIUdEg", + "name": "Haute Restaurant & Lounge", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9480917189, + "longitude": -75.1660279557, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "WiFi": "'no'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Breakfast & Brunch, American (Traditional), Bars, Lounges, Nightlife, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "u4qdPm5pLtrcv5tXv9qhng", + "name": "Franklin Ice Cream Bar", + "address": "112 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496546054, + "longitude": -75.1427625423, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "15:0-21:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "UeQaHIxhCxsvPleDbk2QbQ", + "name": "Harry's World", + "address": "1210 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430832, + "longitude": -75.1621974, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Home & Garden, Shopping, Jewelry, Arts & Entertainment, Hobby Shops, Religious Items, Spiritual Shop, Supernatural Readings, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "7lOWx72SeKTuUDuW51aYNw", + "name": "Salvatore's Pizzeria", + "address": "1429 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9234015, + "longitude": -75.1711927, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "Caters": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0" + } + }, + { + "business_id": "zRjUMHQJ5gAmFhcXZtLacA", + "name": "Vietnam Restaurant", + "address": "221 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9563297, + "longitude": -75.157069, + "stars": 4.0, + "review_count": 421, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "HappyHour": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "jFAj4ZTHKukcEnFZXz2DiA", + "name": "Hip Hemp Cafe", + "address": "607 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419303, + "longitude": -75.1537505, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "AcceptsInsurance": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Beauty & Spas, Massage Therapy, Doctors, Desserts, Restaurants, Naturopathic/Holistic, Internet Cafes, Massage, Food, Cafes, Coffee & Tea, Cannabis Dispensaries, Shopping, Vape Shops, Cannabis Clinics, Vitamins & Supplements", + "hours": { + "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-21:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "pngaPfFQsSWzfNKj9rAcwQ", + "name": "Memorable Moments Learning Center", + "address": "7602 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0700829, + "longitude": -75.1575821, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Preschools, Education, Child Care & Day Care, Local Services", + "hours": null + }, + { + "business_id": "CA3AOxJzSAPrsR6ycdPU7A", + "name": "Shea Roggio Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Photographers, Event Planning & Services", + "hours": null + }, + { + "business_id": "Ctvo8tFJR3OwDI6lSKGBCQ", + "name": "Philadelphia History Museum at the Atwater Kent", + "address": "15 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950352, + "longitude": -75.151854, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Education, Museums", + "hours": { + "Tuesday": "10:30-16:30", + "Wednesday": "10:30-16:30", + "Thursday": "10:30-16:30", + "Friday": "10:30-16:30", + "Saturday": "10:30-16:30" + } + }, + { + "business_id": "bSkVnO6eQmtJa3NoWg_Hcw", + "name": "Chesterbrook Academy Preschool", + "address": "3201 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9590226, + "longitude": -75.1878251, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Education, Summer Camps, Day Camps, Active Life, Private Schools, Preschools, Child Care & Day Care, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "P57AT1_VQ6ZA_sBlvzN43g", + "name": "Dock Street Cannery and Tasting Room", + "address": "705 S 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.94761, + "longitude": -75.22253, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "False", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForDancing": "False", + "GoodForKids": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Arts & Entertainment, Cocktail Bars, Breweries, Lounges, Wine Tasting Room, Nightlife, Beer Bar, Bars, Food, Wineries", + "hours": { + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0" + } + }, + { + "business_id": "DVko5ctpQ3d8bJxcOVLJyA", + "name": "PhillyDoors", + "address": "2444 Frankford Ave, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19117", + "latitude": 39.982612, + "longitude": -75.1267516986, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Glass & Mirrors, Contractors, Masonry/Concrete, Keys & Locksmiths, Windows Installation, Home Services, Garage Door Services", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "ls_MR74go344ZOa2lYz5bQ", + "name": "Beauty Galaxy", + "address": "11685 Bustleton Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1183233, + "longitude": -75.017623, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "_olrhlw2h3VDkrUYftbaLA", + "name": "Caliber Collision", + "address": "1225 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0590017, + "longitude": -75.0791149, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair, Body Shops", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "8:30-15:30", + "Friday": "8:30-15:30" + } + }, + { + "business_id": "8JFY8ctkpd_JDVoni6r0xA", + "name": "Noire", + "address": "2136 S Broad St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923512, + "longitude": -75.170208, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': False, 'kids': True, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Waxing, Hair Removal, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "ZTD_xSBxv07aa5fFsYwTEA", + "name": "Vito's Pizza & Grill", + "address": "2821 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9961753, + "longitude": -75.1537113, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BYOB": "False", + "Corkage": "False", + "Caters": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "tnjLCyqIUmq8hJLE8IvtQg", + "name": "Bank Street Youth Hostel", + "address": "32 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488797, + "longitude": -75.1452806, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Hostels", + "hours": null + }, + { + "business_id": "EsmHoc01UVXQHOfleQ5PLA", + "name": "Hairs To You Barber Shop", + "address": "2800 South 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9157604, + "longitude": -75.1747539, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Stylists, Men's Hair Salons", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "5vVsxn9ZMhEMA1ceQfWy9g", + "name": "Fairmount Family Integrative Medicine", + "address": "2601 Pennsylvania Ave, Unit CU6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9688049, + "longitude": -75.1806079, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Chiropractors, Internal Medicine, Doctors, Acupuncture, Dietitians", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "15:0-18:30", + "Thursday": "7:30-18:30", + "Saturday": "7:30-11:0" + } + }, + { + "business_id": "HgdemRov0VTmXtwVg3Zn8w", + "name": "Charlie's", + "address": "311 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950359, + "longitude": -75.1461135, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Men's Clothing, Fashion, Women's Clothing, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "50mWV40JHQnUM40Ei0TtxQ", + "name": "Al Sultan International Gourmet Market", + "address": "1545 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9251689, + "longitude": -75.17258, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "Caters": "False", + "DogsAllowed": "True" + }, + "categories": "Ethnic Food, Food, Imported Food, Herbs & Spices, Grocery, Meat Shops, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "9STz5zKbRTTSPCCvpaY-tQ", + "name": "The Arts Garage", + "address": "1533 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9689675, + "longitude": -75.1623887, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "HasTV": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Arts & Entertainment, Music Venues, Nightlife", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "_MU-PDD75XolYe0BKcIiVA", + "name": "Metropolitan Bakery", + "address": "12th and Arch", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539394, + "longitude": -75.1594308, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WheelchairAccessible": "True" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "f4XSOzFOQDydPyqavMV7cA", + "name": "Peet's Coffee & Tea", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8780267127, + "longitude": -75.2394030397, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'valet': False, 'garage': False, 'street': False, 'lot': False, 'validated': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Cafes, Restaurants, Food", + "hours": null + }, + { + "business_id": "k9QaQYOU-egM3UpS8daiYA", + "name": "Spiro's Pizza", + "address": "3958 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9739062, + "longitude": -75.2040164, + "stars": 1.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "None", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "American (Traditional), Breakfast & Brunch, Bars, Pizza, Restaurants, Nightlife, Burgers", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "arp2X1m2lSFr9dVPfDwpzQ", + "name": "Alaqsa Halal Meats & Groceries", + "address": "419 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.020892, + "longitude": -75.1174581, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ethnic Food, Grocery, Specialty Food, Imported Food, Food", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "hJofmH7_OYwwCGeFVPBSvw", + "name": "Under the C", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703, + "longitude": -75.1684962, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Specialty Food, Restaurants, Food, Thai, Seafood Markets, Seafood", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "RNaHrKGm3LCRSj0cdGraeQ", + "name": "First Food Market", + "address": "116 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513401, + "longitude": -75.1757265, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:30-20:30", + "Tuesday": "7:30-20:30", + "Wednesday": "7:30-20:30", + "Thursday": "7:30-20:30", + "Friday": "7:30-20:30", + "Saturday": "7:30-20:30", + "Sunday": "8:30-19:30" + } + }, + { + "business_id": "DuB7UztTWu1eDfEaB9qrVw", + "name": "Comcast", + "address": "1701 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9549403861, + "longitude": -75.1683370733, + "stars": 1.0, + "review_count": 289, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Internet Service Providers, Professional Services, Home Services", + "hours": null + }, + { + "business_id": "0dYj-LAC1qI8GJtShjj0YA", + "name": "I Know A Guy Pest Control", + "address": "5100 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.965468, + "longitude": -75.2223243, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pest Control", + "hours": { + "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": "10:0-14:0", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "aCfGcj4H7rrRhBvRzNmdow", + "name": "Kitchen Kapers", + "address": "8530 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076348, + "longitude": -75.2073608, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Knitting Supplies, Shopping, Appliances, Specialty Food, Kitchen & Bath, Food, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "p9LOhswQql09-yPtF4jsZQ", + "name": "The Whiskey Tango", + "address": "14000 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1312728, + "longitude": -75.01315, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Sports Bars, Bars, Arts & Entertainment, Restaurants, American (New), Music Venues, Nightlife", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "82pcio87ozvTYLFow_n8sQ", + "name": "ACME Markets", + "address": "5927-59 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0316341804, + "longitude": -75.2112624196, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Department Stores, Drugstores, Shopping, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "--sXnWH9Xm6_NvIjyuA99w", + "name": "Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Public Services & Government, Local Flavor", + "hours": null + }, + { + "business_id": "yzsnQxRDkbUD4AX7RosOhw", + "name": "Speedy's Pizza", + "address": "4013 Fairdale Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084572, + "longitude": -74.9727333, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ExfSwwCB1zQ6ZGd_UQ4wYQ", + "name": "Starbucks", + "address": "600 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9425249, + "longitude": -75.157186, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-19:30", + "Wednesday": "5:30-19:30", + "Thursday": "5:30-19:30", + "Friday": "5:30-19:30", + "Saturday": "6:0-19:30", + "Sunday": "6:0-19:30" + } + }, + { + "business_id": "WS4j8-8-HQ76X2_LAFV-Xg", + "name": "Cornerstone Market and Produce", + "address": "19 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689046, + "longitude": -75.1351566, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Convenience Stores", + "hours": null + }, + { + "business_id": "WDOsS2CdahC5PmL7NohRIw", + "name": "Chestnut Hall Apartments", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95496, + "longitude": -75.20016, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "MMmAjGRH4KRXrGbKO9cseA", + "name": "Sakeya Japanese Restaurant", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947954, + "longitude": -75.165882, + "stars": 3.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}" + }, + "categories": "Venues & Event Spaces, Bars, Restaurants, Nightlife, Japanese, Event Planning & Services, Lounges", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "mJ_itjZYQ_OA71q2NaWE4Q", + "name": "Carangi Baking", + "address": "2655 S Iseminger St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9166328, + "longitude": -75.1685035, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Caters": "True", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Alcohol": "'none'", + "HasTV": "True" + }, + "categories": "Bakeries, Cafes, Food, Sandwiches, Restaurants, Italian", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-15:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "0m5uP9SGYT7w6liaBROwXw", + "name": "Ground Up Coffee Shop", + "address": "1926 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260608, + "longitude": -75.1681768844, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Food, Coffee & Tea, Sandwiches, Bakeries, Restaurants, Breakfast & Brunch, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "HRImZ4HeqDJQ5hxSMMlW6w", + "name": "Machismo Burrito Bar", + "address": "4330 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250919, + "longitude": -75.2231789, + "stars": 3.5, + "review_count": 104, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "Caters": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Caterers, Local Flavor, Mexican, Event Planning & Services", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-2:30", + "Saturday": "11:0-2:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "MEImkEUon8YMKF9SHpt4jg", + "name": "The Asthma Center", + "address": "205 N Broad St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9563704, + "longitude": -75.1623294, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Medical Centers, Health & Medical, Allergists", + "hours": { + "Monday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "OaadKuB3L8tL4wFGhm9DtQ", + "name": "Round1 Philadelphia", + "address": "1001 Market St, Ste 3010", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952, + "longitude": -75.1571648, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Arts & Entertainment, Nightlife, Arcades, Active Life, Karaoke, Bowling", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "YRw-uBpdzRZngN6zzoC4WA", + "name": "Hurricane Alley", + "address": "340 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415588259, + "longitude": -75.1489446239, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForKids": "True", + "GoodForDancing": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Breakfast & Brunch, Cocktail Bars, Bars, Southern, Restaurants", + "hours": null + }, + { + "business_id": "4d04KiJmkd3Otx6Swu83Aw", + "name": "Chelsea Plating", + "address": "920 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9444339, + "longitude": -75.1576049, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Antiques, Local Services, Art Restoration, Refinishing Services, Home Services", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "aaqm5vJvVj3vyMeGwPqxEw", + "name": "Side of the Road Jerk Chicken", + "address": "6554 North Lambert St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0546082, + "longitude": -75.1545153, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Food Trucks, Local Flavor, Food, Restaurants, Barbeque, Food Stands", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-22:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "JW2czmOSnyGHnwc87PGX5Q", + "name": "Children's Dental Associates, PC", + "address": "607 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495877, + "longitude": -75.1513772, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists", + "hours": null + }, + { + "business_id": "QzFEjzRuC3C6XNSsfVM33g", + "name": "Lechonera Principe", + "address": "235 W Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766109, + "longitude": -75.1401495, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "ta_UPt2kFRKA9kCubefQkw", + "name": "Bark. Play. Love.", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0433862595, + "longitude": -75.2288818359, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Services, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "Et5_maoRY_BEJRmDfx6ynA", + "name": "Prince Pizza II", + "address": "6352 Algon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.043756, + "longitude": -75.0854452, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "ZVu9TDpTvIgCN8x6IY-KmA", + "name": "Oregon Diner", + "address": "302 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9140204, + "longitude": -75.1529839, + "stars": 3.5, + "review_count": 209, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "HappyHour": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Bakeries, Diners, Food", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "GvwV987P6u0kaR4YAhwCzA", + "name": "Rite Aid", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072533, + "longitude": -75.195008, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Drugstores, Food, Shopping, Convenience Stores", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "0MqOEmf84nhurrynm-_rtQ", + "name": "Token", + "address": "1050 N Hancock St, Unit 51", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9660455611, + "longitude": -75.1392937134, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'beer_and_wine'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Fast Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Q8vGyn3j8WKVqXubxxSbOQ", + "name": "Police And Fire Federal Credit Union", + "address": "7604 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9787673, + "longitude": -75.2712856, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "IAuLHyV0o-BZ04oyIp671w", + "name": "Susan's Exterminating", + "address": "5913 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0334895, + "longitude": -75.0827762, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "n5TNfoXg1i8wX5R3iY4WUA", + "name": "Cinder Copper & Lace", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482528775, + "longitude": -75.1666254178, + "stars": 3.5, + "review_count": 157, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "HasTV": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "CoatCheck": "False", + "GoodForDancing": "False", + "DogsAllowed": "False", + "GoodForKids": "False" + }, + "categories": "Beer, Wine & Spirits, Beer Bar, Pizza, Restaurants, Italian, Nightlife, Bars, Salad, Food, Breakfast & Brunch", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "xnmIZz0EJ1Pv42JufeN-Qw", + "name": "Maaco Auto Body Shop & Painting", + "address": "5091 Umbria St - R, Ste R", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.037271, + "longitude": -75.237857, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "dPzlIxBzlC9s2NAxYzTGVw", + "name": "Staples", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.063288, + "longitude": -75.236104, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Mobile Phone Repair, Office Equipment, IT Services & Computer Repair, Shopping, Local Services, Printing Services, Shipping Centers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "XuYk49u-CBlB1wMNOPeL1A", + "name": "Tim Rocco & Daughters General Contracting", + "address": "5920 Ditman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.018682, + "longitude": -75.061065, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Contractors, Roofing", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "UwKBjkfnIKA8c0Fci1ZJ8g", + "name": "Broad Street Animal Hospital", + "address": "5905 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0431278, + "longitude": -75.1434789, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pet Services, Pets, Pet Sitting", + "hours": null + }, + { + "business_id": "lU8TnePBqMrWxo9BKAThGA", + "name": "Three Kingdoms", + "address": "4229 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243322, + "longitude": -75.2207517, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "HappyHour": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Szechuan, Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "iiHWdMjPZhQPTC86p86X9Q", + "name": "Jembatan 5", + "address": "932 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383367, + "longitude": -75.159771, + "stars": 4.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BYOB": "True", + "RestaurantsTableService": "True", + "Corkage": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Indonesian, Restaurants", + "hours": { + "Monday": "0:0-0: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": "12:0-21:0" + } + }, + { + "business_id": "HKVIsKtwyBW_X1HR0GeT8w", + "name": "The Locksmith Man", + "address": "182 Gay St, Ste 503", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0286462839, + "longitude": -75.2214966932, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "bKNULviFM4ayuSwq809DIA", + "name": "Shanks Original", + "address": "901 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934831, + "longitude": -75.142057, + "stars": 3.5, + "review_count": 132, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "GoodForKids": "True", + "DogsAllowed": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "QcThABvkyLHpkOZG3aLGjQ", + "name": "Kater Street Bicycle", + "address": "609 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9436503, + "longitude": -75.1686242, + "stars": 5.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Shopping, Sporting Goods, Bike Repair/Maintenance, Bikes", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "z866E3X7MDdFWVQ5F_3EBA", + "name": "Dixie Picnic", + "address": "1306 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505877719, + "longitude": -75.162061511, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "BikeParking": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sandwiches, Restaurants, Breakfast & Brunch, Food, American (New), Cupcakes", + "hours": { + "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" + } + }, + { + "business_id": "Fqx6lq9MO20_71qs_0UBcw", + "name": "Pep Boys", + "address": "7720 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.903655, + "longitude": -75.23893, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Automotive, Auto Repair, Tires, Oil Change Stations", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "tERZrYIfe-nEFGKwVH9Xvg", + "name": "Makumba", + "address": "4501 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0162496, + "longitude": -75.096383, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "None" + }, + "categories": "Hookah Bars, Lounges, Dance Clubs, Bars, Music Venues, Arts & Entertainment, Nightlife", + "hours": { + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "21:0-2:0" + } + }, + { + "business_id": "k3v_QN-1I86Mq-lH8het_A", + "name": "Mr Jay's Place Bar", + "address": "1700 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669687, + "longitude": -75.1655183, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "DogsAllowed": "True", + "BYOB": "False", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BikeParking": "True" + }, + "categories": "Dive Bars, Pool Halls, Nightlife, Bars, Sports Bars, Lounges, Bar Crawl", + "hours": { + "Monday": "13:0-2:0", + "Tuesday": "13:0-2:0", + "Wednesday": "13:0-2:0", + "Thursday": "13:0-2:0", + "Friday": "13:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "HnHkLgV8wijyHI0XbJkv4Q", + "name": "B-Tan Tanning Salon - Philadelphia", + "address": "2405 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.920466, + "longitude": -75.170355, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Tanning, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "YqmClmk7oLcDzPWKHzgA-Q", + "name": "South Philadelphia Tap Room", + "address": "1509 Mifflin St, Newbold", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.927216, + "longitude": -75.171477, + "stars": 4.0, + "review_count": 530, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'no'", + "HappyHour": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Breakfast & Brunch, Bars, Nightlife, Restaurants, Gastropubs, Pubs", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "3pBYcS2co6J8ixnWZyKyJw", + "name": "Cherry Street Pier", + "address": "121 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952804, + "longitude": -75.139738, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Public Services & Government, Public Markets, Event Planning & Services, Landmarks & Historical Buildings, Venues & Event Spaces, Local Flavor, Shopping", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "0CSiz9Q_xuZ9YNq8KLRcSg", + "name": "Angela's Pizza", + "address": "9918 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.09453, + "longitude": -75.018255, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "Caters": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "54VKJOMvaUkPE0ZjYk-6Xg", + "name": "Holy Smokes", + "address": "203 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488485, + "longitude": -75.1630914, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "4", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Head Shops, Vape Shops, Tobacco Shops", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30" + } + }, + { + "business_id": "aUoMG97DMJG4nmwhT6z1zA", + "name": "Devon Seafood Grill", + "address": "225 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94949, + "longitude": -75.17066, + "stars": 3.5, + "review_count": 1159, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True" + }, + "categories": "Bars, Restaurants, Nightlife, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:59", + "Wednesday": "10:30-15:0", + "Thursday": "11:0-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "CFlW9bfl4N63fZpQsZIkRQ", + "name": "The Logan Philadelphia, Curio Collection by Hilton", + "address": "1 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9569323, + "longitude": -75.1702705, + "stars": 3.5, + "review_count": 211, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Event Planning & Services, Nightlife, Hotels & Travel, Bars, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "8VD4VDlBk80KRoshywVRaQ", + "name": "The Bridge", + "address": "100 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9601619591, + "longitude": -75.1393181525, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "GoodForDancing": "True", + "CoatCheck": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Sports Bars, Pubs, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "EI2_OgANt1Mb_83cNnpPwg", + "name": "Marra's", + "address": "1734 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9279881, + "longitude": -75.1658701, + "stars": 3.0, + "review_count": 291, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "mKTQek1QqB7xQcPBMzfG6g", + "name": "Beirut Cafe&Hookah", + "address": "301 South St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415863, + "longitude": -75.1476509, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "4", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'outdoor'", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Middle Eastern, Cafes, Lebanese, Hookah Bars, Restaurants, Bars, Lounges, Nightlife", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "2f3YghoMYzd5-GFMh_kvwQ", + "name": "Del Frisco's Grille", + "address": "225 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485224, + "longitude": -75.1640749, + "stars": 3.5, + "review_count": 132, + "is_open": 1, + "attributes": { + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "HappyHour": "True", + "CoatCheck": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Diners, Nightlife, Restaurants, Steakhouses, Bars", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "15:0-20:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "saZh9MsYjYPpRxTp3-04ig", + "name": "McCollum Insurance Agency", + "address": "4169 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0236991, + "longitude": -75.219954, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home & Rental Insurance, Insurance, Professional Services, Financial Services, Auto Insurance, Life Insurance", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "A2LX06VzJE62YdnhHbhDpA", + "name": "Auto Glass Installed", + "address": "1028 E Columbia Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968707, + "longitude": -75.1298875, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Glass Services, Automotive", + "hours": null + }, + { + "business_id": "1uebtHbl3Z81tq0IU2btqg", + "name": "Diego's Bar", + "address": "2676 Bridge Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0036019, + "longitude": -75.0664487, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Lounges, Bars", + "hours": null + }, + { + "business_id": "vFMtdAZLOPLJP-i6L6Jm-A", + "name": "Marshalls", + "address": "1044 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515093, + "longitude": -75.1579047, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Department Stores", + "hours": { + "Monday": "8:0-20: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": "11:0-18:0" + } + }, + { + "business_id": "UjGTEhQbesyleypubNyqqw", + "name": "Once Worn Consignment", + "address": "906 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9643742, + "longitude": -75.1408124, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fashion, Shopping, Used, Vintage & Consignment", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "4YU-VlpC_DU0EnOjlr4C1w", + "name": "Sababa Vapes", + "address": "237 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486369, + "longitude": -75.1456109, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "CoatCheck": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "1", + "Smoking": "u'no'", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Alcohol": "u'none'" + }, + "categories": "Social Clubs, Arts & Entertainment, Nightlife, Lounges, Shopping, Vape Shops, Bars", + "hours": { + "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": "10:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "jziliEq8Zum-EynD5v-Hvg", + "name": "Chifa", + "address": "707 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949786, + "longitude": -75.152623, + "stars": 4.0, + "review_count": 444, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "HappyHour": "True", + "RestaurantsReservations": "True" + }, + "categories": "Peruvian, Chinese, Restaurants, Asian Fusion, Latin American", + "hours": null + }, + { + "business_id": "TKHpxcLk0tsQ8BL6-1xlGg", + "name": "Flawless Dental Group", + "address": "551 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0370196, + "longitude": -75.1088446, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "General Dentistry, Cosmetic Dentists, Health & Medical, Endodontists, Dentists, Pediatric Dentists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "kAniT1U1a6V7JlXZsNsScA", + "name": "Open Space", + "address": "1014 N Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9699629, + "longitude": -75.1476176, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Art Space Rentals, Wedding Planning, Real Estate, Recording & Rehearsal Studios, Venues & Event Spaces, Session Photography, Home Services, Local Services, Arts & Entertainment, Photographers, Event Photography", + "hours": { + "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" + } + }, + { + "business_id": "aVuTyChb5_NtujVGNOKbbg", + "name": "Body Dreams: Avenue of the Arts Dancewear", + "address": "1129 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936888, + "longitude": -75.166547, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Costumes, Fashion, Arts & Crafts, Shopping, Sports Wear, Sporting Goods", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "13:0-16:0" + } + }, + { + "business_id": "zh3WpcN7QE95ovEtES7Ysg", + "name": "Zara Beauty Salon", + "address": "2206 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507957, + "longitude": -75.1778531, + "stars": 4.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Skin Care, Hair Removal", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "X3Qa-dXb2DFdZZ2UnAfSVg", + "name": "Dunkin'", + "address": "1619 Grant Ave, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.087335, + "longitude": -75.039989, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Coffee & Tea, Donuts, Food, Restaurants", + "hours": { + "Monday": "5:0-18:0", + "Tuesday": "5:0-18:0", + "Wednesday": "5:0-18:0", + "Thursday": "5:0-18:0", + "Friday": "5:0-18:0", + "Saturday": "5:0-18:0", + "Sunday": "6:0-17:0" + } + }, + { + "business_id": "y4Y9qXijJx_-4WKo0xaSgg", + "name": "Massage Fairmount Ave", + "address": "2021 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674638, + "longitude": -75.171032, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Massage, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "BM92j54mc-c-6MWqWSimRw", + "name": "Dmitri's", + "address": "2227 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947747, + "longitude": -75.179104, + "stars": 3.5, + "review_count": 151, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "Caters": "False" + }, + "categories": "Restaurants, Mediterranean, Greek, Seafood", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ti0EtGjQocXC-nvXvDwjHg", + "name": "Dominic's Appliances", + "address": "1749 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245656759, + "longitude": -75.1760569393, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Local Services, Appliances & Repair, Appliances, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "02nUjwVmJGTgGyiIi-hklg", + "name": "El Cafรฉ", + "address": "31 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525122617, + "longitude": -75.1717417315, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, Mexican, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "cXPI_zMAr_LdCND8PMw2nA", + "name": "StandOut Resumes", + "address": "1500 John F Kennedy Blvd, Ste C31 Unit 59092", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9533355, + "longitude": -75.1659303, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Editorial Services, Web Design, Marketing, Career Counseling", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0", + "Sunday": "8:30-21:0" + } + }, + { + "business_id": "zdXlwpwhJ4vXJUOJ5yY4ag", + "name": "Luminous Chiropractic", + "address": "1315 Walnut St, Ste 1403", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493563058, + "longitude": -75.1630406413, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "15:0-18:0", + "Wednesday": "15:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-12:30" + } + }, + { + "business_id": "BpYWa9VbWdhNyCEHI-xfOw", + "name": "Thomas Jefferson University East Falls ", + "address": "4201 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.018724, + "longitude": -75.192293, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Education, Colleges & Universities", + "hours": null + }, + { + "business_id": "DgNM0DR8_uoDXyaysElVJA", + "name": "Kitchenette", + "address": "117 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497326, + "longitude": -75.1601821, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Home & Garden, Kitchen & Bath", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "F8aGABlhBphv86bHC8pwKw", + "name": "Beekman's COPA Soaps", + "address": "438 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9704238, + "longitude": -75.1290604, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0" + } + }, + { + "business_id": "w2c286TS4vS_2QEse8d6ew", + "name": "The Left Bank by Dranoff Properties", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9523072, + "longitude": -75.1873948, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "Xdhw_8EubmL4N-E5pBzD_g", + "name": "Cassizzi Pizzeria", + "address": "2533 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9851115, + "longitude": -75.1067597, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "23:0-22:0", + "Wednesday": "23:0-22:0", + "Thursday": "23:0-22:0", + "Friday": "23:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Q2d0tcWR5AZtx86A_YrO2A", + "name": "PHAG", + "address": "1225 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491342, + "longitude": -75.161714, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Cards & Stationery, Home Decor, Home & Garden, Furniture Stores, Event Planning & Services, Shopping, Arts & Crafts", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "vneawF0o58vIBo015EYlhA", + "name": "Andy's Plumbing & Heating", + "address": "7041 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0445726, + "longitude": -75.2296267, + "stars": 4.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Plumbing, Home Services, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "X_OnAUXVGHjyWP9zoPVLTA", + "name": "Megabus", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 2.0, + "review_count": 415, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation", + "hours": null + }, + { + "business_id": "IrJbptQgdCXC4avPQKeChw", + "name": "Italian Bistro", + "address": "2500 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0731939, + "longitude": -75.0352627, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "dyELPSU9bEe20QpCQ8pn9A", + "name": "Halal Food Special", + "address": "20 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532117052, + "longitude": -75.1668324715, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Halal, Food, Food Trucks", + "hours": { + "Monday": "11:30-16:30", + "Tuesday": "11:30-16:30", + "Wednesday": "11:30-16:30", + "Thursday": "11:30-16:30", + "Friday": "11:30-16:30" + } + }, + { + "business_id": "Jj8J8AfO4tJW7U74XbWLLA", + "name": "The Hair Cuttery", + "address": "6161 Ridge Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0351904, + "longitude": -75.2168038, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "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": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Lk8Xi5ZXCQxLg5YaCfF-Sw", + "name": "1859 Wellness Spa & Salon", + "address": "4259 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0249266, + "longitude": -75.2216292, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Beauty & Spas, Nail Salons, Skin Care, Hair Salons, Day Spas", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "wwjqdFxiJREbFeNQoLd_Ew", + "name": "True Hand Society", + "address": "2345 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.977354, + "longitude": -75.127351, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": null + }, + { + "business_id": "IvIItKgPAhsgbxwRczEQeA", + "name": "Jimmy John's", + "address": "44 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517683, + "longitude": -75.1689324, + "stars": 3.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Food, Food Delivery Services, Delis, Salad, Sandwiches", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "iiZHyvPUN4rPpVA70Mt8hg", + "name": "Independence After Hours", + "address": "600 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491008173, + "longitude": -75.1491766423, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Tours, Dinner Theater, Historical Tours, Hotels & Travel, Walking Tours, Restaurants", + "hours": { + "Friday": "17:30-20:0", + "Saturday": "17:30-20:0" + } + }, + { + "business_id": "Rliq-iILjQX0w3Q0XZ4LAQ", + "name": "Florida Style Pizza", + "address": "2052 S Beechwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9261144, + "longitude": -75.1822397, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "E89UTlNjtofPbRnn1mICrw", + "name": "Rainbow Nail Salon", + "address": "8024 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.071264, + "longitude": -75.2014912, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "KwswVVltIMPBIYOd-rtHYA", + "name": "Atria Center City", + "address": "150 North 20th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957108, + "longitude": -75.172824, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Retirement Homes, Health & Medical", + "hours": null + }, + { + "business_id": "y6-J_UjNk69VNLb39c_5CA", + "name": "Spirit of Philadelphia", + "address": "401 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9415984538, + "longitude": -75.1405771664, + "stars": 3.0, + "review_count": 165, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'dressy'", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "Caters": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Event Planning & Services, American (New), Venues & Event Spaces, Active Life, Boating, Boat Tours, American (Traditional), Restaurants, Tours, Hotels & Travel, Buffets, Boat Charters", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "gNyQxg1X4oGQupjn2VpsGQ", + "name": "Rita's Italian Ice", + "address": "800 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631222, + "longitude": -75.1412478, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Desserts, Food, Shaved Ice, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "pUnkSd1p_FCle6ZUNlhHXg", + "name": "Gentle Health and Wellness Center", + "address": "1601 Walnut St, Ste 809", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950007, + "longitude": -75.167691, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Physical Therapy, Health & Medical, Chiropractors", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "BartDNNQqfuah6MPqLruvQ", + "name": "Metro Laser CoolSculpting MedSpa", + "address": "1216 Arch St, Ste 3B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538607, + "longitude": -75.1603386, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Skin Care, Beauty & Spas, Threading Services, Hair Removal, Laser Hair Removal, Medical Spas, Health & Medical", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "3IadlOAx145dhqMkIezlwQ", + "name": "Head House Books", + "address": "619 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405917, + "longitude": -75.1455652, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video, Gift Shops, Flowers & Gifts, Bookstores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "A7cW4y6vIH7uhnVYcNBFqg", + "name": "Used Tires and Rims", + "address": "4344 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9680474, + "longitude": -75.2110306, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Tires", + "hours": null + }, + { + "business_id": "5css9Tl6TwMVe8GDLorJkQ", + "name": "Maliwan", + "address": "1700 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927478539, + "longitude": -75.1557125151, + "stars": 5.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Laotian, Thai, Restaurants", + "hours": null + }, + { + "business_id": "DvyG9Fx1EeNJfr_UNL7NYA", + "name": "Fresco Tortilla", + "address": "200 S Broad St Hyatt Food Ct", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949224, + "longitude": -75.164942, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'" + }, + "categories": "Event Planning & Services, Restaurants, Mexican, Food", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Q2aw4mDRURoxetUF1rjdeg", + "name": "The Gathering Place", + "address": "6755-57 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.053532, + "longitude": -75.186069, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "ZYRul0i1bhOjirHED6Kd0w", + "name": "SouthHouse", + "address": "2535 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.91804, + "longitude": -75.168707, + "stars": 4.5, + "review_count": 158, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BYOB": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "Corkage": "False", + "WiFi": "u'free'", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, American (New), Nightlife, Restaurants, Pubs, Gluten-Free", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "cM77NrFZx2z0d84AqEpmMw", + "name": "Diner At Manayunk", + "address": "4371 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0259511, + "longitude": -75.2243072, + "stars": 4.0, + "review_count": 86, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': None}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "HappyHour": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsTableService": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Saturday": "9:30-16:0", + "Sunday": "9:30-16:0" + } + }, + { + "business_id": "BCD8RVEE9kL4gnSyVLKNcQ", + "name": "Flotation Philly", + "address": "1314 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.97087, + "longitude": -75.1357825, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Beauty & Spas, Physical Therapy, Medical Spas, Massage Therapy", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "9:30-19:30" + } + }, + { + "business_id": "8gjobQgUMt9FHPVUShys5A", + "name": "Sound of Market", + "address": "15 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509258, + "longitude": -75.1582477, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Vinyl Records, Books, Mags, Music & Video, Shopping", + "hours": null + }, + { + "business_id": "xrUtLEFyxzfjflTC2nqLXQ", + "name": "Good Day Eatery", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTableService": "True" + }, + "categories": "Bagels, Food, Breakfast & Brunch, Event Planning & Services, Pizza, Restaurants, Caterers, Sandwiches, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0" + } + }, + { + "business_id": "mSiI5tOHNQLF62mJAe4CWg", + "name": "Meineke Car Care Center", + "address": "2749 W Hunting Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0077753, + "longitude": -75.1743743, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Automotive, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "olp3UKVlryO9x1e-egn8aA", + "name": "FN Lashes", + "address": "1104 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615399, + "longitude": -75.1564053, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Education, Eyelash Service, Beauty & Spas, Specialty Schools, Vocational & Technical School", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "w95-wGc1hJ31fRNajtEtOg", + "name": "Burrito Feliz Philly", + "address": "2000 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9240450948, + "longitude": -75.1581183892, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food Trucks, Food", + "hours": { + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "LM54ufrINJWoTN5imV8Etw", + "name": "John's Roast Pork", + "address": "14 E Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9210273851, + "longitude": -75.1450284438, + "stars": 4.5, + "review_count": 1564, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': None}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sandwiches, Salad, American (Traditional), Cheesesteaks, Breakfast & Brunch, Active Life, American (New), Beaches, Restaurants", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "cOaw7LOj7yjCH9ty8eIJDg", + "name": "Marchiano's Bakery", + "address": "4653 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0308856, + "longitude": -75.2301417, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Restaurants, Food", + "hours": { + "Thursday": "10:0-15:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "d4QDtxEVBncaFLAxggRoqQ", + "name": "Philadelphia Bar & Restaurant", + "address": "120 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496707, + "longitude": -75.1431203, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New), Food, Gastropubs", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "JTfQvACdBw5MF3dzeGnjww", + "name": "Tenth Street Laundromat", + "address": "1141 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9357518, + "longitude": -75.1599901, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Laundromat", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-21:30", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-21:30", + "Saturday": "7:0-21:30", + "Sunday": "7:0-21:30" + } + }, + { + "business_id": "mbWj0U7dIaX103cSQC4WiQ", + "name": "China Royal", + "address": "2620 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0558716, + "longitude": -75.0456795, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "-KncfNxXHo2DA46fR39K5w", + "name": "Cantinho Brasileiro Restaurante", + "address": "7536 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.055428, + "longitude": -75.0626433, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False" + }, + "categories": "Brazilian, Specialty Food, Food, Restaurants, Ethnic Food", + "hours": null + }, + { + "business_id": "dHmTdRypfeiz4FYUVlEHNQ", + "name": "Union Roofing", + "address": "12260 Townsend Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1024158, + "longitude": -74.9863548, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Siding, Home Cleaning, Windows Installation, Roofing, Contractors, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "e_nJYz42-ZKvHGtP7j1zPQ", + "name": "Mode Moderne", + "address": "159 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9538078, + "longitude": -75.1446646, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Furniture Stores, Shopping, Antiques", + "hours": { + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "VytP0omSyIs6cuw_Voy94w", + "name": "Dex & Syd's", + "address": "525 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351648949, + "longitude": -75.153204985, + "stars": 4.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Seafood, Cajun/Creole, American (New), Chicken Wings, Cheesesteaks", + "hours": { + "Monday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "nqMGXZ3haILky26NDAJVSA", + "name": "Drunk Crab", + "address": "425 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9702621176, + "longitude": -75.1442193308, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chicken Wings, Asian Fusion, Japanese, Seafood", + "hours": { + "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": "13:0-22:0" + } + }, + { + "business_id": "cLNyFQ3T7p_Kcf09IburKw", + "name": "Dunkin'", + "address": "6620 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0543239, + "longitude": -75.1418482, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "4:30-19:0", + "Tuesday": "4:30-19:0", + "Wednesday": "4:30-19:0", + "Thursday": "4:30-19:0", + "Friday": "4:30-19:0", + "Saturday": "4:30-19:0", + "Sunday": "4:30-19:0" + } + }, + { + "business_id": "aW9oWZz8pGLcGC5YAGFcrQ", + "name": "BROOKE+CO", + "address": "2200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507934, + "longitude": -75.1775433, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Real Estate, Home Services, Real Estate Services", + "hours": null + }, + { + "business_id": "wNjjT9gIeWS2_-xYu96aBA", + "name": "Matarazzo & Milici Group", + "address": "One Crescent Dr, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.896179, + "longitude": -75.1745976, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Health & Medical, Cosmetic Dentists, General Dentistry, Periodontists, Oral Surgeons", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0" + } + }, + { + "business_id": "StJngGaxDOJDjNmsCcKuAQ", + "name": "Nick's Famous Pizza", + "address": "5810 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0351703, + "longitude": -75.1787516, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "W8F9TbZcojXvaev0lSKQRA", + "name": "Mindful Elephant Yoga", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629314, + "longitude": -75.1724804, + "stars": 5.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": { + "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": "8:30-10:30", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "UiVGsdrU4_eJhmFRubwETg", + "name": "Salt & Pepper Deli III", + "address": "1102 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.945704, + "longitude": -75.2138797, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Convenience Stores, Sandwiches, Restaurants, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "gSHfIvPeeHoTDs_ATF54Pw", + "name": "Robert Mills Jewelers and Watchmakers", + "address": "1807 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95192, + "longitude": -75.170621, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Watch Repair, Local Services, Jewelry, Shopping", + "hours": null + }, + { + "business_id": "vrDax0Opr-CFuvwp396L0g", + "name": "Rieker's Prime Meats", + "address": "7979 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0768575019, + "longitude": -75.0850222427, + "stars": 4.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Meat Shops, Food, Restaurants, Butcher, Grocery, Specialty Food, German", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "NEZOlUKoQWUotatzRp-r5A", + "name": "Happy Lamb Hot Pot", + "address": "1017 Arch St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539683, + "longitude": -75.1570234, + "stars": 4.0, + "review_count": 169, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "DogsAllowed": "False" + }, + "categories": "Mongolian, Restaurants, Chinese, Hot Pot", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ytJy61OJLhXsfTpVgnIgYw", + "name": "Flourishing Gifts", + "address": "1200 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463002, + "longitude": -75.1612188, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "None", + "WiFi": "u'no'", + "RestaurantsDelivery": "None" + }, + "categories": "Home & Garden, Flowers & Gifts, Home Decor, Florists, Shopping, Local Flavor, Gift Shops, Event Planning & Services, Floral Designers", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "bc03758WAxjyQ02v5JvM6g", + "name": "St John the Evangelist Church", + "address": "21 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511969, + "longitude": -75.1613725, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations, Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "YN4Kk751tmdvoarGo8z7_A", + "name": "New Delhi Indian Restaurant", + "address": "4004 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553921, + "longitude": -75.2026195, + "stars": 4.0, + "review_count": 514, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "HappyHour": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True" + }, + "categories": "Buffets, Pakistani, Restaurants, Indian, Vegan, Vegetarian", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "iG6v04EILBo57nFkY_MKpw", + "name": "Seng's Salon", + "address": "2352 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9193097, + "longitude": -75.1590536, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "IP_E4SHLClorhNg4o5bw9Q", + "name": "Rosy's Taco Bar", + "address": "2220 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508956186, + "longitude": -75.178367123, + "stars": 4.0, + "review_count": 282, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Tacos, Nightlife, Bars, Mexican, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "yE23XInrBQ2Ef27vrg4VJQ", + "name": "Central High School", + "address": "1700 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0374047, + "longitude": -75.150317, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Education, Middle Schools & High Schools", + "hours": null + }, + { + "business_id": "I8Mp86nc0nWOkBZ_Byc6cQ", + "name": "Kauffman's Lancaster County Produce", + "address": "12th St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953567, + "longitude": -75.159471, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Farmers Market, Specialty Food, Food", + "hours": { + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "HV5W4i7iXWjLPxAvxPUHrg", + "name": "The Bar Method Rittenhouse", + "address": "255 S 17th St, Fl2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "DogsAllowed": "False", + "BusinessParking": "None", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Barre Classes, Active Life", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "6:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:30-11:0", + "Sunday": "9:30-12:0" + } + }, + { + "business_id": "bK2o-PrLzVHEPOy4Io5NLw", + "name": "The Salvation Army Kroc Center", + "address": "4200 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.012124, + "longitude": -75.169524, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Local Services, Community Service/Non-Profit, Summer Camps, Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-21:30", + "Saturday": "7:0-18:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "EHNtEYL9GXsv1sbKChMMWw", + "name": "Stix Asian Eatery", + "address": "1225 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416094, + "longitude": -75.1631687, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Korean, Restaurants, Asian Fusion, Chinese, Sandwiches, Salad, Food, Bubble Tea", + "hours": null + }, + { + "business_id": "00rIcvqmfci_oJWkOqPqmg", + "name": "T & F Farmers Pride", + "address": "8101 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0571665, + "longitude": -75.2357367, + "stars": 4.5, + "review_count": 92, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BYOB": "False", + "Corkage": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "False", + "RestaurantsTableService": "False" + }, + "categories": "Specialty Food, Delis, Sandwiches, Fruits & Veggies, International Grocery, Grocery, Food, Restaurants, Farmers Market", + "hours": { + "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": "10:0-15:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "3dtxHKM3RbVyjzTfbcGq2A", + "name": "Murphy's Tavern", + "address": "5892 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0313311, + "longitude": -75.2079192, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "CoatCheck": "False", + "GoodForDancing": "False" + }, + "categories": "Nightlife, Pubs, Restaurants, Bars, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "jApER49B6B645lCQCsorFA", + "name": "Reddboy's", + "address": "1309 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9432143712, + "longitude": -75.2103306726, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Car Wash, Automotive, Auto Detailing", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-19:30" + } + }, + { + "business_id": "qOCmelKvctDndw85CFk9jw", + "name": "Avenir Apartments", + "address": "42 South 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512579, + "longitude": -75.1658929, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "8iXE6VM2VI40Xaji-iSKjw", + "name": "Philadelphia Cigar & Tobacco Co", + "address": "2417 Welsh Rd, Ste 18", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0722423724, + "longitude": -75.0314294196, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tobacco Shops, Shopping", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "07TTRbfJlLDzc1lneXEe3A", + "name": "Super Clean Laundry", + "address": "1001 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9237859, + "longitude": -75.1632178, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "R3Cl-KaJ2_YKN8zpEUjUzQ", + "name": "John Carduello & Sons", + "address": "3000 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9826018, + "longitude": -75.0946342, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Local Services, Propane", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "CYZPFztvMTvNpXhd4ecjOQ", + "name": "Pacifico Ford", + "address": "6701 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.913592, + "longitude": -75.2226548, + "stars": 2.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Auto Detailing, Car Dealers, Automotive, Auto Repair", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "k6WAVICs1yY07JPXLYCj_w", + "name": "OCF Coffee House", + "address": "301 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950333, + "longitude": -75.1457136, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "WheelchairAccessible": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Bagels, Food", + "hours": { + "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" + } + }, + { + "business_id": "CTvOidAcbsTaZKhOFmh1Tg", + "name": "Louis P. Bucky, MD, FACS", + "address": "230 W Washington Sq, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9463987756, + "longitude": -75.1538623712, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Plastic Surgeons, Doctors, Cosmetic Surgeons, Health & Medical, Ear Nose & Throat, Medical Spas, Body Contouring", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ddmwkOVNategY1klPbAFsw", + "name": "Banjara Indian Bistro", + "address": "8705 German Town Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077871324, + "longitude": -75.2083880827, + "stars": 4.0, + "review_count": 67, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "fUmXHW1iM5WUvdUuz1BxIQ", + "name": "Bella's Breakfast & Lunch", + "address": "2159 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9795761, + "longitude": -75.1707379, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0", + "Sunday": "8:30-15:0" + } + }, + { + "business_id": "Yfc9dSHTLO_RCGzJcUMiKg", + "name": "Emma's Nails And Spa", + "address": "1108 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0601354, + "longitude": -75.0820804, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "Ov3xuk6-VVgxUVeVf4HTXw", + "name": "GK Pictures", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Session Photography, Event Photography, Photographers", + "hours": null + }, + { + "business_id": "zRnFxKLKdn0ZJ2_DapEQWA", + "name": "The Lucky Well - Spring Arts", + "address": "990 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961265, + "longitude": -75.1541276, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BYOB": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Chicken Shop, Barbeque, Restaurants", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "2X3sYDb2wORzDDwNZP33WA", + "name": "Flaming Basil", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Trucks, Restaurants, Laotian, Thai, Food", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "ht8lG0gs4-ddM7ap3wwIaA", + "name": "Dunkin'", + "address": "1829 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9959031, + "longitude": -75.1124991, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-19:0" + } + }, + { + "business_id": "e3fQkykBr9V9jr1g9VWliw", + "name": "Pho Ga Thanh Thanh", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373886, + "longitude": -75.1616647, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsTableService": "True", + "BYOB": "False" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "pJv3Ei2o4DLM4EgPbAGk5Q", + "name": "Old City Photo Booth", + "address": "702 N 3rd St, Ste 73", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624991, + "longitude": -75.1432473, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Event Planning & Services, Photo Booth Rentals, Party Equipment Rentals", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "PMM2ThSD2TSqRAFRGqYB7Q", + "name": "Paul's Window Washing", + "address": "2301 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.922208, + "longitude": -75.1733121, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Window Washing, Home Services, Gutter Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "JLulel_40m_1LjqK4rWcrQ", + "name": "Target", + "address": "2001 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96163, + "longitude": -75.1726872, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BikeParking": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "Caters": "False", + "HappyHour": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "False" + }, + "categories": "Department Stores, Furniture Stores, Grocery, Electronics, Drugstores, Fashion, Shopping, Food, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "64tYqfgsfgCkgtXV_9uu-w", + "name": "Saxbys ", + "address": "1902 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9817208259, + "longitude": -75.1560784911, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Oj-XIt4Xj6NSsHzlSt-PsA", + "name": "Pei Wei", + "address": "4040 City Ave Bldg 2 Space 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0072792192, + "longitude": -75.2127040923, + "stars": 2.5, + "review_count": 144, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Gluten-Free, Asian Fusion, Chinese, Fast Food, Diners", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "T8NWs6flR26edfhhwJNhNA", + "name": "Sahara Grill", + "address": "1334 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491798, + "longitude": -75.1635651, + "stars": 4.0, + "review_count": 322, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Mediterranean, Middle Eastern, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "RStXv1K82AzeCGJmTGCxUA", + "name": "Pep Boys", + "address": "1050 E Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0109803, + "longitude": -75.1072252, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Auto Parts & Supplies, Oil Change Stations, Automotive", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "BOIJFSYlV2SmFMfCUb8N3Q", + "name": "FedEx Office Print & Ship Center", + "address": "2001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9537709, + "longitude": -75.1735548, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shipping Centers, Professional Services, Signmaking, Printing Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "XX0xyWDpFc6Diq-XVHUckg", + "name": "East Coast Wings & Grill", + "address": "2539 Castor Ave, Aramingo Super Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.99391726, + "longitude": -75.09156534, + "stars": 3.5, + "review_count": 112, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "True", + "Caters": "True", + "HappyHour": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': True, u'thursday': False, u'friday': False, u'saturday': True, u'sunday': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "HasTV": "True", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "DogsAllowed": "False" + }, + "categories": "Chicken Wings, Bars, Fast Food, Sandwiches, American (Traditional), Nightlife, Restaurants, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "6jWxJEIoq5RrEAARWmj0Xg", + "name": "N2 Sweet Cafe", + "address": "125 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9547158851, + "longitude": -75.157581247, + "stars": 4.0, + "review_count": 61, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Desserts, Restaurants, Cafes, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "WbxPdq_PgVvCI462l0vPEQ", + "name": "Dunkin'", + "address": "5506 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9590347, + "longitude": -75.2315661, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Donuts, Restaurants, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "Xnpt4pJIa0phjPv4Oe6NJw", + "name": "Martial Posture", + "address": "2210 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950797, + "longitude": -75.177966, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Martial Arts, Fitness & Instruction, Active Life, Trainers, Boxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:30-21:0", + "Wednesday": "14:30-21:0", + "Thursday": "14:30-21:0", + "Friday": "14:30-21:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "0lGN91IoLe02MtEu9Xtf1w", + "name": "Pizza Hut", + "address": "2310 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9225254, + "longitude": -75.1856193, + "stars": 1.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Chicken Wings, Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "aa0xi7fgFJyA4qWux6vz0A", + "name": "Carmen's Famous Italian Hoagies", + "address": "12th St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532735358, + "longitude": -75.1593375206, + "stars": 3.5, + "review_count": 589, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': True, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches, Salad", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "BAaU9XVWHtSYU16BxdZERw", + "name": "Franklin Music Hall", + "address": "421 N 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589273, + "longitude": -75.1500189, + "stars": 3.0, + "review_count": 271, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Arts & Entertainment, Performing Arts, Music Venues, Event Planning & Services, Venues & Event Spaces, Nightlife", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "leOU-r3LeS6gLCFwjnImBg", + "name": "Groomadelphia", + "address": "444 N 4th St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9588922, + "longitude": -75.1458732, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Pet Groomers, Pets, Dog Walkers, Pet Services", + "hours": { + "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" + } + }, + { + "business_id": "7Y3RjSc99a88oTMEgvazoA", + "name": "QDOBA Mexican Eats", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9495796084, + "longitude": -75.1672851248, + "stars": 3.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Corkage": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "DriveThru": "False", + "WiFi": "'free'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Mexican, Event Planning & Services, Caterers, Fast Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "_t_UwNkwAinJSljDDYvnoQ", + "name": "Petit Jardin En Ville", + "address": "134 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953263, + "longitude": -75.14518, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Event Planning & Services, Gardeners, Home Services, Florists, Shopping, Flowers & Gifts, Wedding Planning, Nurseries & Gardening, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ufNUHAZSC1Nq85H92vHfNA", + "name": "House of nails salon and spa", + "address": "6323 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0443645, + "longitude": -75.1813004, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Removal, Nail Salons, Eyelash Service, Waxing", + "hours": { + "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" + } + }, + { + "business_id": "VOBvxu8SzLGSun8o5OFhjA", + "name": "QT Vietnamese Sandwich", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558866, + "longitude": -75.1934096, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Vietnamese, Food Trucks, Sandwiches, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-15:0", + "Wednesday": "10:30-15:0", + "Thursday": "10:30-15:0", + "Friday": "10:30-15:0" + } + }, + { + "business_id": "Mzogb5CiOATEJAjZHtTrkg", + "name": "Ben Driving School", + "address": "1206 Unruh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.045769, + "longitude": -75.079048, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Education, Translation Services, Professional Services, Driving Schools, Test Preparation, Departments of Motor Vehicles, Specialty Schools", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "wCH3LUgCzuGWcs8Ov_Q5uA", + "name": "Belle Cakery", + "address": "1437 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310026, + "longitude": -75.1617721, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Food", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Coux-ZsMfvklHclKLliHfg", + "name": "Fine Wine & Good Spirits", + "address": "5 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95201, + "longitude": -75.159278, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "DriveThru": "None" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "WVwWBZ_MEfXedsfjXtDv5Q", + "name": "Metro Church", + "address": "4200 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.008716687, + "longitude": -75.1942376502, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "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" + } + }, + { + "business_id": "i9B7FwKJoXYiBUSKRObgBA", + "name": "Sip N Glo Juicery - Sansom", + "address": "1700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506385971, + "longitude": -75.1691822335, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Juice Bars & Smoothies, Food", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "ZUVoVyh4wWEkkAOMJCcM-g", + "name": "Trinity Church Oxford", + "address": "601 Longshore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0546536, + "longitude": -75.0878301, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Churches, Religious Organizations, Community Service/Non-Profit", + "hours": { + "Tuesday": "9:0-13:0", + "Wednesday": "9:0-13:0", + "Thursday": "9:0-13:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "21czbreHdJ8DxchFcsAlQA", + "name": "Barone's How U Doin' Deli & Grocery", + "address": "1515 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9198589, + "longitude": -75.1730406, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Specialty Food, Food, Delis, Grocery, Ethnic Food, Convenience Stores, Italian, Restaurants", + "hours": null + }, + { + "business_id": "Iw8uqNPxviwcgxtruAx_LA", + "name": "Good Dog Bar", + "address": "224 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948793, + "longitude": -75.1662055, + "stars": 4.0, + "review_count": 1279, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "DriveThru": "False", + "GoodForKids": "False", + "GoodForDancing": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "False" + }, + "categories": "American (Traditional), Restaurants, Bars, Nightlife, Burgers, Sandwiches, Soup, Pubs", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "5wAk4sBWukQ4WFIlaDrdEw", + "name": "Kimey's Place", + "address": "3401 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9623431, + "longitude": -75.1916195, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Food, Breakfast & Brunch, Grocery, Modern European, Delis, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "nKYpVtHmwzPBmVAlz73qoQ", + "name": "Imli Indian Kitchen", + "address": "769 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388691, + "longitude": -75.1524722, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "AXfF-c7h7y4yqUC6zehbng", + "name": "Five Guys Pizza", + "address": "125 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296843, + "longitude": -75.228592, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Breakfast & Brunch, Restaurants, Chicken Wings, Food Delivery Services, Pizza, Food", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "N4F1oQTu1qqyl0bLrXRLcg", + "name": "Sydney Rosen Company", + "address": "714 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486179, + "longitude": -75.1531177, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Fashion, Accessories, Bridal, Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "EzjysPg2-lVX1E0ibStUXw", + "name": "Ekta Indian Cuisine", + "address": "1142 Crease St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9692049, + "longitude": -75.1325733, + "stars": 4.0, + "review_count": 436, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "BikeParking": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Pakistani, Indian", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "wUiJDkB_YUZEgTQshpUZZg", + "name": "Xin Xing House", + "address": "6057 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0354613, + "longitude": -75.0808778, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "Ldch7Nc5gaZrhcIRd7mcjw", + "name": "Kabuki Sushi", + "address": "45 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535852, + "longitude": -75.1609794, + "stars": 4.0, + "review_count": 400, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "HasTV": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": { + "Monday": "0:0-0: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": "12:0-22:0" + } + }, + { + "business_id": "pUGkaV3_aLBoFDL1AeuXDw", + "name": "Painting with a Twist", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0636072565, + "longitude": -75.236522155, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Art Classes, Education, Paint & Sip", + "hours": null + }, + { + "business_id": "v5h4oxUGT7jYc5BVDLoEmw", + "name": "Princess Nail", + "address": "1534 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950364, + "longitude": -75.1670832, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "C93hmXkaRnej-jg0Z0ilhA", + "name": "Rayaki - Philadelphia", + "address": "2818 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04378, + "longitude": -75.05346, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "Alcohol": "u'none'" + }, + "categories": "Ramen, Japanese, Restaurants, Izakaya", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "I-bZsyEsmlJsqYObIF2V7A", + "name": "Wokano", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936934, + "longitude": -75.161837, + "stars": 3.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Dim Sum, Japanese, Restaurants, Chinese", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "YOqnRHASr8ensibyqqFmSQ", + "name": "Las Lomas Restaurant", + "address": "1167 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345779, + "longitude": -75.1586537, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Mexican, Grocery, Restaurants, Food, Bakeries", + "hours": null + }, + { + "business_id": "ISEISkjWHewbr9ZOlJstbA", + "name": "Morrone's Water Ice", + "address": "200 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.965957, + "longitude": -75.2465046, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "wU1_0cp9riS3VL_StLkPoA", + "name": "Twist Inc Salon", + "address": "526 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409081, + "longitude": -75.1517874, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "4P4iL8EHh_IjfNE2_c8TTQ", + "name": "707 Restaurant & Bar", + "address": "707 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.949531, + "longitude": -75.152578, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "rmJt2wCN7UC6OFTPwVQGQQ", + "name": "Td Bank", + "address": "200 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421228349, + "longitude": -75.1457252899, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "UJw-KnIdnzwbvxzNvIUhgw", + "name": "Currito Burritos Without Borders", + "address": "203 N 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591159, + "longitude": -75.1904692, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False" + }, + "categories": "Mexican, Juice Bars & Smoothies, Food, Breakfast & Brunch, Fast Food, Restaurants", + "hours": null + }, + { + "business_id": "dTJRXFxdjmDZYNqe8iB86A", + "name": "Koukouzeli", + "address": "1134 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9354931, + "longitude": -75.1587449, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True" + }, + "categories": "Greek, Restaurants", + "hours": null + }, + { + "business_id": "TunmRrfZb7bt53T6HJi4UQ", + "name": "Bleu Sushi", + "address": "262 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463986271, + "longitude": -75.157800703, + "stars": 4.5, + "review_count": 938, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOB": "True", + "HappyHour": "True", + "DogsAllowed": "True", + "Corkage": "False", + "WiFi": "u'free'" + }, + "categories": "Sushi Bars, Japanese, Restaurants, Asian Fusion, Tapas/Small Plates", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "OiE-MRsu_E5O54crdNGZ1g", + "name": "Voltage Lounge", + "address": "421 N 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9592901344, + "longitude": -75.1500912772, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "GoodForKids": "False", + "Caters": "False", + "NoiseLevel": "'loud'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Arts & Entertainment, American (New), Event Planning & Services, Venues & Event Spaces, Restaurants, Nightlife, Lounges, Comedy Clubs, Hookah Bars, Arcades, Music Venues, Bars", + "hours": null + }, + { + "business_id": "3LYKr4nbBVcNUlC4QelSfA", + "name": "215 Get A Cab", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 2.0, + "review_count": 112, + "is_open": 1, + "attributes": null, + "categories": "Public Transportation, Transportation, Taxis, Hotels & Travel", + "hours": null + }, + { + "business_id": "XD7EU4Vw_0OQYydrRSqwtg", + "name": "Paul Rubin's Chiropractic and Wellness Center", + "address": "1420 Walnut St, Ste 1404", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.951027252, + "longitude": -75.1658233228, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Massage, Massage Therapy, Health & Medical, Naturopathic/Holistic, Beauty & Spas, Doctors, Chiropractors, Nutritionists, Home Health Care, Physical Therapy", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-13:0" + } + }, + { + "business_id": "sFHrycouD9kCBs5oV6EXfA", + "name": "Jen Singley - Home Sweet Home PHL", + "address": "728 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9425406607, + "longitude": -75.1664857, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Real Estate Agents, Home Services", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "Vyg2IkN7BVRxM1Il18Ls0A", + "name": "Mazer Wholesale", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Wholesale Stores, Shopping", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "wWWLeciVf0w-6nxu1_YosA", + "name": "Twisted Indian Wraps", + "address": "3300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9660935124, + "longitude": -75.1910107337, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Indian, Latin American, Fast Food, Food, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "uSW_RGoNOqOmtR1lchGxUg", + "name": "Chopstick House", + "address": "1626 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926769, + "longitude": -75.14621, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "LQ9dLktfxmcrfGHp931H8Q", + "name": "Cosmos Fine Nail Salon", + "address": "1308 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497519, + "longitude": -75.1624854, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nail Salons, Massage, Beauty & Spas, Waxing, Hair Removal", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "K6VliqaqiQqaVeaOXQv4wQ", + "name": "Captain Hooks", + "address": "2226 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9869459, + "longitude": -75.1564192, + "stars": 4.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Seafood Markets, Seafood, Spanish, Cajun/Creole, Specialty Food, Food, Salad, Fish & Chips, Restaurants, Food Banks, Local Services, Community Service/Non-Profit", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "lFTfSKKwouxn05_F4PGGsg", + "name": "Kusturiss Jewelers", + "address": "727 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489227, + "longitude": -75.1535576, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Jewelry", + "hours": null + }, + { + "business_id": "zTdkrKZaH9ZdDRK-TZMhnQ", + "name": "Ten Thousand Villages", + "address": "1122 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486467, + "longitude": -75.1601178, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cards & Stationery, Arts & Entertainment, Art Galleries, Home Decor, Home & Garden, Event Planning & Services, Kitchen & Bath, Shopping, Flowers & Gifts, Arts & Crafts, Gift Shops, Musical Instruments & Teachers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "U890G5oU74Dz5dOWZUL3OA", + "name": "Talk", + "address": "2121 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510946, + "longitude": -75.1765402, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Nightlife, Bars, American (New), Cocktail Bars, Restaurants", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "np5ELvlW5Q2kN7yBx9FC6Q", + "name": "Browns Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Plumbing, Landscaping, Masonry/Concrete, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "h_aOwHN2xP-0ahwqaUp_Cw", + "name": "Penn Campus Hair Skin & Nail Salon", + "address": "3730 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510595, + "longitude": -75.1985728, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons, Barbers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "XIP56Dnfod92fYrrNDOACw", + "name": "Revolution Diner", + "address": "239 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487772186, + "longitude": -75.1456730068, + "stars": 3.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "HappyHour": "True", + "Caters": "False", + "Smoking": "u'outdoor'", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Bars, Diners, Nightlife, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "iv2-IAR_ej7MnN2DZyU33Q", + "name": "Verizon", + "address": "1430 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494236, + "longitude": -75.1658843, + "stars": 2.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Home Services, Shopping, Mobile Phones, Internet Service Providers, Professional Services, Electronics", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "Cpb4oUGR5XlWIx4bNGvORw", + "name": "Prompt Cleaners", + "address": "1347 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93149, + "longitude": -75.15619, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "TQw_QdeGmMwETEflebKB-g", + "name": "Frame Works Studio & Gallery", + "address": "2103 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509604, + "longitude": -75.1760483, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Crafts, Framing, Arts & Entertainment, Shopping, Art Galleries", + "hours": { + "Monday": "11:0-17:30", + "Tuesday": "11:0-17:30", + "Wednesday": "11:0-17:30", + "Thursday": "11:0-17:30", + "Friday": "11:0-17:30", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "jNu8FaY0cFB7t07HR06g1Q", + "name": "Phone Repair Philly- University city", + "address": "3508 Market St, Ste 209", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955792, + "longitude": -75.193461, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "IT Services & Computer Repair, Local Services, Electronics Repair, Mobile Phones, Mobile Phone Repair, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "BqThEfcqQD_N-FWoVRyGiA", + "name": "The Pepper Building by Bozzuto", + "address": "1830 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945456, + "longitude": -75.172844, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "3qm2sG71yvgHJw1Sg22rEg", + "name": "PreFlight Airport Parking", + "address": "4700 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8857562145, + "longitude": -75.2312466117, + "stars": 3.5, + "review_count": 115, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Airlines, Hotels & Travel, Automotive, Parking, Transportation, Airport Shuttles", + "hours": { + "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" + } + }, + { + "business_id": "fuY-1RhqXFeZ_sh6vk4GzQ", + "name": "Four Seasons Diner", + "address": "11801 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.119922, + "longitude": -75.0173752, + "stars": 2.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch, American (New)", + "hours": { + "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:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "ovWd_lbvnK1dQSkSkQRfpg", + "name": "Benna's Cafe", + "address": "8TH And Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932994, + "longitude": -75.157736, + "stars": 4.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vegan, Breakfast & Brunch, Coffee & Tea, Food", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "bh5YCU4-_1PZdbp82FLHLg", + "name": "Rolling Thunder Skating Center", + "address": "7017 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0406258694, + "longitude": -75.0564023693, + "stars": 2.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Party Supplies, Event Planning & Services, Active Life, Skating Rinks, Amusement Parks", + "hours": { + "Monday": "18:0-21:0", + "Tuesday": "18:0-21:0", + "Wednesday": "18:0-21:0", + "Thursday": "18:0-21:0", + "Friday": "18:0-21:0", + "Saturday": "12:0-22:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "lX-H5mJYzs9i8UsPghlvCQ", + "name": "Milano's Pizzeria and Grill", + "address": "127 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489898682, + "longitude": -75.1570663452, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}" + }, + "categories": "Pizza, American (Traditional), Restaurants", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "C6mhivnB36Xtlha3juIyRw", + "name": "SP+ Parking", + "address": "925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484577, + "longitude": -75.1570557, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "A4HxaMk6EZlieG7jr6FB3w", + "name": "HaoTea", + "address": "2825 Cottman Ave, Unit 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0436742233, + "longitude": -75.0521555704, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None" + }, + "categories": "Bubble Tea, Coffee & Tea, Food", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "ElyHE8LwZgyHbrhAhEw8Gg", + "name": "Philly Diaper Service", + "address": "5426 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0295121, + "longitude": -75.175651, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shopping, Dry Cleaning & Laundry, Baby Gear & Furniture, Fashion, Children's Clothing", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-12:30", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "KrR8o8nLTrhadC1fcWx9rw", + "name": "Sophisticated Seconds", + "address": "2204 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451937, + "longitude": -75.1788656, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Thrift Stores, Fashion, Used, Vintage & Consignment, Accessories", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "_RS9siA3jqE18TsBDKDDew", + "name": "Xfinity Store by Comcast", + "address": "2329 Cottman Ave, Ste 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048233, + "longitude": -75.0562187, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Security Systems, Professional Services, Television Service Providers, Internet Service Providers", + "hours": { + "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" + } + }, + { + "business_id": "KDcKsQcDBKGaD-o5GjmdUQ", + "name": "Montway Auto Transport", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536327, + "longitude": -75.1695319, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vehicle Shipping, Automotive, Towing, Home Services, Movers", + "hours": { + "Monday": "8:0-23:0", + "Tuesday": "8:0-23:0", + "Wednesday": "8:0-23:0", + "Thursday": "8:0-23:0", + "Friday": "8:0-22:0", + "Saturday": "9:30-19:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "mw_nXxIFtt0Dp98lJGij4w", + "name": "T&A Wood Floors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Flooring, Home Services, Refinishing Services", + "hours": { + "Monday": "8:15-20:15", + "Tuesday": "8:15-20:15", + "Wednesday": "8:15-20:15", + "Thursday": "8:15-20:15", + "Friday": "8:15-20:15", + "Saturday": "8:15-20:15", + "Sunday": "8:15-12:15" + } + }, + { + "business_id": "VwZ5NDbIu3elGQI6MzcXBA", + "name": "Blue Corn", + "address": "940 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9377652566, + "longitude": -75.1583243076, + "stars": 4.5, + "review_count": 350, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "WiFi": "'free'", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Beer, Wine & Spirits, Nightlife, Restaurants, Bars, Cocktail Bars, Mexican", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "NH-LOS97SfP2aL_ZaLwUJA", + "name": "High Street Provisions", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531172679, + "longitude": -75.1927020446, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Caters": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "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": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "9ggTidLF9LPNdyWdCGtrYg", + "name": "Gooey Looie's", + "address": "231 McClellan St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925315, + "longitude": -75.1507189, + "stars": 4.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTakeOut": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Sandwiches, Cheesesteaks, Restaurants, Delis", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-19:0" + } + }, + { + "business_id": "iSSErxB_4XLkrKU0CotYMg", + "name": "Jim's Steaks", + "address": "2311 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0479243, + "longitude": -75.0584606, + "stars": 3.5, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-1:0", + "Tuesday": "9:0-1:0", + "Wednesday": "9:0-1:0", + "Thursday": "9:0-1:0", + "Friday": "9:0-3:0", + "Saturday": "9:0-3:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "1e1qCk-tKAkFn-or-o-h0A", + "name": "Sammy Chon's KTown BBQ", + "address": "911 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955447, + "longitude": -75.154839, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "True" + }, + "categories": "Ethnic Food, Food, Restaurants, Specialty Food, Korean", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "eGmbGdkhPjw2gniEIq-E6Q", + "name": "Imperial Palace Chinese Restaurant", + "address": "5921 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0435209, + "longitude": -75.1433762, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "Alcohol": "u'none'", + "Caters": "True", + "GoodForKids": "True", + "Corkage": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "HappyHour": "False", + "RestaurantsTableService": "False" + }, + "categories": "Chinese, Restaurants, American (Traditional), Fast Food", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-3:0", + "Saturday": "15:0-3:0" + } + }, + { + "business_id": "ctOithgQFA6023xcfvdhYw", + "name": "Safe Haven Security Services Inc", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Security Systems", + "hours": null + }, + { + "business_id": "HYnOTG5ss5GtKQC0obLcEQ", + "name": "Thunder Hair Salon", + "address": "135 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507223, + "longitude": -75.1720032, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "x8joRxn_TPorP1C2LSdSYg", + "name": "Soulfedphilly", + "address": "6424 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.040537, + "longitude": -75.0769706, + "stars": 3.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Seafood, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "F48wjJ_jjEz59Prh20XhRA", + "name": "Tyson Bees", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591692932, + "longitude": -75.1984187251, + "stars": 3.5, + "review_count": 147, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food Trucks, Mexican, Korean, Food, Restaurants, Food Stands", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0" + } + }, + { + "business_id": "N50m8S0vb6sx5JOXQjKNFA", + "name": "Oxford Circle Family Medicine", + "address": "5363 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0299763, + "longitude": -75.0848165, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Doctors, Family Practice", + "hours": null + }, + { + "business_id": "3e613yg9WsOZHWs562jXjA", + "name": "Salon Hairspray", + "address": "2006B Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951859, + "longitude": -75.173882, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "zYnYOzhlG9jPoX9ANecEUw", + "name": "Au Bon Pain", + "address": "8500 Essington Ave, Space C - 16, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951329, + "longitude": -75.2290123, + "stars": 2.5, + "review_count": 121, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "BikeParking": "False", + "WiFi": "u'no'" + }, + "categories": "Breakfast & Brunch, Food, Bakeries, Sandwiches, Cafes, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Vcn_cuQNKRF0eQ16TXVaXQ", + "name": "The Night Kitchen", + "address": "7725 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0683287, + "longitude": -75.1978484, + "stars": 4.5, + "review_count": 189, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Shopping, Bakeries, Restaurants, Desserts, Breakfast & Brunch, Home & Garden, Food, Kitchen & Bath, Specialty Food", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "LD9Zw55zDpA3CD2wJfhSLQ", + "name": "New Wok Chinese Restaurant", + "address": "1437 E Vernon Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.073726, + "longitude": -75.16716, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WheelchairAccessible": "False", + "HasTV": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Chinese, Cantonese, Szechuan", + "hours": { + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "HtHIZmIOEaEIKaCROPtnsA", + "name": "Mi Lah Vegetarian", + "address": "218 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491816, + "longitude": -75.1678358, + "stars": 3.5, + "review_count": 213, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Caters": "False", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False" + }, + "categories": "Vegan, Restaurants, Vegetarian", + "hours": null + }, + { + "business_id": "_jBPga10VrXcTBZoBeEbDQ", + "name": "Mt Airy Animal Hospital", + "address": "114 E Mt Airy Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0612881, + "longitude": -75.1893376, + "stars": 3.0, + "review_count": 70, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Veterinarians, Pets, Pet Sitting", + "hours": { + "Monday": "8:0-20:30", + "Tuesday": "8:30-20:30", + "Wednesday": "8:0-20:30", + "Thursday": "8:30-20:30", + "Friday": "8:0-20:30", + "Saturday": "8:30-16:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "Mfyqn9bYNL7jVsXjXH_ymg", + "name": "Tavern On the Hill", + "address": "8636 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077194, + "longitude": -75.2088314, + "stars": 4.0, + "review_count": 140, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Corkage": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "DriveThru": "False", + "DogsAllowed": "False", + "BYOB": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "Smoking": "u'no'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Nightlife, American (New), American (Traditional), Bars, Pubs, Lounges", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "15:30-21:0", + "Thursday": "15:30-21:0", + "Friday": "15:30-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "LsEXXMggkiedirw3zuqKoA", + "name": "The Fresh Works - Woodhaven Store", + "address": "4048 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0847999487, + "longitude": -74.9706085771, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "BYOB": "False", + "Corkage": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Burgers, Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "aNNCjIDnTxn3YXRa4SnzYA", + "name": "Vesper Sporting Club - Center City", + "address": "223 S Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489408, + "longitude": -75.1668194, + "stars": 3.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'dressy'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "HappyHour": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Corkage": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "AgesAllowed": "u'21plus'", + "GoodForDancing": "True", + "Smoking": "u'outdoor'", + "CoatCheck": "True", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BYOB": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dance Clubs, Arts & Entertainment, Diners, Bars, Music Venues, Restaurants, Sports Bars, American (Traditional), Breakfast & Brunch, Lounges, Cocktail Bars, Seafood, Nightlife, American (New)", + "hours": { + "Friday": "18:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "0xmV6WSKyq0SFUa_uZKocw", + "name": "Starbucks", + "address": "1002 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938269, + "longitude": -75.166936, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "HE_8eMbGMLPdhy2harLH4Q", + "name": "National Car Rental", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557516, + "longitude": -75.181994, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "muD2Qwi8m7Q0-HsQf6B-ug", + "name": "Bell's Bike Shop", + "address": "1320 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9327231, + "longitude": -75.1601187, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Sporting Goods, Local Services, Bikes, Bike Repair/Maintenance, Shopping", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "_M5y9Xx9ycT5vXzj4GhbtA", + "name": "Yogurt City", + "address": "1306 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505845, + "longitude": -75.1621717, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "4CBk3DBUgl3V9zbVBKsIqQ", + "name": "Moshi Moshi", + "address": "108 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951392, + "longitude": -75.17062, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Alcohol": "'beer_and_wine'" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "Laqf1fHOcmqe1yGZrxKw_w", + "name": "Mi Puebla Restaurant", + "address": "7157 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0599953, + "longitude": -75.1907261, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "DL9Oa0S7BSKrpFRRL8Y8Rg", + "name": "Juna Beauty Spa", + "address": "2020 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493186, + "longitude": -75.1748873, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Eyelash Service, Beauty & Spas, Hair Removal, Waxing", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "N8E9I3QbJl88_uXbVJCbOQ", + "name": "Marathon Printing", + "address": "9 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506166, + "longitude": -75.1454057, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Graphic Design, Professional Services, Shopping, Office Equipment, Printing Services, Local Services", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "ZG8r_SUVZgruFtjm4SbGJg", + "name": "Patroit Parking", + "address": "1305 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492913604, + "longitude": -75.162716014, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "nampgzRa90YQd9P2pdi6Qw", + "name": "McDonald's", + "address": "1801 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9239989, + "longitude": -75.1425599, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "False", + "BikeParking": "False" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": null + }, + { + "business_id": "g4cJA7iabhQywVCDytdUJw", + "name": "Green Soul", + "address": "7169 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0637135, + "longitude": -75.1527502, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False" + }, + "categories": "Sandwiches, Soul Food, Restaurants, Juice Bars & Smoothies, Food, Cafes, Vegetarian", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "Mhqq0BaP2CinaPiZCYWVOw", + "name": "Kung Fu Tea", + "address": "2222 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0485579811, + "longitude": -75.0619283618, + "stars": 3.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DriveThru": "False" + }, + "categories": "Food, Bubble Tea, Coffee & Tea, Juice Bars & Smoothies", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "3ODVrxBUJh7qmHv64PyssA", + "name": "CSL Plasma", + "address": "101 E Olney Ave, Unit 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0386706638, + "longitude": -75.1165676495, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Blood & Plasma Donation Centers, Health & Medical", + "hours": { + "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-14:30", + "Sunday": "7:0-14:30" + } + }, + { + "business_id": "2TtkreVRud9P8RcU8Lw3pg", + "name": "HipCityVeg", + "address": "232 N Radnor Chester Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19087", + "latitude": 40.0414717, + "longitude": -75.3636467, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Burgers, Vegetarian, Sandwiches", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "0IFmbpwP1JiWVCG7z9KORw", + "name": "Mazza Healthy Mediteranean", + "address": "1100 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9223166, + "longitude": -75.1648601, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Mediterranean", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "ZCDMf4j6U4VxnNgPzJdeFA", + "name": "The Wanamaker Eagle", + "address": "1300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9514445941, + "longitude": -75.1621564708, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "hmC9CBcTSLc3P1G3UFhqqw", + "name": "Anthony L Farrow, DMD, MS - Farrow Orthodontics", + "address": "1601 Walnut St, Ste 1315", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Orthodontists, Dentists", + "hours": { + "Monday": "14:30-18:0", + "Wednesday": "14:30-18:0", + "Friday": "8:0-12:0" + } + }, + { + "business_id": "utexzjycaPotf6L0kABsdw", + "name": "Bank of America Financial Center", + "address": "4610 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0025023566, + "longitude": -75.22327716, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Banks & Credit Unions, Financial Services, Home Services, Real Estate, Mortgage Brokers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "ieedmDsMCAQa6iYdiDotzA", + "name": "Vida Apartments", + "address": "235 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484059, + "longitude": -75.1661336, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "vtRXIGKj4Jv8B7ysC7q1Dg", + "name": "BestDentist4Kids - Philadelphia", + "address": "9815 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.085696, + "longitude": -75.022141, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, General Dentistry, Health & Medical, Cosmetic Dentists, Pediatric Dentists", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-19:30", + "Thursday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "0De2juaQqHNUYs-vNEj9RA", + "name": "CYM Island Kitchen", + "address": "4658 G St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0196839, + "longitude": -75.1107755, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BYOB": "False", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'" + }, + "categories": "Spanish, Caribbean, Restaurants, Latin American", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "xXFSEWRO0012YBbdoJ1kRw", + "name": "Coeur", + "address": "824 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938845, + "longitude": -75.1564754, + "stars": 4.0, + "review_count": 55, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "GoodForDancing": "False", + "Smoking": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WiFi": "'free'", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Bars, American (New), Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "jyBbsc6LrIwdJYD9jFuiaw", + "name": "Aldo and Manny Pizza and Pasta", + "address": "1431 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9547868, + "longitude": -75.1644935, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Corkage": "False", + "BYOB": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Fast Food, Restaurants, Specialty Food, Food, American (Traditional), Pizza, Italian, Pasta Shops", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "dzNHPZmXHFc6_6BZQVYAeA", + "name": "SoBol-University City", + "address": "3736 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9512731815, + "longitude": -75.1979261264, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Food, Acai Bowls, Restaurants, Wraps, Cafes, Juice Bars & Smoothies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "ErJ9NtMXt-WJZV_TVZ08Ag", + "name": "Green Garden", + "address": "237 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9471663, + "longitude": -75.1573928, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsReservations": "True" + }, + "categories": "Sushi Bars, Chinese, Soup, Seafood, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "lAni_2IBdJOUMGXYXSmU2g", + "name": "Applebee's Grill + Bar", + "address": "215 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94883, + "longitude": -75.165919, + "stars": 2.0, + "review_count": 89, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "GoodForDancing": "False", + "RestaurantsDelivery": "None", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "American (New), Salad, Restaurants, Bars, American (Traditional), Nightlife, Chicken Wings, Burgers, Sports Bars, Steakhouses", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "mUrjFNvYpR1dXXn9Q-qSEQ", + "name": "Precious Pearls Dental Spa", + "address": "241 S 6th St, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9462701, + "longitude": -75.1513068, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "10:0-16:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:0-16:0", + "Friday": "8:0-12:0" + } + }, + { + "business_id": "W4gV7soSZ62MopA8IUP_CA", + "name": "DIRECTV", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.054057, + "longitude": -75.1399443, + "stars": 1.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Electronics, Shopping, Television Service Providers, Internet Service Providers, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "XTq8JInvlc_PsPEHtvImYg", + "name": "Bella Vista Lash Lounge", + "address": "529 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351749, + "longitude": -75.1532954, + "stars": 5.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Removal, Beauty & Spas, Waxing, Eyebrow Services, Eyelash Service, Specialty Schools, Education", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "WHxEdA-jbjs16-_jUslV4g", + "name": "Woven Treasures", + "address": "2221 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451865, + "longitude": -75.1794128, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Antiques, Shopping", + "hours": null + }, + { + "business_id": "Uu0r8fPGNewvhBpZkacLuQ", + "name": "Iannello Bros Sunoco", + "address": "2700 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.916813, + "longitude": -75.17365, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Automotive", + "hours": null + }, + { + "business_id": "cxEqo5GuO0FuF4O_gUYYFw", + "name": "South Street Market", + "address": "746 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422782, + "longitude": -75.1553977, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Shopping, Convenience Stores, Vape Shops", + "hours": null + }, + { + "business_id": "0ak-7uV9Nb7nF_l-mMCysA", + "name": "Oishii Pokรฉ", + "address": "938 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532717, + "longitude": -75.1562016, + "stars": 4.0, + "review_count": 228, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "HasTV": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Mexican, Food, Hawaiian, Poke, Japanese", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "uXdA2sznJk30qnrEFX7AeA", + "name": "Pearls Caribbean and Soul Food", + "address": "428 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0361874, + "longitude": -75.1299277, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "wUridsxK5ilsd8cJ2lIFQQ", + "name": "Fishtown Jewelers", + "address": "1617 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9744192, + "longitude": -75.133012, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True" + }, + "categories": "Jewelry Repair, Local Services, Watch Repair, Shopping, Jewelry", + "hours": null + }, + { + "business_id": "KsqeNYvoUyOJdSzME6jIbw", + "name": "Holiday Drive In Cleaners", + "address": "6511 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.038717, + "longitude": -75.2228827, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "CULJob5q-m4Y9NX-AGG_oA", + "name": "Mike's Furniture Refinishing", + "address": "5101 Comly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0122152, + "longitude": -75.0539962, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Antiques, Home Services, Local Services, Refinishing Services, Contractors, Shopping, Furniture Repair", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "U6D2ZyFsZw15-3RtMalq8Q", + "name": "Lake Blue Sushi & Cuisine", + "address": "8 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504830986, + "longitude": -75.1457890123, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "NoiseLevel": "'average'", + "GoodForKids": "False", + "DogsAllowed": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Japanese, Seafood, Sushi Bars, Breakfast & Brunch, American (Traditional)", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0" + } + }, + { + "business_id": "2QOTAx4y8zfS5-ivV_xmoA", + "name": "PetSmart", + "address": "1415 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938214, + "longitude": -75.1677643, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Groomers, Pets, Pet Training, Pet Stores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "0zQtELENNywry4zSxQBWlg", + "name": "First Street Steaks", + "address": "1204 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9691698, + "longitude": -75.1361942, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True" + }, + "categories": "Breakfast & Brunch, Sandwiches, Cheesesteaks, Restaurants", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "V8UrwwjtUw_rw_Un2gjGVg", + "name": "Lady Love", + "address": "510 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417715, + "longitude": -75.1512319, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Fashion, Lingerie, Adult", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Gbfw2LQJGjrS6eHSsGo_VA", + "name": "Connelly's Safe & Sound Home Inspections", + "address": "1735 Market St, Ste A-442", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Inspectors, Home Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "Hvg95-6XJiE3B8WF10XAGg", + "name": "Fabric Row", + "address": "S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940488, + "longitude": -75.149633, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Shopping, Arts & Crafts", + "hours": null + }, + { + "business_id": "NWThkWV2w9WqWsXIf9DQuQ", + "name": "Aku's Kitchen", + "address": "5938 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9601633, + "longitude": -75.2406183, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False" + }, + "categories": "American (Traditional), Chicken Wings, Caribbean, African, Restaurants", + "hours": { + "Saturday": "12:0-20:0", + "Sunday": "0:0-20:0" + } + }, + { + "business_id": "Gm4JTabNe81qEL5Lf9NcCQ", + "name": "China Star", + "address": "3084 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9918037, + "longitude": -75.1131361, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "XVg9qqPjoes6f98yjboDFg", + "name": "Unclaimed Diamonds", + "address": "113 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490131, + "longitude": -75.1536488, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Jewelry, Watches, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "h9JsX6EAJ9TokfmoIbmWhQ", + "name": "Misso", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.946666, + "longitude": -75.163993, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Specialty Food, Sushi Bars, Ethnic Food, Food", + "hours": null + }, + { + "business_id": "vrpwZHVR0H93peg03Zlnfw", + "name": "Towne Pizza Sub Shop", + "address": "1900 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9465, + "longitude": -75.1732, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "L4G5ABxhYHQAKIcT0818_A", + "name": "Bob's Diner", + "address": "6053 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.032919, + "longitude": -75.21426, + "stars": 3.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BikeParking": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False" + }, + "categories": "Breakfast & Brunch, Diners, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "8:0-15:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "FFHTUPo0QTSIylLCCe27ig", + "name": "Cucina Maria", + "address": "768 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9397045222, + "longitude": -75.1562596858, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Italian, Seafood", + "hours": { + "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" + } + }, + { + "business_id": "AjqPc3btZisOvPBErFSo0A", + "name": "Manayunk Timber", + "address": "5100 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0368317, + "longitude": -75.2385627, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Building Supplies", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "U5IjJwFrgCs8qD3ZA3shpg", + "name": "Beck Family Roofing", + "address": "4320 E Wingohocking St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0153313913, + "longitude": -75.092653675, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Siding, Snow Removal, Roofing, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "qFHIiXB-HBQrHCKLUtLRpQ", + "name": "The Children's Place", + "address": "1724 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500853, + "longitude": -75.1703258, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Children's Clothing, Fashion, Shopping", + "hours": null + }, + { + "business_id": "uAJ_rq4ZQUgERalFBO_zlQ", + "name": "Olive Garden Italian Restaurant", + "address": "9280 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.078537, + "longitude": -75.032031, + "stars": 3.0, + "review_count": 129, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HappyHour": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "CoatCheck": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Restaurants, Bars, Nightlife, Soup, Italian, Salad, Wine Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Zm0rXfbdXHMuj1NR4tr8zg", + "name": "Casa Mรฉxico", + "address": "1134 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9354931854, + "longitude": -75.158744, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0" + } + }, + { + "business_id": "gkqfNyv3D84B0WR5GZOpZQ", + "name": "Originals Italian Restaurant & Bar", + "address": "9436 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.049706, + "longitude": -74.989807, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Food Delivery Services, Pizza, Restaurants, Sandwiches, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "4Mp9g8_Qm69KMHtWtkN5BA", + "name": "Juniata Golf Club", + "address": "1391 E Cayuga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0165748179, + "longitude": -75.1019701564, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Active Life, Golf, Venues & Event Spaces, Local Flavor, Event Planning & Services", + "hours": null + }, + { + "business_id": "5nCptLGKDMqCYT52nqzpvQ", + "name": "Bob's Bait & Tackle", + "address": "4863 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0144308, + "longitude": -75.2044773, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Boating, Active Life, Fishing, Amusement Parks, Shopping, Hunting & Fishing Supplies, Sporting Goods", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "7:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "AphRtJDfaoKf0p0VOr0Btg", + "name": "Hertz Car Sales Philadelphia", + "address": "6815 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.906198, + "longitude": -75.2250251, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Automotive", + "hours": { + "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": "9:0-18:0" + } + }, + { + "business_id": "rjjK00bgGHNOJWMgUXT-ng", + "name": "Beijing Panda", + "address": "3901 Conshohocken Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0034, + "longitude": -75.2067881, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "VSc5hpsT_CCt_Hvj92mbPg", + "name": "Pizzata Pizzeria", + "address": "240 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493452, + "longitude": -75.1778786, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "61x8v5Yq3zzoaKkMz5SJqA", + "name": "Kurths Sea Food", + "address": "901 W Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9852893, + "longitude": -75.1478412, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "-0TffRSXXIlBYVbb5AwfTg", + "name": "IndeBlue Modern Indian Food & Spirits", + "address": "205 South 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485078263, + "longitude": -75.1619688173, + "stars": 4.5, + "review_count": 1097, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "CoatCheck": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "Corkage": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "False" + }, + "categories": "Cocktail Bars, Food Delivery Services, Nightlife, Breakfast & Brunch, Food, Bars, Event Planning & Services, Caterers, Restaurants, Indian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "uHEpMZW4bric4RycY1jfzQ", + "name": "Abundant Home Inspection Services", + "address": "7715 Crittenden St, Ste 315", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.060145, + "longitude": -75.177681, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Home Inspectors", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "9:0-17:0", + "Sunday": "9:30-14:30" + } + }, + { + "business_id": "RpV_XV8XcCz-p9lhPPRUMw", + "name": "St Christopher's Hospital For Children Physican Refer", + "address": "Erie Avenue At Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0075861, + "longitude": -75.1273265, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "VKgoOPzznGGOkfypgwC4nw", + "name": "Syrenka Luncheonette", + "address": "3173 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9826151, + "longitude": -75.1016863, + "stars": 4.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False" + }, + "categories": "Restaurants, Polish, American (Traditional)", + "hours": { + "Monday": "11:30-18:0", + "Tuesday": "11:30-18:0", + "Wednesday": "11:30-18:0", + "Thursday": "11:30-18:0", + "Friday": "11:30-18:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "qTb5bEgZdrwx2A3mNVK5mg", + "name": "Philadelphia Runner", + "address": "1711 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502630719, + "longitude": -75.1695643706, + "stars": 4.5, + "review_count": 124, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Shoe Stores, Shopping, Sports Wear, Fashion, Sporting Goods", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "10:0-14:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "P4vdu-vKODLmeOl8jQciFQ", + "name": "PhilaPets", + "address": "2101 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9489638214, + "longitude": -75.1721477509, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Sitting, Pet Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "bUrLq4G3ZSvBzm2hBQKYnA", + "name": "Philly AIDS Thrift At Giovanni's Room", + "address": "345 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9451733, + "longitude": -75.1612188, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "WheelchairAccessible": "False" + }, + "categories": "Bookstores, Shopping, Flea Markets, Newspapers & Magazines, Books, Mags, Music & Video, Thrift Stores", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "eEi1L3HukfplQJE9h7oXYA", + "name": "Laurel Hill Gardens", + "address": "8125 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0729347, + "longitude": -75.2022092, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nurseries & Gardening, Home & Garden, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "LaqJHvI5NCKYAFvh_G88_Q", + "name": "EAT Cafรฉ", + "address": "3820 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9604001096, + "longitude": -75.1977940276, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'" + }, + "categories": "Cafes, Desserts, Local Services, Community Service/Non-Profit, Sandwiches, Food, Restaurants", + "hours": { + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-21:0" + } + }, + { + "business_id": "bwgK5d9oT2sUcvyBOsTREQ", + "name": "Sky Cafe", + "address": "1122-38 Washington Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365822, + "longitude": -75.1626553, + "stars": 4.5, + "review_count": 224, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "Caters": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Noodles, Restaurants, Indonesian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "Q5-CkgsvtlRF5GphtoBFRQ", + "name": "Live Casino Hotel", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Hotels, Hotels & Travel, Burgers, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "o_cLJE95qEWK2kO_cBFcLQ", + "name": "Feastivities Events", + "address": "440 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.043199, + "longitude": -75.23521, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services, Party & Event Planning", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "j-qtdD55OLfSqfsWuQTDJg", + "name": "Parc", + "address": "227 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9491724, + "longitude": -75.1707273, + "stars": 4.0, + "review_count": 2761, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Restaurants, French, Wine Bars, Nightlife, American (New), Bars, Cafes, Breakfast & Brunch", + "hours": { + "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-20:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "UHEgg86m3wyN4Q6_KYJ14A", + "name": "31 Brewerytown", + "address": "3100 W Thompson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.97664, + "longitude": -75.186766, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "66osegUkMxG87z4pDyC-RQ", + "name": "Chestnut Hill Village", + "address": "7715 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073393, + "longitude": -75.193685, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "-5LzSdkohuiRPOLi0GGCJQ", + "name": "Giovanni & Pileggi", + "address": "308 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94607, + "longitude": -75.16139, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:30-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "YzLoOyrhwDP4Z_mAPC0VTQ", + "name": "Cardenas Oil & Vinegar Taproom", + "address": "942 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93797, + "longitude": -75.158131, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Specialty Food, Olive Oil", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "8:0-15:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "cAQf9b0jmPIQaTyj-vm81w", + "name": "Germantown Jerk Hut", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0601522, + "longitude": -75.1907202, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Food Trucks, Caribbean, Restaurants, Food, Comfort Food", + "hours": { + "Monday": "14:0-21:0", + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "14:0-21:0" + } + }, + { + "business_id": "CWuEJwwbQeshZfXJ0YhOzQ", + "name": "Philadelphia Acupuncture Clinic", + "address": "526 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408905, + "longitude": -75.1517848, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Acupuncture", + "hours": null + }, + { + "business_id": "IIJD7kVuO9k3VCj4hVjh3w", + "name": "Reen's Delicatessen", + "address": "12319 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.096308, + "longitude": -74.975791, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "N2kFhCeHWw5B9nxjtkgotQ", + "name": "Reale's Restaurant & Bar", + "address": "7233 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0361944, + "longitude": -75.0412414, + "stars": 3.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "CoatCheck": "False", + "WiFi": "'free'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Sports Bars, American (Traditional), Nightlife, Restaurants, Seafood, Bars", + "hours": null + }, + { + "business_id": "G3Py_rBYU1R0_QPzo64tNA", + "name": "Barbour", + "address": "1517 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498985, + "longitude": -75.1667828, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Men's Clothing, Fashion, Women's Clothing, Children's Clothing", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "97RzzkvSQynCaUUMLunxEw", + "name": "Cellular Inc", + "address": "642 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93532, + "longitude": -75.155322, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Mobile Phones, Shopping, Local Services, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "4_-IcMpkF_sBRHomWZHNzA", + "name": "Bistrot La Minette", + "address": "623 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414622968, + "longitude": -75.1523852348, + "stars": 4.5, + "review_count": 619, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Caters": "False", + "DogsAllowed": "False" + }, + "categories": "Restaurants, French, Breakfast & Brunch", + "hours": { + "Wednesday": "17:30-21:30", + "Thursday": "17:30-22:30", + "Friday": "17:30-22:30", + "Saturday": "17:30-22:30", + "Sunday": "17:30-21:30" + } + }, + { + "business_id": "vSeqFqyLIxBeKNAbAQzmFg", + "name": "Alternative Healthcare for Women", + "address": "133 W Phil-Ellena St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.049534, + "longitude": -75.187733, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Health & Medical, Doctors, Reiki, Counseling & Mental Health", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "g3VTofBULAB3bld7IzmJMg", + "name": "Simon's Kosher", + "address": "6926 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.042695, + "longitude": -75.063771, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Grocery, Food, Restaurants, Kosher, Butcher", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-14:0", + "Sunday": "7:30-16:0" + } + }, + { + "business_id": "SVf23pjKERkedqCdWl6ECA", + "name": "Teresa's Mesa", + "address": "727 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394833, + "longitude": -75.145839, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "keugb9sh5gfaInxNHRncXQ", + "name": "Joyce Leslie", + "address": "2329 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0480168, + "longitude": -75.0584656, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Accessories, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "RAucBixPYsidSxjtl6VioQ", + "name": "Mexican Post Express", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9561659865, + "longitude": -75.166372971, + "stars": 3.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Print Media, Mexican, Restaurants, Mass Media", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "ZIn95Xct-BCBJm8rrfRBXw", + "name": "Suitsupply - Philadelphia", + "address": "1601 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948829, + "longitude": -75.167882, + "stars": 4.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bespoke Clothing, Shopping, Fashion, Men's Clothing, Formal Wear", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "kRFfNAhxP1FuNRALuBbFyg", + "name": "Wills EyeWear", + "address": "840 Walnut St, Fl 12", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478842295, + "longitude": -75.155292226, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Eyewear & Opticians, Sunglasses, Health & Medical, Shopping, Optometrists", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "IRGEHIPSekadwUGAmVA5sw", + "name": "Be Well with Beth", + "address": "1901 S 9th St, Ste 508", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925192, + "longitude": -75.1600816, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Trainers, Nutritionists, Personal Shopping, Fitness & Instruction, Shopping, Active Life, Dietitians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:15-12:0", + "Wednesday": "13:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "i4ym2Gg5-ozD52ZjgDQyNw", + "name": "Greenman's Deli", + "address": "1900 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "Bgbi-v7S0vW7WumMuR7RoQ", + "name": "solidcore - Rittenhouse", + "address": "2116 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522689, + "longitude": -75.1768138, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "DogsAllowed": "False" + }, + "categories": "Fitness & Instruction, Pilates, Active Life, Boot Camps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-19:30", + "Wednesday": "7:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "7:0-19:30", + "Saturday": "7:0-12:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "KGzDbWYbVRItq7_ubPBEHQ", + "name": "DP Dough", + "address": "33 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9561884, + "longitude": -75.2020815, + "stars": 3.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Chicken Wings, Food, Pizza, Food Delivery Services, Restaurants", + "hours": { + "Monday": "17:0-3:30", + "Tuesday": "17:0-3:30", + "Wednesday": "17:0-3:30", + "Thursday": "17:0-3:30", + "Friday": "11:0-3:30", + "Saturday": "11:0-3:30", + "Sunday": "11:0-3:30" + } + }, + { + "business_id": "GS2BewsfyISrKQXjXllmbg", + "name": "Jefferson Urgent Care - Northeast Philadelphia", + "address": "2451 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0804412, + "longitude": -75.0263406, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Urgent Care, Doctors, Occupational Therapy, Family Practice, Health & Medical, Walk-in Clinics, Medical Centers", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "EJ7Tp_KdGx52wSu0_7gbEQ", + "name": "Merriam Theater At the University of the Arts", + "address": "250 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9476739, + "longitude": -75.1646358, + "stars": 2.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Colleges & Universities, Education, Cinema, Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "Tk5UxXWUcBog8_oOcH_gzw", + "name": "Iron Tower Deli Shop", + "address": "56 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9524255, + "longitude": -75.1549356, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Sandwiches, Delis, Restaurants", + "hours": null + }, + { + "business_id": "iUZEGx29miZObLd6_lt7Vg", + "name": "Sabrina's Cafรฉ", + "address": "1804 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9604147854, + "longitude": -75.1686044902, + "stars": 4.0, + "review_count": 1721, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Vegetarian, Cafes, American (New), Food, Diners, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "JiLdxFx_nY5HoQNJbMSh4Q", + "name": "La Casa Del Mofongo", + "address": "4638 N 5st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.022133, + "longitude": -75.13389, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Latin American, Soup, Caribbean, Food, Juice Bars & Smoothies, Sandwiches", + "hours": null + }, + { + "business_id": "IQw4uJsiSzLenDFVnM-DLg", + "name": "Swiss Haus Bakery", + "address": "313 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503831, + "longitude": -75.1461478, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "JiDH1O4t2nE3ibkHzmzRrg", + "name": "dd's DISCOUNTS", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.900675773, + "longitude": -75.2414602999, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Women's Clothing, Home & Garden, Discount Store, Home Decor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Rq0x-yysyzI1_g2rurlI-A", + "name": "Printheadz", + "address": "314 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9583195, + "longitude": -75.1587498, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Personal Shopping, Local Services, Graphic Design, Professional Services, Screen Printing/T-Shirt Printing, Printing Services", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:30" + } + }, + { + "business_id": "WIeAfvm5pcjtcWo7DdQeWA", + "name": "The Naked Peach Waxing Boutique", + "address": "1725 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9445147, + "longitude": -75.1711549, + "stars": 4.0, + "review_count": 261, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Skin Care, Waxing, Eyelash Service, Hair Removal", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "f3ynsk2E5YvtFqxCTi1Djw", + "name": "Red Lounge", + "address": "1100 S Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369955379, + "longitude": -75.1617139578, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False" + }, + "categories": "Karaoke, Nightlife, Bars, Dance Clubs, Lounges", + "hours": { + "Monday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "oi5pA2QbC7An6uLuLMuVMw", + "name": "Wells Fargo Bank", + "address": "1501 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.951199, + "longitude": -75.1658377, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "21t7d6M9YQ-XLxho0PPhGw", + "name": "Peter Macleod For Hire", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Flooring, Handyman, Contractors, Home Services, Painters", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "hZrDUZmR-qh4ZLIvHee_LA", + "name": "Hair Jazz", + "address": "5546 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0249899, + "longitude": -75.2086072, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "bDr66nlhvR1t63yMUSgZ1A", + "name": "Crรชpe Town", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949028, + "longitude": -75.164482, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False" + }, + "categories": "Creperies, Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "W6MhCKlOH0TlonkEH4kfMw", + "name": "Aspire Rx Pharmacy", + "address": "4307 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539236, + "longitude": -75.2096903, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "0swbH3HFkIX9SvMkRwCMSA", + "name": "A Taste of Philly Chestnut Hill", + "address": "8513 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0762591, + "longitude": -75.2067882, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bakeries, Food", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "8:0-17:30", + "Sunday": "9:0-16:30" + } + }, + { + "business_id": "v0wsO-FEA9m7j14mUdE6Wg", + "name": "Ben the Mover Guy", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9600168, + "longitude": -75.2274866, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Movers, Home Services, Local Services, Couriers & Delivery Services, Furniture Assembly, Junk Removal & Hauling", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "UDD4X5TLUMARishbXUQA2w", + "name": "Cadillac Grille", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "False", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Steakhouses", + "hours": null + }, + { + "business_id": "qkpxKfh3IHJBYIRBITaL0Q", + "name": "Todd Levinson - Keller Williams", + "address": "1619 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate Agents, Real Estate", + "hours": null + }, + { + "business_id": "0Vlu-fEXfCJnX2JKZG1-CQ", + "name": "Flying Fish Seafood", + "address": "2652 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9159511, + "longitude": -75.1630839, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Specialty Food, Seafood Markets", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "LnmNc3u2811-zXuboLcLjQ", + "name": "Franklin Court", + "address": "316 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9500843, + "longitude": -75.1465316, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government", + "hours": null + }, + { + "business_id": "9JSv_XGIjTt_uwE6fVctMQ", + "name": "Marathon", + "address": "1338 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504196, + "longitude": -75.1635566, + "stars": 2.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0" + } + }, + { + "business_id": "3LD2JUarSKmBo3ovENj9gQ", + "name": "United Bus & Travel", + "address": "860 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9549789, + "longitude": -75.1538089, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Buses", + "hours": null + }, + { + "business_id": "_ue6jZ0RCen2FZk045GvbA", + "name": "The Little Nail Boutique", + "address": "6027 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0455965, + "longitude": -75.099928, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Nail Salons, Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "tUdahc2Pb6TJYy3ja_pvoA", + "name": "Tom's Trust Deli", + "address": "26th & Brown Streets", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9703081, + "longitude": -75.1796534, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Convenience Stores, Food", + "hours": null + }, + { + "business_id": "u-mjpAKElhdZ-ZqhEjwcPw", + "name": "The Strip Joint", + "address": "918 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.940805, + "longitude": -75.179773, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Steakhouses, Restaurants, American (Traditional), Breakfast & Brunch", + "hours": null + }, + { + "business_id": "HMlHYl06c8pzNqFNDMAFuw", + "name": "Made Institute", + "address": "448 N 10th St, Studio 501, First Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9604689, + "longitude": -75.1549859, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Specialty Schools, Special Education, Education", + "hours": null + }, + { + "business_id": "wbSbQhT70kIpJ3yChtybQA", + "name": "Poseybooth", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party Supplies, Event Photography, Photographers, Party Equipment Rentals, Event Planning & Services, Photo Booth Rentals", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "nEVEFZP9gdoNbucjv41EbQ", + "name": "Northeastern Hospital", + "address": "2301 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9897607894, + "longitude": -75.1064955021, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Hospitals", + "hours": null + }, + { + "business_id": "JMPZQKPPQI15C8FnACKk-A", + "name": "Ben & Jerryโ€™s", + "address": "1726 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507760179, + "longitude": -75.1698262, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Event Planning & Services, Ice Cream & Frozen Yogurt, Food, Custom Cakes, Desserts, Caterers", + "hours": { + "Monday": "14:0-20:0", + "Tuesday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0", + "Saturday": "14:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "1fGaY2WlGv2l4as6UkMFrg", + "name": "The Trestle Inn", + "address": "339 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9588257, + "longitude": -75.1566756, + "stars": 4.0, + "review_count": 203, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Lounges, Bars, Restaurants, Cocktail Bars, Whiskey Bars, Nightlife, Dance Clubs, American (Traditional)", + "hours": { + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "VGnkape316lXK3X3zZ4gMQ", + "name": "Toppers Spa/Salon - Philadelphia", + "address": "1528 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494913, + "longitude": -75.1673110845, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Nail Salons, Massage, Beauty & Spas, Day Spas", + "hours": { + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-18:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "KlylNgeREG9_aPt84lbgSg", + "name": "Brown Betty Petite", + "address": "1625 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530658, + "longitude": -75.1682739745, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Desserts", + "hours": null + }, + { + "business_id": "wpLrLT6fGsStEZkatC_k6w", + "name": "Old City Jewish Arts Center", + "address": "119 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9526958, + "longitude": -75.1448762, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Entertainment, Religious Organizations, Shopping, Art Galleries", + "hours": { + "Tuesday": "13:0-18:0", + "Wednesday": "13:0-18:0", + "Thursday": "13:0-18:0" + } + }, + { + "business_id": "CYEX-wXbW2bZDxk7nH60Vg", + "name": "M & M Restaurant", + "address": "2736 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9831358, + "longitude": -75.1018987, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "Caters": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, Polish", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "bc0ZNDZfeMRdGl9S0vkfZA", + "name": "Eddie's Pizza", + "address": "1200 W Berks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9807838, + "longitude": -75.1533257, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "None" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-18:30" + } + }, + { + "business_id": "v7KzbLoHo9zC2xRpWEEp0A", + "name": "A Mandarin Restaurant", + "address": "2102 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521517, + "longitude": -75.1757544, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Thai, Restaurants, Chinese", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "R2sUttu6kl5on4k1khkDqg", + "name": "Sal's Produce Plus", + "address": "676 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9664186, + "longitude": -75.160911, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Food, Specialty Food, Fruits & Veggies, Restaurants, Seafood", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "hSf_7XEagkJ3j5Q4mUupwg", + "name": "Torresdale Appliance", + "address": "4751 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0114315, + "longitude": -75.0754905, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Appliances, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "msQaMUQ6l2I6E_BzjGXeEw", + "name": "Doc Watson's Pub", + "address": "216 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480983, + "longitude": -75.1592326, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Dive Bars, Nightlife, Restaurants, Bars, Pubs", + "hours": null + }, + { + "business_id": "Al8y5FTs9tW5VsxTVy9ZMg", + "name": "Alyan's Restaurant", + "address": "603 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414081509, + "longitude": -75.1490631994, + "stars": 4.0, + "review_count": 289, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Middle Eastern, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "of-GVqY0G_UDHXT9Xg_ADQ", + "name": "Charlie Was a Sinner", + "address": "131 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495123, + "longitude": -75.1617661, + "stars": 4.0, + "review_count": 1039, + "is_open": 1, + "attributes": { + "HasTV": "False", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "HappyHour": "True", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "ByAppointmentOnly": "False" + }, + "categories": "Bars, Nightlife, Kosher, Burgers, Tapas/Small Plates, American (Traditional), Vegan, Seafood, Cocktail Bars, Restaurants, Vegetarian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "LB19zg7guFOqO1KatskCUg", + "name": "Millennium Nails and Spa", + "address": "8000 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0707695, + "longitude": -75.2009769, + "stars": 3.5, + "review_count": 101, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Nail Salons, Massage, Hair Removal, Beauty & Spas, Skin Care, Waxing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "cGHnqrUiSMW8aMJ9mg8e1g", + "name": "Abbraccio", + "address": "820 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483438, + "longitude": -75.2167974, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "RestaurantsReservations": "True" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "Sv1MEZP-mMfp8SmE0hwYEA", + "name": "Terakawa Ramen", + "address": "204 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955402, + "longitude": -75.154484, + "stars": 4.5, + "review_count": 1693, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Japanese, Ramen, Ethnic Food, Restaurants, Local Flavor, Food, Specialty Food", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "EMp87GsYkVdwHftE7Ar2_w", + "name": "Cosmic Cafรฉ and Ciderhouse", + "address": "1 Boathouse Row", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9695828, + "longitude": -75.1876317, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Bars, Nightlife, Cafes, Restaurants, Breakfast & Brunch, Beer Bar", + "hours": { + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "Wme70zEmBZ9IN-Y052sV-w", + "name": "Fellah Auto Group", + "address": "1501 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0564935, + "longitude": -75.0744838, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Used Car Dealers, Car Dealers, Auto Repair, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "K_d3vDN8nZ9HX0z7d9eoGg", + "name": "Gracie Academy Philadelphia", + "address": "1231 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942684, + "longitude": -75.1629995, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Martial Arts, Brazilian Jiu-jitsu, Sports Clubs, Active Life", + "hours": { + "Monday": "18:0-20:30", + "Tuesday": "17:0-20:0", + "Wednesday": "18:0-20:30", + "Thursday": "17:0-20:0", + "Friday": "18:0-20:0", + "Saturday": "11:0-13:30", + "Sunday": "11:0-13:30" + } + }, + { + "business_id": "3pq60g2sQ-GD-gBm_UP8Qg", + "name": "Lost Bread", + "address": "2218 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508662198, + "longitude": -75.1783654431, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Bagels, Bakeries, Food, Pizza, Restaurants", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "bFJy48-ieXbIeDR8Q1I79Q", + "name": "Feretti Motors", + "address": "10094 Sandmeyer Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1139639, + "longitude": -75.0371113, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Automotive", + "hours": null + }, + { + "business_id": "GCbbAqY05IjvBv9ZkZCTwg", + "name": "Guaricela's Shoe Repair", + "address": "275 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9472792, + "longitude": -75.166249, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "LDHcOpJHJYocygDRzUZehQ", + "name": "Union Shoe Service", + "address": "240 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473577, + "longitude": -75.1593868, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair", + "hours": null + }, + { + "business_id": "uk-sMO4ndYc47nYDzNLaxg", + "name": "Einstein Physicians Port Richmond", + "address": "3300 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9898155, + "longitude": -75.1038829, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Family Practice", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "6x9hcZ1CJ4S9avBgPGS7-Q", + "name": "Johnny Brenda's", + "address": "1201 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9690922, + "longitude": -75.134266, + "stars": 4.0, + "review_count": 556, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "HasTV": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Corkage": "False", + "CoatCheck": "False", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BYOB": "False", + "BYOBCorkage": "'no'", + "DogsAllowed": "True", + "Smoking": "u'no'", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': True, u'dessert': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Seafood, Greek, Food, Music Venues, American (New), Sandwiches, Breakfast & Brunch, Beer, Wine & Spirits, Restaurants, Bars, Arts & Entertainment, Nightlife, Burgers, Gastropubs", + "hours": { + "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" + } + }, + { + "business_id": "b0YICdDCw8Ck6hJPc1Z5HQ", + "name": "Kanella South", + "address": "757 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383361, + "longitude": -75.1443454, + "stars": 4.5, + "review_count": 249, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "CoatCheck": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "False" + }, + "categories": "Bars, Restaurants, Greek, Nightlife, Mediterranean", + "hours": { + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "lpYt3GU2VCWNGVPDAcavlg", + "name": "Stone Bridge Wellness", + "address": "1528 Walnut St, Ste 1812", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Acupuncture, Massage Therapy, Health & Medical, Chiropractors", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "0:0-19:0", + "Wednesday": "9:0-14:0", + "Thursday": "0:0-19:0", + "Friday": "10:0-14:0" + } + }, + { + "business_id": "s5wxHX-OEUctxVxgwTbvpw", + "name": "Piper Boutique", + "address": "140 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531532277, + "longitude": -75.1921917525, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Women's Clothing, Shopping, Fashion", + "hours": null + }, + { + "business_id": "uE_39C9Mi51XfZv68M253g", + "name": "Ashton Cigar Bar", + "address": "1522 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949424, + "longitude": -75.167122, + "stars": 3.5, + "review_count": 215, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "WiFi": "'free'", + "DogsAllowed": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Whiskey Bars, Cocktail Bars, Shopping, Nightlife, Vape Shops, Bars, Tobacco Shops", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "XDJn1OQeu9IRZCEiGvmYzQ", + "name": "Philly Improv Theater", + "address": "2030 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951308, + "longitude": -75.1746805, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HasTV": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Specialty Schools, Comedy Clubs, Education, Performing Arts", + "hours": { + "Wednesday": "19:0-23:0", + "Thursday": "18:30-23:0", + "Friday": "18:30-23:0", + "Saturday": "18:30-23:0" + } + }, + { + "business_id": "PIaV4xeLf2jg-vfPYrGR3w", + "name": "Sandy's", + "address": "231 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499885, + "longitude": -75.1796756, + "stars": 4.0, + "review_count": 78, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Greek, Restaurants, Breakfast & Brunch, Diners", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "mprtNLSD_AQ7pTb1vzbSdw", + "name": "Mezzogiorno", + "address": "8000 Essington Ave, Level 2, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8740344184, + "longitude": -75.243804085, + "stars": 2.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "7RFHKpLnxnjhHhqIooC2uA", + "name": "Cuggini", + "address": "134 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948151, + "longitude": -75.1526911, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Shopping, Jewelry, Jewelry Repair", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "Mg1b-6BjqQEiaGAw20FTHw", + "name": "Inject Beauty", + "address": "1601 Walnut St, Ste 816", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Health & Medical, Laser Hair Removal, Beauty & Spas, Hair Removal, Shopping, Medical Spas, Cosmetics & Beauty Supply", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "Hcpnj06bcY9AuvhDjMGTkw", + "name": "Subway", + "address": "8800 Essington Ave, Food Court, B-C Connector", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876036, + "longitude": -75.242411, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "True", + "DriveThru": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Sandwiches, Salad, Restaurants, Fast Food", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "lPOS2nfG4TuOFQmBEOiNwQ", + "name": "Blue Duck On Broad", + "address": "220 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9485985832, + "longitude": -75.164699927, + "stars": 3.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "HappyHour": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}" + }, + "categories": "American (New), Cocktail Bars, Restaurants, Nightlife, Bars, Sandwiches", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "WeylzLacbhVyhnWAbUJ4SA", + "name": "Pita Chip", + "address": "1600 N Broad St, Unit 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9779222117, + "longitude": -75.1582708789, + "stars": 4.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "True" + }, + "categories": "Mediterranean, Vegetarian, Sandwiches, Wraps, Halal, Restaurants", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "e0IBYH38Cag9jjojUmTAPQ", + "name": "Greene Street", + "address": "3734 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510983, + "longitude": -75.1986559, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Thrift Stores, Fashion, Used, Vintage & Consignment", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "OmZZS72yQcPyqEDPCA3EVA", + "name": "Golden Lake", + "address": "2206 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538411, + "longitude": -75.1770532, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Asian Fusion, Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "UmtGDYiva0bukKDWLQRdaQ", + "name": "Philadelphia Parking Authority", + "address": "2501 Weccacoe Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9154321466, + "longitude": -75.1416773552, + "stars": 1.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "fDDi5L0gXLrvHAX2HDFiDw", + "name": "AVA Wellness", + "address": "1425 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9545945227, + "longitude": -75.1644638926, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Massage, Health & Medical, Day Spas, Massage Therapy, Beauty & Spas, Medical Spas", + "hours": null + }, + { + "business_id": "MlXH9dWYDFEBbwuGStlfZg", + "name": "La Colombe Coffee", + "address": "1335 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9712343, + "longitude": -75.1342432, + "stars": 4.5, + "review_count": 509, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Alcohol": "u'beer_and_wine'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Cafes, Restaurants, Coffee & Tea, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "-l2U6S5kBlwHcXRr2pCPNg", + "name": "Salon Ricochet", + "address": "1314 Sansom St, Fl 1, Philadelphia Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949872, + "longitude": -75.162843, + "stars": 5.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "b8OFGiMnmwRzRGXdQT3Rig", + "name": "Wheel Thing Store", + "address": "2500 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9911285, + "longitude": -75.1554729, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Wheel & Rim Repair, Tires, Car Window Tinting, Car Stereo Installation, Automotive, Auto Glass Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "KJWfjy6xcbIEKJ7vQXm1fQ", + "name": "Enterprise Rent-A-Car", + "address": "510 N Front And Spring Gdn", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960129, + "longitude": -75.139237, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-16:0", + "Friday": "7:30-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "PSToGnc9iigo2MaOsOhKng", + "name": "Alexa Cleaning Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Office Cleaning, Home Services, Professional Services, Pressure Washers, Home Cleaning", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "4x6XkcuyzFHjlV7I7wqF0w", + "name": "Moda Shoe & Pants", + "address": "1523 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9514577, + "longitude": -75.1663717, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Shoe Stores, Women's Clothing", + "hours": null + }, + { + "business_id": "khMfXypvr9iALwJD7zzFGA", + "name": "AMC Philadelphia Mills 14", + "address": "1149 Franklin Mills Circle", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0838708731, + "longitude": -74.9609731613, + "stars": 2.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "DogsAllowed": "False" + }, + "categories": "Arts & Entertainment, Cinema", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "wcmatdiNPFeo6HKNNF97Ww", + "name": "Human Robot", + "address": "1710 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9772706548, + "longitude": -75.1435684785, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breweries, Food, Brewpubs", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "5bxcieJG45A2Y4X8jZD05Q", + "name": "Antney's Grub", + "address": "2700 S Darien St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9155207, + "longitude": -75.1624064, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "-MkngKKkTIVfnUbq2S1ucQ", + "name": "Square Pie", + "address": "600 Catherine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9392238093, + "longitude": -75.1529854247, + "stars": 4.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "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" + } + }, + { + "business_id": "VAVRBQwUEmSloXxfKo-ZmA", + "name": "Source Bodywork", + "address": "1601 Walnut St, Ste 1523", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Massage, Health & Medical, Massage Therapy, Reiki", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "11:0-18:30", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-17:30", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "JeYdY2_Dgj5l4sYikntcfA", + "name": "SEV Laser", + "address": "1511 Frankford Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9735861, + "longitude": -75.1333922, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Hair Removal, Laser Hair Removal, Medical Spas, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-14:30", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Vq-oKF_DsX2QbRz-m5t27A", + "name": "Mighty Melt", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949773, + "longitude": -75.148073, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'beer_and_wine'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Sandwiches, Restaurants, Breakfast & Brunch, Wine Bars, Nightlife, American (New), Bars, American (Traditional)", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "tqUQHX7gsWK2d2rsUuUUMw", + "name": "Tria Wine Room", + "address": "The Left Bank, 3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529405, + "longitude": -75.1869058, + "stars": 4.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "HasTV": "False", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False" + }, + "categories": "Bars, Wine Bars, Restaurants, Cafes, Nightlife", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0" + } + }, + { + "business_id": "EKskUEBnYFOVM25CPCistw", + "name": "Computer Troubleshooters", + "address": "108 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517237, + "longitude": -75.1737729, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Electronics, Shopping, Local Services, IT Services & Computer Repair, Watches, Mobile Phones, Electronics Repair", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "m6RGfATGF1aL_g7oYJ-mbg", + "name": "honeygrow", + "address": "3731 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537318071, + "longitude": -75.1978196153, + "stars": 3.0, + "review_count": 163, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Vegetarian, Restaurants, American (New), Salad, Noodles, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "-CIZAVxbJ9RDWl9Xx9kzOg", + "name": "Deeper Than Hair", + "address": "5613 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9581756, + "longitude": -75.2339477, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "OMat-LKN3hHMHvqOqoagqg", + "name": "Jefferson Torresdale Hospital", + "address": "10800 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.071728, + "longitude": -74.983126, + "stars": 2.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Medical Centers, Hospitals", + "hours": null + }, + { + "business_id": "PRmGQsldPV7I5uZhEEymyw", + "name": "Red Wine Restaurant", + "address": "701 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0330744061, + "longitude": -75.1064681634, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "BusinessAcceptsBitcoin": "True", + "CoatCheck": "False", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Nightlife, Restaurants, Wine Bars, Bars, Barbeque, Steakhouses, Seafood", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "RvOJFT-Kk2ynqa0-yY51hA", + "name": "Liberty Smokes", + "address": "2740 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9125403, + "longitude": -75.1505721, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Tobacco Shops", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "W0JuHwr5zctnvQhi41QA1Q", + "name": "Wendy's Frame Shop", + "address": "1604 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9303347, + "longitude": -75.1687315, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Crafts, Shopping, Art Galleries, Framing, Arts & Entertainment", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "HE7jT6BbVTg0OrmLg51dzQ", + "name": "Gap", + "address": "1510 Walnut St, Ste 117", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493128179, + "longitude": -75.1665198276, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Women's Clothing, Fashion, Men's Clothing, Children's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "pHvMKIwWD4d8Nz6OPzMvzA", + "name": "Lucky Old Souls Burger Truck", + "address": "Love Park, Chestnut Hill, Headhouse Market, John F Kennedy Blvd and Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95393562, + "longitude": -75.1662406971, + "stars": 3.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Street Vendors, Food, Food Trucks", + "hours": null + }, + { + "business_id": "bfmkl8HoF5yi3Mk3ySxYgA", + "name": "T.C. Palate", + "address": "933 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955582, + "longitude": -75.155434, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "pQcFNupqOWegs3Fqf93z8Q", + "name": "Plaza Flowers Center City", + "address": "1515 Market St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952962, + "longitude": -75.1661594, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Florists, Flowers & Gifts, Shopping, Event Planning & Services, Wedding Planning, Floral Designers", + "hours": { + "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": "10:0-15:0" + } + }, + { + "business_id": "ktM6aYuzqWd-kA8SIWswiQ", + "name": "Winnie's Manayunk", + "address": "4266 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024735, + "longitude": -75.2222673, + "stars": 3.5, + "review_count": 599, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Caters": "True", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BYOB": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Bakeries, Bars, Beer Bar, American (Traditional), Event Planning & Services, Food, American (New), Cocktail Bars, Nightlife, Caterers, Restaurants, Tapas/Small Plates, Breakfast & Brunch", + "hours": { + "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": "9:0-21:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "0VuRnlO-QcljahvvVXrEVQ", + "name": "Helping Hands Philly", + "address": "6024 Ridge Ave 116-330", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322597, + "longitude": -75.2141649, + "stars": 3.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Landscaping, Home Services, Local Services, Tree Services, Self Storage, Gutter Services, Movers, Junk Removal & Hauling, Home Cleaning", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "MM_v-KIUJiXLCxnkIqPKWA", + "name": "Soy Cafe", + "address": "630 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616969288, + "longitude": -75.1412892166, + "stars": 4.5, + "review_count": 299, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "'none'", + "Caters": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Vegetarian, Vegan, Coffee & Tea, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "E0AKqwkebF15_hvzNSyGlQ", + "name": "P. J. Clarke's", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 4.0, + "review_count": 130, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "CoatCheck": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': True, u'friday': False, u'saturday': False, u'sunday': False}", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'free'" + }, + "categories": "Bars, American (Traditional), Restaurants, Cocktail Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "7E6F4PcFUzr8SPB9Q5yQBw", + "name": "Bellevue Nails", + "address": "207 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484745, + "longitude": -75.1620686, + "stars": 3.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "ijnCPsMfWWcxGlzwOzUxIg", + "name": "East Girard Gastropub", + "address": "200 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968877, + "longitude": -75.133443, + "stars": 4.0, + "review_count": 126, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Beer, Wine & Spirits, Food, Seafood, Bars, Nightlife, Gastropubs, Restaurants, Pubs, American (New)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "pZYR3SwZBJwMZFkkntHAhQ", + "name": "Mid-Century Furniture Warehouse", + "address": "3650 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9886139, + "longitude": -75.0908377, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Furniture Stores, Home Decor, Shopping, Antiques", + "hours": { + "Sunday": "12:0-15:0" + } + }, + { + "business_id": "hb5-Usnsu2AEkOUyqCitcA", + "name": "Solaris Grille", + "address": "8201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073702, + "longitude": -75.202618, + "stars": 2.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, American (New), Breakfast & Brunch", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0" + } + }, + { + "business_id": "psOSFpEcM2CLPq-smcFR3A", + "name": "Silk Body Waxing Studio", + "address": "1418 S 13th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932302, + "longitude": -75.166055, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Skin Care, Hair Removal, Waxing, Eyelash Service, Beauty & Spas", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "fQAyS1EGx75yDGweJ9YnQw", + "name": "Wawa", + "address": "2040 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622594, + "longitude": -75.1729167, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Sandwiches, Convenience Stores, Coffee & Tea, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "LDc5UUzva8KZQtKKGCySfQ", + "name": "The Nail Spa Bar", + "address": "609 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412744, + "longitude": -75.1490314, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Waxing, Nail Salons, Hair Removal", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "YuIpYKTjj2HRcsdMX7QCww", + "name": "Darigo's Fish Market", + "address": "1015 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369107037, + "longitude": -75.1582012698, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Specialty Food, Seafood Markets, Food", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "BJzC-TOSsYhlYo8l6Gy3yQ", + "name": "CVS Pharmacy", + "address": "3331 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0692409794, + "longitude": -75.006022102, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "DriveThru": "True" + }, + "categories": "Shopping, Drugstores, Food, Health & Medical, Convenience Stores, Pharmacy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "_6SXM4fJM7DtMy-ySEYlmg", + "name": "Kiehl's Since 1851", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518537, + "longitude": -75.1679563, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Skin Care", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "0-l1nKLNgCfY583tezCZsA", + "name": "Tintco Window Tinting", + "address": "900 Greenwich St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930077, + "longitude": -75.160118, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shades & Blinds, Home Window Tinting, Auto Glass Services, Home Services, Automotive", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "yeLtEpR34PtBeUFrDVbWFQ", + "name": "The Adobe Cafe", + "address": "1919 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260371, + "longitude": -75.1676257, + "stars": 3.0, + "review_count": 201, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Mexican, Beer, Wine & Spirits, Food, Nightlife, Restaurants, Soup, Salad, Vegetarian, Sports Bars, Tex-Mex, Bars", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "b5RZp-VsG0R7_4O3DjviEA", + "name": "Head Cook's Pizza & Bakery", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 1.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food Delivery Services, Food, Restaurants, Pizza, Bakeries", + "hours": null + }, + { + "business_id": "lOdf3USy1JvVP-1mWjhDSQ", + "name": "Village Belle", + "address": "757 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938329, + "longitude": -75.144405, + "stars": 4.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Mediterranean, Italian, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "4ojRyf5RfZArkkE9U9bfNw", + "name": "Hilton Philadelphia Airport", + "address": "4509 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8888335, + "longitude": -75.2321604, + "stars": 2.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": null + }, + { + "business_id": "QzvJ0jFrCo2lldh5CiNcCQ", + "name": "Gennaro's Famous Pizza", + "address": "210 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0312593, + "longitude": -75.1790941, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "SuCXzr6g7vQrUvwGdvKLXw", + "name": "Aldo", + "address": "1703 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501861231, + "longitude": -75.1692904782, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True" + }, + "categories": "Fashion, Shoe Stores, Shopping, Accessories", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "QJ7nNAXmBR6dDZPWj_36pA", + "name": "Bell Floor Covering", + "address": "1050 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9675703, + "longitude": -75.1401153, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Tiling, Home & Garden, Building Supplies, Shopping, Flooring, Carpeting, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "4RXGPcWPkeWKJ6RxhQfxbA", + "name": "Omnia Nail Spa", + "address": "7624 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9779793, + "longitude": -75.2717178, + "stars": 2.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Eyelash Service, Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "zwWgOoaLY-RnFgNVuMc7GA", + "name": "Axis Cafe", + "address": "20 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552337, + "longitude": -75.1944974, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "7HP8BwbzQHvstBI7rAe_vw", + "name": "Zhi izakaya", + "address": "210 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555587, + "longitude": -75.1544697, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbeque, Asian Fusion, Sushi Bars, Japanese, Restaurants, Chinese", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "x5GkG0oI_S107wLlgdBxVA", + "name": "Spread Bagelry", + "address": "3602 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9545367385, + "longitude": -75.1943960041, + "stars": 2.5, + "review_count": 203, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "HasTV": "True", + "GoodForKids": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, Beer Bar, Breakfast & Brunch, Bagels, Restaurants, Bars, Coffee & Tea, Food", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "vnQgWhtfE2dkqooJEo39rw", + "name": "Dunkin'", + "address": "2025 S. Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9248001, + "longitude": -75.1692103, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Donuts, Bagels, Desserts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "7Vw54Uw5T72CuuXPGzCQyQ", + "name": "Ingram's Drain & Sewer Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0397682, + "longitude": -75.145782, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Local Services, Plumbing, Septic Services, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "w-DEeeCRDlKoyO2P7nTKdQ", + "name": "The Famous Napoli Pizza", + "address": "944 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937027, + "longitude": -75.1549257, + "stars": 3.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "n-3UXXULc4wqTtyWmW_FNw", + "name": "Foyle & Foyle", + "address": "6234 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.036411, + "longitude": -75.2187915, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Agents, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "iblxd8ExRazILW8E0g5huw", + "name": "Barberie", + "address": "220 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499588, + "longitude": -75.1742261, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Barbers, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "j19dK4wX22MnVkqmxa-lWA", + "name": "Seventh Heaven", + "address": "25 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952603502, + "longitude": -75.1715714112, + "stars": 4.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Ice Cream & Frozen Yogurt, Thai, Vegan, Desserts, Japanese, Food, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "13:0-19:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "S6AP1meHAC0RxJXW26fq1g", + "name": "Philly Foodworks", + "address": "2901 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0061301, + "longitude": -75.1777029, + "stars": 5.0, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fruits & Veggies, CSA, Food, Food Delivery Services, Specialty Food, Farmers Market", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "_E36cX65LDxKlxdS1Exp3g", + "name": "Award Cleaners", + "address": "5711 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0275018, + "longitude": -75.2094578, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry, Dry Cleaning", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "VSKYI-W6ppCxsbh4Oj2_dg", + "name": "H & M Movers", + "address": "6524 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0209059, + "longitude": -75.0477102, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Packing Services, Home Services, Movers", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-17:0" + } + }, + { + "business_id": "umJ_8WAF1dsDrdjQ9eAQfw", + "name": "T-Stop", + "address": "234 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412107, + "longitude": -75.1470082, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Men's Clothing, Accessories, Shopping, Fashion", + "hours": null + }, + { + "business_id": "9cYRaymW7LV8oJKdtYn8Rw", + "name": "Boston Market", + "address": "9113 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.074277, + "longitude": -75.033309, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForMeal": "None", + "BusinessParking": "None", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (Traditional), American (New), Chicken Wings, Event Planning & Services, Caterers, Comfort Food, Sandwiches, Chicken Shop", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "IJ8Typa6BGckVuh1jhjy4w", + "name": "The Spa Terme Di Aroma", + "address": "32 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9511292, + "longitude": -75.1455831, + "stars": 4.5, + "review_count": 197, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Reflexology, Skin Care, Day Spas, Massage Therapy, Health & Medical, Massage", + "hours": null + }, + { + "business_id": "VKFfA8vgdVF7_AWTZ1hQQg", + "name": "Drexel Park", + "address": "32ND St And Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9605325, + "longitude": -75.1879781, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "ZHmRENQg4r1CfzRGIQENkg", + "name": "Pearl Tavern", + "address": "1123 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948987982, + "longitude": -75.1600788161, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "American (Traditional), Gastropubs, Restaurants", + "hours": null + }, + { + "business_id": "FJaTierDJxsT8XxCrrfCug", + "name": "Pennsylvania Optometrics", + "address": "6778 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0420543, + "longitude": -75.2263264, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Eyewear & Opticians, Shopping, Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "86glJ3ygYJV8HE-FClONsw", + "name": "Emperor's Garden Chinese Restaurant", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0649629383, + "longitude": -74.9836531509, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "2MKTSjcis749QGzm0vwFXw", + "name": "MiXXed Breed Cafe", + "address": "1631 Wallace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9659089, + "longitude": -75.1655053, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Cafes, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "8:0-15:0", + "Wednesday": "7:0-20:0", + "Thursday": "8:0-14:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "c7TanwrkujM7GAE43H4kwg", + "name": "Hummus Republic", + "address": "115 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512515918, + "longitude": -75.1702611521, + "stars": 4.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "NoiseLevel": "'quiet'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "Caters": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False" + }, + "categories": "Mediterranean, Wraps, Vegetarian, Vegan, Salad, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "b4yoyv8ZwxIILxRz0GRMzA", + "name": "Goodburger", + "address": "1725 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518259, + "longitude": -75.169687, + "stars": 3.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "c47tuMlpxWueOz-OIQNBdQ", + "name": "Donna's Bar", + "address": "2732 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9832514, + "longitude": -75.1020512, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pubs, Karaoke, Dive Bars, Bars, Nightlife", + "hours": null + }, + { + "business_id": "kHW2Q_38rgHWVHgt1W8I_w", + "name": "Manayunk Garden Apartments", + "address": "3901 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0220923, + "longitude": -75.212193, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Apartments, Property Management, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "TdZVG0J41V_uONOvDQhtQg", + "name": "Wanamaker Entertainment Group", + "address": "1500 Market St, Ste L35", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95217, + "longitude": -75.16615, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Ticket Sales, Stadiums & Arenas, Nightlife, Local Services, Music Venues, Arts & Entertainment", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "9-W8_gKJ-tRPr52TFKFNWg", + "name": "Burger King", + "address": "1624 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0543678735, + "longitude": -75.0721313202, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "_A8fAPebeoESxaDHbL2Z6w", + "name": "Yoku", + "address": "119 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511237, + "longitude": -75.1755163, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Asian Fusion, Japanese, Restaurants, Gluten-Free", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "bffLbfi1IEAff5C2IHJvFA", + "name": "Han Dynasty", + "address": "4356 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253737, + "longitude": -75.2238628, + "stars": 3.5, + "review_count": 417, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "13:0-20:0", + "Tuesday": "13:0-21:30", + "Wednesday": "13:0-21:30", + "Thursday": "13:0-21:30", + "Friday": "13:0-21:30", + "Saturday": "13:0-21:30", + "Sunday": "13:0-21:30" + } + }, + { + "business_id": "nF5QByCz21MY0KLtSoB5KA", + "name": "Penrose Diner", + "address": "2016 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9122173, + "longitude": -75.1827641, + "stars": 4.0, + "review_count": 386, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "WiFi": "u'no'", + "Caters": "True", + "BikeParking": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Comfort Food, Diners, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "0lFkJT6DqT3eMnpW9gP_bw", + "name": "Liberties", + "address": "705 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620406, + "longitude": -75.1407855, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Bars, American (Traditional), Pubs, Nightlife", + "hours": { + "Monday": "16:30-2:0", + "Tuesday": "16:30-2:0", + "Wednesday": "16:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "Aelkw-nyg9I8aQM9mK_yhw", + "name": "Ecowas African Restaurant", + "address": "6421 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9261517, + "longitude": -75.233992, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Indian, African, Ethiopian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "oRZzZbLbe5XkjMJ1KU4MvQ", + "name": "Center City Hypnosis", + "address": "1420 Walnut St, Ste 908", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494392941, + "longitude": -75.1650962228, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Health & Medical, Hypnosis/Hypnotherapy, Counseling & Mental Health", + "hours": { + "Monday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Jci_xPpsvVqhBNJ9oHA31Q", + "name": "CineMug", + "address": "1607 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.930204, + "longitude": -75.168069, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "False" + }, + "categories": "Shopping, Videos & Video Game Rental, Coffee & Tea, Cinema, Food, Books, Mags, Music & Video, Arts & Entertainment", + "hours": { + "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": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "4BHfe0N48rd8R5gMOI-4ig", + "name": "Charlie Seltzer, MD", + "address": "1429 Walnut St, Ste 1101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949742, + "longitude": -75.165436, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Health & Medical, Trainers, Nutritionists, Naturopathic/Holistic, Active Life, Fitness & Instruction, Doctors, Weight Loss Centers", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "fQbT2skNJPvNDIhLHmcYKA", + "name": "Yeeroh", + "address": "1412 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9435223516, + "longitude": -75.1661360954, + "stars": 4.0, + "review_count": 159, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Greek, Restaurants, Salad, Sandwiches, Mediterranean", + "hours": { + "Monday": "0:0-0: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-20:0" + } + }, + { + "business_id": "IvAa7PvfOYl0xRML5W3ebg", + "name": "Yards Brewing Company", + "address": "500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9609706195, + "longitude": -75.146908, + "stars": 4.0, + "review_count": 755, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "GoodForKids": "False", + "DogsAllowed": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (Traditional), Nightlife, Food, Bars, Restaurants, Beer, Wine & Spirits, American (New), Pubs, Local Flavor, Breweries, Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-15:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "GIAgyEwEQITK7wZI_vhXIA", + "name": "Bangin' Curry Franklin", + "address": "1670 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938374, + "longitude": -75.171071, + "stars": 5.0, + "review_count": 77, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Caters": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food Trucks, Restaurants, Food Court, Japanese Curry, Street Vendors, Food, Japanese, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "_F0tnw3UMFPmSYJHhGaGRw", + "name": "T Happy Nails", + "address": "1521 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0798655, + "longitude": -75.1736334, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "O6Np7_mmOafpkdYI1RVNxw", + "name": "The Judge Group", + "address": "1701 John F Kennedy Blvd, Ste 2520", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954255, + "longitude": -75.16839, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Employment Agencies, Professional Services", + "hours": null + }, + { + "business_id": "QXHTyjutAlsL_esmT2vSqA", + "name": "New Imperial", + "address": "7134 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0590117, + "longitude": -75.1903488, + "stars": 2.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "PHyXrC_xG4wXCNmx1ACfmw", + "name": "Jeongโ€™s Noodle", + "address": "6201 N Front St, Ste 124-B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0449474749, + "longitude": -75.11773865, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "HappyHour": "False", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False" + }, + "categories": "Noodles, Seafood, Korean, Chinese, Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "c-0PoHHcA6k7y4CxjGH1jw", + "name": "Tiki Philly", + "address": "102 S13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501605116, + "longitude": -75.1619333196, + "stars": 3.0, + "review_count": 101, + "is_open": 0, + "attributes": { + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "GoodForDancing": "False", + "BikeParking": "False", + "OutdoorSeating": "True", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, Restaurants, Venues & Event Spaces, Hawaiian, Tiki Bars, Event Planning & Services", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "sCPx4Sy4I1wMeZwsTzCFRg", + "name": "Chipotle Mexican Grill", + "address": "1000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9386420632, + "longitude": -75.1668745431, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Mexican, Restaurants, Caterers, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "vAfuyrsog38dv_q3z5YwLA", + "name": "Fredy & Tony's Restaurant", + "address": "3001 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.995528, + "longitude": -75.1297621, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Spanish", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "dFAHHp-_MpKNz6PqaJYVjA", + "name": "Cafe Spice Express", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516337506, + "longitude": -75.168387222, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "DriveThru": "False", + "HasTV": "True", + "RestaurantsTableService": "False", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Fast Food, Restaurants, Indian, Pakistani", + "hours": null + }, + { + "business_id": "Jq65KuNzC_Uee3TJB9Xv-Q", + "name": "Pizzeria Pesto", + "address": "1925 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9261118, + "longitude": -75.1689709, + "stars": 4.0, + "review_count": 120, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "u4yZ_V4JA96c5xqJCJbegA", + "name": "Tietra", + "address": "1425 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948595, + "longitude": -75.165898, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Italian, Food, Restaurants, Mediterranean", + "hours": null + }, + { + "business_id": "QG-9-wye4CTEEMM1OJ1myw", + "name": "Greens and Grains", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703022, + "longitude": -75.1684962586, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "DogsAllowed": "False", + "HasTV": "False", + "RestaurantsTableService": "False", + "HappyHour": "False", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Vegetarian, Food, Vegan, Restaurants, Sandwiches, Acai Bowls, Juice Bars & Smoothies, Breakfast & Brunch", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0" + } + }, + { + "business_id": "sMMkN5m-7C_gF7wGOZn2bg", + "name": "Tang's Jewelry Corp", + "address": "711 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488846, + "longitude": -75.1529647, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "FKzZU6drY-_TFOPRZunlmg", + "name": "Dr Wutzit's Wonder Balls", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Food, Street Vendors, Food Trucks", + "hours": null + }, + { + "business_id": "Y0K_uIStPcNYGK0Mm9f4IQ", + "name": "Cianfrani Park", + "address": "8th & Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9405637, + "longitude": -75.1558886, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "Jqham2NFd0VMMVWk5Wgl6g", + "name": "Mylynn Day Spa", + "address": "2052 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513881, + "longitude": -75.1752521, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Day Spas, Massage, Beauty & Spas, Skin Care", + "hours": { + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "QYtayUM9q8EvKPd1B2mtkA", + "name": "Top's", + "address": "259 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947731, + "longitude": -75.1661509, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "Music": "{u'dj': False, u'live': False, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Dive Bars, Nightlife, Bars, Pubs", + "hours": null + }, + { + "business_id": "mU8d9qbaUqJ-XTd5Ood6Kw", + "name": "Filter Cafe", + "address": "331 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9541699, + "longitude": -75.1460404, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Music Venues, Arts & Entertainment, Art Galleries, Coffee & Tea, Food, Nightlife, Juice Bars & Smoothies, Shopping, Internet Cafes", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "hYWwNKt65xf525Z1GaQsNg", + "name": "Tiffin - South Philadelphia", + "address": "1100 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9347011, + "longitude": -75.1622226, + "stars": 3.0, + "review_count": 143, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "aG5SrcRJM0Yjs3I3ceY1aw", + "name": "EverGreen Maids", + "address": "1700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506387, + "longitude": -75.1691821, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "3lHqHuxZq1-R-aVWpot7RQ", + "name": "Petchalonis Dental & Associates", + "address": "248 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949436, + "longitude": -75.176327, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Oral Surgeons, Endodontists, Beauty & Spas, General Dentistry, Teeth Whitening, Health & Medical, Dental Hygienists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "2CvDC4izZ55VHSqk5N8cFA", + "name": "Grace Tavern", + "address": "2229 Gray's Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451007, + "longitude": -75.1795838, + "stars": 3.5, + "review_count": 330, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "HappyHour": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "CoatCheck": "False" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "O6yM02icz_jsXvkzOmHIGA", + "name": "Push Universal Training Studio", + "address": "930 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9692306, + "longitude": -75.1503732, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Trainers", + "hours": { + "Monday": "8:0-20:30", + "Tuesday": "8:0-20:30", + "Wednesday": "8:0-20:30", + "Thursday": "8:0-20:30", + "Friday": "8:0-20:30", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "4hH1lt7mHPbl4r2O7LH6nA", + "name": "Jordan Johnson's Gourmet Seafood", + "address": "7199 Buselton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0450716, + "longitude": -75.0606831, + "stars": 3.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-0:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0" + } + }, + { + "business_id": "i0rq2iOdn9IofYYxyq6rTA", + "name": "Danis Auto", + "address": "6250 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.028792, + "longitude": -75.063039, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Automotive, Car Dealers, Auto Repair", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "VfkvIzypJ1n8VYqjObRrzA", + "name": "Wells Fargo", + "address": "123 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949691, + "longitude": -75.163948, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "ZX832RgoWIEaJ9TWAVK3Hg", + "name": "Flourish Acupuncture Studio", + "address": "1856 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978289, + "longitude": -75.1309768, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Sports Medicine, Doctors, Acupuncture", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-19:0", + "Thursday": "13:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "iZJ-LlKeSRRu6HbY4LZ9ww", + "name": "Popeyes Louisiana Kitchen", + "address": "1516 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510830684, + "longitude": -75.1663314987, + "stars": 2.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "DriveThru": "False", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Fast Food, Restaurants, Chicken Wings", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "ZW9pV3iebmduUHl-hP9D_g", + "name": "Michael's Brick Pointing", + "address": "8024 Crispin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0450866, + "longitude": -75.0290105, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Waterproofing, Contractors, Painters, Home Services, Masonry/Concrete", + "hours": null + }, + { + "business_id": "8Gbu7AiqVWrUe8H9Fmg4hA", + "name": "New England Pizza", + "address": "9867 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.092384, + "longitude": -75.030973, + "stars": 2.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "A55glg6ynzqjNAbRyTI3ig", + "name": "Nifty Fifty's", + "address": "2700 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9157811, + "longitude": -75.1647757, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "HappyHour": "False", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BYOB": "False", + "Corkage": "False", + "RestaurantsTableService": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Fast Food, Breakfast & Brunch, Juice Bars & Smoothies, Desserts, Burgers, Restaurants, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "g6H0Hpe9B4xsr5w8QxTZ7w", + "name": "Les Petits Cherubs", + "address": "3300 Henry Ave, Bldg 3, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 39.9554931349, + "longitude": -75.1644756455, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Child Care & Day Care, Local Services, Education, Preschools", + "hours": { + "Monday": "6:0-18:30", + "Tuesday": "6:0-18:30", + "Wednesday": "6:0-18:30", + "Thursday": "6:0-18:30", + "Friday": "6:0-18:30" + } + }, + { + "business_id": "4FHXsFTyvvxc-pISdYkoeQ", + "name": "Sisters Restaurant & Nightclub", + "address": "1320 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484988, + "longitude": -75.1631093, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'casual': False}", + "HasTV": "True", + "GoodForKids": "False" + }, + "categories": "Bars, Restaurants, Dance Clubs, Gay Bars, Nightlife", + "hours": null + }, + { + "business_id": "_peFbE5jqTwlRJ-jgoMe7g", + "name": "Saturn Club", + "address": "3426 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535501, + "longitude": -75.1931196, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Skin Care, Beauty & Spas, Hair Removal, Nail Salons, Hair Salons", + "hours": { + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "66Eb7k-oL3m3GGhyQRuFTQ", + "name": "Starbucks", + "address": "4000 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.006493, + "longitude": -75.21245, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "a1WNj5IBXCBBavXUoxDHbA", + "name": "The Sterling Apartment Homes", + "address": "1815 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95443, + "longitude": -75.17036, + "stars": 2.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services, Property Management", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "73UjNbSoQjQAOS45rcihFg", + "name": "Cantina Dos Segundos", + "address": "931 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9648195, + "longitude": -75.1402322, + "stars": 4.0, + "review_count": 904, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BYOB": "False", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Corkage": "False", + "WheelchairAccessible": "True", + "DriveThru": "None" + }, + "categories": "Nightlife, Restaurants, Breakfast & Brunch, Bars, Mexican", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "CU_P6jdPiYR4LWpDb761Eg", + "name": "South Beach Olde City", + "address": "112 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480727, + "longitude": -75.143088, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Smoking": "u'yes'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "True" + }, + "categories": "Nightlife, Dance Clubs, Bars, Hookah Bars", + "hours": null + }, + { + "business_id": "yqox009aqMr-frRHFj9yyw", + "name": "Paul Fontaine - Keller Williams Realty", + "address": "604 S Washington Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459502, + "longitude": -75.1523091, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate Services, Real Estate Agents, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "WfjsGrbSIswLMwGtKVNcwQ", + "name": "Dunkin'", + "address": "917 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9709467, + "longitude": -75.1521439, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "4:30-22:0", + "Sunday": "4:30-22:0" + } + }, + { + "business_id": "9tdxRchhBXUjFNb8ZYa7sg", + "name": "Cava International", + "address": "2001 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387506, + "longitude": -75.1768822, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Building Supplies, Home Services", + "hours": null + }, + { + "business_id": "fT0lXvUz41XaZbgtSMqTKg", + "name": "Mangiamo 444", + "address": "444 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9588922, + "longitude": -75.1458732, + "stars": 3.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HappyHour": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "True" + }, + "categories": "Diners, Pizza, Desserts, Italian, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "E3IjhZlqCZG1-HJyWTqw1g", + "name": "17 Snyder Chinese", + "address": "2100 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924903, + "longitude": -75.1747289987, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "Alcohol": "u'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Food Delivery Services, Pan Asian, Dim Sum, Beer, Wine & Spirits, Chinese, Food, Restaurants", + "hours": { + "Monday": "14:0-0:0", + "Tuesday": "14:0-0:0", + "Wednesday": "14:0-0:0", + "Thursday": "14:0-0:0", + "Friday": "14:0-1:0", + "Saturday": "14:0-1:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "7nNolR9XgSRa6NrfcGWM8A", + "name": "Moisture Master Pros", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951639, + "longitude": -75.163808, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Real Estate, Local Services, Environmental Abatement, Home Inspectors, Real Estate Agents, Foundation Repair, Damage Restoration, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "Zxi0AGG2Dh-SeqHEMtuUYg", + "name": "Myung Ga Gimbap", + "address": "6783 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0550455, + "longitude": -75.1264159, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False" + }, + "categories": "Korean, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "pnKLDu8o3zG-Y8SUQXJhtQ", + "name": "Labcorp", + "address": "834 Chestnut St, Ste 434", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493872124, + "longitude": -75.1551309, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Diagnostic Services, Laboratory Testing, Health & Medical", + "hours": { + "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-23:0" + } + }, + { + "business_id": "VmwRQr-gnvhkOh66HNaaDw", + "name": "Northeast Building Products Corp.", + "address": "4280 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0016377, + "longitude": -75.082742, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Glass & Mirrors, Windows Installation, Door Sales/Installation, Home Services", + "hours": { + "Monday": "7:0-16:30", + "Tuesday": "7:0-16:30", + "Wednesday": "7:0-16:30", + "Thursday": "7:0-16:30", + "Friday": "7:0-16:30", + "Saturday": "7:0-12:0" + } + }, + { + "business_id": "Yk62SB_HISNsv85CDbVkKg", + "name": "Dunkin'", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486680697, + "longitude": -75.1592066455, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-19:0", + "Sunday": "5:0-19:0" + } + }, + { + "business_id": "5Mqe-TAK7GzwiZapwNqQbA", + "name": "Dunkin'", + "address": "5716 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9459273173, + "longitude": -75.2390129611, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "B5YTYzEQ_vIjie4E3WPW_w", + "name": "Jeffrey Debs Jeweler Gemologist", + "address": "128 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486142599, + "longitude": -75.1542426276, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:30", + "Saturday": "10:0-16:30" + } + }, + { + "business_id": "Oj4yP-VrjvlhTbuLjHnwhw", + "name": "Son's Cleaners", + "address": "16 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952772, + "longitude": -75.173543, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "EK6AF2XWgZxvJOtCA2Nw_g", + "name": "Edgemont Caterers", + "address": "4411 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9986751, + "longitude": -75.0741188, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Wedding Planning, Party & Event Planning, Caterers, Event Planning & Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "WVhMDjHBia5BbTvLzpvQ6g", + "name": "Tow Decision", + "address": "2335 Wheatsheaf Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.999399, + "longitude": -75.0904522, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Towing, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "AkpAXXVmnhHzgi9u51QoJQ", + "name": "Old Nelson Food Company", + "address": "701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9495146, + "longitude": -75.152427, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Grocery, Food, Delis, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "Tm9vJYYd77jbjJe9oGit2Q", + "name": "Joan Shepp Boutique", + "address": "1616 Walnut St Lbby 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Men's Clothing, Fashion, Shopping, Women's Clothing, Accessories", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "0Ig9lXNnfBL7U2ct5oIF6A", + "name": "The Monkey Club", + "address": "2101 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9824853, + "longitude": -75.1283337, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "GoodForDancing": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'outdoor'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "None" + }, + "categories": "Bars, Pubs, Dive Bars, Nightlife", + "hours": { + "Monday": "16:30-2:0", + "Tuesday": "16:30-2:0", + "Wednesday": "16:30-2:0", + "Thursday": "16:30-2:0", + "Friday": "16:30-2:0", + "Saturday": "12:30-2:0", + "Sunday": "12:30-2:0" + } + }, + { + "business_id": "Xbd1z_fOq1M1G6uD7yajEw", + "name": "Athleta", + "address": "1722 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499249, + "longitude": -75.1702598, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Sporting Goods, Women's Clothing, Sports Wear, Fashion, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "wDaZZM-R-DvhoWR8y8q0mg", + "name": "Hampton Inn Philadelphia-International Airport", + "address": "8600 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8882535601, + "longitude": -75.2463403344, + "stars": 3.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "Yasm3ffhqPjIPXLWKJ_Wfg", + "name": "Platt and Platt Optometrists", + "address": "100 South Broad St, Ste 1135", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9502943, + "longitude": -75.1645249, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "u9Bs8L3oI1A3hcXs6vOv8w", + "name": "Brave New Worlds", + "address": "55 North 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514184146, + "longitude": -75.1432995758, + "stars": 4.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Toy Stores, Hobby Shops, Books, Mags, Music & Video, Shopping, Comic Books", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "lXkjfmdIKGB-WwEuuEEAmw", + "name": "Milo - The Meeting House", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0601522, + "longitude": -75.1907202, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "Smoking": "u'outdoor'", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False" + }, + "categories": "Noodles, Venues & Event Spaces, Gastropubs, Tacos, Vegetarian, Beer Gardens, American (Traditional), Mexican, Event Planning & Services, Nightlife, Arts & Entertainment, Music Venues, Vegan, Restaurants, Seafood", + "hours": { + "Wednesday": "18:0-23:0", + "Thursday": "18:0-23:0", + "Friday": "18:0-23:0", + "Saturday": "18:0-23:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "0_8t99ot99wmc-k42fC4rw", + "name": "The Rittenhouse Handyman", + "address": "2011 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507881, + "longitude": -75.1741121, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Professional Services, Handyman, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-14:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "4SW6d-MD7i1rrKIE__Oz7g", + "name": "South Street Bridge Window Tinting", + "address": "1306 S Warfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9381562138, + "longitude": -75.1994331926, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Auto Glass Services, Automotive, Car Window Tinting, Vehicle Wraps", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "5N9nJbymj9JtOAEx6ZMxpg", + "name": "The Spot Food Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513599092, + "longitude": -75.1846967504, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "HasTV": "False" + }, + "categories": "Food Stands, Street Vendors, Burgers, Restaurants, Food Trucks, Food", + "hours": { + "Monday": "11:30-17:0", + "Tuesday": "11:30-17:0", + "Wednesday": "11:30-17:0", + "Thursday": "11:30-17:0" + } + }, + { + "business_id": "B0e8jiZ_NAC50AjU9oH5ow", + "name": "South Moon Under", + "address": "1731 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518369, + "longitude": -75.1698782, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shoe Stores, Home Decor, Fashion, Home & Garden, Department Stores, Accessories, Shopping, Men's Clothing, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "0PDe8TxXHoROxpu-jH8e6A", + "name": "Pennsylvania 6", + "address": "114 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497992, + "longitude": -75.1604137, + "stars": 4.0, + "review_count": 296, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, American (New), Live/Raw Food", + "hours": { + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "fmKMcuTFf79uZ6F96Ig2DA", + "name": "CTM Accounting & Tax Services", + "address": "6722 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0322103, + "longitude": -75.0522963, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Accountants, Lawyers, Financial Services, Tax Services, Professional Services", + "hours": null + }, + { + "business_id": "TZ2HlgyLiAP4C5UFOATdgQ", + "name": "Parkway Corporation - Broad & Race Parking Garage", + "address": "150 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.956126, + "longitude": -75.1633542, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "Wfg85U89qt1OA7aqw5trFA", + "name": "More Sugar", + "address": "125 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9547447, + "longitude": -75.1575180679, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': None, u'validated': False}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "Caters": "True" + }, + "categories": "Desserts, Restaurants, Food, Breakfast & Brunch", + "hours": { + "Monday": "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": "11:0-21:0" + } + }, + { + "business_id": "9CGFL0YFDf_O6aaiTmnOZQ", + "name": "The Refinery at SugarHouse Casino", + "address": "1001 N Delaware Ave, 1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9639942, + "longitude": -75.1328364, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Bars, Casinos, Nightlife, American (New), Chinese, Arts & Entertainment, American (Traditional), Restaurants", + "hours": { + "Friday": "20:0-1:0", + "Saturday": "20:0-1:0" + } + }, + { + "business_id": "_dDG2NGsUnMuxpx63O61RQ", + "name": "Tufas Boulder Lounge", + "address": "1614 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9758328, + "longitude": -75.1440398, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Climbing, Gyms, Fitness & Instruction, Active Life, Rock Climbing", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "-sgYO5GUfGSkKneroisqjQ", + "name": "Check Maid Cleaning Services", + "address": "520 Woodland Ter, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9488716, + "longitude": -75.2047622, + "stars": 3.5, + "review_count": 112, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "YdZb7z6aNoL6R7oIbaVNvg", + "name": "The Fillmore Philadelphia", + "address": "29 E Allen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9658294799, + "longitude": -75.1347702469, + "stars": 4.0, + "review_count": 239, + "is_open": 1, + "attributes": { + "GoodForDancing": "True", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'outdoor'", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "Music": "{'live': True}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Event Planning & Services, Performing Arts, Party & Event Planning, Arts & Entertainment, Music Venues, Nightlife, Venues & Event Spaces", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "ITOkOiX-hfsazVPpFFQVJA", + "name": "Wells Fargo Center", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.901206, + "longitude": -75.171979, + "stars": 3.5, + "review_count": 331, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Stadiums & Arenas", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "cQlpkV5PLr6g_pwyb4M3Mw", + "name": "Beauty Is Salon", + "address": "258 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469282, + "longitude": -75.1594956, + "stars": 5.0, + "review_count": 133, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Men's Hair Salons, Hair Stylists, Beauty & Spas, Hair Salons, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "12:0-20:30", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "WN8wJ8PiBcfSPVWtZZhZfA", + "name": "Daiva's Grille", + "address": "6750 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0413479, + "longitude": -75.2255195, + "stars": 3.5, + "review_count": 92, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': True}", + "HasTV": "False", + "Alcohol": "u'none'", + "DriveThru": "False", + "RestaurantsTableService": "True", + "BYOB": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Restaurants, Diners, American (Traditional), Italian", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "dM5-fBUJ7vII0e4I3Y--bw", + "name": "Fairmount Running Company", + "address": "2023 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967469, + "longitude": -75.1710993, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sporting Goods, Sports Wear, Fashion, Shopping", + "hours": null + }, + { + "business_id": "mlyTBHNwuDrb7FRGSw3o9g", + "name": "Peking Garden", + "address": "2205 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.986448, + "longitude": -75.155695, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (Traditional), Chinese, Restaurants", + "hours": null + }, + { + "business_id": "KihXlum3VIjC3HzNPSYnvg", + "name": "Garrison's Garage", + "address": "2335 E Gordon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9786572, + "longitude": -75.1257825, + "stars": 4.5, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "KJe08nAYey85uYQrOW3TiQ", + "name": "The Spice Rack", + "address": "8428 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0754749, + "longitude": -75.2058449, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "DogsAllowed": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Specialty Food, Grocery, Food, Herbs & Spices", + "hours": { + "Monday": "10:30-18:30", + "Tuesday": "10:30-18:30", + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "10:30-19:30", + "Saturday": "10:30-19:30" + } + }, + { + "business_id": "y9XVl5058TPjHcO6O2HBaA", + "name": "Shee Yuan Chinese", + "address": "2125 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9889319, + "longitude": -75.2498183, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'paid'", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "H7y-KJ-MEEfUhCPA98g8kA", + "name": "Marinos Auto Repair", + "address": "1528 Alter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9376096, + "longitude": -75.1696321, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "lUp0H2CfzxqWgho8SgdeOw", + "name": "Swag Boutique", + "address": "935 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9650524, + "longitude": -75.140481, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Accessories, Personal Shopping, Home & Garden, Flowers & Gifts, Jewelry, Kitchen & Bath, Shopping, Fashion, Local Flavor, Arts & Crafts, Home Decor, Event Planning & Services, Cards & Stationery", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "MCQCfEIPK_6oNzmfjwEXsA", + "name": "Sweet Nectar Dessert Kitchen", + "address": "547 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96389, + "longitude": -75.1707907, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bakeries, Food, Cupcakes", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "hcL7e9njsG0AboZpEVF5ww", + "name": "Domenic's Pizzeria", + "address": "14258 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1327369, + "longitude": -75.0119362, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "5GGT_83OMzXU4XoqFN-Vag", + "name": "Burger Busz", + "address": "N 13th And W Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829283, + "longitude": -75.1547321, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "GoodForKids": "True" + }, + "categories": "Food, Restaurants, Food Trucks, Street Vendors, Burgers", + "hours": { + "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-19:0" + } + }, + { + "business_id": "nSwrxurgcVEz5IsAV9DPLw", + "name": "TCS Management", + "address": "107 S 2nd St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482049, + "longitude": -75.1441189, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Property Management, Investing, Financial Services, Lawyers, Real Estate Law, Real Estate Agents, Apartments, Home Services, Professional Services, Business Consulting, Real Estate, Commercial Real Estate, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "jHk1OJi16n3BlO3LxkH8cw", + "name": "Rybrew", + "address": "2816 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974214, + "longitude": -75.182504, + "stars": 4.5, + "review_count": 210, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Beer, Wine & Spirits, Salad, Sandwiches, Food, American (New)", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "xPi3UL7FKhHqxGbJOYdAjw", + "name": "Tang Dynasty Buffet", + "address": "4504 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002977, + "longitude": -75.2217849, + "stars": 2.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "WiFi": "u'free'", + "BikeParking": "False", + "HasTV": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Buffets, Chinese, Asian Fusion, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "VEtXX_EyiQZBtQEFDKrhsQ", + "name": "Royal Hair Salon", + "address": "1147 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9358520666, + "longitude": -75.1616442204, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "True" + }, + "categories": "Hair Removal, Hair Salons, Eyebrow Services, Waxing, Beauty & Spas, Barbers, Makeup Artists", + "hours": { + "Tuesday": "9:30-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "UAG7fly9GlU1-Xt4oPIliA", + "name": "Old City Pharmacy", + "address": "210 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498683, + "longitude": -75.144176, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Shopping, Drugstores", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "i6MPwHhpfLWP7VAqz3osRg", + "name": "Master Jay Moves Philly Premier Pole Dance Studio", + "address": "1520 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950238, + "longitude": -75.166724, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Dance Studios, Arts & Entertainment, Fitness & Instruction", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "9:0-21:30" + } + }, + { + "business_id": "6b8l-OvCaKx-EssvHkx7Gw", + "name": "Philadelphia Runner", + "address": "4358 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255577223, + "longitude": -75.2240451425, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sports Wear, Sporting Goods, Fashion, Shopping, Outdoor Gear, Shoe Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "kJvVunz1OUHcx-wJAepHTw", + "name": "Salsolito Cafe", + "address": "602 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941873, + "longitude": -75.1525336, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "9Mm9xvLfiI72E3Inhmn82g", + "name": "Elephant & Castle", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528337, + "longitude": -75.1703455, + "stars": 2.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Nightlife, Pubs, Restaurants, Bars, British", + "hours": { + "Monday": "6:30-2:0", + "Tuesday": "6:30-2:0", + "Wednesday": "6:30-2:0", + "Thursday": "6:30-2:0", + "Friday": "6:30-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-2:0" + } + }, + { + "business_id": "PniDGhPSa_bMWA8gU2AipA", + "name": "Cafe Cuong", + "address": "811 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388055, + "longitude": -75.1560658, + "stars": 4.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "t0Ib5nFrOAN9mbBgPMBsDQ", + "name": "Wasserman Kenneth MD", + "address": "1817 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9275176, + "longitude": -75.1686631, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Dermatologists", + "hours": null + }, + { + "business_id": "gYVKvm64vH75YQKQrdKnnw", + "name": "Mi Lah", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557799, + "longitude": -75.1819683, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Sandwiches, Restaurants, Vietnamese, Vegan, Vegetarian", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "_WxO_7bJmeeKF-wCcvgeFQ", + "name": "Seafood Sensations", + "address": "2101 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0543117, + "longitude": -75.1555082, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Seafood, Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "Cb85PgiOfcmHza5GQFTB6A", + "name": "Royal's Restaurants", + "address": "7802 Limekiln Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0719286, + "longitude": -75.1614096, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Cajun/Creole, Restaurants, Caribbean", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "rO5bnXKVrfftnF75T-ZtGw", + "name": "Meineke Car Care Center", + "address": "4846 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.953502, + "longitude": -75.2197991622, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Tires, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "C8_zQVh3L7-yFazQs76fzg", + "name": "Philly's Gourmet Cafe", + "address": "114 market st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94955, + "longitude": -75.14285, + "stars": 2.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sandwiches, Breakfast & Brunch, Restaurants, Coffee & Tea, Cafes, Food", + "hours": null + }, + { + "business_id": "XvFImQnVmlZnSCE9X36Tcg", + "name": "Great Wall Chinese Restaurant", + "address": "1441 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9304241, + "longitude": -75.1563112, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "13:0-1:30" + } + }, + { + "business_id": "rOQ6I3QglJeXev8Wsx9hkw", + "name": "Hyatt Regency Philadelphia", + "address": "Penn's Landing, 201 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9453341, + "longitude": -75.1414441, + "stars": 3.5, + "review_count": 122, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "5V3Cz9cv55WY1wyykwaK6g", + "name": "Alex Auto Tag", + "address": "809 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401566, + "longitude": -75.1658245, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Registration Services, Insurance, Financial Services, Auto Insurance, Automotive", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "0-JRAY0LpBazDuA9761U5w", + "name": "Pizzeria Vetri", + "address": "1615 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94941083, + "longitude": -75.1686977423, + "stars": 4.0, + "review_count": 313, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'beer_and_wine'", + "BikeParking": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Salad, Italian, Pizza, Restaurants, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-16:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "tsyhFVl5_Vbj-r6XmeG5yA", + "name": "I'm Sergio", + "address": "1825 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545603, + "longitude": -75.1705061, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Waxing, Barbers, Men's Hair Salons, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "10:30-16:0" + } + }, + { + "business_id": "bSehfDoKVeCXIcwcFwX38w", + "name": "Dumpling House", + "address": "925 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538136, + "longitude": -75.1558378, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Asian Fusion, Restaurants", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:30" + } + }, + { + "business_id": "Ft5fpvevlnMJbugX_w2YsQ", + "name": "Grey Social", + "address": "132 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948269, + "longitude": -75.143783, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "HappyHour": "True" + }, + "categories": "Lounges, Restaurants, Bars, Nightlife", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "7Ljrtr65Q7-uX2Nl4I_7Iw", + "name": "Tea Magic", + "address": "123 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540079581, + "longitude": -75.1560426391, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Bubble Tea, Coffee & Tea, Food, Chinese, Shanghainese, Tea Rooms", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "MsLIHJJKDEnPfs31msu7ng", + "name": "Law Office of Faye Riva Cohen, PC", + "address": "2047 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949745, + "longitude": -75.175654, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Employment Law, Social Security Law, Divorce & Family Law, Professional Services, Personal Injury Law, General Litigation, Lawyers", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "Gw3HYk6eS9KrycleuXv-AA", + "name": "Lufthansa", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951764, + "longitude": -75.2279678, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Airlines, Hotels & Travel", + "hours": null + }, + { + "business_id": "DTwt8_pCuGyQbiIfXNdhDw", + "name": "Barnes & Noble Booksellers", + "address": "1805 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504016925, + "longitude": -75.1709848461, + "stars": 3.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Bakeries, Coffee & Tea, Food, Bagels, Sandwiches, Restaurants, Shopping, Bookstores, Music & DVDs, Toy Stores, Books, Mags, Music & Video", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "3JhKbYckmOW85_Cw529erA", + "name": "Restore Spa", + "address": "1608 Walnut St, Ste 705", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949545, + "longitude": -75.1681451, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Health & Medical, Skin Care, Massage, Reflexology", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "Z3nM2-WjfX5CMWqdZ8n5Dg", + "name": "Greene Street", + "address": "700 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94291, + "longitude": -75.154138, + "stars": 3.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Used, Vintage & Consignment, Women's Clothing, Shopping, Fashion, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "RUPKl2AqlS_z0zeLWEV9_g", + "name": "Main Attraction Unisex Salon", + "address": "5610 Lancaster Ave, Unit 900", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9799933573, + "longitude": -75.2348663359, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Barbers, Beauty & Spas, Men's Hair Salons, Hair Salons, Hair Stylists", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "20:0-21:0", + "Saturday": "7:0-19:0" + } + }, + { + "business_id": "PHsL2RRxr6d1fyVvCzz06g", + "name": "Neon Museum of Philadelphia", + "address": "1800 N American St, Unit E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.978546, + "longitude": -75.1396602, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Museums, Arts & Entertainment, Art Galleries, Venues & Event Spaces, Event Planning & Services, Shopping", + "hours": { + "Friday": "16:0-20:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "h4h82zIPc-kG8fYgYjlidw", + "name": "City Hall", + "address": "1450 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9523991022, + "longitude": -75.1635996804, + "stars": 4.0, + "review_count": 90, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Local Flavor", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "ZQc6EvnfQXtIK-8w-d0N5Q", + "name": "Mad Rex", + "address": "1000 Frankford Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.96486, + "longitude": -75.13463, + "stars": 3.5, + "review_count": 337, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Smoking": "u'outdoor'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForKids": "True", + "CoatCheck": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "American (New), Cocktail Bars, Bartenders, Nightlife, Bars, Event Planning & Services, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "11:0-2:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "GZcZ5wUcGcIVAM0_OEmIRw", + "name": "Sonic Drive-In", + "address": "2201 E Butler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9983682, + "longitude": -75.093851, + "stars": 1.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTableService": "False", + "HappyHour": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Burgers, Ice Cream & Frozen Yogurt, Food, Fast Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "XF7qNhRJktAfLoH5GP4tCw", + "name": "Au Bon Pain", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952398, + "longitude": -75.167928, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "None", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Cafes, Food, Bakeries", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0" + } + }, + { + "business_id": "ClIkpkKO-Es8MHlsfDOKMQ", + "name": "Target", + "address": "1 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923772, + "longitude": -75.145899, + "stars": 3.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "HasTV": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "None", + "CoatCheck": "False", + "RestaurantsReservations": "False" + }, + "categories": "Department Stores, Furniture Stores, Food, Grocery, Shopping, Fashion, Home & Garden, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:59", + "Wednesday": "7:0-23:59", + "Thursday": "7:0-23:59", + "Friday": "8:0-21:0", + "Saturday": "7:0-23:59", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "zCowVbESD9TSMdgBd1HzdQ", + "name": "Gynecology Specialists of Philadelphia", + "address": "823 S 9th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939117, + "longitude": -75.15759, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Obstetricians & Gynecologists, Laser Hair Removal, Doctors, Hair Removal, Beauty & Spas, Nutritionists, Health & Medical", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-15:30" + } + }, + { + "business_id": "9AxWt9VSp1yg7dv5D62W5Q", + "name": "Old Eagle Tavern", + "address": "177 Markle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0227463566, + "longitude": -75.2144878592, + "stars": 4.0, + "review_count": 103, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}" + }, + "categories": "American (Traditional), Restaurants, Bars, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "kn0-Tc4JFnpnlCyqG-3X9A", + "name": "IHOP", + "address": "1320 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94911, + "longitude": -75.16309, + "stars": 3.0, + "review_count": 166, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "American (Traditional), American (New), Food, Breakfast & Brunch, Burgers, Coffee & Tea, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-15:30" + } + }, + { + "business_id": "z_9_YHqMk_dPWq8op6aufg", + "name": "Cole Haan", + "address": "1600 Walnut St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495218, + "longitude": -75.1677853, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "False" + }, + "categories": "Shoe Stores, Shopping, Fashion", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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-18:0" + } + }, + { + "business_id": "RMBFktG5V1fmCTJSisLvMg", + "name": "Joseph Giannone Plumbing Heating & Air Conditioning", + "address": "1142 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934754, + "longitude": -75.1580753, + "stars": 3.0, + "review_count": 101, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Water Heater Installation/Repair, Plumbing, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "H_JO3CNWRTRHmstEyvb31Q", + "name": "Cube Cafe", + "address": "145 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552543, + "longitude": -75.1574065, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Asian Fusion, Coffee & Tea, Chinese, Restaurants, Food", + "hours": { + "Monday": "7:30-20:30", + "Tuesday": "7:30-20:30", + "Wednesday": "7:30-20:30", + "Thursday": "7:30-20:30", + "Friday": "7:30-20:30", + "Saturday": "8:0-20:30", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "x_woah0uFedYDfnhJF7dGQ", + "name": "Cadence Cycling Centers", + "address": "201 South 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950094, + "longitude": -75.180824, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Bikes, Bike Repair/Maintenance, Sporting Goods, Shopping", + "hours": { + "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": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "YRdJjCf9btLGKqBOZ6_NwQ", + "name": "Right Cleaning Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Office Cleaning, Gutter Services, Home Cleaning, Professional Services", + "hours": { + "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-15:0" + } + }, + { + "business_id": "lsM6KeDyLJqi5X1_sx2Biw", + "name": "J&J Super Market", + "address": "1839 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9253799, + "longitude": -75.1574454, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Imported Food, Grocery, Ethnic Food, Food, Butcher, Specialty Food", + "hours": { + "Monday": "7:30-23:0", + "Tuesday": "7:30-23:0", + "Wednesday": "7:30-23:0", + "Thursday": "7:30-23:0", + "Friday": "7:30-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "0K4RwxdAcViifyU3Htzxww", + "name": "Southwark Restaurant", + "address": "701 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404771, + "longitude": -75.1493607, + "stars": 4.0, + "review_count": 224, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Corkage": "True", + "BYOB": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Nightlife, Cocktail Bars, American (New), Coffee & Tea, Bars, Food, Restaurants, Desserts", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "nQJZEuHWI4qCFCMVh721Lw", + "name": "Allpets Housecalls", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Veterinarians, Pets, Health & Medical, Doctors, Pet Services, Home Services, Internal Medicine", + "hours": { + "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" + } + }, + { + "business_id": "F96zZwm8zAMxUB2DvLkmEA", + "name": "Roberto Cafe", + "address": "2108 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450538, + "longitude": -75.1773626, + "stars": 3.5, + "review_count": 106, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BikeParking": "True", + "HasTV": "False", + "Caters": "True" + }, + "categories": "Restaurants, Cafes, Italian", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "Zc5KhfYODgRQWBi8JA7nbQ", + "name": "Kitchen B & L", + "address": "925 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0448433774, + "longitude": -75.086436756, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'quiet'", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'none'" + }, + "categories": "Food, Restaurants, Kitchen & Bath, Home & Garden, Diners, Shopping", + "hours": null + }, + { + "business_id": "paT-z8ro0gfrBEmsiTtW7g", + "name": "Touched By Magic Cleaning Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Cleaning, Home Services, Office Cleaning, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "mT_ryHA6pbnSZ1uDGMewEw", + "name": "Asian Chao", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876143, + "longitude": -75.242886, + "stars": 1.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BikeParking": "False", + "HasTV": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Food, Restaurants, Fast Food, Chinese", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "PMOgJlkOqwuGE6iagRruxg", + "name": "Indie Girl Photography", + "address": "3824 Jasper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0038801, + "longitude": -75.0973687, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Professional Services, Photographers, Event Planning & Services", + "hours": null + }, + { + "business_id": "xTINmUeo7FhXjnitH2a8vQ", + "name": "Penske Truck Rental", + "address": "1216 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9372575, + "longitude": -75.1636927, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Transportation, Truck Rental, Home Services, Movers, Hotels & Travel, Automotive", + "hours": { + "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-14:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "hu5GnI4NNTszi2jzQy2Acg", + "name": "CVS Pharmacy", + "address": "7520 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.978, + "longitude": -75.2716, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Drugstores, Shopping, Pharmacy, Convenience Stores, Health & Medical, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "10:0-20:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "_tQq9qfIkZOOwzySEZZNxg", + "name": "Khmer Grill", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552453374, + "longitude": -75.1565693933, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Food Stands, Barbeque, Restaurants, Chicken Wings", + "hours": { + "Monday": "11:30-19:0", + "Tuesday": "11:30-19:0", + "Wednesday": "11:30-19:0", + "Thursday": "11:30-19:0", + "Friday": "11:30-19:0", + "Saturday": "11:30-19:0", + "Sunday": "11:30-19:0" + } + }, + { + "business_id": "3QRlc2p_QPkRS11bM6NXkw", + "name": "Broad Street Fitness", + "address": "1315 Walnut St, Ste LL-100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 1.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gyms", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-23:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "kLQRUgXEkbus1xqsR7QgRg", + "name": "Tiffany Nail & Spa", + "address": "1633 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947791, + "longitude": -75.169347, + "stars": 4.0, + "review_count": 71, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "bLPw8r7Xcl4sRti4WTbmSA", + "name": "Golden Nails", + "address": "7316 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0372569, + "longitude": -75.0401576, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "UNUQV-91oCy_NFfeb5CeSg", + "name": "Jason Douglass' Danceadelphia", + "address": "1100 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9235160142, + "longitude": -75.1646166115, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "U0oG8NI9Fz5YqpPf12fNpg", + "name": "Mastah Tee Fitness & Dance", + "address": "714 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9313464, + "longitude": -75.1571495, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dance Studios, Active Life, Boot Camps, Fitness & Instruction, Gyms, Cardio Classes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:30-19:15", + "Wednesday": "18:30-19:0", + "Thursday": "18:30-19:15", + "Saturday": "13:0-13:30", + "Sunday": "11:30-12:15" + } + }, + { + "business_id": "lra3ButUZm7ZymM1YSnkWA", + "name": "Dunkin'", + "address": "1038 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536961259, + "longitude": -75.1578691698, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Donuts, Food, Cafes, Coffee & Tea, Restaurants", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "9N7fq0RCVcoW4K5KJf4vGQ", + "name": "Euro Dyno Werx", + "address": "3011 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9818217, + "longitude": -75.1064875, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Customization, Auto Parts & Supplies, Auto Repair, Automotive", + "hours": { + "Wednesday": "9:0-9:15" + } + }, + { + "business_id": "iRpXlcwdCRvT57a8OwBSVA", + "name": "Boyds Philadelphia", + "address": "1818 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95137, + "longitude": -75.171244, + "stars": 3.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shoe Stores, Men's Clothing, Shopping, Women's Clothing, Fashion, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "wiqiWDDBPNZ8N-19F0Dq0Q", + "name": "K L H Air Conditioning & Heating", + "address": "482 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0338391, + "longitude": -75.2166491, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": null + }, + { + "business_id": "NaIwXgHlK4lhMuqHAYDp7A", + "name": "Kiwi Nails Fishtown", + "address": "441 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9707807, + "longitude": -75.1293944, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Eyelash Service, Hair Removal, Waxing, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-16:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "LNRyU5-qWpJg4F6546a3Dg", + "name": "Girasole Ristorante", + "address": "1410 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9456328, + "longitude": -75.1658061, + "stars": 3.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-23:30", + "Saturday": "17:0-23:30", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "DrGoibUtxnPSyblmVl7XGw", + "name": "Lucky Laundromat", + "address": "1700 Annin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.936852, + "longitude": -75.172063, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "WiFi": "'no'", + "BikeParking": "False" + }, + "categories": "Dry Cleaning & Laundry, Laundromat, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "f8LkUwzYthcG8jTagLzK1w", + "name": "52nd Station Diner", + "address": "9 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9596810609, + "longitude": -75.2248420939, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Comfort Food, Diners, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:30-14:30", + "Tuesday": "6:30-14:30", + "Wednesday": "6:30-14:30", + "Thursday": "6:30-14:30", + "Friday": "6:30-14:30", + "Saturday": "6:30-14:30" + } + }, + { + "business_id": "RTZOK-U_IrU6EISGjPzPCw", + "name": "Penn Behavioral Health Corporate Services", + "address": "3440 Market St, Ste 450, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955606, + "longitude": -75.192503, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Education, Educational Services, Health & Medical, Counseling & Mental Health", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "hQm7205omFcZQt7wu8vLQQ", + "name": "Chick-fil-A", + "address": "2301 E Butler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.997282, + "longitude": -75.092765, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': False}", + "Corkage": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True" + }, + "categories": "Event Planning & Services, Caterers, Restaurants, Fast Food, Chicken Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-16:0" + } + }, + { + "business_id": "dqM2dvE9LsQwzhZwTvVqJQ", + "name": "Curtis Center", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "yVID1jUqQ5W3FoHF95D9DQ", + "name": "Lacoste", + "address": "1424 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493851, + "longitude": -75.1655409, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Women's Clothing, Men's Clothing, Sporting Goods, Sports Wear, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VM2F3erGAXjaBFIz9TnMQQ", + "name": "Sherman Bros Men's Shoes", + "address": "1520 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502489, + "longitude": -75.1667365, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Shoe Stores", + "hours": null + }, + { + "business_id": "5JvPE_Ac1Rt86a46n4VsxQ", + "name": "WeWork Northern Liberties", + "address": "1010 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965854, + "longitude": -75.139456, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Commercial Real Estate, Home Services, Shared Office Spaces, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "ADe114o7Z4vb1O6HkM6YEA", + "name": "Greek Lady", + "address": "224 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534811107, + "longitude": -75.2029253184, + "stars": 3.5, + "review_count": 461, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "False", + "Caters": "True" + }, + "categories": "Greek, Fast Food, Restaurants, Breakfast & Brunch, Mediterranean, Salad", + "hours": { + "Monday": "9:30-23:0", + "Tuesday": "9:30-23:0", + "Wednesday": "9:30-23:0", + "Thursday": "9:30-23:0", + "Friday": "9:30-23:0", + "Saturday": "9:30-23:0", + "Sunday": "9:30-23:0" + } + }, + { + "business_id": "8CbJAKgVEALPbYcQTzhkvA", + "name": "WineO", + "address": "447 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665, + "longitude": -75.145408, + "stars": 3.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Wine Bars, Bars, Italian, Restaurants", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "P12gJqR0KPbyPFPpv1WaHg", + "name": "ALDI", + "address": "1300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9659679, + "longitude": -75.159565, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Organic Stores, Fruits & Veggies, Food, Specialty Food, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "8lF6eFOKrSmZeZnj49rFnQ", + "name": "Second Mile Center", + "address": "214 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546723, + "longitude": -75.2120335, + "stars": 3.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Thrift Stores", + "hours": { + "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" + } + }, + { + "business_id": "ia_9O97e9qRJrFH_owYjPg", + "name": "Burger King", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.978063, + "longitude": -75.158512, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "GoodForKids": "True" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "KsFuzQCOPhP8eHmt3rP11Q", + "name": "El Techo", + "address": "1830 Ludlow St, Fl 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952609, + "longitude": -75.1712569, + "stars": 3.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "coxedt2VAsol_4ToYwUJ4w", + "name": "Houston Hall", + "address": "3417 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509138, + "longitude": -75.1938787, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Education, Food, Party & Event Planning, Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "-eM3RSN178MaJouPTNkXJg", + "name": "Philthy Paws", + "address": "806 S 47th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948376, + "longitude": -75.2171196, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "HS8gBkXfgpRCBa8oP4JC-A", + "name": "Joltin Jabs", + "address": "4303 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025002, + "longitude": -75.221941, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Boxing, Trainers, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-18:30", + "Saturday": "7:0-13:0" + } + }, + { + "business_id": "j19wR1dEKorx141AtNeQlg", + "name": "Mike & Irv's Auto Repair", + "address": "6400 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0321485, + "longitude": -75.0638296, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "D7vuk6xnpig8gk32Pak61Q", + "name": "Frank's Tire Service", + "address": "2654 S Fairhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9152676, + "longitude": -75.1578499, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires", + "hours": null + }, + { + "business_id": "2ySMo05PypYCM98OnBcwDA", + "name": "Gatta & Son HVAC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9938284, + "longitude": -75.1399443, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "zXgksmhdzgL4Xx5FylbP3w", + "name": "Goat Hollow", + "address": "300 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0539069, + "longitude": -75.1942308, + "stars": 3.5, + "review_count": 220, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "HappyHour": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Food, Diners, Bars, Nightlife, Restaurants, American (New)", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "z1llbFByQIFZP5Hb44-_zw", + "name": "Spring Garden Market", + "address": "400 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9607287, + "longitude": -75.1455083, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "Caters": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "International Grocery, Grocery, Food", + "hours": { + "Monday": "5:0-15:30", + "Tuesday": "5:0-15:30", + "Wednesday": "5:0-15:30", + "Thursday": "5:0-15:30", + "Friday": "5:0-15:30", + "Saturday": "5:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "zucC7rHpXPYBu7aEqj0NUw", + "name": "Libertine Restauraunt", + "address": "261 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468905, + "longitude": -75.1623567, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BYOB": "True", + "Caters": "True", + "Corkage": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': True, 'casual': True}" + }, + "categories": "Bars, Cocktail Bars, American (New), Food, Restaurants, Gelato, Nightlife", + "hours": { + "Tuesday": "4:0-22:0", + "Wednesday": "4:0-22:0", + "Thursday": "4:0-22:0", + "Friday": "4:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "ABr07PGwhVlsnXNDUomNKQ", + "name": "Lululemon Athletica", + "address": "1527 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949938, + "longitude": -75.167153, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Shopping, Sports Wear, Fitness & Instruction, Sporting Goods, Active Life, Women's Clothing, Fashion, Yoga", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "R3oJ8jyL9j6t577lIdmZjg", + "name": "Cheap Exterminating", + "address": "1826 Gillingham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0115393, + "longitude": -75.0823656, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "mPSH8DwGh3tkmyTtvHOmwQ", + "name": "Lucky Corner Nails & Spa", + "address": "1612 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9156056, + "longitude": -75.1750697, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "_RK29S6rmOUG8yahuHYpiQ", + "name": "Hunger Burger", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532586925, + "longitude": -75.1589310688, + "stars": 3.5, + "review_count": 125, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "DriveThru": "False", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "HasTV": "False", + "Caters": "True" + }, + "categories": "Burgers, Food, Restaurants, Fast Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "s4Sv0RRwKKJgSN51J0uWWA", + "name": "Fishtown Animal Hospital", + "address": "233 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969652, + "longitude": -75.132884, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "8:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "tbZxopksng7TeHAylxMHmg", + "name": "DGN Properties", + "address": "200 W Sedgwick St, Ste 208", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0543536, + "longitude": -75.1917917, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Property Management", + "hours": null + }, + { + "business_id": "N9PyXCEUJu3Q8rxRAiS6Yw", + "name": "Dolce Pizza", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0872609384, + "longitude": -75.0399161411, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "0F1WFFm8TJde117UZPbkfA", + "name": "Triple Joy", + "address": "2301 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.991077, + "longitude": -75.178587, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Breakfast & Brunch, Food", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:30" + } + }, + { + "business_id": "v8ZUd9TePnvYSifCQFCueA", + "name": "Sue's Kitchen", + "address": "3217 D Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0570106694, + "longitude": -75.0135945701, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "African, Caribbean, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "CqvSL_VPlESfl7QzfBGqwg", + "name": "Philly Flavors", + "address": "2004 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670595, + "longitude": -75.1705213, + "stars": 3.5, + "review_count": 260, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Shaved Ice, Desserts", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "imd0v6mixJCBnqGr6RV3hQ", + "name": "Rami's", + "address": "40th and Locust", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9529565, + "longitude": -75.2028385, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True" + }, + "categories": "Middle Eastern, Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "okaj4Y8JyhfF_n5Y-P12lQ", + "name": "Salon Salon", + "address": "1506 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502359, + "longitude": -75.166286, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}" + }, + "categories": "Hair Removal, Beauty & Spas, Waxing, Skin Care, Massage, Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-14:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "RrrqJ2XY0CXNBot7zsdXPQ", + "name": "Fitzwater Street Philly Bagels", + "address": "2001 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9432015, + "longitude": -75.1755321, + "stars": 3.5, + "review_count": 167, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "Caters": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Food, Restaurants, Bagels, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "6:30-15:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "76C-eHHHP27BreuMkdN9cQ", + "name": "Gina's 45", + "address": "45 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489910664, + "longitude": -75.1457688957, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, American (Traditional), Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "nbOceaVJAFoyyaF-N3wTpw", + "name": "Lamp & Shade Outlet", + "address": "8601 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0427547, + "longitude": -75.0102746, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Lighting Fixtures & Equipment", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-15:0" + } + }, + { + "business_id": "l7IPMoYTa4YbUgrGyP6hKA", + "name": "Bella Vista Cleaner", + "address": "737 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940361, + "longitude": -75.154136, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "hu8L8Vswbg7HCbSJzf6pCQ", + "name": "Pediatric Dental Associates of Northeast Philadelphia", + "address": "6404 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.035872, + "longitude": -75.0696473, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Orthodontists, Pediatric Dentists, Dentists, General Dentistry, Health & Medical, Oral Surgeons, Cosmetic Dentists", + "hours": null + }, + { + "business_id": "DAPtNJ_fF203bJXBjbPxJg", + "name": "Five Below", + "address": "701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512937, + "longitude": -75.1526227, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Discount Store, Mobile Phone Accessories", + "hours": { + "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-19:0" + } + }, + { + "business_id": "uYbrpQ1jnV_L5YWBzjJrlA", + "name": "Village of Cottage Green", + "address": "9001 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.061027, + "longitude": -75.0228719, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Caterers", + "hours": null + }, + { + "business_id": "MymLJ21yIMrotlJiXbd6Gg", + "name": "Target", + "address": "4000 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.006086, + "longitude": -75.212145, + "stars": 2.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "HasTV": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "HappyHour": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Department Stores, Shopping, Grocery, Fashion, Furniture Stores, Home & Garden, Electronics, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:59", + "Wednesday": "7:0-23:59", + "Thursday": "7:0-23:59", + "Friday": "8:0-21:0", + "Saturday": "7:0-23:59", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "byNqaBLF4ozNbn2i9J3bWQ", + "name": "Pokรฉ-Man", + "address": "3737 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553689232, + "longitude": -75.198020339, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Poke, Food, Bubble Tea", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "gGrL6O7HKyghr-gqKYePUQ", + "name": "TD Bank", + "address": "4020 E City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0078466, + "longitude": -75.2121057, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:30-13:0" + } + }, + { + "business_id": "ubeDltaADmtgyxkrObkOfw", + "name": "Meju", + "address": "213 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485503, + "longitude": -75.144734, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Korean, Restaurants", + "hours": null + }, + { + "business_id": "xG_kGicbzurCuK9aoTqg8A", + "name": "The UPS Store", + "address": "10871 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1106651, + "longitude": -75.0238075, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Notaries, Local Services, Mailbox Centers, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "9:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Bw-FkJ8ZCYFg4gKzGGCUsQ", + "name": "Motion Recruitment", + "address": "1 S Broad St, Ste 2230", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511843, + "longitude": -75.1635217, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Employment Agencies, Career Counseling", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "W8-UTIJAsY95SJcieNRITA", + "name": "Temple Town Pizza & Grill", + "address": "2001 N Gratz St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9842432, + "longitude": -75.1641259, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Tuesday": "13:0-22:30", + "Wednesday": "13:0-22:30", + "Thursday": "13:0-23:0", + "Friday": "13:0-0:30", + "Saturday": "13:0-0:30", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "5Ml7-Pu7LHtpnj2nJRwcqA", + "name": "PennDOT Driver License Center", + "address": "2904 S 70th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.91295, + "longitude": -75.2342098, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Departments of Motor Vehicles", + "hours": null + }, + { + "business_id": "rlKk3ynwimKAa70zhpAntA", + "name": "Drinker's Tavern", + "address": "124 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496657, + "longitude": -75.143277, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "False", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "WiFi": "'free'", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Pubs, Restaurants, Tacos, Gastropubs, Mexican, Sandwiches, Dive Bars, Hot Dogs, Nightlife, Bars", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "hKzMD-okmcr6gfGG85SptA", + "name": "Fairmount Hardware", + "address": "2011 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673781, + "longitude": -75.1706215, + "stars": 3.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "2CkAPaNdV-4WeoTQ2w2bDA", + "name": "Companion Pet Hospital", + "address": "1524 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9290889, + "longitude": -75.1538312, + "stars": 4.5, + "review_count": 288, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pet Services, Pet Groomers, Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "g-mnsod42xN2y_LdYpoORw", + "name": "The Freshworks - Mayfair Store", + "address": "6801 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0320816, + "longitude": -75.0497523, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "BikeParking": "True" + }, + "categories": "Sandwiches, Cheesesteaks, Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "nybzQB_nqeq0bFgqZvlVnQ", + "name": "Neighborhood Bike Works North Philly", + "address": "1426 W Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.986267, + "longitude": -75.157447, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Community Service/Non-Profit, Local Services, Bike Repair/Maintenance, Active Life, Bike Rentals, Bikes, Shopping, Sporting Goods", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "tqY2t5a5E6YQKfW4jL8Vfg", + "name": "Wingstop", + "address": "6391 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.044244, + "longitude": -75.087193, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants", + "hours": { + "Monday": "10:45-23:45", + "Tuesday": "10:45-23:45", + "Wednesday": "10:45-23:45", + "Thursday": "10:45-23:45", + "Friday": "10:45-23:45", + "Saturday": "10:45-23:45", + "Sunday": "10:45-23:45" + } + }, + { + "business_id": "AcDQ4C7Plc0IOjMgntaoCQ", + "name": "Herbiary", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531092, + "longitude": -75.159589, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "Caters": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "False" + }, + "categories": "Home & Garden, Shopping, Specialty Food, Beauty & Spas, Food, Coffee & Tea, Herbs & Spices, Cosmetics & Beauty Supply", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "WsCIwMlDwt8g4i40JS_nGQ", + "name": "O'Mares Irish Pub", + "address": "10253 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1090254, + "longitude": -75.0254734, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "WiFi": "'free'", + "GoodForMeal": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "None", + "RestaurantsDelivery": "True", + "Caters": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Nightlife, Bars, Pubs, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "2iAEbiYYkz795dRqm_Jhkg", + "name": "Rite Aid", + "address": "2131-59 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.985804, + "longitude": -75.15561, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Convenience Stores, Drugstores, Food", + "hours": { + "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" + } + }, + { + "business_id": "oYvjtszgXo5x45d6fa6y2g", + "name": "Le Bercail Restaurant", + "address": "4519 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9492094, + "longitude": -75.213722, + "stars": 4.0, + "review_count": 59, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False" + }, + "categories": "Food, African, Specialty Food, Ethnic Food, French, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "g2AC4fBpVJrqiEiZinzLaA", + "name": "La Gioconda", + "address": "939-41 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369122, + "longitude": -75.159483, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1RReuaDA18lalPMY5VCvyg", + "name": "Shringar Beauty Salon", + "address": "10183 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1076203, + "longitude": -75.0272031, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Day Spas, Eyebrow Services, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:30-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Lhr2IPoYZ2tON_1XGXNp1g", + "name": "Dominican Beauty Salon", + "address": "716 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9923835, + "longitude": -75.144417, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "7:0-19:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "IpUlqml-oz2Izby8Hsx-lg", + "name": "Anna Restaurant", + "address": "304 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9543799638, + "longitude": -75.2263397723, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, African, American (Traditional)", + "hours": { + "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-0:0" + } + }, + { + "business_id": "hp6iyOf4yHAELQ_sjCD5Ew", + "name": "Independence Prime", + "address": "Philadelphia International Airport - 8000 Essington Ave, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19155", + "latitude": 39.8745568189, + "longitude": -75.2437496274, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': True, u'trendy': True, u'intimate': False, u'romantic': None, u'classy': True, u'upscale': None}", + "HappyHour": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "HasTV": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "79PsTPa-1DBLKhNytfAkYQ", + "name": "Stratus", + "address": "433 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490984776, + "longitude": -75.1490797056, + "stars": 3.0, + "review_count": 237, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsReservations": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsTakeOut": "False", + "AgesAllowed": "u'21plus'", + "GoodForDancing": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Nightlife, Dance Clubs, Bars, Lounges", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "19:0-2:0", + "Saturday": "20:0-2:0" + } + }, + { + "business_id": "nAgklYYG1ePyjXqe18QNRQ", + "name": "Hera Nail Spa", + "address": "2301 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9574524225, + "longitude": -75.1772087869, + "stars": 4.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-21:0", + "Friday": "9:30-19:30", + "Saturday": "10:30-18:30" + } + }, + { + "business_id": "rJrocVFQJew1tO_Nv1IkDw", + "name": "Concept Flooring Workroom South dba Data Carpet II", + "address": "9211 Keystone St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0476839, + "longitude": -74.9962608, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Rugs, Carpeting, Home & Garden, Home Services, Contractors, Shopping, Flooring", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-10:0", + "Saturday": "7:0-12:0" + } + }, + { + "business_id": "x3Po3HUD4ac_dpbMg1jDVA", + "name": "S & B Auto Service", + "address": "1135 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9577013, + "longitude": -75.1582547, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "l02jjfbmaLhHKCX39FOrBg", + "name": "The Chinese Noodle Factory", + "address": "133 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9549604, + "longitude": -75.1573313, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese, Noodles, Food", + "hours": null + }, + { + "business_id": "YDlLWQ8Tu0FCIQxEWcaZGA", + "name": "T-Mobile", + "address": "1737 Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517907313, + "longitude": -75.1701702923, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Mobile Phones, Shopping, Local Services, Electronics, IT Services & Computer Repair, Telecommunications, Mobile Phone Accessories", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "_AVG0GvrMfBRK5jyuwSwrg", + "name": "Motto By Hilton Philadelphia Rittenhouse Square", + "address": "31 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525065, + "longitude": -75.1717068, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "7lfL070CHmZNiqJ_dnhm1w", + "name": "Trinity Framing", + "address": "701 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940432, + "longitude": -75.1476009, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Arts & Crafts, Framing", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "TrcS6ja_Kb3jtRSaNB-36A", + "name": "Rival Bros", + "address": "N 33rd St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9576111, + "longitude": -75.1890822, + "stars": 4.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True" + }, + "categories": "Street Vendors, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "mGhwxHsvPiFa4nJ7zh7pYg", + "name": "Il Ghiottone", + "address": "2723 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9750224, + "longitude": -75.1183932, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Food, Italian, Food Delivery Services", + "hours": null + }, + { + "business_id": "mS3JySSrjHSzuELzryaeLQ", + "name": "L'Occitane en Provence", + "address": "1606 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495064, + "longitude": -75.1679677, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Skin Care, Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "K4WSzNnXbOyjTnPXNNM_9g", + "name": "Tbaar", + "address": "4321 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253066, + "longitude": -75.2226663, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bubble Tea, Food, Juice Bars & Smoothies, Desserts", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "mQO7LKZ1LHq0LLBO_Kg_rw", + "name": "Stella's Pizza", + "address": "3209 Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0572928, + "longitude": -75.0138114, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "'very_loud'", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Wraps, Food, Pizza, Salad", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "mDYwdadADWY4Ln5SZF10cg", + "name": "Little Bar", + "address": "736-8 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404603, + "longitude": -75.1561091, + "stars": 3.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Nightlife, Barbeque, Pubs, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "aBIKSaj78U2HLQCH_vl-PA", + "name": "Philadelphia Taxi Cab", + "address": "4421 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0015641166, + "longitude": -75.0795582533, + "stars": 1.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Taxis, Dance Clubs, Public Transportation, Airport Shuttles, Transportation, Train Stations, Nightlife, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "6IBVpq3XnklLsrWRm3LOFg", + "name": "Super Trans Philly Shuttle", + "address": "8312 State Rd, Ste 13", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0340638, + "longitude": -75.0173264, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Transportation, Airport Shuttles, Hotels & Travel", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "s8fPo7SUAHCRal8uX9XLpQ", + "name": "FDR Park", + "address": "1500 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9055502, + "longitude": -75.1755824, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "QFZbe75u5146KeTF3ZmOhQ", + "name": "The Institute", + "address": "549 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962848, + "longitude": -75.1573085, + "stars": 3.5, + "review_count": 167, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "American (Traditional), American (New), Latin American, Restaurants, Nightlife, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "8VSBmZjGTA1AXbsPQNcA6Q", + "name": "Empirical Point Acupuncture", + "address": "40 W Evergreen Ave, Ste 112", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0754252, + "longitude": -75.2082497, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WiFi": "u'no'" + }, + "categories": "Acupuncture, Traditional Chinese Medicine, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-19:0", + "Wednesday": "10:0-18:0", + "Thursday": "9:0-19:0" + } + }, + { + "business_id": "rHC2W65Y1JSvk7MCsEG1BA", + "name": "Redcap's Corner", + "address": "3850 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9613229, + "longitude": -75.1992089, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hobby Shops, Toy Stores, Shopping", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "U5_T9hDfdYFWS8ahj_1Dvw", + "name": "Just Salad", + "address": "1729 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517524, + "longitude": -75.1698373, + "stars": 3.5, + "review_count": 133, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Vegetarian, Juice Bars & Smoothies, Wraps, Restaurants, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0" + } + }, + { + "business_id": "gGC3SvEvxsRkRBIEU0Rfrw", + "name": "Jim's Steaks South Street Steaks and Hoagies", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87602, + "longitude": -75.242971, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False" + }, + "categories": "Steakhouses, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "_v_AKZO27dg9e5zPt5jCcA", + "name": "Stotesbury Mansion", + "address": "1923 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508084, + "longitude": -75.1734396, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Libraries, Venues & Event Spaces, Public Services & Government, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "MsgWKX-hUG35a0nLcCAKrg", + "name": "Currito", + "address": "8500 Essington Ave, Philadelphia International Airport, Terminal A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874423, + "longitude": -75.247136, + "stars": 3.5, + "review_count": 125, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Mexican, Food Trucks, American (New), Salad, Juice Bars & Smoothies, Food, Restaurants", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0", + "Sunday": "5:0-20:0" + } + }, + { + "business_id": "ZnNWcav76M-sKEm7xiZaQw", + "name": "Dan Does That", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Mobility Equipment Sales & Services, Contractors, Cabinetry, Home Services, Handyman", + "hours": { + "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" + } + }, + { + "business_id": "vi5NnZBtUaBoYfbY6EPTLw", + "name": "Pennsylvania General Store", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Crafts, Candy Stores, Food, Specialty Food, Chocolatiers & Shops, Shopping, Convenience Stores", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Q5NVGN4Qd_VnyGDvAoPeiA", + "name": "Septa 15th St. Station", + "address": "1387-1449 S Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517338, + "longitude": -75.1646024, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Train Stations, Hotels & Travel", + "hours": null + }, + { + "business_id": "OGQnCvnhqNCpWawUi9b21w", + "name": "Dr. Michael A. Troiano", + "address": "1740 South St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938817, + "longitude": -75.182574, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Podiatrists", + "hours": null + }, + { + "business_id": "GJ7rs9e7xvxLo5gNx73I2g", + "name": "CVS Pharmacy", + "address": "490 N Broad St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622341356, + "longitude": -75.1616897561, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "DriveThru": "True" + }, + "categories": "Pharmacy, Convenience Stores, Drugstores, Shopping, Food, Health & Medical", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "jZ7YdEW_VbWk2CbiG4Fsjw", + "name": "Old City Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9642033845, + "longitude": -75.145879751, + "stars": 4.5, + "review_count": 370, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Packing Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "30SDmG0Lzlly8ZISz6cXuw", + "name": "Paletas Y Helados Bambino", + "address": "1142 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352044852, + "longitude": -75.1587517932, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Coffee & Tea, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "3yJncsrrB2Jd0Ax7imaK-w", + "name": "The Training Station Gym", + "address": "533 Spring Garden St, D1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616587, + "longitude": -75.1474259, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Sports Clubs, Sports Wear, Active Life, Shoe Stores, Fashion, Sporting Goods, Trainers, Gyms, Fitness & Instruction, Shopping", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-19:0" + } + }, + { + "business_id": "AQF9Cqg1ywpL1iCz4SmWmw", + "name": "Stolovaya", + "address": "9846 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0936845, + "longitude": -75.0323494, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Russian, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "4TakDnuQw2uO4DCtbW6TDg", + "name": "Hafiz Sisters Beauty Supply", + "address": "59 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0346819, + "longitude": -75.1763578, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "u5EyXwNVHP3z7-ra0OdhLw", + "name": "Sherwin-Williams Paint Store", + "address": "1001 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93692, + "longitude": -75.160482, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Home Decor, Home Services, Home & Garden, Hardware Stores, Paint Stores, Building Supplies", + "hours": { + "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": "8:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "eBz80AQbtpXqDPe1fIelMg", + "name": "Eastern State Penitentiary Halloween Nights", + "address": "2027 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9683684, + "longitude": -75.1726552, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Arts & Entertainment, Tours, Haunted Houses, Hotels & Travel, Historical Tours", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "qcguEeAMP0XwFLYqhwX2hg", + "name": "Sweet Freedom Bakery", + "address": "1424 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94362, + "longitude": -75.1664573, + "stars": 3.5, + "review_count": 316, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Gluten-Free, Food, Bakeries, Restaurants, Vegan", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "8PSSfsRQ0JfH8Yc4Doq_uA", + "name": "Seulanga", + "address": "1838 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9277585, + "longitude": -75.1757526, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Indonesian, Restaurants", + "hours": null + }, + { + "business_id": "Ryo0eE_Y0M0KgiYSb-hPCg", + "name": "Secure Data Recovery Services", + "address": "630 Freedom Business Center Drive, 3rd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19406", + "latitude": 40.0930632263, + "longitude": -75.4123097468, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, IT Services & Computer Repair, Data Recovery", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "SYi3fXcXl1lxUmEEsrXR_g", + "name": "El Sarape Restaurant", + "address": "1304 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932888, + "longitude": -75.159452, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "wiHD9cNZnyOS8i4r0nGqMw", + "name": "13th Street Cocktails", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Nightlife, Bars, Cocktail Bars, Bartenders, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "I64-ojG2iHDI2MWNL_fjtQ", + "name": "Philly's Phinest Roofing", + "address": "1817 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.001487, + "longitude": -75.103686, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Gutter Services, Contractors, Roofing", + "hours": { + "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" + } + }, + { + "business_id": "-NG3pA9LEXCxt0Fjd_aYYA", + "name": "Linda's Vegetarian Village Restaurant", + "address": "6381 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0458535, + "longitude": -75.1820573, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "BikeParking": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Vegetarian, Live/Raw Food, Vegan, Restaurants", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "py4dtQNWhB2bfWc8nbKf7Q", + "name": "Yari's Dominican Hair Salon", + "address": "200 W Champlost St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0417275, + "longitude": -75.1241635, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BikeParking": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Blow Dry/Out Services, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "3i8aiuwpdhlqRzuxukuEEw", + "name": "The Criminal Justice Center", + "address": "1301 Filbert St, Ste 1207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534495, + "longitude": -75.1619257, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Courthouses, Public Services & Government", + "hours": null + }, + { + "business_id": "ha_85covbLE4Fb7mYQkLlQ", + "name": "BHHS Fox & Roach - East Falls", + "address": "3519 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0125448, + "longitude": -75.189683, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Services, Real Estate Agents", + "hours": { + "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" + } + }, + { + "business_id": "0nFhxTqIlkIAJypUkON-rQ", + "name": "Big Daddy Pizza", + "address": "1916 Welsh Rd, Ste 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0812146, + "longitude": -75.037495, + "stars": 2.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-22:15", + "Tuesday": "10:30-22:15", + "Wednesday": "10:30-22:15", + "Thursday": "10:30-22:15", + "Friday": "10:30-23:15", + "Saturday": "10:30-23:15", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "JQV6iAVa5_Fqojey26TjOA", + "name": "Luk Fu", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BYOB": "False", + "Corkage": "False", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "Caters": "False", + "OutdoorSeating": "False" + }, + "categories": "Chinese, Asian Fusion, Vietnamese, Pan Asian, Dim Sum, Restaurants", + "hours": { + "Monday": "16:0-3:0", + "Tuesday": "16:0-3:0", + "Wednesday": "16:0-3:0", + "Thursday": "16:0-3:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-3:0" + } + }, + { + "business_id": "JUnGN1OjtlPrLdzLLQGlvA", + "name": "University Village", + "address": "1701 N Tenth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.978582, + "longitude": -75.150452, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate, University Housing", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Iof_aWES_rnb8jj9Pi4S_Q", + "name": "Ralic's on South", + "address": "119 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411621094, + "longitude": -75.144744873, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "American (New), Seafood, Bars, Nightlife, Restaurants, Sports Bars", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "VbO4tOhs3OX0jm5-fCJAKw", + "name": "Olde Philly Pharmacy - Fishtown", + "address": "1427 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9758088, + "longitude": -75.1266682, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Drugstores, Shopping", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "VHdmxJZsT87D0yBPVynivg", + "name": "Krav Maga Elite", + "address": "1714 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938618, + "longitude": -75.172398, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Muay Thai, Brazilian Jiu-jitsu, Kickboxing, Active Life, Martial Arts", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "16:0-20:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "wadDHdeLQLZGMKQa9CE6Xw", + "name": "Brown Betty Petite", + "address": "269 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9484101, + "longitude": -75.174133, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Desserts, Food", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "rIUDqviGWQBpPOSBw2I2Ng", + "name": "Soju Biergarten", + "address": "1050 N Hancock St, Unit 51", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664438, + "longitude": -75.139576, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Smoking": "u'outdoor'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "CoatCheck": "False" + }, + "categories": "Korean, Beer Gardens, Japanese, Restaurants, Ramen, Nightlife", + "hours": null + }, + { + "business_id": "iXA3giKTRv504KRH7appdQ", + "name": "PAWS Northeast Adoption Center and Low-Cost Clinic", + "address": "1810 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0850138, + "longitude": -75.0369744, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians, Pet Adoption, Animal Shelters", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "bromU1Xux7mdNPXaoJWEtQ", + "name": "Respectable Roofing", + "address": "4827 Longshore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.021699, + "longitude": -75.055175, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Roofing", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "s7mCeZmcgSLNhoUytsAkwg", + "name": "Conway Collision LLC", + "address": "147 E Eleanor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0239463, + "longitude": -75.1225212, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Body Shops, Auto Repair, Windshield Installation & Repair", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "nmeGoVi_U-bbnojJsi52Aw", + "name": "The Angelo Pizza", + "address": "229 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502888, + "longitude": -75.1446988, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "ajF4K4G-gJtNVy0P2paJpA", + "name": "Wissahickon Park", + "address": "Lincoln Dr & Rittenhouse Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0293766, + "longitude": -75.1889039, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Parks, Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "zsHuf8OY7TDKqZ2e307Hzw", + "name": "Avis Rent A Car", + "address": "2000 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9555186, + "longitude": -75.1733289, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-18:30" + } + }, + { + "business_id": "w32t3LyWYApFIr-aldKUVA", + "name": "Horticulture Masterpiece", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Fences & Gates, Gardeners, Landscaping, Home Services, Tree Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0" + } + }, + { + "business_id": "eFc0rv7SO5x34xivOqrvYA", + "name": "Suzani Palace", + "address": "842 Red Lion Rd, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.103072, + "longitude": -75.030573, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "Caters": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Modern European, Russian, Seafood, Armenian, Salad, Restaurants, Uzbek", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "nLW8d1ixMZDLxQ_wTu221Q", + "name": "Nails By Vanessa", + "address": "1440 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446936, + "longitude": -75.1668212, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal", + "hours": null + }, + { + "business_id": "s2JiYzE7i68cXIV6YEcVTw", + "name": "Local 44", + "address": "4333 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952821, + "longitude": -75.210442, + "stars": 3.5, + "review_count": 494, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "Caters": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, Bars, American (New), Nightlife, Restaurants", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "15:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "6yR6piTIuUG_9P_ctivxKw", + "name": "Macy's", + "address": "1300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951903, + "longitude": -75.161795, + "stars": 3.0, + "review_count": 268, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Fashion, Shopping, Men's Clothing, Department Stores, Women's Clothing, Shoe Stores", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "iuoh6R7yIvKxffYsb5fH_A", + "name": "Crown Chicken & Burger", + "address": "1408 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437144134, + "longitude": -75.1656907284, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Chicken Shop", + "hours": null + }, + { + "business_id": "h9o2TCtyqPify_HgC9wH0g", + "name": "Bluemercury", + "address": "1707 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502462, + "longitude": -75.1694269, + "stars": 3.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Day Spas, Beauty & Spas, Makeup Artists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "an5Ok0CXeY2fMnb9iH4taw", + "name": "Quest Diagnostics", + "address": "2219 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922384, + "longitude": -75.1695424, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Diagnostic Services, Medical Centers, Laboratory Testing", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "MNr9QfQAl4fx-4-h85jgFg", + "name": "Rush Order Tees", + "address": "2727 Commerce Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.112258, + "longitude": -74.979034, + "stars": 3.5, + "review_count": 248, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Sewing & Alterations, Screen Printing, Arts & Crafts, Local Services, Screen Printing/T-Shirt Printing, Shopping, Graphic Design, Professional Services, Embroidery & Crochet, Uniforms", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "KnDq5XACtO5-G8QzZXr0Tg", + "name": "Coyle Brothers Auto Body", + "address": "6147 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9704712, + "longitude": -75.2425508, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "BiSdlIuOlf6MqyEZ6aWhfQ", + "name": "Con Murphy's", + "address": "1700 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95602, + "longitude": -75.167795, + "stars": 3.5, + "review_count": 301, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "WiFi": "u'free'", + "Caters": "False", + "Smoking": "u'no'", + "BYOB": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "CoatCheck": "False", + "OutdoorSeating": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Corkage": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Sports Bars, Nightlife, Bars, Pubs, Irish", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "12:0-18:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-2:0", + "Saturday": "8:0-2:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "zbd07p4LWd6ty5mHA2F1cg", + "name": "Zaffron", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522584164, + "longitude": -75.1681316337, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mediterranean, Fast Food", + "hours": { + "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:30-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Q2PsfIw2sPKNlkR-0sQBpw", + "name": "The Betsy Ross House", + "address": "239 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9522798, + "longitude": -75.1446095, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Historical Tours, Tours, Hotels & Travel", + "hours": { + "Monday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "qg32q52ZMmNMDH0aPik3_Q", + "name": "Schleppers Concierge Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Professional Services, Home Organization, Personal Assistants, Event Planning & Services, Home Services, Wedding Planning", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "8j3blTZChklt3j89jxx0fw", + "name": "Brauhaus Schmitz", + "address": "718 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423058586, + "longitude": -75.1546984195, + "stars": 4.0, + "review_count": 764, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForKids": "True", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, Restaurants, German", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "lxfqShdgMdZgJEniJEbloQ", + "name": "Juliettes Nails & Spa", + "address": "2824 Cottman Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0433546, + "longitude": -75.0532204, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal, Waxing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "iEOd2yZQERtdOOlQjuukPg", + "name": "Eclipse Hookah Lounge", + "address": "613 S 4th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411183, + "longitude": -75.1490884, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "None" + }, + "categories": "Lounges, Middle Eastern, Restaurants, Bars, Nightlife, Hookah Bars", + "hours": { + "Tuesday": "15:0-23:0", + "Wednesday": "15:0-23:0", + "Thursday": "15:0-23:0", + "Friday": "15:0-1:0", + "Saturday": "15:0-1:0", + "Sunday": "15:0-1:0" + } + }, + { + "business_id": "so7cDDq4xywQx6WY7W5M2Q", + "name": "Quaker City Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0254811, + "longitude": -75.0358532, + "stars": 2.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Appliances & Repair, Local Services, Professional Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "B7ACDZ13ObI83HHeGkGLJg", + "name": "Luke's Lobster Market East", + "address": "17 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509225, + "longitude": -75.1583976, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "11:30-18:30", + "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" + } + }, + { + "business_id": "xFtfdn4pBkRIViPfOBK73w", + "name": "Fishtown Escape Room", + "address": "411 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9705864, + "longitude": -75.130218, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Escape Games, Active Life", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "yxBS42yCi250PXY31jhoiQ", + "name": "Aqimero", + "address": "10 Avenue Of The Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512876403, + "longitude": -75.1641220332, + "stars": 3.5, + "review_count": 143, + "is_open": 1, + "attributes": { + "Caters": "True", + "HasTV": "False", + "GoodForKids": "False", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'dressy'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Latin American, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "12:0-15:0" + } + }, + { + "business_id": "OFzOce5dfz1BgayT33KtjA", + "name": "7165 Restaurant and Bar", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0597292462, + "longitude": -75.1906496286, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Bars, Beer Bar, American (New), Restaurants, Nightlife, Lounges, Dance Clubs, Arts & Entertainment, Music Venues", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "gU39t80dXx9LkIZHp6cyCQ", + "name": "Magic Noodles", + "address": "2833 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04357983, + "longitude": -75.05235617, + "stars": 3.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Noodles, Chinese, Chicken Shop", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "cdZf-iYQRy5D18gTM95aew", + "name": "The Bellevue Hotel", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 3.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsAttire": "u'dressy'", + "DogsAllowed": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Hotels & Travel, Event Planning & Services, Restaurants, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "uWyy81dLJoK0WuxPw2_REA", + "name": "Fruit Salad Cart", + "address": "20 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530334473, + "longitude": -75.1669692993, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Juice Bars & Smoothies, Food, Food Stands", + "hours": null + }, + { + "business_id": "RA4SCy0Af5yI0t8lP-3EFA", + "name": "P. & F. Giordano, LLC", + "address": "1043 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9364798, + "longitude": -75.1583039, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Specialty Food, Food, Fruits & Veggies", + "hours": null + }, + { + "business_id": "klNW30cZ_idEMGWgT9pLvA", + "name": "Portofino", + "address": "1227 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491576415, + "longitude": -75.1618073756, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "Alcohol": "'full_bar'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'dressy'", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "kAjFp54s3uUFyiTvD9hBlw", + "name": "Summit Children's Program", + "address": "6757 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0459051, + "longitude": -75.1943448, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Preschools, Education, Local Services, Child Care & Day Care, Active Life, Summer Camps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0" + } + }, + { + "business_id": "yoXMNvJd0xWJ2TsmQ4clTw", + "name": "Jaizelle Hanna Clothing Alterations & Custom Design", + "address": "3044 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9814294, + "longitude": -75.1047655, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Sewing & Alterations", + "hours": null + }, + { + "business_id": "ayrJOc0UzneTn6pgHsKCaQ", + "name": "America's Best Wings", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Cheesesteaks, American (New), Seafood, Chicken Wings, Salad, Burgers, American (Traditional)", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-1:0", + "Wednesday": "12:0-1:0", + "Thursday": "12:0-1:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "PtbIGfw7zq2yJgE2oy4sDg", + "name": "Burger King", + "address": "2900 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.90329, + "longitude": -75.240637, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-22:0", + "Saturday": "10:30-23:59", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "kDzp5FXnuG3Pwk6orhfl8A", + "name": "Circles + Squares", + "address": "2513 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9811626537, + "longitude": -75.1232624799, + "stars": 5.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "None", + "BYOB": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "WiFi": "u'no'", + "HasTV": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "gOpRlosKLPBuVhYsTxgesg", + "name": "Firehouse Bicycles", + "address": "701 S 50th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9476547, + "longitude": -75.2227004, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Sporting Goods, Bike Repair/Maintenance, Shopping, Bikes", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "x2xQUz1YfOzy5A9FRuCpMw", + "name": "Passage To India", + "address": "1320 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489511, + "longitude": -75.1630431, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "E_h2yNoagLK-3ODYwMPErw", + "name": "V Street", + "address": "126 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508935069, + "longitude": -75.1722220268, + "stars": 4.5, + "review_count": 739, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Breakfast & Brunch, Vegetarian, Vegan, Bars, Wine Bars, Restaurants, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "t6v8g8UeNiq3O2GoEc7R4Q", + "name": "Fish", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478075252, + "longitude": -75.1622780016, + "stars": 4.0, + "review_count": 153, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "WiFi": "u'no'", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "tZTIQ_8QzFZYrMn5u_M0Fg", + "name": "Haru", + "address": "241 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948674, + "longitude": -75.145814, + "stars": 3.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'casual': True}", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "HappyHour": "True" + }, + "categories": "Restaurants, Japanese", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-1:0", + "Saturday": "12:0-1:0" + } + }, + { + "business_id": "5yvs585-TDqiIJ39jHt8qQ", + "name": "Krispy Kreme", + "address": "41 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515595152, + "longitude": -75.1670362028, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "_eYIbxOoSnzGgq3v2o4WKQ", + "name": "Miss Demeanor", + "address": "1729 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927895, + "longitude": -75.165554, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Fashion, Shopping, Women's Clothing, Accessories", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "eqoyosqDGli6zLY2TRR7ng", + "name": "Hidden River Outfitters", + "address": "4100 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0222502, + "longitude": -75.218689, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Tours, Active Life, Rafting/Kayaking, Hotels & Travel, Paddleboarding", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "CduRuby4OoRtTHYbYEZRlg", + "name": "HomeGoods", + "address": "1851 S Christopher Columbus Blvd, Ste c", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923457, + "longitude": -75.141258, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Home & Garden, Kitchen & Bath, Furniture Stores, Home Decor, Shopping, Rugs", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "6Ljzx1cJvXre0dv5uPYonQ", + "name": "Silver Building Construction", + "address": "355 Reno St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9641862, + "longitude": -75.1439153, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": null, + "categories": "Professional Services, Contractors, Home Services, Interior Design", + "hours": { + "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" + } + }, + { + "business_id": "6ewV-e7-39oqYUq3yZuIyw", + "name": "Sabrina's Cafรฉ", + "address": "227 N 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9598792, + "longitude": -75.1906815, + "stars": 4.0, + "review_count": 833, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "HappyHour": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Vegetarian, American (New), American (Traditional), Comfort Food, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "W-esb76USKNAJYhd2xoKnw", + "name": "Michael's Family Restaurant", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.102162, + "longitude": -75.009483, + "stars": 2.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "y1KtJbwE1q221baLCvv1SA", + "name": "First Class Moving", + "address": "2947 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9128313, + "longitude": -75.1697575, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Junk Removal & Hauling, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "Ep_jh1Pt4Ggyla21f-BQcQ", + "name": "New Leaf 2 Chinese & Japanese Cuisine", + "address": "4260 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0247036, + "longitude": -75.2219543, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': True}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Nightlife, Bars, Restaurants, Japanese, Chinese", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-23:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "KDWHReUcvNqhvbwhlYYb7g", + "name": "Talk Of The Town", + "address": "3020 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9126407, + "longitude": -75.1728924, + "stars": 3.0, + "review_count": 86, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "mXcjGClCK67VVCSx0hrtMw", + "name": "O'Brien's Tire & Auto", + "address": "2639 E Hagert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976762, + "longitude": -75.1207423, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations, Auto Repair, Towing, Tires", + "hours": { + "Monday": "7:0-17:30", + "Tuesday": "7:0-17:30", + "Wednesday": "7:0-17:30", + "Thursday": "7:0-17:30", + "Friday": "7:0-17:30", + "Saturday": "7:0-14:0" + } + }, + { + "business_id": "Q9poenJ9SS3agpPo4Pgyyg", + "name": "Ray's Cafรฉ & Teahouse", + "address": "141 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546207, + "longitude": -75.1542759, + "stars": 4.5, + "review_count": 181, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "OutdoorSeating": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Coffee & Tea, Chinese, Restaurants, Food", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "11:30-17:0" + } + }, + { + "business_id": "T9sdnqG0AnXv5xkVy7b4RQ", + "name": "Point of Destination Cafe", + "address": "6460 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0423856466, + "longitude": -75.190015489, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Vegetarian, Restaurants, American (New), Breakfast & Brunch, Vegan, Sandwiches, Food, Cafes, Caterers, Coffee & Tea, Event Planning & Services, Venues & Event Spaces, American (Traditional)", + "hours": null + }, + { + "business_id": "BX3LLonrLLLfVX-tNrE7yA", + "name": "Cafe Nhan", + "address": "1606 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924667, + "longitude": -75.173231, + "stars": 4.5, + "review_count": 166, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "HappyHour": "False", + "BYOB": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "Corkage": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "3zgAEO_E_cGhOMGeLSMcVA", + "name": "The Christmas Tree Stand", + "address": "1501 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953481, + "longitude": -75.165695, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True" + }, + "categories": "Home & Garden, Shopping, Christmas Trees", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "s9KeAEPqjJdikulW8KQDWw", + "name": "House At Pooh Corner", + "address": "311 E Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0450046, + "longitude": -75.1749443, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Child Care & Day Care, Preschools, Education, Local Services", + "hours": null + }, + { + "business_id": "Zd5jCPHfDYlM0cbsMdkgaw", + "name": "A Sensual You Pole Dance & Fitness", + "address": "2819 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9836796, + "longitude": -75.114269, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Dance Studios, Fitness & Instruction, Active Life", + "hours": { + "Tuesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "16:0-23:0", + "Saturday": "9:0-23:0" + } + }, + { + "business_id": "sv87e2efXJ5dDkUZ-0PmiQ", + "name": "Scheie Eye Institute", + "address": "51 N 39th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.958456, + "longitude": -75.199509, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Neurologist, Ophthalmologists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "QP-m97x52Eq7gghg7BrbKg", + "name": "Philadelphia Wings", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Professional Sports Teams", + "hours": null + }, + { + "business_id": "wATz5hBUiCzJpEil-TIVdw", + "name": "Tag Denim", + "address": "4347 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025687, + "longitude": -75.223588, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Men's Clothing, Fashion, Accessories, Women's Clothing, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "8xTHtLoNIwdpf0FEvIpQIw", + "name": "By George! Pizza Pasta & Cheesesteaks", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532222415, + "longitude": -75.1594696319, + "stars": 4.0, + "review_count": 284, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Italian, Pizza, Cheesesteaks", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "4KbpvwrCVjL8t1g_pOUndQ", + "name": "Sarku Japan", + "address": "1625 Chestnut St, Ste 205", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516498, + "longitude": -75.1682121, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "Alcohol": "u'none'" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": null + }, + { + "business_id": "WmLZanQpFG4qpfT7j3RXbg", + "name": "1 Stop Mini Market", + "address": "700 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414019, + "longitude": -75.1559518, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Convenience Stores", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "wrBECCxHdYlO4VHcHWCssQ", + "name": "The Velvet Lily", + "address": "1204 Chestnut St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501862, + "longitude": -75.1605348, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True" + }, + "categories": "Personal Shopping, Adult, Shopping, Fashion, Bridal, Lingerie", + "hours": { + "Monday": "12:0-18:30", + "Tuesday": "12:0-18:30", + "Wednesday": "12:0-18:30", + "Thursday": "12:0-18:30", + "Friday": "12:0-19:30", + "Saturday": "12:0-19:30" + } + }, + { + "business_id": "4W9f4R-SQ5_45TZhAbLr1g", + "name": "Mt Airy Read & Eat", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.060177, + "longitude": -75.190676, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "False" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "dP6JIIOG0fVZV96JJCEwgQ", + "name": "Quaker City Cab", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9226914, + "longitude": -75.2304038, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Taxis, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "zo1GorIE0bek0ZvQzLzqUg", + "name": "Definis and Sons Window & Door", + "address": "8312 State Rd, Ste 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0340638, + "longitude": -75.0173264, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Door Sales/Installation, Windows Installation, Home Services", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "bHzjGwIksxxVhV1y2v5f7A", + "name": "Noble Goods", + "address": "8436 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0757725, + "longitude": -75.2060348, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True" + }, + "categories": "Women's Clothing, Shopping, Home & Garden, Home Decor, Fashion, Accessories, Jewelry", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "jbIHN6TuseNIqhzzv67aLw", + "name": "Glendinning Rock Garden", + "address": "Brewery Hill Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9761271, + "longitude": -75.1910898, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "nSwgcBHY6wVSE55KAlYuzg", + "name": "Fresh Prints of West Philly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pets, Pet Sitting, Pet Services, Dog Walkers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "rLbg6S9R21EEaADs7k67ug", + "name": "The Dive Bar", + "address": "947 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368319, + "longitude": -75.1547066, + "stars": 4.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "HappyHour": "True", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "Kh5SojHNsEU-4CLemEQnXA", + "name": "Joe Ems - State Farm Insurance Agent", + "address": "3358 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.067536, + "longitude": -75.0054702, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home & Rental Insurance, Financial Services, Life Insurance, Insurance, Auto Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "D6-z-iVxQmKGGeV08_xFdA", + "name": "Hanover North Broad", + "address": "322 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9592768289, + "longitude": -75.1624061432, + "stars": 4.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Property Management, University Housing, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "b3CpXg9UINn2FZC8CTHqFg", + "name": "Beaudee Lash Bar", + "address": "2417 Welsh Rd, Ste 24", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0707803767, + "longitude": -75.0309774456, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Eyelash Service, Beauty & Spas, Waxing, Hair Removal, Eyebrow Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "ruItzjauKbybM6Sdt9An8A", + "name": "Pho-ladelphia", + "address": "1100 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9223166, + "longitude": -75.1648601, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Smoking": "'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "Hs9P9OzfJpATwWkp5aYx2A", + "name": "John & Kira's", + "address": "163 W Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0221379, + "longitude": -75.1268331, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Specialty Food, Food, Chocolatiers & Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "xRRd5XWJrCs7H-A4M4i1jQ", + "name": "Mandingo African Hair Braiding", + "address": "802 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423032, + "longitude": -75.1557124, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "mfpdT5xClMi3tJWh5fdRKg", + "name": "Worn Yesterday", + "address": "4228 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0242458, + "longitude": -75.2212189, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Children's Clothing, Fashion, Maternity Wear", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "_88ao0DzRuxYjU-Hp2G05Q", + "name": "Top Shelf Lounge", + "address": "5564 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9606936, + "longitude": -75.2326259, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "BikeParking": "False", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, Lounges", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "3BooQ2yklCtANqB5t6BbCg", + "name": "SignaCurl", + "address": "116 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513232, + "longitude": -75.1723232, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Art Galleries, Painters, Arts & Entertainment, Blow Dry/Out Services, Men's Hair Salons, Home Services, Beauty & Spas, Photographers, Makeup Artists, Event Planning & Services, Session Photography, Hair Stylists, Cosmetics & Beauty Supply, Hair Salons, Shopping", + "hours": null + }, + { + "business_id": "_VKfuz0s7kp55lpF5cmgOw", + "name": "Natural Touch Grooming", + "address": "5233 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.019285, + "longitude": -75.210635, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Pet Services, Pet Groomers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "NYj8uB9-u0SmRMNDNktb1g", + "name": "Oscar's Tavern", + "address": "1524 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502531, + "longitude": -75.1668064, + "stars": 4.0, + "review_count": 328, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "False", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "WiFi": "u'no'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Nightlife, Restaurants, Bars, Dive Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "vrcHVlHwjDIKCg5Hl1wJyw", + "name": "MacCabeam Restaurant", + "address": "128 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493662, + "longitude": -75.1606882, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Kosher, Middle Eastern", + "hours": null + }, + { + "business_id": "7zJ2m_b-VdThJ5zpnwXSOQ", + "name": "Salon Bass", + "address": "2056 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9468321, + "longitude": -75.1764911, + "stars": 5.0, + "review_count": 201, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "_-MEpxe4XRNxYL4T67YRSg", + "name": "WeWork Market St.", + "address": "1601 Market St, Fl 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673584, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Shared Office Spaces, Home Services, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "3QpErOK9RfahtAfrKSZYig", + "name": "Nick's Roast Beef", + "address": "4501 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.083729, + "longitude": -74.9661299, + "stars": 2.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, American (Traditional), Restaurants, Bars", + "hours": { + "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" + } + }, + { + "business_id": "nxV0qNngBHkOBm3rer9E-w", + "name": "Orangetheory Fitness Northern Liberties", + "address": "1050 N Hancock St, Ste 58", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665763827, + "longitude": -75.1393067129, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "GoodForKids": "False" + }, + "categories": "Boot Camps, Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "4:30-21:30", + "Wednesday": "4:30-21:30", + "Thursday": "5:0-13:0", + "Friday": "9:0-20:0", + "Saturday": "6:45-14:30", + "Sunday": "6:45-14:30" + } + }, + { + "business_id": "8va8lpVU8aiQtnSbyjVScA", + "name": "Spataro's Cheesesteaks", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 2.5, + "review_count": 261, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "Cheesesteaks, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "-TZgzh-CIUQuPCSopuvXgA", + "name": "OfficeMax", + "address": "7231 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0433991, + "longitude": -75.0544525, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Office Equipment, Shopping, IT Services & Computer Repair, Local Services, Printing Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "nwk7HiUk0IIYftBDF5yv7w", + "name": "HomeSlice", + "address": "1030 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671988, + "longitude": -75.1410133, + "stars": 3.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "3uLXZMnm68l1YwI8_FaFNA", + "name": "Bangkok Thai 9 Cuisine", + "address": "2028 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95196, + "longitude": -75.174711, + "stars": 3.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food Delivery Services, Food, Thai", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "cSLT_5UIlQ6JKzgYklBNeQ", + "name": "Explorer's Den Steaks and Hoagies", + "address": "2160 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.041067, + "longitude": -75.1579811, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Food, Specialty Food, Sandwiches, Restaurants, Ethnic Food, Cheesesteaks", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "nruMoZnp3NfbDdBgbtS3LQ", + "name": "Clinton Street Bed & Breakfast", + "address": "1024 Clinton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9451374, + "longitude": -75.1592598, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Bed & Breakfast, Hotels & Travel", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "vBwDwbU52z6Daw29McXCCw", + "name": "Tropical Smoothie Cafe", + "address": "2401 Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.073421, + "longitude": -75.1547979, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Juice Bars & Smoothies, Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "_VQbAFHvYi50fJbfxlY6Yw", + "name": "Cucina Italiana", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552741948, + "longitude": -75.1821326659, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Italian, Sandwiches", + "hours": null + }, + { + "business_id": "FjlsbWYN28Uk-v5pjb5pWg", + "name": "Wimex Beauty", + "address": "1807 E Huntingdon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9885688, + "longitude": -75.1267175, + "stars": 1.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": null + }, + { + "business_id": "gG0Pp5P6BA7zk-vX3-CLCw", + "name": "El Principe Restaurant", + "address": "115 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9910614002, + "longitude": -75.1315125497, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'dressy'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Latin American", + "hours": null + }, + { + "business_id": "JXnatL1ALEIL-0JZbDitbw", + "name": "Bistro 7", + "address": "7 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505744, + "longitude": -75.1454639, + "stars": 3.5, + "review_count": 108, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Alcohol": "'none'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "French, Restaurants, Salad", + "hours": { + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:30", + "Saturday": "17:30-22:30" + } + }, + { + "business_id": "ZN_3BYWNWJF3Hb81Vs82dQ", + "name": "KFC", + "address": "6240 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0585056828, + "longitude": -75.1643203227, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "DriveThru": "True" + }, + "categories": "Fast Food, Chicken Wings, Chicken Shop, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "b6Q0NN1z_JKM7nwjMKSAMA", + "name": "Popeyes Louisiana Kitchen", + "address": "327 Spring Garden Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614049, + "longitude": -75.1443064, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Fast Food, Restaurants, Chicken Wings", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "tk48cRdtqhRAnviZMae25w", + "name": "Brewerytown Chiropractic", + "address": "2712 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9740583, + "longitude": -75.1810542, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:30-18:45", + "Wednesday": "9:0-14:0", + "Thursday": "14:30-18:45", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "hGeI6ICLbNHLuXAgJxjlFg", + "name": "revive 21", + "address": "PhilDelphia Airport, Terminal F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8809167118, + "longitude": -75.2373865962, + "stars": 2.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "CoatCheck": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Restaurants, American (Traditional), Nightlife, Sports Bars, Pubs, Bars", + "hours": null + }, + { + "business_id": "HQD2fLfTDlHt8tdi8p0p3A", + "name": "Wayne's Garage", + "address": "4521 Springfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485311, + "longitude": -75.2133903, + "stars": 2.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Tires, Transmission Repair, Oil Change Stations, Automotive, Smog Check Stations, Auto Parts & Supplies, Auto Repair, Towing, Car Inspectors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "gk3oHOr96OuVIgc0c6APRw", + "name": "School of Rock", + "address": "421 N. 7th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589273, + "longitude": -75.1500189, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Performing Arts, Shopping, Active Life, Musical Instruments & Teachers, Specialty Schools, Summer Camps, Education, Day Camps, Art Schools, Arts & Entertainment", + "hours": { + "Monday": "15:30-21:0", + "Tuesday": "15:30-21:0", + "Wednesday": "15:30-21:0", + "Thursday": "15:30-21:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "KjJDvCg5wuK-wyRy9OYJYQ", + "name": "Bally Pizza", + "address": "7903 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0726185, + "longitude": -75.1577167, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "'paid'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "HasTV": "True", + "BikeParking": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "BYOB": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "ERxAPTa09fE0tZwvfht26Q", + "name": "Beijing", + "address": "909 E Cayuga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0150353, + "longitude": -75.108814, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "-UJ7ZTb3zfmqZogmy3fnGg", + "name": "Bellini", + "address": "220 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949084, + "longitude": -75.167867, + "stars": 3.0, + "review_count": 318, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "HasTV": "True", + "BYOBCorkage": "u'no'", + "GoodForKids": "True", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "Music": "{u'dj': False, u'live': None, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Wine Bars, Venues & Event Spaces, Event Planning & Services, Restaurants, Cocktail Bars, Italian, Bars, Nightlife", + "hours": { + "Monday": "16:0-21: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", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "pAPDZLeZrgbgXdGPL7txUg", + "name": "Zara Brow Bar", + "address": "1212 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948742, + "longitude": -75.161226, + "stars": 4.0, + "review_count": 151, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Eyelash Service, Hair Removal, Beauty & Spas, Threading Services, Waxing", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "_km1lWcqrx09hh8DvgVtBg", + "name": "Papa John's Pizza", + "address": "6543 Roosevelt Blvd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.034832, + "longitude": -75.066072, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "OutdoorSeating": "False" + }, + "categories": "Pizza, Fast Food, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Qcw0T-PNa5Cggkf7W0URyQ", + "name": "CVS Pharmacy", + "address": "8525 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0458036, + "longitude": -75.0155691, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DriveThru": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Shopping, Drugstores, Health & Medical, Convenience Stores, Food, Pharmacy", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "10:0-20:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "-FMI0_EhMjwXaAgHVGuG2Q", + "name": "Route 6", + "address": "600 N. Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9641731, + "longitude": -75.1615163, + "stars": 4.0, + "review_count": 214, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:30-21:30" + } + }, + { + "business_id": "POuaebsAeCyNx-8qZ3O7XQ", + "name": "Shang Hai 1", + "address": "123 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9541205693, + "longitude": -75.1560343422, + "stars": 4.0, + "review_count": 332, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "OutdoorSeating": "None", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Taiwanese, Chinese, Shanghainese, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "8QY974PXRbLFIcJUqz7gsA", + "name": "Freddy & Tony's Restaurant", + "address": "201 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9992623, + "longitude": -75.133377, + "stars": 3.5, + "review_count": 117, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Spanish, Caribbean, Puerto Rican", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "jDds2solrdvoyK7sB97Eog", + "name": "Fairfield Inn & Suites Philadelphia Downtown/Center City", + "address": "261 South 13th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468905, + "longitude": -75.1623589, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Venues & Event Spaces, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "Pg2ZKh-Ss7CCpaF8MwNWYw", + "name": "Antonio's Deli", + "address": "1014 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345137, + "longitude": -75.1610451, + "stars": 5.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Caters": "True" + }, + "categories": "Delis, Restaurants, Event Planning & Services, Sandwiches, Caterers", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "C3n1MJBUY6Ll_1sKjlcNAA", + "name": "Sahara Indian Cuisine", + "address": "517 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.970455, + "longitude": -75.145728, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Halal, Restaurants, Indian", + "hours": null + }, + { + "business_id": "eI1GgwM6Z2tEOkb8nuf6Zw", + "name": "U-Haul Moving & Storage of Philadelphia", + "address": "314-322 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9584247, + "longitude": -75.1602533, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Propane, Local Services, Truck Rental, Movers, Trailer Rental, Self Storage, Home Services, Automotive", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "R9s2JUSSAiEzea2V9IMHWQ", + "name": "Bilenky Cycle Works", + "address": "5319 N Second St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.031918, + "longitude": -75.126198, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Metal Fabricators, Bike Repair/Maintenance, Bike Rentals, Local Services, Sporting Goods, Shopping, Bikes, Active Life", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "qKiz-h7IJb7DRHnqDktGMw", + "name": "New London Pizza", + "address": "500 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0203154, + "longitude": -75.1161239, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "False", + "BikeParking": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "tAdk9jHtoWjOL6CFmX6nCg", + "name": "Bicycle Therapy", + "address": "2211 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945495, + "longitude": -75.178989, + "stars": 4.5, + "review_count": 142, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Bike Repair/Maintenance, Bike Rentals, Active Life, Sporting Goods, Shopping, Local Services, Bikes", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "aqX_AbU_q7wohvHcv8aggw", + "name": "Philly Marble & Tile", + "address": "1322 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376767, + "longitude": -75.1654517, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Countertop Installation, Real Estate, Building Supplies, Home Services, Shopping, Apartments, Kitchen & Bath, Flooring, Home & Garden", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "lV4adcsE17B2F035wNS12g", + "name": "Rittenhouse Properties", + "address": "2034 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947101, + "longitude": -75.171325, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "TuLKUXkCvPYCbmJRzzh7Aw", + "name": "Ngon Ngon", + "address": "615 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94093, + "longitude": -75.14743, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Vietnamese, Sandwiches, Asian Fusion", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "UjWP0znWu3HzqZiHRt2qZg", + "name": "Forever 21", + "address": "1706 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0873144905, + "longitude": -74.9619353785, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Fashion, Women's Clothing, Men's Clothing, Accessories, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "lhsWv1fxNytmAyuSBh93pg", + "name": "Enterprise Rent-A-Car", + "address": "110 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.029942, + "longitude": -75.229069, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "7:30-16:0", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "jiNS6ykXcU63wNgcMHzlmA", + "name": "Infinity Jewelers", + "address": "3528 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0370906, + "longitude": -75.0419417, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Watches, Local Services, Gold Buyers, Shopping, Flowers & Gifts, Gift Shops, Jewelry, Jewelry Repair", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "fi8e8y3VnBthXMuULioiAg", + "name": "Fine Parking", + "address": "316 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9456276, + "longitude": -75.160056, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "AZVvhj1c3OF-SMSpe9M3bA", + "name": "ACME Markets", + "address": "6640 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0502917679, + "longitude": -75.0869798366, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Drugstores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "LrCyYoNvb86UiDVXVV6bOQ", + "name": "Today's Nail Salon", + "address": "1504 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9308027, + "longitude": -75.1625415, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "DS-aX6GzBVwRpIzP8luWBw", + "name": "Condiment", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953423, + "longitude": -75.159096, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Specialty Food, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "aep_I8thy4Pa8q64m8HIuw", + "name": "Rio Cobre Jamaican Restaurant", + "address": "524 S 4th St, 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941974, + "longitude": -75.149313, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0" + } + }, + { + "business_id": "GVRTpquM8rSPe7x8XkmmrA", + "name": "Taps Fill Station", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "HasTV": "True", + "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': None, 'live': None, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Wine Bars, Cocktail Bars, Bars, Beer Bar", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "JwoRvWmsHIw1FLpJ1ZnwRw", + "name": "Painting with a Twist", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.078989, + "longitude": -75.028179, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Paint & Sip, Art Classes, Education, Arts & Entertainment", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "Fyc2hrO0LjHNlyswvtI_iw", + "name": "Practical Bodywork", + "address": "2312 N Hancock", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9855648746, + "longitude": -75.135233514, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Massage, Massage Therapy, Reiki, Beauty & Spas, Health & Medical", + "hours": { + "Tuesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "5wuOcC8ObVX_y-6NMeCqVQ", + "name": "Amy's Place", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494902133, + "longitude": -75.1581573486, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home & Garden, Toy Stores, Flowers & Gifts, Kitchen Supplies, Kitchen & Bath, Gift Shops", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "d974XBCRIZwoYbUrY2Rd3w", + "name": "Union Taco", + "address": "4229 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023539, + "longitude": -75.219736, + "stars": 3.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "HappyHour": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants, Tacos", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "AaPIKS0VJ6BMfteNka0drA", + "name": "LensCrafters", + "address": "2301 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04821, + "longitude": -75.0587569362, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Eyewear & Opticians, Shopping, Health & Medical, Ophthalmologists, Doctors, Optometrists", + "hours": { + "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": "9:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "6c8eIawbCBu3FLp2kDraBA", + "name": "Attico Rooftop Lounge", + "address": "219 S Broad St, Rooftop of Cambria Hotel", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486052, + "longitude": -75.1640808, + "stars": 3.0, + "review_count": 206, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "Music": "None", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "None", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "HasTV": "False", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': True, 'classy': True, 'casual': True}", + "HappyHour": "True", + "RestaurantsReservations": "True", + "CoatCheck": "True", + "DogsAllowed": "False", + "BYOB": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}" + }, + "categories": "Tapas/Small Plates, American (Traditional), Beer, Wine & Spirits, Mediterranean, Restaurants, Food, Bars, Cocktail Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "16:30-2:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "IRVQ6INmgAvl2dXU5ChqWw", + "name": "Majestic Nail Bar", + "address": "1830 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9778163, + "longitude": -75.1314807, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas, Eyelash Service, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "r4D7_LX3JowSbx4QUpoaNg", + "name": "Monster Pets", + "address": "1946 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9214203, + "longitude": -75.144277, + "stars": 2.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pets, Shopping, Pet Stores", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "yYG2XDKCaf5yOLgJSKMw6g", + "name": "Anthony's Italian Coffee House and Chocolate House", + "address": "903 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386913, + "longitude": -75.1577712, + "stars": 4.0, + "review_count": 191, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Ice Cream & Frozen Yogurt, Specialty Food, Restaurants, Food, Coffee & Tea, Tea Rooms, Chocolatiers & Shops", + "hours": { + "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-20:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "XkWLvNeJWIQqNp2oX4XzKw", + "name": "Best Buy Furniture", + "address": "9490 Blue Grass Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0769794, + "longitude": -75.0258393, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Baby Gear & Furniture, Furniture Stores, Shopping, Home & Garden, Mattresses", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-16:0", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "yNsMcSaJUpmo-R2PwK-GUw", + "name": "Phloat", + "address": "201 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484914, + "longitude": -75.1612338, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Float Spa, Beauty & Spas, Health Retreats, Medical Spas, Hotels & Travel", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "WgeYi9l62t-6-LnB2I03og", + "name": "Cohen's Fashion Optical", + "address": "1318 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491107, + "longitude": -75.1629489, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Optometrists, Eyewear & Opticians, Sunglasses, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "j1WFr8rSrekUgTNy4NudxA", + "name": "Govberg Jewelers", + "address": "1529 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499132, + "longitude": -75.1672491, + "stars": 4.0, + "review_count": 120, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "WheelchairAccessible": "True" + }, + "categories": "Jewelry, Shopping, Watches, Watch Repair, Local Services", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "60V8LH8ya-eentofqof1oQ", + "name": "Wild Hand", + "address": "606 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0461222, + "longitude": -75.1959394, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Knitting Supplies, Shopping, Embroidery & Crochet, Arts & Crafts", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "74FTBe8MP_IM6AYeuraqNw", + "name": "TimeCycle Couriers", + "address": "230 N 2nd St, Ste 1C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9547232, + "longitude": -75.1431763, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Couriers & Delivery Services", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30" + } + }, + { + "business_id": "9Ybg6DG6upesH5moWdRULA", + "name": "Public Storage", + "address": "6225 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0429678, + "longitude": -75.087578, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "GV8PIa7ch_kH9Ewe9keu_A", + "name": "Sannie Japanese Chinese", + "address": "2117 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0500021, + "longitude": -75.0639371, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Japanese, Chinese", + "hours": null + }, + { + "business_id": "PmFBiD-KW4U_L1MS9qcIUQ", + "name": "Wolf Street Pizza & Grill", + "address": "2135 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.92358, + "longitude": -75.182575, + "stars": 2.0, + "review_count": 134, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "Caters": "True", + "WiFi": "u'no'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'formal'", + "RestaurantsTableService": "False", + "Corkage": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "WheelchairAccessible": "True", + "BYOB": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9:30-22:45", + "Tuesday": "9:30-22:45", + "Wednesday": "9:30-22:45", + "Thursday": "9:30-22:45", + "Friday": "9:30-0:45", + "Saturday": "9:30-0:45", + "Sunday": "9:30-22:45" + } + }, + { + "business_id": "8ljtB0A_-D7-36jP9Ai37A", + "name": "Longo's Discount", + "address": "2228 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9216122, + "longitude": -75.1650862, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Shopping, Discount Store", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "eojelOoSqXc8fPUosS_wZg", + "name": "Raindrop Cafe", + "address": "1650 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9548117, + "longitude": -75.1675963, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Juice Bars & Smoothies, Food, Restaurants", + "hours": null + }, + { + "business_id": "rzOz2hCJmJCe0d0QkMs4wQ", + "name": "Fino's Pizzeria & Restaurant", + "address": "6784 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0545606, + "longitude": -75.1869682, + "stars": 3.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "L4kfcADLCU4T33i7Z0CkuA", + "name": "Bistro Romano", + "address": "120 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419372505, + "longitude": -75.1446834884, + "stars": 4.0, + "review_count": 546, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'dressy'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "CoatCheck": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, Bars, Wine Bars, Mediterranean, Italian, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-1:0", + "Wednesday": "16:45-20:45", + "Thursday": "16:45-20:45", + "Friday": "16:45-21:30", + "Saturday": "16:45-21:30", + "Sunday": "16:45-20:45" + } + }, + { + "business_id": "bVLyH2WfOrK4UWlFXJzs9A", + "name": "Beast & Ale", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0235355, + "longitude": -75.219757, + "stars": 4.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "Smoking": "u'no'", + "GoodForKids": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Nightlife, Bars, Restaurants, American (New), American (Traditional), Burgers", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "VSIUiDAMrrQVsfbLfquo2w", + "name": "Small Oven Pastry Shop", + "address": "2204 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939368, + "longitude": -75.180138, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Bakeries, Cafes, Desserts", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "jpqSJnoaIOggsFHV8bOXyw", + "name": "Level 33", + "address": "1200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951784, + "longitude": -75.1601943, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "v1FG72PjLPbRYm0z6GPzJg", + "name": "D-Lux Carpet Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Carpet Cleaning, Home Services, Local Services, Professional Services, Office Cleaning, Home Cleaning", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-19:30", + "Saturday": "8:0-19:30", + "Sunday": "8:0-19:30" + } + }, + { + "business_id": "WqZM3ZjJ9JiBQsseJXGlkw", + "name": "Unleashed", + "address": "1939 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9608, + "longitude": -75.1712, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "HasTV": "False", + "WiFi": "u'no'" + }, + "categories": "Pet Groomers, Pet Stores, Pets, Pet Services, Pet Training", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "2JhpJoS6Md9pqCxD5Uubhg", + "name": "Body Graphics on South St", + "address": "617 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942235, + "longitude": -75.152996, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Tattoo, Arts & Entertainment, Professional Services", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "1g9l21XtPm_t0erf_Tt4AA", + "name": "Philly Sugaring", + "address": "525 S 4th St, Ste 363", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419044, + "longitude": -75.1488744, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Sugaring, Hair Removal, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "nPpJwvDGemSA5-pg_rLugA", + "name": "Alston's Insurance & Auto Tags", + "address": "5101 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479991, + "longitude": -75.2255038, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Insurance, Notaries, Financial Services, Local Services", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "t1gF_3qcEKkWLVm62JWvvQ", + "name": "Hoagie Town", + "address": "1206 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9371208, + "longitude": -75.1773465, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "g0ASaoYEbetUpnN72yzZbw", + "name": "The Cat Peeps", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665955, + "longitude": -75.1400594, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pet Services, Pets, Pet Sitting", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Z8qGOmU8YxDjLPBbrz84Yw", + "name": "Capogiro Gelato", + "address": "117 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513756, + "longitude": -75.1735322, + "stars": 4.5, + "review_count": 525, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Gelato, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "7:30-22:0", + "Tuesday": "7:30-22:0", + "Wednesday": "7:30-22:0", + "Thursday": "7:30-22:0", + "Friday": "7:30-0:0", + "Saturday": "8:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "JyMuR8osIbJKzE2kG9At5w", + "name": "Ill Skillz Tattoo", + "address": "4948 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0270482, + "longitude": -75.1325795, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Permanent Makeup, Beauty & Spas, Piercing, Tattoo", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "NgUst1ex3M2ibDzSb6Xkaw", + "name": "Emmy Squared - Queen Village", + "address": "632 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941042, + "longitude": -75.151123, + "stars": 4.0, + "review_count": 177, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': True, 'casual': True}" + }, + "categories": "Pizza, Sandwiches, Burgers, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "1pmhPQOG5PQBZSUJcUQWmA", + "name": "Pine Realty", + "address": "1503 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.945903, + "longitude": -75.166999, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Property Management", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "THdOD9iDjQIGwHp_kHwakw", + "name": "Food For Your Soul", + "address": "2039 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9225986, + "longitude": -75.1548452, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BikeParking": "False" + }, + "categories": "Soul Food, Seafood, Restaurants, Burgers", + "hours": { + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:45", + "Saturday": "13:0-21:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "AtLgoUoycHzJyn1aGhB4XA", + "name": "Mnap Diagnostic Center", + "address": "9908 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.094444, + "longitude": -75.01838, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Diagnostic Services, Doctors, Diagnostic Imaging", + "hours": null + }, + { + "business_id": "lnf71zQdNfpc0B8YKYtUaQ", + "name": "Adam Hutcheon - State Farm Insurance Agent", + "address": "1436 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669063, + "longitude": -75.1620478, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Professional Services, Insurance, Life Insurance, Home & Rental Insurance, Auto Insurance", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "esDsSAVSPI_A5GxiF0at2w", + "name": "Fairmount Framing", + "address": "754 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9690156, + "longitude": -75.1785009, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Framing, Shopping, Arts & Crafts", + "hours": { + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "QONdaxvRzgIsAFvecmP8Vg", + "name": "Oteri's Italian Bakery | Fairdale Rd", + "address": "4023 Fairdale Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0843971, + "longitude": -74.9724729, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Caterers, Gelato, Food, Bakeries, Desserts, Event Planning & Services", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "fvEACjkU_w1iJFqM2pe_SA", + "name": "Riley & Sons Moving", + "address": "9800 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.074519, + "longitude": -75.012202, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage, Couriers & Delivery Services, Movers, Home Staging, Home Services, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Lt18wRdjDvdlnkkUuJSx1g", + "name": "Laid Pretty Boutique", + "address": "5349 Oxford Ave, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0294717, + "longitude": -75.084795, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Hair Extensions, Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "zuKnCtZQKZqnvEaKVnwVVQ", + "name": "Naana Xtra-O Restaurant", + "address": "6413 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0396179, + "longitude": -75.0768335, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Caribbean, African", + "hours": { + "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": "12:30-19:0" + } + }, + { + "business_id": "Fa2RIf4F94u_qWN6TTvrkw", + "name": "Pretzel Park", + "address": "4300 Silverwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255502, + "longitude": -75.2210708, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "ERyRonqEDgNTHlE8yTMGIQ", + "name": "Arthritis Group", + "address": "7908 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571985, + "longitude": -75.053311, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "z1VZeX5KFfYzvV62Lpj16A", + "name": "Bavarian Motors", + "address": "4010 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0141516, + "longitude": -75.1506389, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Towing, Body Shops, Automotive", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "W1jO-SCmarsu6Swr-IELqw", + "name": "Chi Mc King", + "address": "1022 N Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701645, + "longitude": -75.1475834, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Shop, Korean", + "hours": null + }, + { + "business_id": "XVNYarQiPxlIraQib8vwzw", + "name": "Akoya at Pearl", + "address": "1904 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517967, + "longitude": -75.1722608, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsAttire": "u'dressy'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Asian Fusion, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "TXysA_u1c8nu3BI3Od-2mA", + "name": "RIPPED PHL", + "address": "1519 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499551, + "longitude": -75.1668474, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction, Boot Camps", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "4:45-21:30", + "Wednesday": "4:45-21:30", + "Thursday": "4:45-21:30", + "Friday": "4:45-21:30", + "Saturday": "7:0-21:30", + "Sunday": "8:0-21:30" + } + }, + { + "business_id": "NMi-XvIjhr3brD3rDN7_PA", + "name": "Xander's Bada Bing Cigar Lounge", + "address": "13015 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1239603, + "longitude": -75.0151251, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bars, Nightlife, Lounges, Shopping, Tobacco Shops", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "tngXF4K4cojGHn-4PUpBLQ", + "name": "Tango", + "address": "1021 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954001, + "longitude": -75.157184, + "stars": 3.0, + "review_count": 163, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'", + "GoodForDancing": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': True}", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Caters": "False", + "HappyHour": "True" + }, + "categories": "Szechuan, Bars, Lounges, Nightlife, Restaurants, Sushi Bars, Chinese, Karaoke", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "3CWVOXbotxJjQU2iaEFOEA", + "name": "Red Sky", + "address": "224 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498979, + "longitude": -75.1446263, + "stars": 3.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "HasTV": "True", + "GoodForKids": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Bars, Asian Fusion, Dance Clubs, Restaurants, Lounges, American (New), Nightlife", + "hours": { + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "tLgw_VI8yIgiJJ9-1VcL0g", + "name": "U-Town", + "address": "110 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954974092, + "longitude": -75.2025566533, + "stars": 3.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Japanese, Restaurants, Asian Fusion, Korean", + "hours": { + "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" + } + }, + { + "business_id": "B3ge1SSk9U-baGyUSPG8MQ", + "name": "Philly's Seafood", + "address": "6802 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.025473, + "longitude": -75.0446755, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Chicken Wings, Specialty Food, Fish & Chips, Seafood Markets, Seafood, Sandwiches, Food, Salad", + "hours": { + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "mf0OyZ6DX2iKUFIV9TqFRQ", + "name": "Moriarty's Restaurant and Irish Pub", + "address": "1116 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485658, + "longitude": -75.1598508, + "stars": 3.5, + "review_count": 629, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "HasTV": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForKids": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Bars, Burgers, Chicken Wings, Restaurants, Pubs, Nightlife, American (Traditional), Irish", + "hours": { + "Monday": "0:0-0: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": "12:0-2:0" + } + }, + { + "business_id": "0oSSjekU-3GR8gselReWnA", + "name": "Butcher and Singer", + "address": "1500 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493338, + "longitude": -75.1661758, + "stars": 4.5, + "review_count": 1290, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'dressy'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}" + }, + "categories": "Restaurants, Steakhouses, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "16:0-21:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ZCtezvOMjgpfrM4sxEhwXg", + "name": "Best City Homes, Inc", + "address": "2216 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9453213, + "longitude": -75.1792132, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Real Estate, Home Services, Property Management", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "MTM5eXO6Mz0axVrUVNhbrA", + "name": "Settlement Music School", + "address": "4910 Wynnefield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9907026, + "longitude": -75.2220053, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Musical Instruments & Teachers, Specialty Schools, Performing Arts, Arts & Entertainment, Shopping, Education", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-19:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "DvFd-agmSZZZ6f-Yb9jmtA", + "name": "Luv'n Spoonful", + "address": "1601 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9781107, + "longitude": -75.1592677, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "wVFy58Rt0x_ZGGLK_6VifA", + "name": "Spice Garden", + "address": "9813 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.090013, + "longitude": -75.0327871, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Food, Seafood, Desserts, Indian", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "KGBjEO-FilXoCK_Pk-jsvA", + "name": "Penn's View Hotel", + "address": "14 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950201, + "longitude": -75.142285, + "stars": 4.0, + "review_count": 108, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "vlcU9doMaKNL_ITU5NPbtA", + "name": "Lowe's Home Improvement", + "address": "3800 Aramingo Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.997409, + "longitude": -75.091401, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Hardware Stores, Building Supplies, Home & Garden, Appliances, Nurseries & Gardening, Home Services, Local Services, Appliances & Repair", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "hbitfyd9tJU3jinKxIHoAg", + "name": "Ly Jen Therapy Salons", + "address": "121 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9545328, + "longitude": -75.1575931, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage, Massage Therapy, Beauty & Spas, Health & Medical, Reflexology", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "Z7duGqAsE3HLi22TYCEp4w", + "name": "Pure Nail Bar", + "address": "2201 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9102487, + "longitude": -75.1869588, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Eyelash Service, Beauty & Spas, Nail Technicians", + "hours": null + }, + { + "business_id": "_HmfdCdYfLt23rj7myCSdQ", + "name": "Perfect Tranzitions", + "address": "5239 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0316875, + "longitude": -75.1677511, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': True, 'africanamerican': True, 'curly': False, 'kids': False, 'perms': False, 'asian': False}" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons, Hair Stylists", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "9KTR91LBbXrW-i_MWOB_mA", + "name": "Reinhold Residential", + "address": "117 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9551519, + "longitude": -75.1645317, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate Services, Real Estate, Property Management", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "cmETClmvGoUZZwBXRtv6kw", + "name": "Good Stuff Eatery", + "address": "108 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951392, + "longitude": -75.17062, + "stars": 3.5, + "review_count": 118, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "'no'", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Restaurants, American (Traditional), Burgers, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "E4qH6Mm7JkSxaTMqSEr5Iw", + "name": "Sigismondi Foreign Car Specialists", + "address": "1216 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9325392, + "longitude": -75.149466, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "x35eSk5KIM2pDqnQSkmB-Q", + "name": "Old City Cleaners", + "address": "259 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9556405, + "longitude": -75.1442542, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": null + }, + { + "business_id": "D5zG92TEkRLN_bseRIQiuA", + "name": "Cocusocial", + "address": "2 Rector St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0242584, + "longitude": -75.2222218, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Arts & Crafts, Cooking Classes", + "hours": null + }, + { + "business_id": "6Qec8Eb45V_7nXs9Gpvz4Q", + "name": "Philadelphia Diamond Company", + "address": "421 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949016, + "longitude": -75.148077, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Jewelry, Jewelry Repair, Fashion, Accessories, Diamond Buyers, Local Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "QY9h6QIaBFeExPGNPqiOMg", + "name": "New China", + "address": "2354 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9192864, + "longitude": -75.1591554, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "12:0-3:0", + "Tuesday": "12:0-3:0", + "Wednesday": "12:0-3:0", + "Thursday": "12:0-3:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-3:0" + } + }, + { + "business_id": "_NE7equAM7Pke_fNqySumw", + "name": "Cosmis Pastries", + "address": "1221 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9166943, + "longitude": -75.1688224, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Food, Bakeries", + "hours": null + }, + { + "business_id": "KnXWxp0DO4043CyWAnAx9g", + "name": "Paddy Whacks Irish Sports Pub - Welsh Road", + "address": "9241-43 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0745680732, + "longitude": -75.0316823839, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True" + }, + "categories": "Pubs, Nightlife, Sports Bars, Event Planning & Services, Venues & Event Spaces, Irish Pub, American (Traditional), Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "xdHXSkF0h96AHm0EtXz9Ng", + "name": "Zakes Cakes", + "address": "3572 Indian Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0097468, + "longitude": -75.1904503, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Bakeries", + "hours": { + "Friday": "7:30-21:0" + } + }, + { + "business_id": "dK8PxVPdj8qivBNiLE79Ag", + "name": "Char Kol", + "address": "1525 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505301, + "longitude": -75.1668181, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Pop-Up Restaurants, Chicken Wings, Barbeque, Korean, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0" + } + }, + { + "business_id": "ZhEFPPLta5dBxUKnyqMF3Q", + "name": "Frannie Nicks", + "address": "824 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389482384, + "longitude": -75.1564078778, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Seafood, Chicken Wings, Bars, Nightlife, Restaurants, Soul Food", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0" + } + }, + { + "business_id": "hQUlXLweRubOU9hky5m9zg", + "name": "C & R Building Supplies", + "address": "1322 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374962, + "longitude": -75.1655248, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Home & Garden, Hardware Stores, Building Supplies, Shopping, Home Services", + "hours": { + "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": "8:0-13:0" + } + }, + { + "business_id": "y9aSZPm53VyQ6Vcsq370ng", + "name": "Laurel Nail Salon", + "address": "2827 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0396731246, + "longitude": -75.0568110868, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Hair Removal, Waxing, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "8:30-18:0" + } + }, + { + "business_id": "LRoqhFyj55o-45GnoeT09g", + "name": "Cheesesteaktees", + "address": "506 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416166, + "longitude": -75.1511123, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Men's Clothing, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "aW7mqWU2S3r9TiF1Ebso1w", + "name": "Bella One Salon", + "address": "3262 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0798077, + "longitude": -74.993711, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Barbers, Hair Salons, Beauty & Spas, Eyelash Service, Makeup Artists", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "wWAm80RMprporgLGK1OaCg", + "name": "Northeast Family Branch YMCA", + "address": "11088 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084467, + "longitude": -74.975261, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Preschools, Fitness & Instruction, Gyms, Elementary Schools, Active Life, Day Camps, Education, Child Care & Day Care, Local Services", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "lCUX6CoPdxN2gtRBeJ9R0A", + "name": "Rosewood Bar", + "address": "1417 W Shunk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9184022, + "longitude": -75.1718094, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "67TtOZH91MEUxpnt6SyRug", + "name": "Gamestop", + "address": "8500 Henry Ave, Ste Z", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062807, + "longitude": -75.2352982, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Toy Stores, Shopping", + "hours": null + }, + { + "business_id": "g7CaY9XKhwcWV2K-zM47Lg", + "name": "Cilantro New Mediterranean Cuisine", + "address": "613 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411149, + "longitude": -75.1490884, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Mediterranean, Restaurants", + "hours": { + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "14:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "2:0-22:0" + } + }, + { + "business_id": "iUbEzrvaq74ET-SAEayRzw", + "name": "TD Bank", + "address": "6635 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0311211, + "longitude": -75.0532889, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-13:0" + } + }, + { + "business_id": "cy1qlowyE-zHmzfVyBFOJg", + "name": "McDonald's", + "address": "7700 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9031583953, + "longitude": -75.2392083406, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': None, 'lot': True, 'valet': False}" + }, + "categories": "Fast Food, Burgers, Restaurants, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "2_y3riLaNIB2tdRONY7PAg", + "name": "Rich City", + "address": "514 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9424083, + "longitude": -75.150898, + "stars": 3.0, + "review_count": 111, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Soup, Restaurants, Dim Sum, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "n1izPdCPvwO5HCjwNywMLA", + "name": "The Oasis", + "address": "6798 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9069502, + "longitude": -75.2226851, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "'average'", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Smoking": "u'no'", + "CoatCheck": "False", + "HappyHour": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Music": "{u'dj': True, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}" + }, + "categories": "Nightlife, Adult Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "JctmT2xauE_uxiqY-YgjqA", + "name": "Lisa's Kitchen", + "address": "5231 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0192761664, + "longitude": -75.2107855641, + "stars": 4.5, + "review_count": 62, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, Sandwiches, Breakfast & Brunch, Steakhouses, Comfort Food, Burgers", + "hours": { + "Wednesday": "5:0-14:0", + "Thursday": "5:0-14:0", + "Friday": "5:0-14:0", + "Saturday": "6:0-13:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "AWbpM2KXsWMGXXiS9dOI1g", + "name": "The College Butler", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19428", + "latitude": 40.0824359, + "longitude": -75.3004009, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Home Services, Movers, Self Storage", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "KwADSZGoeiqnlR4vUpNhig", + "name": "Stacy's Pizza & Wings", + "address": "4201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9578581, + "longitude": -75.206255, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "BALWb5Qs2Bx5-MykiR_tyA", + "name": "Unveiled", + "address": "Courtyard Entrance, 200 West Washington Square, Fl 2, Ste 250", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947747, + "longitude": -75.153311, + "stars": 4.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Bridal, Women's Clothing, Shopping", + "hours": null + }, + { + "business_id": "c-jQ_--GMT_SvyjclyYqMg", + "name": "Craft Manayunk", + "address": "4141 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0230319381, + "longitude": -75.2190360036, + "stars": 3.5, + "review_count": 97, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "NoiseLevel": "'average'", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "BYOB": "False", + "Corkage": "True", + "Music": "{'dj': False}" + }, + "categories": "Nightlife, Bars, Pubs, Food, Beer, Wine & Spirits, American (Traditional), Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "Z5-ih_QEZF4H-Aqn-tcYQw", + "name": "Victorias Pizza", + "address": "9206 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0549817, + "longitude": -75.0045063, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "ajUiBVzMM4Ziy59AacvMhg", + "name": "Jinxed Passyunk", + "address": "1835 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9269435, + "longitude": -75.1665541, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Shopping, Home Decor, Home & Garden, Antiques", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Aqsc1lA8-PN8YNMgroyeSg", + "name": "Soul of Africa Restaurant", + "address": "6422 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0501905879, + "longitude": -75.0950990763, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsDelivery": "True" + }, + "categories": "African, Restaurants", + "hours": null + }, + { + "business_id": "z6jtqUPjCVITAOlCw69KBQ", + "name": "Fowler Pest Solutions", + "address": "274 Slocum St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0561525, + "longitude": -75.1829578, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pest Control", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "pajaST0lkqKzdzx7AsAy0g", + "name": "Nick's Auto Sales", + "address": "22 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922077, + "longitude": -75.184014, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "3eYLop9BA2mLzPYjUFKcWg", + "name": "CollisionMax, An ABRA Company", + "address": "2034 W Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0831062, + "longitude": -75.0330943, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Auto Glass Services, Auto Repair, Automotive", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "rskpT6uTFJvcFhRJ2tEBwQ", + "name": "Community Bikes & Boards", + "address": "712 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402194, + "longitude": -75.1495869, + "stars": 4.5, + "review_count": 66, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Bike Repair/Maintenance, Local Services, Bikes, Shopping, Sporting Goods", + "hours": { + "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" + } + }, + { + "business_id": "u8ndpD32AvqRkEyD1Q2dXA", + "name": "Willkay's Ice Cream", + "address": "2501 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9127954, + "longitude": -75.2430018, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "IoeHxi-tXbCUS47M9Lagjg", + "name": "Kum Lin Restaurant", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0721272, + "longitude": -75.0308382, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "reEclSKK_RR3W4EFPOzhig", + "name": "Alchemy Hair Lab", + "address": "2401 E Letterly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9791214, + "longitude": -75.1228063, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Removal, Skin Care, Waxing, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "E42OJV_R6D6utoGynkNK8A", + "name": "Philadelphia Traffic Court", + "address": "800 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9606439, + "longitude": -75.1520755, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Courthouses", + "hours": null + }, + { + "business_id": "W5qWPa1LPo9stvCGeVSRAg", + "name": "Pho Don", + "address": "3528 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.00673, + "longitude": -75.15034, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "GoodForKids": "None", + "RestaurantsPriceRange2": "None", + "WiFi": "None", + "RestaurantsReservations": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "None", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "8:30-19:30", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-19:30", + "Saturday": "8:30-19:30" + } + }, + { + "business_id": "XIR9zc7HIglYL_v6L1JoAg", + "name": "Dave's Artistic Tattoo", + "address": "5 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.963009, + "longitude": -75.246507, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Piercing, Beauty & Spas, Tattoo", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0" + } + }, + { + "business_id": "DqBqTd1aU8VfhLXAWs8ldg", + "name": "Boston Market", + "address": "3680 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9946451763, + "longitude": -75.0952541257, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "BusinessParking": "None", + "Ambience": "None", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants, American (Traditional), Chicken Shop, Sandwiches, Comfort Food, Caterers, Event Planning & Services, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "J1yeiRSPi4qOYKilgiBbIw", + "name": "D.I.Y Hair & Nail Salon", + "address": "2101 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0431148526, + "longitude": -75.0629131078, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "9:30-19:30" + } + }, + { + "business_id": "F7o1wLdUIT5uwnHcP4Aq4A", + "name": "U Got Munchies", + "address": "2012 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9837643, + "longitude": -75.1571412, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False" + }, + "categories": "Food Delivery Services, Food, Do-It-Yourself Food, Sandwiches, Restaurants, American (Traditional), Desserts, Burgers", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-3:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "cVV8GWVIe9BwyCOKwrFgPA", + "name": "Castellino's", + "address": "1255 E Palmer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9723373258, + "longitude": -75.129040464, + "stars": 5.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "HasTV": "False" + }, + "categories": "Restaurants, Food, Sardinian, Italian, Delis, Pasta Shops, Specialty Food, International Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "qqtgxV6EoaYtjdh5l1cbRQ", + "name": "Mexibike Ruedas", + "address": "258 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465873, + "longitude": -75.1580348, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Bikes, Sporting Goods, Shopping", + "hours": null + }, + { + "business_id": "2LokHe7GtKZD9Q6w0dRe_A", + "name": "Queen & Rook Game Cafe", + "address": "607 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408669, + "longitude": -75.1455409, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BYOB": "False" + }, + "categories": "Restaurants, Bars, Breakfast & Brunch, Eatertainment, Vegetarian, Arts & Entertainment, Cafes, Nightlife, Tabletop Games, Vegan, Themed Cafes, Shopping", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "15:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "BZU9iLoVPeBzUlp1s8756A", + "name": "Mirror & Mantel", + "address": "117 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518941, + "longitude": -75.1769506, + "stars": 5.0, + "review_count": 164, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-16:30", + "Saturday": "8:30-16:30" + } + }, + { + "business_id": "5iUtqb6ONRcrnlBKic3g9A", + "name": "The Porch At 30th Street Station", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549101998, + "longitude": -75.1823393146, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Local Flavor, Food, Landmarks & Historical Buildings, Farmers Market, Public Services & Government", + "hours": null + }, + { + "business_id": "T3tiN6g7G2XUoDjRv3d8Cw", + "name": "Irwin's", + "address": "800 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925195, + "longitude": -75.1600137, + "stars": 4.0, + "review_count": 111, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Smoking": "u'no'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Tapas/Small Plates, Cocktail Bars, Nightlife, Restaurants, Mediterranean, Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "4LSIGjDPsgINLwO0pCAS7g", + "name": "WorkNet Occupational Medicine", + "address": "1 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299734792, + "longitude": -75.1451767981, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing, Medical Centers", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "NMnxLORhLb4sxEbvx45qfQ", + "name": "Ho's Chinese Restaurant", + "address": "1600 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9288656717, + "longitude": -75.1569883722, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "sYlexNuXRw7L1UDn3P-EkA", + "name": "Spirit Airlines", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8743959, + "longitude": -75.2424229, + "stars": 1.5, + "review_count": 94, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Airlines, Transportation", + "hours": null + }, + { + "business_id": "5Y7cqSgUSfLwn7ulBeO_sA", + "name": "Bluestone Lane - Philadelphia", + "address": "1 S Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513885876, + "longitude": -75.1631133975, + "stars": 4.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Restaurants, Gluten-Free, Cafes, Food", + "hours": { + "Monday": "7:0-15:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-13:0" + } + }, + { + "business_id": "e6tfORR6k5fZa2_uZgAbzw", + "name": "Its Hair Honey", + "address": "5548 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.028903, + "longitude": -75.1811386, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Extensions, Makeup Artists, Hair Stylists", + "hours": { + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "7:0-17:0" + } + }, + { + "business_id": "bmrEQ_4nzXc72zAFotrLYA", + "name": "Arden Theatre Company", + "address": "40 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512167, + "longitude": -75.1439121, + "stars": 4.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Cinema, Arts & Entertainment", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "ggX5HgWTcHBkMU37EgJLig", + "name": "Tony Luke's Beef and Beer Sports Bar", + "address": "26 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9140772, + "longitude": -75.1486742, + "stars": 4.0, + "review_count": 70, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Cheesesteaks, Sports Bars, Nightlife, Bars, Sandwiches, Restaurants", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "vy0IlrE3Zl44HwxbsZhh2g", + "name": "Ritz East", + "address": "125 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9476017, + "longitude": -75.1444627, + "stars": 4.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "LCDWggWQ_M_YjEHH5Erzdg", + "name": "Greenzang Properties", + "address": "2015 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496329, + "longitude": -75.1746263, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services, Property Management", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "4Z_2f6Uyt8gC3-DxsgmQGQ", + "name": "BeauMonde Originals", + "address": "3128 N 35th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0055747, + "longitude": -75.1867008, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Marketing, Photographers, Event Planning & Services, Professional Services, Web Design, Event Photography, Session Photography, Video/Film Production, Videographers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "E_w9t1HQtcizm9didoC4yQ", + "name": "Young American Cider", + "address": "6350 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0446083, + "longitude": -75.1818294, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Breweries, Food, Beverage Store", + "hours": null + }, + { + "business_id": "nMh_xEJ0B7XFO6I0MX_CRA", + "name": "Turner Bros Plumbing & Heating", + "address": "3048 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9814974, + "longitude": -75.104654, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Plumbing, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "GaDeCypnvJKZBbv35hcpyg", + "name": "United Buffet", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0296853917, + "longitude": -75.1005433334, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Caters": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Chinese, Buffets, Seafood, Japanese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "J9Vd_slUuhnyjZi47Lh1ug", + "name": "Silvana Cumani DMD and Associates PC", + "address": "2675 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9753914716, + "longitude": -75.1189124405, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Orthodontists, Cosmetic Dentists, Dentists, Pediatric Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:45-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:30" + } + }, + { + "business_id": "9nktzZKO3QhBRbzUgcf1ew", + "name": "US Post Office", + "address": "5311 Florence Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9439211, + "longitude": -75.2261374, + "stars": 1.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Shipping Centers, Public Services & Government, Post Offices, Local Services", + "hours": { + "Monday": "8:0-16:45", + "Tuesday": "8:0-16:45", + "Wednesday": "8:0-16:45", + "Thursday": "8:0-16:45", + "Friday": "8:0-16:45", + "Saturday": "8:0-11:45" + } + }, + { + "business_id": "KyDcAU41QDQpYAFyK6Q6hg", + "name": "Sweet Box Cupcakes", + "address": "339 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9455654, + "longitude": -75.1627808, + "stars": 4.5, + "review_count": 268, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "None", + "DriveThru": "None", + "BikeParking": "True", + "OutdoorSeating": "None" + }, + "categories": "Food Trucks, Food Delivery Services, Street Vendors, Desserts, Food Stands, Restaurants, Food, Cupcakes, Bakeries", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "UW4P3HMenQMXWVkLXUnM0w", + "name": "Five Points Cocktail Lounge", + "address": "4091 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0009615085, + "longitude": -75.2146748648, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': 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': True, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "ZsSsyknkpARZUrD6rRH27A", + "name": "Alimentari", + "address": "1730 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513109633, + "longitude": -75.1700653508, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Beer Bar, Bars, Nightlife, Italian, Restaurants, Wine Bars", + "hours": { + "Monday": "11:30-15:30", + "Tuesday": "11:30-15:30", + "Wednesday": "11:0-19:0", + "Thursday": "11:30-15:30", + "Friday": "11:30-15:30", + "Saturday": "11:0-15:30", + "Sunday": "11:0-15:30" + } + }, + { + "business_id": "N2Wq9Xd5JUIj1gQwWPSGOw", + "name": "Tai Chi Healing Spa", + "address": "306 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428467, + "longitude": -75.1600813, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage, Beauty & Spas", + "hours": null + }, + { + "business_id": "qwF3lZOtK8H3eVzcZIg8Gw", + "name": "Collision Care Auto Body Centers", + "address": "2052 Washington Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391435, + "longitude": -75.1772712, + "stars": 4.0, + "review_count": 34, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Auto Repair, Body Shops", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "Hc5oZJ7T8XOqwdtRUPt2_g", + "name": "Burger King", + "address": "2550 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0721625849, + "longitude": -75.0335884417, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "Caters": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "EfpQ1gPf4GjXs31MyrFWAg", + "name": "East Falls Super Thrift & Bargain Center", + "address": "3507 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0137847, + "longitude": -75.1922474, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Home Decor, Home & Garden, Thrift Stores, Shopping, Kitchen & Bath, Antiques", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "x4B5D2D8ZMzv5djl1-gD2w", + "name": "TD Bank", + "address": "1500 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953849, + "longitude": -75.165972, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "3TroNo3SClF2vXc1OnC44A", + "name": "Cafe at the Mills", + "address": "Sherman Mills, E Falls, 3502 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0077014, + "longitude": -75.1851189, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "HasTV": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Vegan, Coffee & Tea, Breakfast & Brunch, Cafes, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "GqLG6tBlitl1Qy1j_3smgg", + "name": "Park Avenue Banquet Hall", + "address": "4942 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9792482, + "longitude": -75.2182526, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Event Planning & Services, Buffets, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "4BKKBx50oZaEczazjZ1ZEQ", + "name": "OCF Coffee House", + "address": "2930 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530331794, + "longitude": -75.1836618023, + "stars": 3.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'" + }, + "categories": "Food, Bagels, Bakeries, Cafes, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "4zK5zmIqQxeDgetjoRmkrQ", + "name": "Brotherly Grub", + "address": "7135 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0594149, + "longitude": -75.1901908, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "False", + "WheelchairAccessible": "True" + }, + "categories": "Food Trucks, Food, Cafes, Street Vendors, Restaurants, Themed Cafes, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "mXQ5qcjeVZKBbyWrdQ2Z0A", + "name": "Taffets Bakery & Store", + "address": "1024 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369392, + "longitude": -75.1584414, + "stars": 4.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WiFi": "u'free'", + "HappyHour": "False" + }, + "categories": "Restaurants, Gluten-Free, Bakeries, Food", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "A0ynYx0BlHr5wiUJKhQFjw", + "name": "Musictown Corp", + "address": "5501 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0339605, + "longitude": -75.1219384, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Korean", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "8NeQKx9kYZIQclGPj7ynoA", + "name": "Julius Scissor Hair Designer", + "address": "2045 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949764, + "longitude": -75.1755941, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "xMH3_UDXy4oKyVrLmyooNw", + "name": "Doc's World of Beer", + "address": "701 E Cathedral Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0634211, + "longitude": -75.2381486, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'beer_and_wine'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "False" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ShPcKM2R4C4cJFiLucpaUg", + "name": "New City Nails", + "address": "22ND And Dickinson Streets", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9333774, + "longitude": -75.1811682, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "BR5J4n0k0S7ve-0GEzfbiQ", + "name": "The IATSE Ballroom", + "address": "2401 S Swanson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9175425, + "longitude": -75.1464812, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Tuesday": "10:30-18:30", + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "10:30-18:30", + "Saturday": "10:30-18:30", + "Sunday": "10:30-18:30" + } + }, + { + "business_id": "dvxyt7YVvJ3Ubz60jQbutw", + "name": "Solly Stables", + "address": "1140 Solly Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0730528, + "longitude": -75.0691682, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Horse Boarding, Pets", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "97-J376z_DxuZvOB9oBnzA", + "name": "Center Bowling Lanes", + "address": "7550 W City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9800461, + "longitude": -75.2685809, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Bowling", + "hours": null + }, + { + "business_id": "H-kgJbRIqYdjOYHpbk69Rw", + "name": "Philadelphia LX limo", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9554045, + "longitude": -75.169387, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party Bus Rentals, Transportation, Event Planning & Services, Hotels & Travel, Limos", + "hours": { + "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" + } + }, + { + "business_id": "O6PMDDhKMNmvq5cox3EQ7g", + "name": "The Home Depot", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0302926185, + "longitude": -75.0978398323, + "stars": 1.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Nurseries & Gardening, Contractors, Home Services, Home & Garden, Hardware Stores, Shopping, Appliances", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "6:0-22:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "nXqsCCHeGJINfP2aTOvAKg", + "name": "Nelson's Plumbing and Heating", + "address": "6001 Rising Sun Ave, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.045012, + "longitude": -75.100755, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Water Heater Installation/Repair, Home Services, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "RY8N4hCtQyWTSsWuflElIg", + "name": "The Market", + "address": "2200 Benjamin Frnkln Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9607986, + "longitude": -75.1771153, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "kfL65eEws-GCTqq6WFI9nw", + "name": "PLR AutoSpa", + "address": "314 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9590264, + "longitude": -75.1661351, + "stars": 4.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Detailing", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "l5JQB7tXczIpsYmbSLi5_w", + "name": "Rose Auto Service", + "address": "822 Bleigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0638434, + "longitude": -75.0844072, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "w6MkrKwuc3R8rmR4KLl1Ww", + "name": "Jean's Pizzeria & Grill", + "address": "3252 Ryan Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0404044, + "longitude": -75.0437057, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "aAXU8DRlr9KDQ_v61BybAQ", + "name": "Vlora Painting", + "address": "6600 Large St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041067, + "longitude": -75.0731014, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Painters, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "EuYdJeX1EPC3TH_D8FJPKA", + "name": "Art Sanctuary", + "address": "628 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9433, + "longitude": -75.1691533, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Venues & Event Spaces, Art Galleries, Event Planning & Services, Shopping, Arts & Entertainment", + "hours": { + "Monday": "18:0-23:30", + "Tuesday": "18:0-23:30", + "Wednesday": "18:0-23:30", + "Thursday": "9:0-23:30", + "Friday": "18:0-23:30", + "Saturday": "9:0-23:30", + "Sunday": "9:0-23:30" + } + }, + { + "business_id": "6pWzOyWLzGRnE_9y32lGsA", + "name": "McFarland Tree, Landscape & Hardscape Services", + "address": "255 W Tulpehocken St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0373093, + "longitude": -75.1852436, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Tree Services, Landscaping", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "WSbpU5zNF9B75fuBSkm3mA", + "name": "Leyla", + "address": "622 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413706, + "longitude": -75.1525078, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Turkish", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "DmTeq_3mOKVro4OtU2i3sg", + "name": "Karen M Wrigley, OD", + "address": "1919 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523727927, + "longitude": -75.1725172396, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "AcceptsInsurance": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Health & Medical, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0" + } + }, + { + "business_id": "cwEuxv8fBnY70FRsIgHstw", + "name": "Kennedy Rose Velt Florist", + "address": "2844 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0432089, + "longitude": -75.0525587, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Flowers & Gifts, Shopping, Nurseries & Gardening, Florists, Home & Garden, Floral Designers, Event Planning & Services, Toy Stores", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "7kC44AcEvJRAaDPhQNQ-6A", + "name": "Illiano Pizza Restaurant", + "address": "157 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1290453, + "longitude": -75.0235565, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Pizza, Specialty Food, Restaurants, Salad, Pasta Shops, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "Ddupo1zhmoct1yPFbF6ipQ", + "name": "Via Napoli", + "address": "2500 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0731939, + "longitude": -75.0352627, + "stars": 3.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Biidj3QszVuVO0Q85g5NPw", + "name": "Fu-Wah Mini Market", + "address": "810 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9482921, + "longitude": -75.2170137, + "stars": 4.5, + "review_count": 247, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Grocery, Food, Convenience Stores, Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "_5pT2HdDs9rKiIYvO_csCA", + "name": "Predella", + "address": "932 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383034, + "longitude": -75.1597956, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Thursday": "16:30-21:30", + "Friday": "16:30-22:45", + "Saturday": "16:30-22:45", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "CYSPKiVdoPX3erovujnE9Q", + "name": "Harp & Crown", + "address": "1525 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504170438, + "longitude": -75.1664282754, + "stars": 4.0, + "review_count": 912, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True" + }, + "categories": "Active Life, Nightlife, Bars, American (Traditional), Bowling, Restaurants, American (New), Gastropubs", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "10:30-14:30" + } + }, + { + "business_id": "bn2jWrB_aXdQP4YoyUVVIQ", + "name": "Seorabol Center City", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466893, + "longitude": -75.1639777, + "stars": 4.0, + "review_count": 219, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "Corkage": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "CoatCheck": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Korean, Restaurants, Soup, Asian Fusion, Barbeque, Sushi Bars, Nightlife, Cocktail Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:30-22:30", + "Thursday": "15:30-22:30", + "Friday": "15:30-22:30", + "Saturday": "15:30-22:30", + "Sunday": "15:30-21:0" + } + }, + { + "business_id": "wr46ByJI0i_7TwvvN9U38A", + "name": "Hot Potato Cafe", + "address": "529 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.971488, + "longitude": -75.127697, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "Corkage": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (New), Restaurants, Cafes", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0" + } + }, + { + "business_id": "ew59ubIO3CPQ7UqJMfm5zA", + "name": "Alyson Nerenberg Psychology Associates, PC", + "address": "8627 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077017, + "longitude": -75.207929, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Psychologists, Health & Medical, Counseling & Mental Health", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "DeOpnBrfkFUZTN9-VoXEtw", + "name": "Bains 1910 Deli", + "address": "Bourse Bldg", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HasTV": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "Em0k3l76cFj-A0tqJbkWtQ", + "name": "Koreana", + "address": "37 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523399, + "longitude": -75.1715586, + "stars": 3.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "True" + }, + "categories": "Asian Fusion, Restaurants, Korean", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "1y3y_ihpO6SHxK9MRdtSlw", + "name": "Noon Mediterranean", + "address": "1601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673521, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Mediterranean, Restaurants, Greek", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "LAWaTIkUSof5xIcr3sJEkQ", + "name": "Tasteful Soul Food & More", + "address": "7405 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0606979482, + "longitude": -75.1674421504, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Soul Food", + "hours": { + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-23:0", + "Saturday": "14:0-23:0" + } + }, + { + "business_id": "vKZhZqCa6bcdFieu0NYh0A", + "name": "chili's", + "address": "N 13th St 33-43", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533, + "longitude": -75.1611, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Bars, Fast Food, American (Traditional), Restaurants, Nightlife, Tex-Mex", + "hours": null + }, + { + "business_id": "obeaMfZrrJbe6pO5L0v91w", + "name": "Aramingo's Best Pizza", + "address": "2885 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9846346, + "longitude": -75.1133642, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "GoodForKids": "True", + "Caters": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza, Cheesesteaks, Italian, Sandwiches, Fast Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "b2cW30_3ZVMwe49VfaXPWA", + "name": "Dental Medical Arts", + "address": "1601 Walnut St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499918, + "longitude": -75.1676257, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oral Surgeons, Periodontists, Endodontists, Orthodontists, Health & Medical, Cosmetic Dentists, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "aQhn4CcEJokY6ADxUbzTaQ", + "name": "Chickie's & Pete's Cafe", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1011515, + "longitude": -75.0081239, + "stars": 3.0, + "review_count": 224, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Nightlife, Seafood, Bars, Sports Bars, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "o_N7HiU3f6cVvrJAFrE43A", + "name": "KC Carpet and Upholstery Cleaners", + "address": "9309 Glenloch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.05342, + "longitude": -74.999245, + "stars": 5.0, + "review_count": 252, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grout Services, Home Cleaning, Carpet Cleaning, Local Services, Professional Services, Home & Garden, Shopping, Office Cleaning, Tiling, Home Services, Air Duct Cleaning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "LcmiN-4moMYNhGjx9Rx1uw", + "name": "Ocean Nails & Spa", + "address": "3076-3148 Roberts Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0116052, + "longitude": -75.1766943, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Massage", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "D78Bs3bESvOJzpdnL84tLQ", + "name": "George's Food truck", + "address": "3700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541529, + "longitude": -75.1966082, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "Caters": "False" + }, + "categories": "Food Trucks, Food, Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "fEqiXG_B-fn__w0aeF3nBQ", + "name": "Laurel", + "address": "1617 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294148, + "longitude": -75.1637155, + "stars": 4.5, + "review_count": 326, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "HappyHour": "False", + "RestaurantsAttire": "'dressy'", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "False" + }, + "categories": "French, American (New), Restaurants", + "hours": { + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "HdEpUNV-7Eqr8ID-blUHgA", + "name": "American Laser Skincare", + "address": "255 S 17th St, Ste 2102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Skin Care, Hair Removal, Laser Hair Removal, Beauty & Spas, Weight Loss Centers, Medical Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "6oqmZRs2YxNcIDoHUulMzQ", + "name": "Polo Ralph Lauren", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492965902, + "longitude": -75.1645566661, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Home Services, Shopping, Interior Design, Women's Clothing, Carpeting, Shoe Stores, Fashion, Men's Clothing", + "hours": null + }, + { + "business_id": "AgcJCv6R9d40ByHZrDJ62A", + "name": "Fiume", + "address": "229 S 45th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541657, + "longitude": -75.2116004, + "stars": 4.5, + "review_count": 160, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "HappyHour": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "Smoking": "u'no'" + }, + "categories": "Nightlife, Music Venues, Beer Bar, Dive Bars, Bars, Whiskey Bars, Arts & Entertainment, Cocktail Bars", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "wNtcmwEWxk-La909UW-BGA", + "name": "Pinky Nails", + "address": "458 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9707118723, + "longitude": -75.1286184051, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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" + } + }, + { + "business_id": "TBIAioAtUn10MV_gJ99jJQ", + "name": "Heery Casting", + "address": "2618-22 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9772187, + "longitude": -75.1208487, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Talent Agencies, Professional Services", + "hours": null + }, + { + "business_id": "m7iy7hWsbeg4HAgylREpxQ", + "name": "Hair Outlet Beauty Supply", + "address": "6100 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9291515, + "longitude": -75.2292242, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WiFi": "u'no'" + }, + "categories": "Cosmetics & Beauty Supply, Hair Extensions, Shopping, Hair Salons, Wigs, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:30", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "jPbv87mQlX4jZTHogK7_Xg", + "name": "Marabella Meatball Co.", + "address": "1211 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948967, + "longitude": -75.1611418, + "stars": 3.5, + "review_count": 132, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "OutdoorSeating": "True" + }, + "categories": "Sandwiches, Restaurants, Italian", + "hours": { + "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": "12:0-20:0" + } + }, + { + "business_id": "Vbdk80DwTyrCYBoEIIyMGA", + "name": "Oxtail International Cuisine and Juice Bar", + "address": "1441 Synder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9247438, + "longitude": -75.171114, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "T8gJyppKf9GWogFTkead-A", + "name": "Spread Bagelry", + "address": "443 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419396, + "longitude": -75.1505931839, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Food, Bagels", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "3c3okC0udBKZD_fASFrI-A", + "name": "Mid City Tire & Auto", + "address": "709 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9359305, + "longitude": -75.155701, + "stars": 4.5, + "review_count": 245, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nightlife, Tires, Auto Repair, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "Yh4yCF2cjDVr2LSuphgrXQ", + "name": "Wawa", + "address": "6001 Harbison St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.02217, + "longitude": -75.0626204, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Automotive, Coffee & Tea, Food, Restaurants, Delis, Convenience Stores, Gas Stations, Sandwiches", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "XvYw9f1onWLFSWLpw_uL2w", + "name": "Olympia Sports", + "address": "508 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941585, + "longitude": -75.1511862, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sporting Goods, Shopping", + "hours": null + }, + { + "business_id": "oK6i-pSjM4mRwdrcVA4OsQ", + "name": "Pro Master Home Services", + "address": "2156 Longshore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041004, + "longitude": -75.063154, + "stars": 2.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Cleaning, Carpeting, Home Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "Zofb78HMkCfyQ8S1jCmT9A", + "name": "Libertee Grounds", + "address": "1600 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9715336655, + "longitude": -75.1632025838, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "HappyHour": "True", + "OutdoorSeating": "True", + "BYOB": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "Caters": "True" + }, + "categories": "Sandwiches, Bars, Mini Golf, Pan Asian, Active Life, Salad, Nightlife, Beer Bar, Golf, Restaurants", + "hours": { + "Wednesday": "17:0-23:0", + "Thursday": "17:0-19:0", + "Friday": "16:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "QlC0wdl3pIWnigTR4vDzVQ", + "name": "5 n 2 Tokyo", + "address": "526 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941934, + "longitude": -75.149329, + "stars": 3.0, + "review_count": 99, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Sushi Bars, Restaurants, Japanese, Food", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30" + } + }, + { + "business_id": "j6usntbtSzFyuwx4n2mn1g", + "name": "Las Bugambilias", + "address": "15 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499940204, + "longitude": -75.1454153298, + "stars": 4.0, + "review_count": 381, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}", + "DogsAllowed": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "YZK7wxr7pmkc9h2hRlpX0A", + "name": "JR's saloon", + "address": "2663 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9742038, + "longitude": -75.1226352, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "WiFi": "'no'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': True, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "OutdoorSeating": "True", + "Music": "{u'dj': None, u'live': None, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Bars, Dive Bars, Pubs, Nightlife", + "hours": null + }, + { + "business_id": "n9CfdpJrfgbfXTK3CuOVaw", + "name": "Philly Lube", + "address": "7900 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0725752, + "longitude": -75.1584143, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "z5gg6k1uOEqTU7zrlN7OLA", + "name": "Bosley Hair Transplant & Restoration", + "address": "1601 Market Street, Suite 2410", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673584, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Medical Spas, Cosmetic Surgeons, Hair Loss Centers, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "kXmscD-bp90t4QAh0H7Dig", + "name": "Picanha Brazilian Steakhouse", + "address": "1111 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477453, + "longitude": -75.159542, + "stars": 4.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Steakhouses, Brazilian, Buffets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "UaOsGAJ4JHtK4xlZbuKXUQ", + "name": "The Parking Spot", + "address": "7780 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895185, + "longitude": -75.227989, + "stars": 3.5, + "review_count": 127, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "AcRdAeHXHTFsPEzcTOAPiw", + "name": "Vinyl Altar", + "address": "732 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395644514, + "longitude": -75.1497794265, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Vinyl Records, Hobby Shops, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "vnZ3u25OT1SJruohJ-hulg", + "name": "Perfumology", + "address": "25 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950987, + "longitude": -75.145258, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Perfume, Shopping, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "BYIdoTPGryS4qq9BKyxmKA", + "name": "Campbell Electric Service", + "address": "1160 E Hortter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0671155, + "longitude": -75.1682983, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Telecommunications, Electricians, Local Services, Lighting Fixtures & Equipment, IT Services & Computer Repair, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "hr2NJBX08LesSv-f80tejw", + "name": "Adrian Lo, MD", + "address": "301 S 8th St, Ste 3h", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9454961, + "longitude": -75.1543785, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Cosmetic Surgeons, Health & Medical", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "nDcfa6VBcn1ilHud4hYKFA", + "name": "Art of Wellness", + "address": "1930 S Broad St, Unit 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925857, + "longitude": -75.169745, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Reflexology, Beauty & Spas, Skin Care, Chiropractors, Acupuncture, Active Life, Life Coach, Professional Services, Massage Therapy, Massage, Fitness & Instruction, Health & Medical, Counseling & Mental Health, Weight Loss Centers, Yoga, Nutritionists", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "QxecXQwEvcFfwYpsuNvaGA", + "name": "Than's Auto Body Shop", + "address": "7011 Grays Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9182065, + "longitude": -75.2397477, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Insurance, Body Shops, Financial Services, Car Inspectors, Auto Insurance, Automotive, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:30" + } + }, + { + "business_id": "cEBZedAeceebuOoHS96RVg", + "name": "OK Lee Produce", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953487, + "longitude": -75.159176, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "6:45-18:0", + "Tuesday": "6:45-18:0", + "Wednesday": "6:45-18:0", + "Thursday": "6:45-18:0", + "Friday": "6:45-18:0", + "Saturday": "6:45-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "0yN1rxCrEKqQIUk-nqyWVw", + "name": "Subway", + "address": "714 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9508785, + "longitude": -75.1528953034, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Fast Food, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-16:0", + "Thursday": "0:0-0:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "t3yrFZ2bCBhWrY8c1zM9CQ", + "name": "Sto's Bar & Restaurant", + "address": "236 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500081317, + "longitude": -75.1446980851, + "stars": 3.5, + "review_count": 119, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False" + }, + "categories": "Arts & Entertainment, Bars, Eatertainment, Restaurants, American (New), Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "wPgAvTOsSlkRBi5W6F7wUg", + "name": "Solidcore Center City", + "address": "725 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949869, + "longitude": -75.1533296, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Pilates, Trainers, Fitness & Instruction, Gyms, Boot Camps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "5:0-19:0", + "Sunday": "5:0-19:0" + } + }, + { + "business_id": "xYm4-lEjgMkQWxrQLWXVpQ", + "name": "Renzi's Pizzeria", + "address": "2728 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.99804, + "longitude": -75.0744267, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Pizza, Sandwiches, Restaurants, Italian", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "XQMNpRcnKvJ1N8JShlR3xA", + "name": "The Dorchester Condominiums", + "address": "226 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9490487, + "longitude": -75.1736448, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Condominiums, Home Services, Real Estate, Apartments", + "hours": null + }, + { + "business_id": "dLXkx82ZMsR5NLkCRtg0Dw", + "name": "La Bella Dolce Italia", + "address": "628 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419585, + "longitude": -75.153177, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "HappyHour": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Juice Bars & Smoothies, Restaurants, Cafeteria, Italian, Coffee & Tea, Gelato, Ice Cream & Frozen Yogurt, Caterers, Creperies, Breakfast & Brunch, Desserts, Food, Event Planning & Services, Sandwiches", + "hours": { + "Wednesday": "12:30-19:0", + "Thursday": "12:30-19:0", + "Friday": "12:30-19:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "x7rGLPiCGM1wqq3MCAQpTQ", + "name": "Sushi Garden & Kitchen", + "address": "425 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9447414, + "longitude": -75.1649239, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HappyHour": "False", + "Caters": "True", + "HasTV": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Sushi Bars, Japanese, Thai, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "cGX-1IUwXOjkUqZbkKYcjw", + "name": "Fogo de Chao", + "address": "1337 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509166, + "longitude": -75.1629711, + "stars": 4.0, + "review_count": 1426, + "is_open": 1, + "attributes": { + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "4", + "OutdoorSeating": "True" + }, + "categories": "Seafood, Steakhouses, Brazilian, Restaurants", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "11:0-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "3Sv4AtqhPp0O7TOWXfDspA", + "name": "Stella Cleaners", + "address": "744 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432414, + "longitude": -75.1551537, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "TwXdnMqRlT7mrRCOUcKhJA", + "name": "allongรฉe", + "address": "232 Market St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949716, + "longitude": -75.145242, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WheelchairAccessible": "False" + }, + "categories": "Food, Barre Classes, Coffee & Tea, Fitness & Instruction, Gyms, Active Life, Sports Clubs, Juice Bars & Smoothies, Yoga, Pilates, Cardio Classes", + "hours": { + "Monday": "16:30-20:30", + "Tuesday": "16:30-20:30", + "Wednesday": "16:30-20:30", + "Thursday": "16:30-20:30", + "Friday": "16:30-19:15", + "Saturday": "8:30-17:0", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "VR3kxm72hsgf9KGIuUY99g", + "name": "Summerdale Mills Fabric and Home Decorating Center", + "address": "8101 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.042074, + "longitude": -75.025207, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Furniture Reupholstery, Fabric Stores, Arts & Crafts, Home Decor, Home & Garden, Shades & Blinds, Shopping, Home Services, Local Services", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "rKmhinfeHb-PoL0mZNBBzA", + "name": "Mom's Food Cart", + "address": "6TH And Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493558815, + "longitude": -75.1508798038, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "WCOOi_rQ61MoQ6karcvpBw", + "name": "The Patio", + "address": "500 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9601081736, + "longitude": -75.154968, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True" + }, + "categories": "Beer Gardens, Lounges, Bars, Nightlife, Cocktail Bars", + "hours": { + "Saturday": "18:0-23:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "LzgxfMu24HbJbUi1cCk70Q", + "name": "Premium Steap", + "address": "211 North 13th St, Ste 304", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565128, + "longitude": -75.1602477, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0" + } + }, + { + "business_id": "yzQVHL2o2lTX6EwF0iSqTQ", + "name": "Esposito's Porchetta", + "address": "1627 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9286879, + "longitude": -75.1615494, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food Delivery Services, Event Planning & Services, Caterers, Food", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "7:30-16:0", + "Sunday": "7:0-13:0" + } + }, + { + "business_id": "o2oD8bGW3oMaaTeSOqi-Kg", + "name": "ALDI", + "address": "2603 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9149609141, + "longitude": -75.1485875878, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Organic Stores, Beer, Wine & Spirits, Food, Meat Shops, Specialty Food, Fruits & Veggies, Shopping, Discount Store", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "On1Rn1cH3WbbsAWoQjKOlA", + "name": "Ramona Susan's Bake Shop", + "address": "1424 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9436038, + "longitude": -75.1664629, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Custom Cakes, Bakeries, Cupcakes, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "NjD-V9pdH7_V8Y8PGl-csw", + "name": "Townsend", + "address": "2121 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951097, + "longitude": -75.176542, + "stars": 4.5, + "review_count": 246, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'dressy'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "French, Nightlife, Restaurants, Bars, Cocktail Bars", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "w3giBYDmPWWnsNq5Sr2KQA", + "name": "Pinot Boutique", + "address": "227 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950378, + "longitude": -75.144639, + "stars": 4.0, + "review_count": 91, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Caters": "False" + }, + "categories": "Bars, Beer, Wine & Spirits, Tasting Classes, Flowers & Gifts, Gift Shops, Food, Customized Merchandise, Wine Bars, Wine Tasting Room, Nightlife, Party & Event Planning, Social Clubs, Event Planning & Services, Wineries, Education, Shopping, Arts & Entertainment, Wine Tasting Classes, Venues & Event Spaces", + "hours": { + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Friday": "15:0-19:0", + "Saturday": "15:0-18:0" + } + }, + { + "business_id": "aPli-RylEg4B2C4f-VJUbw", + "name": "Thunderbird Salvage", + "address": "2441 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9824337, + "longitude": -75.126307, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Junk Removal & Hauling, Local Services, Home Services, Fashion, Antiques, Shopping, Flea Markets, Demolition Services, Pop-up Shops, Used, Vintage & Consignment, Thrift Stores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "WVge429s2KWwiUk2iN_iPw", + "name": "Land Cleaners", + "address": "112 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524881, + "longitude": -75.1434561, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "i4tdAvYzezhRsH_WtVmDSg", + "name": "American Mortals", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481865, + "longitude": -75.1536803, + "stars": 4.5, + "review_count": 232, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "cSl9JEvF2LcE8HoyrjeH2g", + "name": "Exclusive Vape Shop", + "address": "732 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421634, + "longitude": -75.1550452, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Local Flavor, Electronics, Vape Shops, Tobacco Shops", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "AR4_xcsTsES0FF0ierogYA", + "name": "Image Hair Salon", + "address": "1933 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95215, + "longitude": -75.173109, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Hair Salons, Hair Extensions, Cosmetics & Beauty Supply, Nail Salons, Beauty & Spas, Shopping", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "a1iSaliEPHIhK11hWPDb8g", + "name": "Rippert's Custom Tailoring", + "address": "7039 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0444902, + "longitude": -75.2296215, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services, Sewing & Alterations, Dry Cleaning", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "oqYUDzhTzsw9N_Z8f0Q9IA", + "name": "Double Shots Espresso Bar", + "address": "211 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485482, + "longitude": -75.1446385, + "stars": 3.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-21:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "UKm9VGwXMfbdUCKIxldArQ", + "name": "Players Sports Bar", + "address": "4509 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.889115789, + "longitude": -75.2326419655, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}" + }, + "categories": "Bars, Sports Bars, Nightlife", + "hours": null + }, + { + "business_id": "vMlxQDOMPZOXJ_LqAHJUnA", + "name": "Thai Koji Sushi", + "address": "224 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497898, + "longitude": -75.1447222, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BYOB": "False", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "Corkage": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Thai, Desserts, Sushi Bars, Food", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "ILvJAuSP0sYWJKAQ-Goh4Q", + "name": "Kensington Quarters", + "address": "1310 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9705028, + "longitude": -75.1346993, + "stars": 4.0, + "review_count": 318, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Caters": "True", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "BYOB": "False", + "BusinessAcceptsBitcoin": "False", + "Corkage": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Event Planning & Services, Butcher, American (Traditional), American (New), Cooking Classes, Venues & Event Spaces, Arts & Crafts, Shopping, Restaurants, Food", + "hours": { + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "Hc07aoVY4GDe9Eu_y5M8ng", + "name": "Chicken Heaven", + "address": "N 13th St & W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979948, + "longitude": -75.155373, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "False" + }, + "categories": "Food Trucks, Food", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "CUIPL9NOTvrMTmO2tYeiBw", + "name": "The Fin Surf & Turf by CDJ", + "address": "1000 Frankford Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9649452, + "longitude": -75.1346806, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "DriveThru": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "QcSUVRH1wJW0qRuZ7A73Mg", + "name": "Logan Square Pizza & Grill", + "address": "161 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9575788958, + "longitude": -75.1741088474, + "stars": 3.5, + "review_count": 73, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Caters": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "1LMwMGW9jIJhQSfwcdtmiw", + "name": "Fox Street Auto", + "address": "2633 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.008246, + "longitude": -75.1720716, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Automotive", + "hours": null + }, + { + "business_id": "OvNnctPYqV9NH2vXyXsemg", + "name": "Bralow Medical Group", + "address": "834 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9424585, + "longitude": -75.1566274, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Family Practice, Concierge Medicine, Internal Medicine, Doctors, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "9:30-16:30" + } + }, + { + "business_id": "Knk5_SDSCx7slFb2rtBgOw", + "name": "Please Touch Museum", + "address": "4231 Ave Of The Republic", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.979483, + "longitude": -75.20901, + "stars": 4.0, + "review_count": 345, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "9:0-17: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": "11:0-17:0" + } + }, + { + "business_id": "iZNR8-rqsBL2afDk4Zxe8A", + "name": "Koch's Deli", + "address": "4309 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953956271, + "longitude": -75.2097241761, + "stars": 4.0, + "review_count": 260, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HasTV": "True" + }, + "categories": "Convenience Stores, Salad, Food, Delis, Caterers, Event Planning & Services, Kosher, Sandwiches, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "RSQdbZ9ZamPwZh9GcosmmA", + "name": "Serv-Rite Food Market", + "address": "239 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947106, + "longitude": -75.1573883, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food, Convenience Stores", + "hours": null + }, + { + "business_id": "111xH-Jad3rSZBgGRjcxaw", + "name": "Temple University Dental School Clinic", + "address": "3223 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.002206, + "longitude": -75.1519535, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": null + }, + { + "business_id": "_mXx2LK2F1Axbj2KXyVMig", + "name": "Narola Design + Letterpress", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Graphic Design, Event Planning & Services, Cards & Stationery, Professional Services, Shopping, Arts & Crafts, Flowers & Gifts", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "jzd6tUCIYEitbQqASionpA", + "name": "Undrgrnd Donuts", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'" + }, + "categories": "Food Stands, Donuts, Restaurants, Food", + "hours": null + }, + { + "business_id": "yEXvgdOxH6EGrwGmELzQAQ", + "name": "Stripp'd Cold Pressed Juice", + "address": "263 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9557445089, + "longitude": -75.1441897751, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Juice Bars & Smoothies, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "qy1pjoe6uuESf7kmLvFqzA", + "name": "Blue Moon Health Spa", + "address": "2469 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080002, + "longitude": -75.025557, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Massage Therapy, Health & Medical", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "lUHztzYjhD743ZuOQvgyMg", + "name": "Miyabi Restaurant", + "address": "243 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470156613, + "longitude": -75.1576062253, + "stars": 3.5, + "review_count": 62, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sushi Bars, Asian Fusion, Japanese, Restaurants, Thai", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "HPd13-ZvIJ2XkmmhPEwU3A", + "name": "Northeast Transmission & Auto Repair", + "address": "8335 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0397706, + "longitude": -75.0157184, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Auto Parts & Supplies, Smog Check Stations, Automotive, Transmission Repair, Towing, Tires", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "sGWTgl_WALFonBhFwX7OMQ", + "name": "Vanilya", + "address": "1611 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295452, + "longitude": -75.1635787, + "stars": 4.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bakeries, Shopping, Food", + "hours": { + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:30-16:0", + "Sunday": "8:30-16:0" + } + }, + { + "business_id": "QBLR0kqCJBWCyyZR3Bc7sg", + "name": "Jefferson University Hospital", + "address": "132 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949103, + "longitude": -75.157664, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Hospitals", + "hours": null + }, + { + "business_id": "ou5-TD8QcHhxTCQLLp_MZw", + "name": "Lasership", + "address": "444 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9583181, + "longitude": -75.1449099, + "stars": 1.0, + "review_count": 57, + "is_open": 0, + "attributes": null, + "categories": "Shipping Centers, Local Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "nQhf28ZTygKYE3xXMXdBqA", + "name": "Golden Gates", + "address": "11058 Rennard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1219421, + "longitude": -75.0343338, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'dressy'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsDelivery": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Russian, American (New), Dance Clubs, Restaurants", + "hours": { + "Friday": "19:0-3:0", + "Saturday": "19:0-3:0", + "Sunday": "13:0-23:0" + } + }, + { + "business_id": "UBj0aJ6FfMR4tdvRbQ3KSA", + "name": "McDonald's", + "address": "3935 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954342, + "longitude": -75.202337, + "stars": 1.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "Caters": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Restaurants, Coffee & Tea, Fast Food, Burgers, Food", + "hours": { + "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" + } + }, + { + "business_id": "anJs_LA4ikvlyWPxNypI6Q", + "name": "Precise Home Services", + "address": "6804 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19446", + "latitude": 40.0424623, + "longitude": -75.2265863, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Flooring, Tiling, Home & Garden, Kitchen & Bath, Shopping, Contractors, Home Services, Handyman, Carpenters", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "dgGuvdysSuWOv2dKqZTbVA", + "name": "Chipotle Mexican Grill", + "address": "4030 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0075055545, + "longitude": -75.212248984, + "stars": 2.5, + "review_count": 186, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "DriveThru": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "nTPMxgaKjxVuI5c-S2lGiQ", + "name": "Philadelphia Eddies Tattoo 621", + "address": "621 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409796, + "longitude": -75.1491444, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "ZEoct1bFEAwgE9NDFGZ7kA", + "name": "Keller Market", + "address": "7964 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0721248, + "longitude": -75.0767287, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'" + }, + "categories": "Grocery, Restaurants, Food, Sandwiches", + "hours": null + }, + { + "business_id": "Bk3jAsbl6cMLulBadU773A", + "name": "Yomitori", + "address": "133 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508935, + "longitude": -75.1736476, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "HappyHour": "False", + "GoodForKids": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "dmAdrx07KpSwrlViBrpNCA", + "name": "Center City Oral & Maxillofacial Surgery", + "address": "1740 South St, Ste 302", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441659, + "longitude": -75.1717273, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Oral Surgeons, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "oHjm7L7sLlkmYIG3urmgvg", + "name": "Sprint Store", + "address": "2118 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0488336276, + "longitude": -75.0630265409, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Mobile Phones, Shopping, IT Services & Computer Repair, Electronics, Telecommunications, Mobile Phone Accessories, Local Services", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "HyALuyIMyol-hL4eQQBbmQ", + "name": "Chiuโ€™s Kitchen", + "address": "122 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9542282, + "longitude": -75.1562308, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese, Cantonese, Breakfast & Brunch, Asian Fusion", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "U1maJhVWjfDA_M_xUf-ONg", + "name": "Foreign Bazaar", + "address": "1921 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520530988, + "longitude": -75.1726606356, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Jewelry, Accessories, Cosmetics & Beauty Supply, Fashion, Beauty & Spas, Arts & Crafts, Shopping, Women's Clothing", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "J36em-jyd2inHyXC20jtXA", + "name": "Tiffin", + "address": "710 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701111, + "longitude": -75.1486779, + "stars": 3.5, + "review_count": 304, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Pakistani, Indian, Restaurants, Food, Food Delivery Services, Vegetarian", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "8ZbU_9dTxfbQ_0rTk21Uvg", + "name": "The Milk House", + "address": "37 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523399, + "longitude": -75.1715586, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, American (New), Food, Breakfast & Brunch, Ice Cream & Frozen Yogurt", + "hours": { + "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" + } + }, + { + "business_id": "JC1p7xrsv5HhWPfh4fpt2g", + "name": "Goodman Family Chiropractic", + "address": "7256 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0612516, + "longitude": -75.084316, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Physical Therapy, Health & Medical, Chiropractors, Massage Therapy", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "RnYPhJ9u98hIEMilycQKjA", + "name": "Tommy's Place", + "address": "5511 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0352118, + "longitude": -75.1304918, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Fast Food, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "OeN94byxv7pOOFUxRSKCbA", + "name": "CrepeMaker", + "address": "30th Street Station, 30th and Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548473, + "longitude": -75.1832766, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, French, Specialty Food, Restaurants, Creperies", + "hours": null + }, + { + "business_id": "hv9qzqMK9UojjMgc0W6nRg", + "name": "Vagrant Coffee", + "address": "4435 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9493349729, + "longitude": -75.2126938, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea, Restaurants, Salad, Sandwiches", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "3966MAWoL1GbB8Zjvspx1g", + "name": "Urban Enoteca", + "address": "135 S 17th St, Latham Hotel Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501753, + "longitude": -75.1690403, + "stars": 3.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False}", + "GoodForDancing": "False", + "BikeParking": "True" + }, + "categories": "Nightlife, Bars, Restaurants, American (New), Italian", + "hours": null + }, + { + "business_id": "Y6hYtsrbY77Gp5eRSLWblw", + "name": "Enterprise Rent-A-Car", + "address": "36 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526292, + "longitude": -75.1722868, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-13:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "JJMyxZhrGS0V90WcovlxDQ", + "name": "Guardian Restoration", + "address": "13440 Damar Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1215163, + "longitude": -75.0005974, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Demolition Services, Damage Restoration, Home Services, Fire Protection Services, Hair Loss Centers, Beauty & Spas", + "hours": null + }, + { + "business_id": "r8T7RHYAOjimXcORIdqUPQ", + "name": "Lachowicz Robt Quality Foods", + "address": "2582 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0000247, + "longitude": -75.0762572, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "w55VlTgAoRXPnqFte3j9ew", + "name": "Revolution Taco", + "address": "2015 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507589, + "longitude": -75.1743401, + "stars": 4.0, + "review_count": 276, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True" + }, + "categories": "Mexican, Tacos, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "8TWIJBl-XCdwYoQYa1VViQ", + "name": "Rapunzel's Beauty Salon", + "address": "1307 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.944545, + "longitude": -75.163482, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Bawf-t1gcb4TAxS4NRSqhg", + "name": "Penn Treaty Park", + "address": "1199 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9661152871, + "longitude": -75.1282826402, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Parks, Lakes, Active Life, Local Flavor", + "hours": null + }, + { + "business_id": "f4QfFFh9k2qE1rvtEJumqg", + "name": "Everyone's Racquet", + "address": "130 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492092, + "longitude": -75.1605841, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Active Life, Sporting Goods, Tennis, Badminton", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "ipEZD75r51w-ZAcb4YxiBg", + "name": "Chrissy's Flowers", + "address": "4461 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0266946, + "longitude": -75.2267001, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Flowers & Gifts, Florists", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "cg4cyLGPnygGv3wkxzAErQ", + "name": "The Lucy", + "address": "231 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483085859, + "longitude": -75.1642093117, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "HR7C_tRAEgzTI8_yd4NUUw", + "name": "Reverie", + "address": "205 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9697563, + "longitude": -75.1399106, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Used, Vintage & Consignment, Shopping, Fashion", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "0-PClaUWGphUvuTH8wQ51w", + "name": "Bloomsday Cafe", + "address": "414 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427774, + "longitude": -75.1456566, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "CoatCheck": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BYOB": "False", + "Caters": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food, Breakfast & Brunch, Bars, Wine Bars, Nightlife", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "aQ2-kEwDra31zu0NCLpUsQ", + "name": "Buffalo Exchange", + "address": "1520 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510948829, + "longitude": -75.1664955889, + "stars": 3.0, + "review_count": 260, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Used, Vintage & Consignment, Women's Clothing, Thrift Stores, Men's Clothing, Shopping, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "ohWH383r60AREWh-aphpSw", + "name": "Iron Hill Brewery & Restaurant", + "address": "8400 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0750694, + "longitude": -75.2055144, + "stars": 3.5, + "review_count": 384, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "HasTV": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False" + }, + "categories": "American (New), Breweries, Desserts, American (Traditional), Restaurants, Food", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "_8fsFNmqNmsPTd1tkCHLzQ", + "name": "Family Dermatology", + "address": "525 Jamestown St, Ste 206", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0281747, + "longitude": -75.2087512, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "Aw_rzky9g7vCQX0m9z6aTQ", + "name": "Temple Rainbow", + "address": "2156 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9860341408, + "longitude": -75.1564947571, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "J8Qrh33-kpXQxju3boUfoA", + "name": "Rizzo Ice Rink", + "address": "1001 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9331908667, + "longitude": -75.1456254256, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Skating Rinks, Active Life, Leisure Centers, Local Flavor", + "hours": { + "Wednesday": "15:30-17:0", + "Thursday": "15:30-17:0", + "Friday": "15:30-17:0", + "Saturday": "18:0-19:0", + "Sunday": "18:0-19:0" + } + }, + { + "business_id": "2zc5oSByKRqSE0xynFSQoA", + "name": "Sara Sam, CPA", + "address": "2424 E York St, Ste 301-C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774593, + "longitude": -75.124602, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Payroll Services, Accountants, Financial Services, Tax Services, Financial Advising, Professional Services, Bookkeepers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "AYY1crsG6etLAQ2rsG3v-w", + "name": "MoMos Of Tibet", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074168, + "longitude": -75.2025511, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'free'", + "Corkage": "False", + "BYOB": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Buddhist Temples, Himalayan/Nepalese, Juice Bars & Smoothies, Religious Organizations, Chinese, Restaurants, Asian Fusion, Dim Sum, Food, Noodles, Soup, Food Court", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "67QoVuGSTw5vQP9xs93LuQ", + "name": "A Taste Of Olive", + "address": "8505 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0762246, + "longitude": -75.2063897, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Specialty Food, Food, Herbs & Spices", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "11:0-18:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "RPv7ucQhFpBG4GcOg1U6jg", + "name": "Philadelphia Chiropratic", + "address": "33 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492587, + "longitude": -75.1456794, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "15:30-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "15:30-18:30", + "Friday": "9:0-18:30" + } + }, + { + "business_id": "ocp2codqc5_UaQ-ff-w9eA", + "name": "Moe's Deli Restaurant", + "address": "7360 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0378561, + "longitude": -75.0386059, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "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': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'beer_and_wine'", + "Caters": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "h32M29lB6bQv7QwdWtVfEw", + "name": "Tamalex II Restaurant", + "address": "1201 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342645, + "longitude": -75.1588578, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Mexican, Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-1:0", + "Tuesday": "9:0-1:0", + "Wednesday": "9:0-1:0", + "Thursday": "9:0-1:0", + "Friday": "9:0-1:0", + "Saturday": "9:0-1:0", + "Sunday": "9:0-1:0" + } + }, + { + "business_id": "cYnKgRTfDGS0Z3oupc30NQ", + "name": "Caplan Bagels", + "address": "499 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.045341, + "longitude": -75.2320583, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Delis, Food, Breakfast & Brunch, Bagels", + "hours": null + }, + { + "business_id": "LBDIwmGed02sn5Z5CFIyPQ", + "name": "Quality Taste Jamaican Restaurant", + "address": "4002 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9631567, + "longitude": -75.20264, + "stars": 4.0, + "review_count": 112, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "FLTh2pLIPvWzDybfPbjg_A", + "name": "The Bistro", + "address": "8900 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.885188, + "longitude": -75.24866, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "T72tpiOTqLPOwuXTgDWxnQ", + "name": "Daiki Hibachi and Sushi", + "address": "7557 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9793613702, + "longitude": -75.2685242146, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "_n539Sga7PCvHQs--a4qkA", + "name": "Interstate Drafthouse", + "address": "1235 E Palmer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97199, + "longitude": -75.128871, + "stars": 4.0, + "review_count": 250, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsDelivery": "False", + "GoodForDancing": "False", + "GoodForKids": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "False", + "BYOB": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': True, u'dessert': False}", + "CoatCheck": "False", + "OutdoorSeating": "False" + }, + "categories": "Tex-Mex, Dive Bars, Bars, Beer, Wine & Spirits, American (New), Restaurants, Gastropubs, Nightlife, Southern, American (Traditional), Beer Bar, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "_awhFQUGJGaFMr38viqI9w", + "name": "Best In Town Pizza", + "address": "7971 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.061588, + "longitude": -75.05604, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'average'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "GGgYoWnKOpRQ3S0Yl14uDw", + "name": "Meltkraft At Reading Terminal Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953223, + "longitude": -75.1588819, + "stars": 4.0, + "review_count": 283, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Soup, Sandwiches, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "nf1yYpBiim85cMnDI3uZyA", + "name": "Agent Aloha", + "address": "506 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418451, + "longitude": -75.1504346, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": null, + "categories": "Accessories, Fashion, Women's Clothing, Men's Clothing, Shopping", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "Isw145X5g5kpZblQ4BxE9g", + "name": "Thai 2 Go", + "address": "355 Lyceum Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.029868, + "longitude": -75.218742, + "stars": 3.0, + "review_count": 73, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Specialty Food, Restaurants, Thai, Ethnic Food", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "vF_QwGltBpVesMMGclzB9Q", + "name": "Pizzeria Stella", + "address": "420 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9424247094, + "longitude": -75.1456823945, + "stars": 4.0, + "review_count": 601, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "2AVpF3GJF6vpN65WcOicEw", + "name": "Silverstone Bed and Breakfast", + "address": "8840 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.083242, + "longitude": -75.207566, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Hotels & Travel, Bed & Breakfast", + "hours": { + "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" + } + }, + { + "business_id": "9Mtc2pP9YJATcWYU2JSVVw", + "name": "Gamba Thomas W, DDS", + "address": "255 S 17th St, Ste 2807", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists", + "hours": null + }, + { + "business_id": "m32_s1_YwjrYVcYH4pC-eQ", + "name": "Colonial Deluxe Cleaners", + "address": "64 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95188, + "longitude": -75.1454079, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Dry Cleaning, Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:30-15:30" + } + }, + { + "business_id": "P2Lm1g_RztvIaH4daQsXoQ", + "name": "Three Monkeys Cafe", + "address": "9645 James St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.053857, + "longitude": -74.98396, + "stars": 3.5, + "review_count": 419, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "True", + "BYOB": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForDancing": "False", + "CoatCheck": "False", + "Music": "{u'dj': False, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True" + }, + "categories": "Breakfast & Brunch, Cafes, American (New), Pubs, Restaurants, Bars, Nightlife", + "hours": { + "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": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "jT3-YA4x2uhkZwChbWdFpA", + "name": "The Cook Book Stall", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.953204, + "longitude": -75.159233, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": null + }, + { + "business_id": "5yeL75bFLZlGB6dUfwCIQw", + "name": "Cotoletta Fitler Square", + "address": "2227 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9474735, + "longitude": -75.1791848, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "HasTV": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "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": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "Ke6TIwYVKj44thWmLDw9mQ", + "name": "Adresse", + "address": "45 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511432, + "longitude": -75.14317, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Fashion, Shopping, Accessories", + "hours": { + "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" + } + }, + { + "business_id": "Rcje858p_iaK7X_j1dVp6g", + "name": "O'Jung's", + "address": "1625 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9272913188, + "longitude": -75.1488328617, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "WiFi": "u'free'" + }, + "categories": "Bars, Nightlife, Gastropubs, Restaurants, Sandwiches, Dive Bars, Salad", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "FYV7zb2yau9DzN3AT-n-fw", + "name": "4 Seasons Food Market", + "address": "236 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498972, + "longitude": -75.176164, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Food, Sandwiches, Delis, Convenience Stores, Restaurants, Beer, Wine & Spirits, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "JQkjDxWxx73s30bjhE5n7g", + "name": "Aoi Japanese Restaurant", + "address": "1210 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486989, + "longitude": -75.1611488, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "tzWFFdbwFxmEvO2TAzTwHw", + "name": "Paul's Pizza", + "address": "716 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484526, + "longitude": -75.153222, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Cheesesteaks, Restaurants, Pizza", + "hours": { + "Monday": "7:0-14:30", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-14:30", + "Friday": "7:0-14:30", + "Saturday": "7:0-14:30" + } + }, + { + "business_id": "9_B5sCqKBOKDAmYpByiFFg", + "name": "Branzino Italian Ristorante", + "address": "261 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9480133, + "longitude": -75.1693585, + "stars": 3.5, + "review_count": 331, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'dressy'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "True", + "Caters": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Breakfast & Brunch, Italian, Food, Restaurants, Desserts", + "hours": { + "Monday": "17:0-22:0", + "Wednesday": "15:0-20:30", + "Thursday": "15:0-20:30", + "Friday": "15:0-20:30", + "Saturday": "15:0-20:30", + "Sunday": "15:0-20:30" + } + }, + { + "business_id": "hyrITbzxrU9WmVjstt9MwA", + "name": "Aprons Soul Food Restaurant", + "address": "2617 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9400521034, + "longitude": -75.1867334579, + "stars": 4.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Diners, Breakfast & Brunch, Restaurants, Soul Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "VsFoF_AzglUtSQy5ZvDbKQ", + "name": "Dunkin'", + "address": "1630 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0812046, + "longitude": -75.171243, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "DriveThru": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "s515mv2trPAapuc4-vmGBg", + "name": "New Kin Chinese Restaurant", + "address": "2222 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0485079, + "longitude": -75.0618464, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'" + }, + "categories": "Chinese, Food, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "D_jS6w2j1mFzb2KoYncCaA", + "name": "NBC Sports Arena", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9042986, + "longitude": -75.1694047, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Sports Bars, American (New), Bars, Restaurants, Food, Beer, Wine & Spirits", + "hours": null + }, + { + "business_id": "N3HR10CFp-YWxhWuaxOekA", + "name": "Ludwig's Garten", + "address": "1315 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950043, + "longitude": -75.162518, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True" + }, + "categories": "Nightlife, Restaurants, German, Bars", + "hours": null + }, + { + "business_id": "ZuGviUbyXpaEZnZ7w2IHyA", + "name": "BisMillah Gyro", + "address": "N 16th St & JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9532087298, + "longitude": -75.1665757249, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Food, Street Vendors, Herbs & Spices, Halal, Food Trucks, Specialty Food, Mediterranean", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30" + } + }, + { + "business_id": "8S_Vpr1kIPnP3yynZb79dw", + "name": "Franklin Field", + "address": "235 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9501475, + "longitude": -75.1901043, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Stadiums & Arenas", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "RnPqB4DPIWXch_hl7u2-mw", + "name": "Holiday Beverages", + "address": "8601 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0427547, + "longitude": -75.0102746, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "Caters": "False" + }, + "categories": "Beer, Wine & Spirits, Food, Breweries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "BEYsPtxoTnX-2xUbGHceKA", + "name": "Style of Man", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Barbers, Hair Salons", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "P9G8VOF8lWe2dnPrPrdWLw", + "name": "HE His Exclusively", + "address": "1021 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672575, + "longitude": -75.1417805, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Shopping, Adult, Fashion", + "hours": null + }, + { + "business_id": "RnC2s8eZ7MKEqkzWsUyAgA", + "name": "Grossman Furniture", + "address": "206 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9517679263, + "longitude": -75.1436116712, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Shopping, Home & Garden, Furniture Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-15:0", + "Friday": "9:30-17:30", + "Saturday": "9:30-17:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "hdcke4Vt0WZ42KbdBIVpgA", + "name": "Ed's Pizza House", + "address": "5022 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0255724, + "longitude": -75.1683667, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "B08ELtRljjxnefQ3ayqUZg", + "name": "SOHO Pizza", + "address": "218 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497216, + "longitude": -75.1444661, + "stars": 3.5, + "review_count": 176, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "Corkage": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "w7YJh9KtNpilpBlD7OTvxA", + "name": "The UPS Store", + "address": "614 South 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941241, + "longitude": -75.14949, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Shipping Centers, Printing Services, Local Services, Mailbox Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "P4L5ZPO-oruy7uMYOqr9ug", + "name": "Cebu", + "address": "123 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.948553, + "longitude": -75.143952, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'dressy'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'" + }, + "categories": "Basque, Spanish, Restaurants, Filipino", + "hours": null + }, + { + "business_id": "4kiUaZh_w-GAdax_IfcpNQ", + "name": "Edible Arrangements", + "address": "3845 Aramingo Ave, Ste 1272", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9962245, + "longitude": -75.0900645, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Flowers & Gifts, Gift Shops, Shopping, Grocery, Chocolatiers & Shops, Food, Florists, Specialty Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "7HpTZ-O9N2SKyYsXCpxQ2A", + "name": "Meredith Kleiber Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Flavor, Session Photography, Photographers, Event Photography, Event Planning & Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "m9F7AAjiBWgLngPGSbDzew", + "name": "United Auto Repair", + "address": "6163 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9843161, + "longitude": -75.2450347, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Car Dealers, Used Car Dealers", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "63iaDyR3vXu9J3wx8XipSA", + "name": "Marabello's", + "address": "6019 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0179566, + "longitude": -75.0582285, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "NoiseLevel": "None", + "Ambience": "None", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "aaILnjUFC0i0uRkg5hYgnQ", + "name": "Aqua Asian Bistro", + "address": "120 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502734691, + "longitude": -75.1659937554, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "HasTV": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Desserts, Chinese, Food, Salad, Restaurants, Asian Fusion", + "hours": { + "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" + } + }, + { + "business_id": "YYtK_dks2-cBcdxmm_94sw", + "name": "Peter Pan Bus Lines", + "address": "Philadelphia Bus Terminal, 1001 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528071, + "longitude": -75.1570083, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Buses, Hotels & Travel, Transportation", + "hours": { + "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" + } + }, + { + "business_id": "ijZP_SZg8DJKYwAMjz-xSg", + "name": "Petco", + "address": "3300 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9899, + "longitude": -75.1037, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "HasTV": "False", + "Caters": "False", + "DogsAllowed": "True", + "WiFi": "u'no'", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pet Groomers, Pet Stores, Pet Services, Pet Training, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-22:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "FIz3Hueg-ZQkRKjT5xxCQA", + "name": "Philly Sunnyside Diner", + "address": "2801 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9745695, + "longitude": -75.1819593, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'" + }, + "categories": "Breakfast & Brunch, Restaurants, Diners", + "hours": { + "Monday": "6:0-14:30", + "Tuesday": "6:0-14:30", + "Wednesday": "6:0-14:30", + "Thursday": "6:0-14:30", + "Friday": "6:0-14:30", + "Saturday": "6:0-14:30", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "8dsa83SQcAo0p3A0JPMs9w", + "name": "Kembrel", + "address": "1822 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517099, + "longitude": -75.1713919, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}" + }, + "categories": "Fashion, Women's Clothing, Men's Clothing, Accessories, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "EwX4CUwRFwjO9oO5sJJ-bA", + "name": "Pileggi on the Square", + "address": "717 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481077, + "longitude": -75.1533296, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Day Spas, Tanning, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "CIKXmAMtVM7pU0rrBQ2cBA", + "name": "Old Philly Ale House", + "address": "565 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964455, + "longitude": -75.1706125, + "stars": 4.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "Caters": "False" + }, + "categories": "Beer, Wine & Spirits, Food, Bars, Nightlife", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "P9T7y79cIzfF5QqUGpcp2Q", + "name": "Remix", + "address": "4355 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257317, + "longitude": -75.223784, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Women's Clothing, Used, Vintage & Consignment, Fashion, Shopping", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "XFu1Ya1voQvk5t-0oZhc5A", + "name": "Philly Injury Lawyer", + "address": "1500 John F Kennedy Blvd, Ste 550", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534018, + "longitude": -75.1657225, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Medical Law, Lawyers, Workers Compensation Law, Professional Services, Personal Injury Law, Employment Law, Criminal Defense Law", + "hours": { + "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" + } + }, + { + "business_id": "rJvdnDnATyYo9bOKzdn3lw", + "name": "BAMN Fitness", + "address": "1617 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9752939, + "longitude": -75.1380288, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "bZ1Q106Bmt6tR3Y3yiAADg", + "name": "Ajia Restaurant & Sushi Bar", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9523072, + "longitude": -75.1873948, + "stars": 2.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-23:0" + } + }, + { + "business_id": "SYJ_7skUPMHBPIWK88uM9w", + "name": "Zuzu's Kitchen", + "address": "1500 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9678965, + "longitude": -75.1620853, + "stars": 4.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Pizza, Salad, Sandwiches, Food Delivery Services, Food", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "7xckZSLRWf5uf3L1IsF1Kg", + "name": "Mandarin Palace", + "address": "1835 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518886, + "longitude": -75.1718034, + "stars": 3.5, + "review_count": 185, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Asian Fusion, Chinese, Sushi Bars", + "hours": { + "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": "12:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "jHeT7dodT4fN1SD3QEFoAA", + "name": "Cochon", + "address": "801 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386072, + "longitude": -75.1526555, + "stars": 4.0, + "review_count": 209, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "3", + "Alcohol": "'none'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': True, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False" + }, + "categories": "Restaurants, Food, French", + "hours": { + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "YSq-EslYR6q7_C6eqMtBrQ", + "name": "Korshak Bagels", + "address": "1700 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9282931089, + "longitude": -75.1619304003, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Bagels, Food", + "hours": { + "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" + } + }, + { + "business_id": "KAduZ0DxquGJw6C9BIH23w", + "name": "Peck Miller's", + "address": "6119 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0341396, + "longitude": -75.2156462, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'very_loud'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Bars, Dive Bars, Nightlife", + "hours": null + }, + { + "business_id": "GX0REnnZMhsxlu3gSb-mAw", + "name": "Posh Hair Artistry", + "address": "8010 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.070796, + "longitude": -75.201367, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "8KBDQlSdjJ-NoLbpPvkOrw", + "name": "La Peg", + "address": "140 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9534524019, + "longitude": -75.1404362747, + "stars": 3.5, + "review_count": 252, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "HasTV": "False", + "BikeParking": "True", + "GoodForKids": "False", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False", + "Music": "{u'dj': False, u'live': True, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "CoatCheck": "False" + }, + "categories": "French, Arts & Entertainment, Cocktail Bars, American (Traditional), Brasseries, Bars, Beer Gardens, Music Venues, Restaurants, Gastropubs, Tapas/Small Plates, Nightlife, American (New)", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "16:0-23:0" + } + }, + { + "business_id": "eSoikzs5htDlz5HkbOymPg", + "name": "Philadelphia Pet Care Company", + "address": "1703 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9463069, + "longitude": -75.1700803, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Dog Walkers, Pet Services, Pet Sitting", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-16:0", + "Wednesday": "11:0-17:0", + "Thursday": "10:0-16:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "YeCf4BQ225HZSUW9imhaGQ", + "name": "Berks Street Crabs", + "address": "2718 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9813211416, + "longitude": -75.1795094088, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "None", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': None}" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "13:0-22:0" + } + }, + { + "business_id": "O4wZuA6Im9gQxxddCZ3kkQ", + "name": "New York Gyro Truck", + "address": "41ST And Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954482017, + "longitude": -75.2052439587, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Food Trucks, Food, Street Vendors, Middle Eastern", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "9:30-20:30" + } + }, + { + "business_id": "deJd43rpViQxkOmn-gz-Lg", + "name": "Pizza City", + "address": "3208 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080901, + "longitude": -74.995019, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "HasTV": "True", + "BikeParking": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "UxlDGw1YihzSovxfU29cdg", + "name": "A One Auto Sales & Repair", + "address": "2433 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403419495, + "longitude": -75.1845321655, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Car Dealers, Smog Check Stations", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "pXMxvdHKzCuSQhZu0MEOHg", + "name": "Los Potrillos Mexican Restaurant", + "address": "4653 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0212979, + "longitude": -75.125815, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Tacos, Mexican, Restaurants", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "BsRbHnmuO1dUfrbtxpxdIg", + "name": "Unique Photo Philadelphia", + "address": "28 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492668, + "longitude": -75.144163, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Electronics, Education, Photography Stores & Services, Shopping, Specialty Schools, Photography Classes", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "hcxea89M_U__LADtu3C0kA", + "name": "Supper", + "address": "926 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942621512, + "longitude": -75.1579622906, + "stars": 3.5, + "review_count": 402, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), French, Restaurants, American (Traditional)", + "hours": { + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "17:30-20:30" + } + }, + { + "business_id": "hLHHVXHXpFeNIN0kJc_9aw", + "name": "Addiction Studios", + "address": "1024 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447053, + "longitude": -75.1591497, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "False" + }, + "categories": "Fashion, Beauty & Spas, Shopping, Makeup Artists, Used, Vintage & Consignment, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "MNv5nQf1KgTUi7zFeDEazA", + "name": "20th Street Pizza", + "address": "108 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517078, + "longitude": -75.1737131, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "None", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Vegan, Restaurants, Pizza", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "NvaHGU03m-hvXIGScPe6WQ", + "name": "Holiday Inn Express Philadelphia-Midtown", + "address": "1305 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493353797, + "longitude": -75.1626115157, + "stars": 3.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "IXmbT3oONCTKVqUdP8ZB-w", + "name": "Jefferson Surgical Center", + "address": "Three Crescent Dr, Ste 310", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8961230914, + "longitude": -75.1745979488, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Medical Centers, Health & Medical", + "hours": null + }, + { + "business_id": "RBCtHLVvc230q8zkRWIoyQ", + "name": "Creme Brulee Bistro & Cafe", + "address": "1800 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9259730399, + "longitude": -75.1527614381, + "stars": 4.5, + "review_count": 165, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "True", + "OutdoorSeating": "None", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Patisserie/Cake Shop, Coffee & Tea, Restaurants, French, Cafes, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "DJSqD28YqU9tYY2tESGGEQ", + "name": "Sam's garage", + "address": "507 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923962, + "longitude": -75.155141, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive", + "hours": null + }, + { + "business_id": "y1k27CYeuRJ42cbsDs5KJw", + "name": "Franklin Square Boutique", + "address": "128 North 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9530068, + "longitude": -75.1451403, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Fashion, Men's Clothing, Jewelry, Women's Clothing", + "hours": { + "Monday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "kmjXUagfPL_QoRMEv6k8EQ", + "name": "Liberty Bell Bicycle", + "address": "7741 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.039934, + "longitude": -75.031253, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Bikes, Sporting Goods, Bike Rentals, Active Life, Local Services, Shopping, Bike Repair/Maintenance", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "KfIPQSLSj_rJ9zbsdO7wFQ", + "name": "Greg's Kitchen", + "address": "4460 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0267886888, + "longitude": -75.2267333767, + "stars": 4.0, + "review_count": 337, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Caters": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HappyHour": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Comfort Food, American (Traditional), Restaurants, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "SofI_999OKy7SeCzQHebDw", + "name": "DNG Complete Home Improvement", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Gutter Services, Chimney Sweeps, Home Services, Plumbing, Contractors, Masonry/Concrete", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "DKXeB-JIou5XPI49CzITuQ", + "name": "China House", + "address": "2123 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9190372, + "longitude": -75.1836988, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "HasTV": "True", + "HappyHour": "False", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "fwIhAbiaJBuJnt90mZSTBA", + "name": "Fat Jack's BBQ", + "address": "10090 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.096102507, + "longitude": -75.0147091857, + "stars": 3.0, + "review_count": 134, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Barbeque, Restaurants, Food Delivery Services, Southern, Chicken Wings, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-17:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "SovmPZDFKx54k9o7CxX-Dw", + "name": "Quest Diagnostics", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0715275293, + "longitude": -75.0307274784, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "vF9PBhB_5SrQHbCXtyYijA", + "name": "Hibachi Shokudo", + "address": "1301 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9579312, + "longitude": -75.1603414, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BYOB": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsTableService": "True" + }, + "categories": "Japanese, Ramen, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "2mHJetAZqfkm-QH-nOMu9g", + "name": "Advanced Dental Designs, P.C.", + "address": "6529 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0492365, + "longitude": -75.1836532, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, General Dentistry, Health & Medical, Cosmetic Dentists, Oral Surgeons, Endodontists", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "9:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "E3uEFdtj7hZ8NshWT4_zuA", + "name": "Peirce College", + "address": "1420 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.945416, + "longitude": -75.1662577, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Colleges & Universities, Adult Education, Education, Educational Services", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "EXMTnpdRTM-lWn5gLgs28A", + "name": "Firestone Complete Auto Care", + "address": "9602 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.087017, + "longitude": -75.035764, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Parts & Supplies, Automotive, Tires, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "pQUrSvni9ReYTfDZtg2BRw", + "name": "CIty Fitness - Fishtown", + "address": "1428 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9725815, + "longitude": -75.1345397, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Fitness & Instruction, Trainers, Gyms, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-1:0", + "Wednesday": "5:0-1:0", + "Thursday": "5:0-12:0", + "Friday": "5:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "Rd8Gb82UQcPPWC_yY5ybDg", + "name": "Pho Hoa Noodle Soup", + "address": "501 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0371693, + "longitude": -75.1084699, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Vietnamese, Restaurants", + "hours": null + }, + { + "business_id": "4ydaO2E3LmD_TfpG3xKTOw", + "name": "Studio 4 Hair Design", + "address": "6320 Sackett St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0282835, + "longitude": -75.0591754, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "0E-dYP3hTrtgFDGRyBbOwA", + "name": "Laughlin", + "address": "1210 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93523, + "longitude": -75.16733, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Lawyers, Professional Services, Local Services, Notaries, Insurance, Financial Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "dfP7vEVqcgFWmObIInwFzA", + "name": "King's Palace", + "address": "Andorra Shopping Ctr, 8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0626352, + "longitude": -75.23727, + "stars": 3.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True" + }, + "categories": "Sushi Bars, Japanese, Restaurants, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "4mWzXhD8vo0bABVCGAhlqA", + "name": "Philadelphia's Magic Gardens", + "address": "1020 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942712, + "longitude": -75.159313, + "stars": 4.5, + "review_count": 593, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Community Service/Non-Profit, Arts & Entertainment, Local Services, Local Flavor, Art Galleries, Event Planning & Services, Venues & Event Spaces, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Sxq7qfoanpOcFugTwDGATw", + "name": "Rarest", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949365, + "longitude": -75.1551425, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "CoatCheck": "False", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Nightlife, Restaurants, Bars, American (New)", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0" + } + }, + { + "business_id": "5UjINogSwLL6SKRM5mEZng", + "name": "New Zem Zem Pizza", + "address": "117 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0376602, + "longitude": -75.1731888, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Alcohol": "'none'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'loud'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "jXz_OjHLtICgZAM9WrWtGQ", + "name": "Philadelphia Bridal Company", + "address": "1218 Spruce St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946553, + "longitude": -75.1619694, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Bridal, Shopping", + "hours": { + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "J475RpmY71mhvYvC9ep41A", + "name": "Lacquer Lounge", + "address": "2051 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950989, + "longitude": -75.175561, + "stars": 4.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Nail Salons, Spray Tanning, Beauty & Spas, Waxing, Tanning, Eyelash Service", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "9RmCMNxgGe7vX5MYF_TM4Q", + "name": "Wawa", + "address": "1602 South Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264316123, + "longitude": -75.1455847058, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Delis, Food", + "hours": { + "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" + } + }, + { + "business_id": "GKNknnI7pZgPwjOKNI9NPQ", + "name": "Lucky 13 Pub", + "address": "1820 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9271637, + "longitude": -75.1671282, + "stars": 4.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Pubs, Bars, American (New), Restaurants, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "tIrRQBpPou-WfYc0XkLVfA", + "name": "Sueno", + "address": "114 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498246, + "longitude": -75.1604325, + "stars": 3.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cocktail Bars, Nightlife, Restaurants, Mexican, Bars", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "PPxgIsvKrSEhwTHDj3W8pg", + "name": "Snapdragon Flowers", + "address": "5015 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480846, + "longitude": -75.2240416, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Event Planning & Services, Floral Designers, Shopping, Florists, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "K9cn-DrPEEXse1s1n-6mMw", + "name": "Bridget Foy's", + "address": "200 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411136, + "longitude": -75.145825, + "stars": 3.5, + "review_count": 312, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "Caters": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Breakfast & Brunch, Nightlife, Bars, American (Traditional), Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-21:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "vrQCClTDrPSbIHO-ub8qFg", + "name": "Sardi's Pollo A La Brasa", + "address": "4510 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0030483, + "longitude": -75.2219283, + "stars": 4.0, + "review_count": 332, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Latin American, Peruvian, Chicken Shop, Restaurants, Sandwiches", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "CUmXZEwtHja-3bZ7T2atEg", + "name": "Bendi", + "address": "4333 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0254186, + "longitude": -75.2230765, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Jewelry, Watches", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "LUL2M-R107_ovqrLqg7d6w", + "name": "Coos Sports Bar", + "address": "822 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687861, + "longitude": -75.1604323, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "American (New), Bars, Nightlife, Sports Bars, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "K0f_P7b6ADQagwunK6YcPg", + "name": "City View Pizza", + "address": "1434 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9787034, + "longitude": -75.159486, + "stars": 3.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Cheesesteaks, Sandwiches, Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "X-ey4ntofcbx1zQnBCQQWQ", + "name": "Wardrobe Clinic", + "address": "1420 Walnut St, Ste 605", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492642, + "longitude": -75.1654596, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Personal Shopping, Fabric Stores, Bespoke Clothing, Arts & Crafts, Local Services, Sewing & Alterations", + "hours": null + }, + { + "business_id": "NQ01WqVX0tojNHKn-0sFww", + "name": "Tir na nOg Irish Pub", + "address": "1600 Arch Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544564822, + "longitude": -75.1667542796, + "stars": 3.5, + "review_count": 245, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Smoking": "u'outdoor'", + "BYOB": "False" + }, + "categories": "Irish Pub, Nightlife, American (New), Bars, Irish, Pubs, Restaurants", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "TzldSZSwzD328ZRtw5CgvA", + "name": "Bally Total Fitness", + "address": "2425 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9218323, + "longitude": -75.1870233, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "5eWop4vOz5PdCiKD0ozvUw", + "name": "Two Penn Center", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "-mIlmp5l4hKlp1tvHRdvTg", + "name": "Sonny's Famous Steaks", + "address": "228 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499178538, + "longitude": -75.1447920753, + "stars": 4.0, + "review_count": 1697, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "WiFi": "u'free'", + "Corkage": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "DriveThru": "False", + "RestaurantsTableService": "False" + }, + "categories": "Cheesesteaks, Comfort Food, Restaurants, Delis, Burgers, American (Traditional), Sandwiches, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "87JMZFDKoOgb-QqwXxCyww", + "name": "Everlasting Art Tattoo Studio", + "address": "4308 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9514353684, + "longitude": -75.2096845272, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Tattoo, Piercing, Beauty & Spas, Jewelry", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "pmIVrqAy4gxBUqomsCL6Ig", + "name": "Subway", + "address": "1701 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9562697, + "longitude": -75.1679039, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Caters": "True" + }, + "categories": "Restaurants, Sandwiches, Fast Food, Food, Salad, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "Oj4otn-Wfd-JLwh1dL0DbA", + "name": "The Juice Room", + "address": "7127 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0592116, + "longitude": -75.1899679, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "HasTV": "False" + }, + "categories": "Cafes, Food, Soup, Restaurants, Ice Cream & Frozen Yogurt, Juice Bars & Smoothies, Sandwiches, Coffee & Tea, Videos & Video Game Rental, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "4ethI9A0jaG7bhJmHy4gow", + "name": "Le Bar Lyonnais", + "address": "Le Bec-Fin Downstairs, 1523 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949919, + "longitude": -75.166996, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, French, Bars, Restaurants", + "hours": { + "Monday": "9:0-22:0" + } + }, + { + "business_id": "fS-Dj2v3Xj5YkDJ2IXueew", + "name": "Fruit Life", + "address": "1013 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954625663, + "longitude": -75.1566576585, + "stars": 4.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "_jRB9wKomaO1W3tfA1sX_Q", + "name": "Jackass Burrito", + "address": "2013 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522598, + "longitude": -75.1740323, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "iZwUgq2W1rHd97Y2fwBFdg", + "name": "Performance Bicycle", + "address": "1300 S Columbus Blvd, Ste 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9304481357, + "longitude": -75.1451353558, + "stars": 3.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sports Wear, Sporting Goods, Shopping, Bikes, Mountain Biking, Bike Repair/Maintenance, Active Life, Fashion, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "dMOv-lIQ9-2TGOfuAyzgOg", + "name": "Little Sicily Pizza", + "address": "1433 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254545, + "longitude": -75.1708405, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": null + }, + { + "business_id": "G9LZoNlCfRH941q87_JLIg", + "name": "Mission Taqueria", + "address": "1516 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502217062, + "longitude": -75.1665529981, + "stars": 4.0, + "review_count": 617, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "Caters": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DriveThru": "None", + "BikeParking": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Tex-Mex, Restaurants, Food, Nightlife, Beer, Wine & Spirits, Pubs, Bars, Mexican", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "hCSfQR7MHl6Yk6Sro6Zufw", + "name": "Gaja Gaja", + "address": "627 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936529, + "longitude": -75.155448, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Japanese, Sushi Bars, Korean, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "a9tI3YQyIXHqt0c1AxaSbA", + "name": "Valley Green Inn", + "address": "7 Valley Green Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.055064914, + "longitude": -75.2181315422, + "stars": 3.5, + "review_count": 191, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': False, u'dessert': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, American (Traditional), Event Planning & Services, American (New), Seafood, Venues & Event Spaces", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:0", + "Saturday": "16:0-20:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "egnIRUFaiOFdXYReuproiw", + "name": "Jimmy's Timeout Sports Pub", + "address": "5001 Linden Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0461605831, + "longitude": -74.9945482984, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "CoatCheck": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "HasTV": "True", + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Smoking": "u'outdoor'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Bars, Restaurants, Sports Bars, Pubs, Sandwiches, Chicken Wings, American (Traditional), Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "i2PC2TcmNGhzeb7---fPFw", + "name": "Stay Fly Muay Thai", + "address": "515 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962028863, + "longitude": -75.1472353935, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Martial Arts, Boxing, Active Life, Gyms, Muay Thai, Fitness & Instruction", + "hours": { + "Monday": "16:30-20:0", + "Tuesday": "16:30-20:0", + "Wednesday": "16:30-20:0", + "Thursday": "16:30-20:0", + "Friday": "18:0-20:0", + "Saturday": "7:0-12:0", + "Sunday": "10:0-12:0" + } + }, + { + "business_id": "79AQnzzVVx3B_FviRpTU7A", + "name": "FightFit FightStrong", + "address": "826 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9688479, + "longitude": -75.1603524, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Kickboxing, Fitness & Instruction, Active Life, Martial Arts", + "hours": { + "Monday": "6:30-19:30", + "Tuesday": "6:30-19:30", + "Wednesday": "6:30-19:30", + "Thursday": "6:30-19:30", + "Friday": "6:30-19:30", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "HRh-JeWCnn2sjG_HenWG5g", + "name": "Revive Medical Botox and Laser", + "address": "819 N 2nd St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634159, + "longitude": -75.1405372, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Weight Loss Centers, Beauty & Spas, Doctors, Hair Removal, Laser Hair Removal, Medical Spas, Skin Care, Cosmetic Surgeons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:0", + "Friday": "15:0-18:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "AZ5sk4X3LQ5BNLxeGPaddw", + "name": "Seiko Japanese Restaurant", + "address": "604 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612121, + "longitude": -75.1415708, + "stars": 4.0, + "review_count": 142, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Japanese, Watches, Sushi Bars, Shopping", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "8xp1f0z30A7aXPe1rSyHrQ", + "name": "Glendale Kosher Meat Market & Poultry", + "address": "732 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1055561, + "longitude": -75.0336949, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Butcher, Meat Shops, Food, Specialty Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "HVz5AY2hpuSi4UKcw6hJYQ", + "name": "Shanghai Dimsum", + "address": "6439 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0402236, + "longitude": -75.0762974, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Chinese, Dim Sum", + "hours": { + "Monday": "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": "11:0-21:0" + } + }, + { + "business_id": "z6neSckjZB2CfuPk-uS82Q", + "name": "Lee's Dry Cleaners", + "address": "105 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9565235, + "longitude": -75.1758935, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Dry Cleaning, Laundry Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Rz_MRIc4uqRa11JSiezDAQ", + "name": "First Person StorySlams", + "address": "624 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412707, + "longitude": -75.1526797, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "0Asm98-Ilk1QlHqBqfWF-g", + "name": "Optimal Physical Therapy Gym", + "address": "1105 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9355219, + "longitude": -75.1563419, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Physical Therapy, Health & Medical", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "AIXHlW6Y_1qUJrYQzZvKeA", + "name": "Philadelphia Animal Hospital", + "address": "6439 Lindburgh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9192172, + "longitude": -75.2255154, + "stars": 4.0, + "review_count": 33, + "is_open": 0, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "LoIdYUEioSoBCIefdx_qoA", + "name": "Jalabee Cosmetic Skin Treatment Center & Day Spa", + "address": "6540 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.924798, + "longitude": -75.2350872, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Skin Care, Eyelash Service, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "CHVllyPyVszUQeGEnQQGeA", + "name": "Open City Healing Arts", + "address": "1518 Walnut St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494291778, + "longitude": -75.1668947611, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Counseling & Mental Health, Psychologists, Acupuncture", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "2owewxu5r6mLfKv6BBV3Aw", + "name": "Dunkin'", + "address": "808 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495283, + "longitude": -75.1542873, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "5:30-19:0", + "Tuesday": "5:30-19:0", + "Wednesday": "5:30-19:0", + "Thursday": "5:30-19:0", + "Friday": "5:30-19:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "cRL1p2YtGqKazqlpPz4exQ", + "name": "TD Bank", + "address": "1726 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950047, + "longitude": -75.170496, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "20:0-19:0", + "Tuesday": "20:0-19:0", + "Wednesday": "20:0-19:0", + "Thursday": "20:0-20:0", + "Friday": "20:0-20:0", + "Saturday": "20:0-16:0", + "Sunday": "23:0-15:0" + } + }, + { + "business_id": "te_3sFwC4hdNJN-HtqCXQQ", + "name": "Cafe Spice", + "address": "35 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489657, + "longitude": -75.1436016, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Indian, Pakistani", + "hours": null + }, + { + "business_id": "FgpMROyfhEbCSi2dXwfQeg", + "name": "Reward Project", + "address": "55 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514558, + "longitude": -75.1433176, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Fashion, Women's Clothing, Shopping, Men's Clothing", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ZH-9EoqgN8teKNMuLu434w", + "name": "Foreign Fix Auto Center", + "address": "822 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315724, + "longitude": -75.1588703, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "yULamqA-RJxz3Z9niVaJ0Q", + "name": "Philly Dance Fitness", + "address": "1301 Locust St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948158, + "longitude": -75.162445, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Fitness & Instruction, Dance Schools, Gyms, Specialty Schools, Dance Studios, Active Life, Education", + "hours": { + "Monday": "18:0-21:0", + "Tuesday": "17:30-20:30", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-20:30", + "Friday": "17:30-20:30" + } + }, + { + "business_id": "xoMWJ37LeJJZe3oiK-H6-g", + "name": "Jordan Johnson's Gourmet Seafood", + "address": "901 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0322207, + "longitude": -75.0914883, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BikeParking": "False", + "WiFi": "'paid'" + }, + "categories": "Restaurants, Seafood, Food", + "hours": null + }, + { + "business_id": "iVi5ESK5iCYF7GnQBOcQig", + "name": "Roswell Gutter Cleaning & Installation", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037106, + "longitude": -75.031094, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Gutter Services", + "hours": { + "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-17:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "mjnoRuP0GtQ640dxbtES1A", + "name": "The UPS Store", + "address": "51 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9516919, + "longitude": -75.1449739, + "stars": 3.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Local Services, Mailbox Centers, Notaries, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:30", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "-AbzJTLQdbdQrhRzQLgsKA", + "name": "Kingyo", + "address": "1720 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507905, + "longitude": -75.1696177, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "yEa_sWqLpmB5NbXyAz_g_A", + "name": "Bomb Bomb", + "address": "1026 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9209915, + "longitude": -75.1643995, + "stars": 4.0, + "review_count": 107, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_corkage'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "HappyHour": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Barbeque, Italian", + "hours": { + "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": "11:30-23:0" + } + }, + { + "business_id": "PzqwENhkS_x5Czwn-dV6fQ", + "name": "The Library Bar", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949901, + "longitude": -75.173049, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "Corkage": "True", + "ByAppointmentOnly": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "HappyHour": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "WiFi": "u'free'" + }, + "categories": "Cocktail Bars, Bars, Nightlife", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "HaME_WsTgD84z-Q78tJ0Vg", + "name": "Beyond/Hello", + "address": "1206 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496079312, + "longitude": -75.1607215405, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Cannabis Clinics, Cannabis Dispensaries, Shopping", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "4wX_7wJGjWb10IMJAUJ8gA", + "name": "The Wardrobe - Philadelphia", + "address": "413 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9582131, + "longitude": -75.1451756, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Shopping, Used, Vintage & Consignment, Community Service/Non-Profit, Men's Clothing, Local Services, Donation Center, Fashion, Accessories, Women's Clothing, Thrift Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "jc6PRKXaOwQeKtQGXoG76Q", + "name": "The Shake Seafood", + "address": "2141 Cottman Ave, Unit D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.049511, + "longitude": -75.0621303, + "stars": 4.0, + "review_count": 189, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:30", + "Saturday": "13:0-22:30", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "gZkT5f8_7-J5dQQJQgnY5w", + "name": "Dunkin'", + "address": "1 E Penn Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9525882, + "longitude": -75.1622449, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None" + }, + "categories": "Coffee & Tea, Donuts, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "RUfWgnSSQKjRNBpK0wSxfg", + "name": "Isabella Pizza", + "address": "1824 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9271608, + "longitude": -75.1668506, + "stars": 3.0, + "review_count": 149, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTableService": "False" + }, + "categories": "Burgers, Italian, Restaurants, Pizza, Breakfast & Brunch", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "jZxs7PDhUbhg4LWSFM4Z_A", + "name": "Best China Inn", + "address": "4423 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541202, + "longitude": -75.2112357, + "stars": 3.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'quiet'", + "HasTV": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:30-23:45", + "Wednesday": "11:30-23:45", + "Thursday": "11:30-23:45", + "Friday": "11:30-23:45", + "Saturday": "11:30-23:45", + "Sunday": "11:30-23:45" + } + }, + { + "business_id": "xktxinKR7zKt0Z_fxAn6Wg", + "name": "West Pets", + "address": "4015 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9636136, + "longitude": -75.2027295, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "OLG6RP_T8DppYb3XdBYdLw", + "name": "South Philly PC Repair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1489581921, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "IT Services & Computer Repair, Professional Services, Local Services", + "hours": { + "Monday": "18:0-22:0", + "Tuesday": "18:0-22:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-22:0" + } + }, + { + "business_id": "QgDsoMYcLcVcBQ3UgVay4A", + "name": "Crisp Kitchen", + "address": "1900 Market St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599, + "longitude": -75.172695, + "stars": 3.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False" + }, + "categories": "Salad, Chinese, Food, Ice Cream & Frozen Yogurt, Fast Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "FffPXnuuKYWbi3Aj8taNcQ", + "name": "Village Pizza", + "address": "3233 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9604873, + "longitude": -75.1891583, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:45", + "Tuesday": "11:0-23:45", + "Wednesday": "11:0-23:45", + "Thursday": "11:0-23:45", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:45" + } + }, + { + "business_id": "6AyStugdP-ALNjzUw1EEag", + "name": "Made in America", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Arts & Entertainment, Performing Arts, Festivals, Nightlife, Music Venues", + "hours": null + }, + { + "business_id": "CeTWrmbkDGBnI5Ruv3v0Mw", + "name": "Motion Recruitment", + "address": "1 S Broad St, Fl 22", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9516491, + "longitude": -75.1674763, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Employment Agencies, Career Counseling, Professional Services", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "r1XZyqd0JU4GGJhBBGcG7A", + "name": "barre3 Philadelphia - Rittenhouse Square", + "address": "1500 Sansom St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95031, + "longitude": -75.16578, + "stars": 5.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Barre Classes, Pilates, Yoga, Fitness & Instruction", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-18:45", + "Saturday": "8:30-12:0", + "Sunday": "8:30-17:15" + } + }, + { + "business_id": "X0lCvXEahUA5HEPP3SZjeA", + "name": "El Soto Deli & Grocery", + "address": "1500 Tasker 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9306803523, + "longitude": -75.1699446009, + "stars": 5.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Delis, Restaurants, Sandwiches, Food, Grocery", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "haPSww7kZ6aGbm2PIkDVoA", + "name": "Gopuff", + "address": "5261 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0201272, + "longitude": -75.2100504, + "stars": 1.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Food Delivery Services, Convenience Stores, Food", + "hours": null + }, + { + "business_id": "lCetcbxQr52TTGmGmXzQcw", + "name": "Country Club Diner", + "address": "1717 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0540854, + "longitude": -75.0704686, + "stars": 3.0, + "review_count": 85, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Bakeries, American (Traditional), Food, Restaurants, Breakfast & Brunch, Diners", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "mQ_4jXYsgT2lXkMsUhtxRA", + "name": "A & M Halal Food Truck", + "address": "31ST And Ludlow", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542886, + "longitude": -75.1855272, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Specialty Food, Food, Ethnic Food, Imported Food", + "hours": null + }, + { + "business_id": "d2Wfyih3EdRJnOC6qEiPOg", + "name": "Flaming Grill & Fusion Buffet", + "address": "4504 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002977, + "longitude": -75.2217849, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, Seafood, Buffets, Cantonese, Chinese", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "0bb_b3Neemt_LOZfxhnFXA", + "name": "Artesano Cafe", + "address": "109 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.027066, + "longitude": -75.2267952, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Shopping, Art Galleries, Restaurants, Coffee Roasteries, Cafes, Coffee & Tea, Food, Arts & Entertainment", + "hours": { + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "dlBZr-NZWfEv6S6UH6I9Jg", + "name": "Reliable Roofing", + "address": "9945 Norwalk Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0977995, + "longitude": -75.0327983, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Roofing, Home Services, Gutter Services", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "SesC7ep7i0uCnBUiqIuPPA", + "name": "Alan's Collision Center", + "address": "601 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.107443, + "longitude": -75.037994, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Body Shops, Towing", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "wtyRjMk3uwx27_wvnzRkog", + "name": "Super Fratelli's Pizza", + "address": "10849 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.110289, + "longitude": -75.024127, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "qDEfOaHAOrYzdQIlgXjPng", + "name": "Eye Options", + "address": "2139 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0496202, + "longitude": -75.0621997, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Health & Medical, Shopping, Optometrists", + "hours": { + "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-16:0" + } + }, + { + "business_id": "VSQjT5mn45JKtSSL56jNPg", + "name": "Marianna's Pizzeria", + "address": "2626 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0557918, + "longitude": -75.0455197, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, Pizza, Pasta Shops, Restaurants, Food, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ZvTO3e9VRH4MCU9AraAK8A", + "name": "Lowe's Air Duct Cleaning", + "address": "525 S 4th Street, Suite 368", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419044, + "longitude": -75.1488744, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Chimney Sweeps, Home Services, Pressure Washers, Air Duct Cleaning, Local Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "Cf9cdIHKEZXVPIysDAqQ7A", + "name": "Get Happy Pub", + "address": "509-511 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941893, + "longitude": -75.1455042, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New), Bars, Nightlife, Pubs", + "hours": { + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "WqyUnIA7PMUZbUZCtmZtXA", + "name": "Toll Man Joe's", + "address": "26 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.913631, + "longitude": -75.148795, + "stars": 4.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "Smoking": "u'outdoor'", + "HappyHour": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'loud'", + "GoodForDancing": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Music Venues, Sports Bars, Bars, Arts & Entertainment, Chicken Wings, Nightlife, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "cOgVHdr35XM1ADcHYr3lPA", + "name": "Christ Church Burial Ground", + "address": "20 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507644242, + "longitude": -75.1439327404, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Religious Organizations, Parks, Churches, Active Life", + "hours": null + }, + { + "business_id": "3x0kph8uwEFqibspRo_jbQ", + "name": "Laundromat America", + "address": "4839 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9739793599, + "longitude": -75.2188658408, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services, Laundromat", + "hours": null + }, + { + "business_id": "tJxrkonV5iuVZUNJev0jWA", + "name": "Classic Cake Bakery & Cafe", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542676513, + "longitude": -75.1678994671, + "stars": 4.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "HasTV": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Corkage": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Cafes, Desserts, Bakeries, Custom Cakes, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "pEupd58_0a8oCP9xwQMVfg", + "name": "South Philly Bikes", + "address": "1901 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9265045567, + "longitude": -75.1671477778, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Bikes, Shopping, Local Services, Sporting Goods, Bike Repair/Maintenance", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "8JwafFqgloTVXkk94LGqag", + "name": "Shop Mark Supermarket", + "address": "2522 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.996104, + "longitude": -75.1731727, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False" + }, + "categories": "Meat Shops, Grocery, Food, Specialty Food, Food Delivery Services, Seafood, Restaurants", + "hours": { + "Monday": "8:0-20: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": "8:0-17:0" + } + }, + { + "business_id": "sz6KGCGeD75rGRFZm5JkgA", + "name": "Institute of Contemporary Art", + "address": "118 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954085, + "longitude": -75.194714, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Art Museums, Museums, Arts & Entertainment", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "_A4JgqZzr3rUsMgHfKer7Q", + "name": "NY Bagel Cafe & Deli", + "address": "103 Turner Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0140948517, + "longitude": -75.2317640074, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Food, Delis, Bagels, Restaurants, Internet Cafes, Coffee & Tea", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "xmWaBhJuOtaYlvGvpjDqSA", + "name": "European Motor Works", + "address": "721 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624073, + "longitude": -75.1406284, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "x67huqR9qbjoodRBu3KWfg", + "name": "1st NE International Market", + "address": "2842 Saint Vincent St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0415953142, + "longitude": -75.0551653732, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Cantonese, Grocery, Food, Chinese, Restaurants, International Grocery, Cafes", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "dUzR2vZ6nhuGdrDV2Dsr_g", + "name": "2nd State Lounge", + "address": "401 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417056, + "longitude": -75.1492637, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Music": "{'dj': True, 'background_music': True, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "GoodForDancing": "False", + "OutdoorSeating": "False", + "CoatCheck": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Nightlife, Pizza, Bars, Lounges", + "hours": { + "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": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "ri8K3WLymceKlwVKtLg3ng", + "name": "A & N House of Produce", + "address": "5929 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0365676, + "longitude": -75.1798459, + "stars": 3.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fruits & Veggies, Food, Grocery, Specialty Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "as7hPsyLUSSiSEd2o1nErQ", + "name": "Wynnefield Pizza", + "address": "1819 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9846658, + "longitude": -75.2311673, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "T6YU8_8aDC8EnkL_yhQnvQ", + "name": "Run Shoe Store", + "address": "The Piazza at Schmidts, 1033 N 2nd St 3rd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Shoe Stores, Fashion", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-19:0" + } + }, + { + "business_id": "QqntFtwfPDC8oh7AZ223vA", + "name": "Paris Nails", + "address": "500 Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9186062, + "longitude": -75.1560261, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "FoInxau7UwTN2vguRTBNQA", + "name": "Hong Restaurant", + "address": "420 W Grange Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.039174, + "longitude": -75.128641, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Korean, Restaurants", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0" + } + }, + { + "business_id": "WaGSdQGsOCYDqRu8FN7Pcg", + "name": "The Palestra", + "address": "235 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9501475, + "longitude": -75.1901043, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Stadiums & Arenas", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "J85Ien0NnLdWhtopkfWA2g", + "name": "Parkway", + "address": "1127 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9558863, + "longitude": -75.1583744, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "76e065wK_xyZnINUm07vVA", + "name": "Amtrak", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557513114, + "longitude": -75.1818856201, + "stars": 3.0, + "review_count": 105, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Public Transportation, Hotels & Travel, Transportation, Train Stations", + "hours": null + }, + { + "business_id": "ceDbT0uHz4Vzc8Iazg9krQ", + "name": "Pourti", + "address": "3565 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9540828, + "longitude": -75.1941068, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "eMlGIvwFBAaSGSp0c0Wnqw", + "name": "A & J Seafood", + "address": "3148 N Broad st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0012973, + "longitude": -75.1532209843, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Fish & Chips, Restaurants, Chicken Shop, Seafood", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "14:45-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "bVc8Ylv0Vr43MielXGd_MQ", + "name": "Red Mango", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8805591085, + "longitude": -75.2374830097, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "'no'" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Juice Bars & Smoothies", + "hours": { + "Monday": "5:0-23:30", + "Tuesday": "5:0-23:30", + "Wednesday": "5:0-23:30", + "Thursday": "5:0-23:30", + "Friday": "5:0-23:30", + "Saturday": "5:0-23:30", + "Sunday": "5:0-23:30" + } + }, + { + "business_id": "ctHjyadbDQAtUFfkcAFEHw", + "name": "Zahav", + "address": "237 St James Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9462611465, + "longitude": -75.1451350779, + "stars": 4.5, + "review_count": 3065, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "HasTV": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "4", + "RestaurantsTakeOut": "None" + }, + "categories": "Nightlife, Bars, Food, Ethnic Food, Middle Eastern, Vegetarian, Specialty Food, Israeli, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:45-21:30", + "Wednesday": "16:45-21:30", + "Thursday": "16:45-21:30", + "Friday": "16:45-21:30", + "Saturday": "16:45-21:30" + } + }, + { + "business_id": "V5joRorS5dBNDXD669n6jg", + "name": "Germantown Garden", + "address": "1029 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966258, + "longitude": -75.1382568, + "stars": 3.0, + "review_count": 146, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Bars, Breakfast & Brunch, Cocktail Bars, Nightlife, Lounges, American (Traditional)", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "eKRGSCTYtYO3ltC69jZrPQ", + "name": "Susan C Taylor , MD", + "address": "932 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9444015, + "longitude": -75.1580267, + "stars": 2.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Dermatologists, Doctors", + "hours": null + }, + { + "business_id": "GsT0zZ0Sf2JE7L6YJf6olQ", + "name": "Tatiana's Luxury Limousine", + "address": "7960 Bayard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0748563, + "longitude": -75.164568, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Hotels & Travel, Limos, Transportation, Airport Shuttles", + "hours": { + "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" + } + }, + { + "business_id": "849vV4133tI82lNWCZinOA", + "name": "Reggae Reggae Vibes", + "address": "517 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9703316132, + "longitude": -75.145784989, + "stars": 4.0, + "review_count": 130, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Caters": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WiFi": "'no'" + }, + "categories": "Cheesesteaks, Caribbean, Restaurants", + "hours": { + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0" + } + }, + { + "business_id": "p9z15n352EvWo_PLjRKsUw", + "name": "Red Sky", + "address": "224 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499245, + "longitude": -75.1446213, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True" + }, + "categories": "Lounges, American (New), Dance Clubs, Nightlife, Restaurants, Bars", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "14:0-2:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "nLrvjEZkNY_bTTvD4b-6sg", + "name": "HNT Chicken", + "address": "2749 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0077753725, + "longitude": -75.1743743196, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Chicken Shop, Chicken Wings", + "hours": null + }, + { + "business_id": "Fyi_Mf7UsTNVNQii-RGzTA", + "name": "Philly Pretzel Factory", + "address": "1555 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0804412, + "longitude": -75.1730921, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Food, Restaurants, Pretzels, Hot Dogs", + "hours": { + "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-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "AyKHpTvQq75ggMIhlmgxig", + "name": "Rushwood Apartments", + "address": "10825 E Keswick Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.078243, + "longitude": -74.984526, + "stars": 1.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "dAaWxrY4le8xvTMqNjIRtw", + "name": "Five Guys", + "address": "2552 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0791890292, + "longitude": -75.0266629492, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Fast Food, American (New), Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "H1zluBWeIFkOamadC-j5MQ", + "name": "anjuthreads", + "address": "1126 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486813, + "longitude": -75.1603307, + "stars": 4.0, + "review_count": 231, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hair Removal, Beauty & Spas", + "hours": { + "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": "10:0-16:0" + } + }, + { + "business_id": "SCjUeZfjafJ88fWWQjRh2w", + "name": "El Rey", + "address": "2013 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522598, + "longitude": -75.1740323, + "stars": 3.5, + "review_count": 968, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Lounges, Bars, Mexican, Nightlife, Tex-Mex, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "qqX8KlCbK6uWEe-6bVPa6w", + "name": "Lotus Philadelphia Esthetic Center", + "address": "1240 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9433247896, + "longitude": -75.1632219818, + "stars": 3.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Beauty & Spas, Eyelash Service, Skin Care", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "WXRZlGsdUjraCAcgtCyk4Q", + "name": "Potito's Italian American Pastries", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493384512, + "longitude": -75.1629765787, + "stars": 3.5, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Bakeries, Coffee & Tea", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-22:0", + "Saturday": "8:30-22:0" + } + }, + { + "business_id": "4hmaKbOARJsP_8UfRssQJg", + "name": "AT&T Store", + "address": "1851 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92367, + "longitude": -75.1419828135, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Mobile Phones, IT Services & Computer Repair, Mobile Phone Accessories, Local Services, Telecommunications, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "QkYXd12QO6N7BykYOp_8Ag", + "name": "Sansom Watches", + "address": "Neff Jewelry Trade Building, 740 Sansom St , Ste 607", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485785, + "longitude": -75.1539429, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Watch Repair, Jewelry, Shopping, Watches", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:30-14:0" + } + }, + { + "business_id": "6GOdPucdzalKnlytAyOmDw", + "name": "Piazza Pod Park", + "address": "1075 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967475, + "longitude": -75.139348, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "DogsAllowed": "True" + }, + "categories": "Beer Gardens, Bars, Arts & Entertainment, Active Life, Food, Nightlife, Parks, Playgrounds", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "n4alafw1npRmVXzfBLUGPQ", + "name": "Nick's Roast Beef", + "address": "2210 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048536, + "longitude": -75.06233, + "stars": 3.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForKids": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, American (Traditional), Sports Bars, Sandwiches, Bars, Nightlife", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Q8HgFV4VRBFZ4s6lFP_2bw", + "name": "Ryan Foster Salon", + "address": "7118 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.058659, + "longitude": -75.190051, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "7:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "7W2HqyvW9XIL-TWuXSODBg", + "name": "International Smokeless BBQ", + "address": "600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344152, + "longitude": -75.1543726, + "stars": 3.5, + "review_count": 102, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Alcohol": "'beer_and_wine'" + }, + "categories": "Vietnamese, Restaurants, Barbeque, Korean, Asian Fusion", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "6LmJ1077AVxEMn4Ce5ZSHg", + "name": "Logan Square Cafe", + "address": "200 N 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9570373, + "longitude": -75.1691887, + "stars": 2.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WiFi": "u'free'", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Venues & Event Spaces, Cafes, Breakfast & Brunch, Caterers, Event Planning & Services, Restaurants", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "644r2PJhLCFL1_jVECpOGw", + "name": "Fishtown Pharmacy", + "address": "1802 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.977035, + "longitude": -75.132031, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True" + }, + "categories": "Health & Medical, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-13:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "8QtgPszOI5-4qwizvWi5lA", + "name": "Unity Taqueria", + "address": "5420 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0224225, + "longitude": -75.2090019, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Corkage": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'" + }, + "categories": "Mexican, Tex-Mex, Restaurants, Tacos", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-19:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "R7U3lCaFWGA1p3sRkFcYAA", + "name": "Balducci's", + "address": "1 Garage Access Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.881297, + "longitude": -75.2413809, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Grocery, Food, Restaurants, Delis", + "hours": null + }, + { + "business_id": "zM-FI9KgcFF8cO4ivQ44uw", + "name": "Paul", + "address": "1120 Pine Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9449491, + "longitude": -75.1607343, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Breakfast & Brunch, American (New), Restaurants", + "hours": null + }, + { + "business_id": "DTO--9INooXm3UqDMgMiYA", + "name": "College of Physicians of Philadelphia", + "address": "19 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531743, + "longitude": -75.1763806, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "XU08zggSq0iXZj7Q5nIdbQ", + "name": "Drexel University", + "address": "245 N 15th St, Fl 2nd, Ste 2108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9576132, + "longitude": -75.1637438, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Specialty Schools, Education, Colleges & Universities, Vocational & Technical School, CPR Classes", + "hours": { + "Monday": "7:45-16:0", + "Tuesday": "7:45-16:0", + "Wednesday": "7:45-16:0", + "Thursday": "7:45-17:0", + "Friday": "7:45-17:0", + "Saturday": "7:45-17:0" + } + }, + { + "business_id": "iBKNmlTZ6LsLcYRnVr1uJQ", + "name": "South Street Magic", + "address": "519 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942013, + "longitude": -75.1488229, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Hobby Shops, Performing Arts, Arts & Entertainment", + "hours": { + "Tuesday": "12:30-19:0", + "Wednesday": "12:30-20:0", + "Thursday": "12:30-21:30", + "Friday": "12:30-21:30", + "Saturday": "12:30-20:0", + "Sunday": "12:30-20:30" + } + }, + { + "business_id": "S92DFRTR_15DqxJbP5Cr7A", + "name": "Imperial Agency", + "address": "6444 Sackett St, Ste U21, Mayfair Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0300783786, + "longitude": -75.0583984344, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Financial Services, Departments of Motor Vehicles, Registration Services, Public Services & Government, Automotive, Notaries, Local Services, Insurance, Auto Insurance", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-16:15" + } + }, + { + "business_id": "-uPvL8kLaSzG-KxkSKL6RA", + "name": "Hong Kong Deli", + "address": "3294 Gaul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9884019, + "longitude": -75.102826, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Delis, Breakfast & Brunch, Restaurants", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "GAuweBrcC_wK3a0UhZjwfA", + "name": "Loco Pez", + "address": "2401 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.977142, + "longitude": -75.127202, + "stars": 4.0, + "review_count": 650, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': None}", + "WiFi": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "DriveThru": "False", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'" + }, + "categories": "Restaurants, Tacos, Bars, Nightlife, Mexican", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "xmoQxKSelwLYjDAs3nND0g", + "name": "The Summit at Rittenhouse", + "address": "255 S 17th St, Fl 2nd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}" + }, + "categories": "Health & Medical, Weight Loss Centers, Trainers, Nutritionists, Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "7XhHJgO-DMkMsy25e2pIhw", + "name": "NO.1 China", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.103263, + "longitude": -75.010096, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "T0qzsFxkHK9w1afnmns4fw", + "name": "Konditori", + "address": "40 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518382614, + "longitude": -75.1689804495, + "stars": 4.0, + "review_count": 102, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Bakeries, Bagels, Food", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-21:0", + "Saturday": "6:30-21:0", + "Sunday": "6:30-21:0" + } + }, + { + "business_id": "io4YNLvABJrFraEwtQBWqA", + "name": "Philadelphia 201 Hotel", + "address": "201 N 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9578348057, + "longitude": -75.1670997617, + "stars": 2.5, + "review_count": 557, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Event Planning & Services, Hotels & Travel, Venues & Event Spaces, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "XVBhNSpKCMz1yJcFtgL2ng", + "name": "Phileo Yogurt", + "address": "416 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416785325, + "longitude": -75.1494613095, + "stars": 4.0, + "review_count": 202, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "GoodForKids": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Restaurants, Delis", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "7YsrfPONeC5VC-n5N1gb5w", + "name": "The Breakfast Boutique", + "address": "6830 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0586918, + "longitude": -75.1497736, + "stars": 4.0, + "review_count": 138, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "'free'", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:30-14:30", + "Tuesday": "7:30-14:30", + "Wednesday": "7:30-14:30", + "Thursday": "7:30-14:30", + "Friday": "7:30-15:30", + "Saturday": "7:30-15:30", + "Sunday": "7:30-15:30" + } + }, + { + "business_id": "pP9hjbseO3mCi--J59PExw", + "name": "Tin Can Bar", + "address": "2537 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.981656, + "longitude": -75.113641, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Cocktail Bars, Bars, Tiki Bars, Barbeque, Nightlife, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Ku2b7oA9s56mHoflb5lJ2w", + "name": "Alma Del Mar", + "address": "1007 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373099378, + "longitude": -75.1580101624, + "stars": 5.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': False}", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Coffee & Tea, Seafood, Restaurants, Fish & Chips, Food, Mexican, Salad, Breakfast & Brunch, Sandwiches, Comfort Food", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "AVkr7VQYlojXMltztxtb4Q", + "name": "Hair Perfection", + "address": "7969 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0615383, + "longitude": -75.0561098, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Barbers", + "hours": null + }, + { + "business_id": "aBbiintkpGQirBp-7Ooc3Q", + "name": "Middleton & Sons Carpet Service", + "address": "171 E Sharpnack St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0525528, + "longitude": -75.1808263, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Furniture Reupholstery, Carpet Cleaning, Carpet Installation, Home Services, Carpeting, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "cguva6es8rSJE1GorfQq9w", + "name": "Super Fresh", + "address": "309 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.944348, + "longitude": -75.1501613, + "stars": 2.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "pum7TsURcc2NKcYKpId9gA", + "name": "Lickety Split", + "address": "401 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 3.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Corkage": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Bars, Nightlife, Pizza, Restaurants", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "NY-8LSYUh16FCSCdIeVWWQ", + "name": "Brooks Brothers", + "address": "1513 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498771, + "longitude": -75.1666244, + "stars": 2.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Women's Clothing, Children's Clothing, Shopping, Men's Clothing", + "hours": { + "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": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Q2FP_Vd2E5uriqb28w9Y1g", + "name": "Healing Arts Community Acupuncture", + "address": "2012 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503561, + "longitude": -75.1744949, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Acupuncture, Doctors, Nutritionists, Medical Centers, Traditional Chinese Medicine, Health & Medical, Sports Medicine", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "Wl7iw_u4WeEreF4ZZF1oDw", + "name": "Szechuan Four Rivers", + "address": "936 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9551888, + "longitude": -75.1556212, + "stars": 3.5, + "review_count": 218, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Caters": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Open24Hours": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "Zk970x5qnRNgDznVKMNZZA", + "name": "Bahia Bowls- Chestnut Hill", + "address": "8136 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0728581, + "longitude": -75.2026082, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Juice Bars & Smoothies, Food, Acai Bowls", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "4igGJ9v1iQLKCBx9aW_VIg", + "name": "Cellucci Heating & Air Conditioning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.037452, + "longitude": -75.231551, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "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": "8:0-22:0" + } + }, + { + "business_id": "ExJjmQZ6M01JDbHFQ8CbzA", + "name": "Tasteful Sensations Seafood & Soul Food", + "address": "3703 Pulaski Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0100109, + "longitude": -75.1546441, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "False" + }, + "categories": "Soul Food, Restaurants, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Ub-hAwTRnZBdJ3ealJalDQ", + "name": "Batteries Plus Bulbs", + "address": "6507 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.049072, + "longitude": -75.063273, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False" + }, + "categories": "Lighting Fixtures & Equipment, Electronics Repair, Mobile Phone Repair, Electronics, Home Services, Shopping, Local Services, IT Services & Computer Repair, Battery Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "TI8ddk4d4feKASNaCN5tKw", + "name": "Desimone Auto Group", + "address": "518 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959769, + "longitude": -75.141998, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Parts & Supplies, Auto Repair, Automotive, Car Dealers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "6OC8ErU_m06KABnfSXTJEA", + "name": "Street Side", + "address": "165 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969485, + "longitude": -75.1386559824, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "M8LfTMjWxnWHlKdWBR-4jA", + "name": "Rite Aid", + "address": "1628-36 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95123, + "longitude": -75.16843, + "stars": 2.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Drugstores, Shopping, Food, Photography Stores & Services", + "hours": { + "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" + } + }, + { + "business_id": "VDIcgTQVzOdd4fucVE4sZw", + "name": "Jefferson Urgent Care - Smylie Times - Jefferson Health 19", + "address": "2607 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0562721, + "longitude": -75.0453714, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Medical Centers, Urgent Care", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "pBhSdTZcYx29M0ulJhUNig", + "name": "El Guaco Loco", + "address": "2003 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.983036976, + "longitude": -75.1546335178, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "WiFi": "u'free'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Food Trucks, Mexican, Food", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "T4xhGbduBI6VZd92NqpIrw", + "name": "The Arts Condominium", + "address": "1324 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478863, + "longitude": -75.1635217, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Home Services, Condominiums, Property Management, Apartments", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "6zTR-eyqFCbzWvSwprS2tA", + "name": "RadioShack", + "address": "Port Richmond Village, 2427 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976398468, + "longitude": -75.1221542358, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': False, 'lot': True, 'validated': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobile Phones, Electronics, Hobby Shops, Shopping", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "8NUpHsBx7rnPyi_bchClFA", + "name": "Rush Appliance Service", + "address": "4250 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0147838, + "longitude": -75.1181655, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "FHinXLaal32gWzUfBUdcaw", + "name": "Liberty Weddings", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Planning, Event Planning & Services, Officiants, Professional Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "79cmm_bMkDWHaa7-OysIAA", + "name": "Cantina Laredo", + "address": "8500 Essington Ave, Space E12, Terminal E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8778109906, + "longitude": -75.2368170695, + "stars": 2.5, + "review_count": 112, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Wine Bars, Nightlife, Breakfast & Brunch, Restaurants, Mexican, Bars", + "hours": { + "Monday": "4:30-20:30", + "Tuesday": "4:30-20:30", + "Wednesday": "4:30-20:30", + "Thursday": "4:30-20:30", + "Friday": "4:30-20:30", + "Saturday": "4:30-20:30", + "Sunday": "4:30-20:30" + } + }, + { + "business_id": "EIj6irQyq2Oeq219EkFynw", + "name": "Brasil's Nightclub", + "address": "112 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481424, + "longitude": -75.1430684, + "stars": 4.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "HappyHour": "True", + "WiFi": "u'no'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}" + }, + "categories": "Nightlife, Restaurants, Bars, Dance Clubs", + "hours": { + "Wednesday": "21:30-2:0", + "Friday": "21:30-2:0", + "Saturday": "21:30-2:0" + } + }, + { + "business_id": "Xz3GX2UyIjZuXde86qy0Hw", + "name": "Boulevard Animal Hospital", + "address": "1913 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0843715, + "longitude": -75.0346241, + "stars": 3.5, + "review_count": 41, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "1GSWARDKGoe2FWF1QeFqgA", + "name": "The Geisha House", + "address": "149 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9535816, + "longitude": -75.1446742, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Women's Clothing, Fashion, Shopping, Accessories, Jewelry, Lingerie", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:30-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "XGp784GFQlidwcTi7fAN1w", + "name": "The Green Remedy", + "address": "7215B Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0598588, + "longitude": -75.0852793, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Medical Cannabis Referrals, Cannabis Clinics, Naturopathic/Holistic, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-13:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "10:0-14:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "ZouQy3WfscGm1d1zrWdqsg", + "name": "Quality Cleaners", + "address": "8501 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062888, + "longitude": -75.238889, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "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-17:0" + } + }, + { + "business_id": "MJ45SG8DkG0z6f1G7VEU1A", + "name": "Wee Massage", + "address": "253 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468097, + "longitude": -75.1575251, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "WheelchairAccessible": "False" + }, + "categories": "Massage, Acupuncture, Traditional Chinese Medicine, Health & Medical, Reflexology, Beauty & Spas, Tui Na", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "OLkNlwJpQ2YSf9hWluNVEg", + "name": "Haven Behavioral Hospital", + "address": "3301 Scotts Ln, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0117484473, + "longitude": -75.1845347021, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hospitals, Psychologists, Health & Medical, Counseling & Mental Health", + "hours": { + "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" + } + }, + { + "business_id": "A3Qt87F7ZaAwCW4CyyB1Fw", + "name": "Dottie's Donuts", + "address": "4529 Springfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483447, + "longitude": -75.2136558, + "stars": 4.5, + "review_count": 206, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Food, Vegan, Cafes, Donuts", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "sJ7RwRN1Pd602KDXb6oW0Q", + "name": "Philly Pretzel Factory", + "address": "7366 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037904, + "longitude": -75.0383777, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pretzels, Food, Specialty Food, Hot Dogs, Restaurants, Bakeries", + "hours": { + "Monday": "4:0-20:0", + "Tuesday": "4:0-20:0", + "Wednesday": "4:0-20:0", + "Thursday": "4:0-20:0", + "Friday": "4:0-20:0", + "Saturday": "4:0-20:0", + "Sunday": "4:0-19:0" + } + }, + { + "business_id": "yMq9b-R8Z_K6Uhw6z-zZSg", + "name": "Overhill Flowers", + "address": "6231 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9850966, + "longitude": -75.246876, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Specialty Food, Food, Shopping, Flowers & Gifts", + "hours": { + "Monday": "8:30-12:30", + "Tuesday": "8:30-12:30", + "Wednesday": "8:30-12:30", + "Thursday": "8:30-12:30", + "Friday": "8:30-12:30" + } + }, + { + "business_id": "N9rE-Hlew47cNwD9sPtb7g", + "name": "MBR Nanny Network", + "address": "2100 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465246587, + "longitude": -75.1609494526, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Child Care & Day Care, Nanny Services", + "hours": null + }, + { + "business_id": "a4_6KvSONHhL0dOmJNnVVw", + "name": "Girard Vetinary Clinic", + "address": "2806 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9741984706, + "longitude": -75.1822739, + "stars": 3.5, + "review_count": 101, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pet Services, Pets", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "_Oc45lJFBcTK4nFEV3W_tA", + "name": "Francesco Steaks", + "address": "7220 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0360518, + "longitude": -75.042793, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cheesesteaks, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "jCKjT0w6BnPxNSZO9Q2uuw", + "name": "M Restaurant", + "address": "231 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9473257341, + "longitude": -75.1543113996, + "stars": 3.5, + "review_count": 165, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "CoatCheck": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "Smoking": "u'outdoor'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, American (New), Desserts, Argentine, Italian, Restaurants, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "8NbOKCqw_sgx1NM7YVNVtg", + "name": "US Post Office", + "address": "316 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500843, + "longitude": -75.1465316, + "stars": 3.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Local Services, Post Offices, Public Services & Government", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "or1JuxvK2kcrKvM2djYUEQ", + "name": "The Farmacy", + "address": "4443 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953125, + "longitude": -75.211986, + "stars": 3.5, + "review_count": 226, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "None", + "Alcohol": "'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, American (New), Restaurants, Comfort Food", + "hours": { + "Thursday": "10:0-14:0", + "Friday": "10:0-14:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "EGRgPGC9WN7FukEqX93WRg", + "name": "Old City Parkominium", + "address": "231 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.954662, + "longitude": -75.1422421, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Automotive, Valet Services, Parking, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "jyiCIbGkuhxawoEBvZxUfA", + "name": "Jack Duggan's Pub", + "address": "8500 Essington Ave, Terminal A, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874761, + "longitude": -75.247085, + "stars": 2.5, + "review_count": 200, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "CoatCheck": "False", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Restaurants, Pubs, Nightlife, Sandwiches, Irish", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-21:30", + "Saturday": "5:30-21:30", + "Sunday": "5:30-21:30" + } + }, + { + "business_id": "UVn-6D4kG-rYhadN_W7isQ", + "name": "Tufano & Sons Roofing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618676, + "longitude": -75.0465123, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Chimney Sweeps, Roofing, Gutter Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "sIznpP5wyo8foNJMGoQCHQ", + "name": "AKA Music", + "address": "27 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507082, + "longitude": -75.1434916, + "stars": 4.0, + "review_count": 73, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Music & DVDs, Shopping, Books, Mags, Music & Video, Vinyl Records", + "hours": { + "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-18:0" + } + }, + { + "business_id": "0LNV8iJg_g3_1ujwaeHZ-Q", + "name": "Duafe Holistic Hair Care", + "address": "3129 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0025473, + "longitude": -75.1658585, + "stars": 3.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "7:0-19:0" + } + }, + { + "business_id": "dnhBn5mY71DEELyvTrBYFQ", + "name": "Dollar Tree", + "address": "1601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531, + "longitude": -75.16736, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": { + "Monday": "6:0-19:30", + "Tuesday": "6:0-19:30", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "6:0-19:30", + "Saturday": "6:0-19:30" + } + }, + { + "business_id": "bwlHQiKk7EACbEZC5T3r7g", + "name": "El Provocon", + "address": "2843 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0394683, + "longitude": -75.0563012, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False" + }, + "categories": "Spanish, Restaurants", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "NlNF2lXDTgxo_awI0pErVw", + "name": "Steve Madden", + "address": "1723 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503294, + "longitude": -75.1700653, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Fashion, Shoe Stores", + "hours": null + }, + { + "business_id": "f_SzhRI25oSaNNu2RpYgJA", + "name": "Gourmay Diner", + "address": "6208 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9170713, + "longitude": -75.2141988, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks, Diners", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0", + "Saturday": "6:0-16:0" + } + }, + { + "business_id": "N6gpRIx9T-vVi0ykuOvgMw", + "name": "Jo Jo's Professional", + "address": "1913 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9267883, + "longitude": -75.172938, + "stars": 5.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'" + }, + "categories": "Automotive, Auto Detailing", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "thyE8JF6o8cAMbd1uN8mXg", + "name": "Philadelphia 76ers", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9011809, + "longitude": -75.1719716, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Professional Sports Teams, Arts & Entertainment", + "hours": null + }, + { + "business_id": "-XClcHTlMjH-PBqV2l_KXA", + "name": "Pennsylvania Dental Group", + "address": "1740 South St, Ste 504", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441824, + "longitude": -75.1717273, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, General Dentistry, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-15:30" + } + }, + { + "business_id": "O823FiPDepbCKYo7w2uGAg", + "name": "Macaroni's Restaurant", + "address": "9315 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0817359, + "longitude": -75.0382522, + "stars": 4.0, + "review_count": 211, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "False", + "GoodForDancing": "False", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Nightlife, Beer Gardens, Italian, Pizza", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "AqXAY71HZDnOV_qG1H0GpA", + "name": "Don Chucho", + "address": "1108-10 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360042563, + "longitude": -75.1585241407, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Caters": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Food, Restaurants, Mexican", + "hours": null + }, + { + "business_id": "D6RHhqoMP6AaRNUbgeCiMw", + "name": "Tubby Robot Ice Cream Factory", + "address": "4369 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258305512, + "longitude": -75.2243280899, + "stars": 4.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "eO5MbK-ujRQMwLWqbAMqrQ", + "name": "Dunkin'", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951784, + "longitude": -75.2279726, + "stars": 2.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "vEfA3V3pCrnigUFlLJ3gLw", + "name": "Gleaner's Cafe", + "address": "917 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938929, + "longitude": -75.157903, + "stars": 4.5, + "review_count": 140, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Food, Vegan, Coffee & Tea, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "4uJ6Ox6GRMVzkUt306kzIQ", + "name": "Superior Moving & Storage", + "address": "5101 Unruh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.019648, + "longitude": -75.0418575, + "stars": 3.0, + "review_count": 151, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Movers, Self Storage, Local Services, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "AIWwHJAIf8q4C4ACNBrsoQ", + "name": "Bart's Bagels", + "address": "3945 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9627522556, + "longitude": -75.2012517303, + "stars": 4.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bagels, Food", + "hours": { + "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" + } + }, + { + "business_id": "hlVKbykRTIL6ruTcK8Vkfw", + "name": "Liberty Service Center", + "address": "900 W College Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9729835425, + "longitude": -75.1782778554, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Gas Stations, Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "WyVh94BghK3ojOc9gKYccg", + "name": "2nd Avenue", + "address": "199 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0904717, + "longitude": -74.9659016, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Thrift Stores", + "hours": null + }, + { + "business_id": "QKVX66UREuD6aQ0x_F17wA", + "name": "Slice", + "address": "1180 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934678, + "longitude": -75.160539, + "stars": 3.5, + "review_count": 302, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "Corkage": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Food, Pizza, Italian", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "muR20QPDTkisDHvcIP1gBA", + "name": "Amber Johnston Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "None" + }, + "categories": "Photographers, Session Photography, Wedding Planning, Pets, Event Planning & Services, Event Photography, Professional Services, Pet Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "WW_qGCrcNqACvA8NLK5AMQ", + "name": "LeBus Cafe", + "address": "Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8654657, + "longitude": -75.2741557, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Cafes, Restaurants, Local Flavor", + "hours": { + "Monday": "4:30-22:30", + "Tuesday": "4:30-22:30", + "Wednesday": "4:30-22:30", + "Thursday": "4:30-22:30", + "Friday": "4:30-22:30", + "Saturday": "4:30-22:30", + "Sunday": "4:30-22:30" + } + }, + { + "business_id": "mbxBhg3Y-vkI-aQ3nhsxlA", + "name": "Indulge Hair Salon", + "address": "1603 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9363938, + "longitude": -75.1706239, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyebrow Services, Eyelash Service, Hair Salons, Hair Extensions, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "sEz9CXEHXANqXOIcJW6oeg", + "name": "Three Graces Coffee", + "address": "719 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939875, + "longitude": -75.151338, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "kMSSjOWLFqnvjMrjxUpH0g", + "name": "Atlantic Pizza", + "address": "1401 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9324323, + "longitude": -75.1641196, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Caters": "False", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Pizza, Restaurants, Diners", + "hours": { + "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-15:0" + } + }, + { + "business_id": "G7XPVBOKuxCq7L84fqNflA", + "name": "Meineke Car Care Center", + "address": "7825 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0722024442, + "longitude": -75.1573846696, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Tires, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-18:0" + } + }, + { + "business_id": "9RotEBfTRO5rZl2StsC5Og", + "name": "Rosewood", + "address": "1302 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489651082, + "longitude": -75.1623111501, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Cocktail Bars, Gay Bars, Bars, Lounges, Nightlife", + "hours": { + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "on812LIboUL1mgOoCN9Ceg", + "name": "Fork & Barrel", + "address": "4312 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0099218, + "longitude": -75.1966125, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Caters": "False", + "HasTV": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Gastropubs", + "hours": null + }, + { + "business_id": "lJIufAdm9zLz5ZSVhbDNHg", + "name": "Kaplans Furniture", + "address": "7936 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0416092, + "longitude": -75.0288097, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home & Garden, Shopping, Furniture Stores", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "mv9uuDPJDaxl0zJ5cEhpXA", + "name": "Mr Wish - South Philly", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936311, + "longitude": -75.16201, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Coffee & Tea, Restaurants, Bubble Tea, Taiwanese", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "8tXJHD_h65bqJdAWJ2wd6Q", + "name": "Orangetheory Fitness Center City", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95160545, + "longitude": -75.16801855, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Trainers, Cardio Classes, Boot Camps, Active Life, Gyms, Interval Training Gyms, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-18:30", + "Saturday": "7:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "N5HKhhKUMURuuqi7fopDgg", + "name": "Red-Red-Red", + "address": "222 Church St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506495, + "longitude": -75.1448398, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Removal, Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-17:30" + } + }, + { + "business_id": "R9kExKCPOnCD8vVY_7Edlg", + "name": "The Pickled Heron", + "address": "2218 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9801351, + "longitude": -75.1292047, + "stars": 4.0, + "review_count": 120, + "is_open": 0, + "attributes": { + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, French", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "B6N3pLuRTvOOYjzD112yIQ", + "name": "Salon 90", + "address": "90 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0802843, + "longitude": -75.2077232, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-15:30", + "Thursday": "9:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "VBONwHcqkxYTHfxmdKGhkw", + "name": "Keating's Rope & Anchor", + "address": "201 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457341, + "longitude": -75.1413125, + "stars": 3.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': True}", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "CoatCheck": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': True, u'trendy': False, u'intimate': None, u'romantic': True, u'classy': True, u'upscale': True}" + }, + "categories": "Seafood, Bars, Nightlife, American (Traditional), Restaurants", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "ZsA6o-uK1984HaEdP_qO-A", + "name": "Stock Rittenhouse", + "address": "1935 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522011, + "longitude": -75.1731727, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Thai, Restaurants, Soup, Food, Noodles, Vietnamese, American (New), Sandwiches, Coffee & Tea", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "h3MjgXqPyAxZDXw8CceZHQ", + "name": "Rasa Salon", + "address": "62 W Manheim St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.028802, + "longitude": -75.166607, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Hair Salons, Shopping", + "hours": { + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "pwIgwyZEBGcJr8k__nxabw", + "name": "Bryn Mawr Running Company", + "address": "4320 Main St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.02493, + "longitude": -75.222905, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Wear, Sporting Goods, Shopping, Fashion", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "CcHbzM4bTBCHXe1YiAwAYA", + "name": "Azaad Foods", + "address": "6443 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.040324, + "longitude": -75.0762134, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Indian", + "hours": null + }, + { + "business_id": "fBoo1Q7xQOZvUDfIarkETA", + "name": "Salam Cafe and Market", + "address": "5532 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0331967, + "longitude": -75.1754915, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Specialty Food, Restaurants, Ethiopian, Mediterranean", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "11:0-11:15" + } + }, + { + "business_id": "csBftms0brareTQSFGwpgA", + "name": "Great Taste Chinese Food", + "address": "4834 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9536559, + "longitude": -75.2193516, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'formal'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "469cDiOBw6Hs0dUdFQrEmg", + "name": "Philadelphia Passport Agency", + "address": "200 Chestnut St, Room 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9478166235, + "longitude": -75.1451435, + "stars": 4.0, + "review_count": 100, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Travel Services, Passport & Visa Services, Public Services & Government, Embassy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "Cps6aUHXsIH7HPKdMx__cg", + "name": "Greenland Spa", + "address": "629 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96162, + "longitude": -75.1410617, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Massage, Cosmetics & Beauty Supply, Eyelash Service, Reflexology, Health & Medical, Massage Therapy, Beauty & Spas", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "pcy24IuPvHpj3bHvP6EitA", + "name": "Halal Fusion Chinese Restaurant", + "address": "2748 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9944131, + "longitude": -75.1478, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Halal", + "hours": null + }, + { + "business_id": "kzHH50fET6e5nVqk8IIl5Q", + "name": "Good Moo'd Creamery", + "address": "1647 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9289697, + "longitude": -75.1642855, + "stars": 4.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WheelchairAccessible": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts, Acai Bowls, Juice Bars & Smoothies, Coffee & Tea", + "hours": { + "Thursday": "13:0-21:0", + "Friday": "6:0-23:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "BztSLUF-sqzfl1dPLdNcwA", + "name": "Food Point Deli", + "address": "1711 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9287048, + "longitude": -75.1683292, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "WheelchairAccessible": "False" + }, + "categories": "Convenience Stores, Food, Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "PCIqljWnTlB84XhM3Y3_1Q", + "name": "Bye Bye Liver", + "address": "1253 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9701888, + "longitude": -75.1356145, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "None", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Nightlife, Performing Arts, Comedy Clubs", + "hours": { + "Saturday": "19:0-22:0" + } + }, + { + "business_id": "zfGDoYNklqZeaS2nYZpmOw", + "name": "Philly Foodies Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'no'" + }, + "categories": "Tours, Walking Tours, Food Tours, Historical Tours, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "16:0-18:0", + "Friday": "12:30-15:0", + "Saturday": "15:30-17:30", + "Sunday": "12:30-15:0" + } + }, + { + "business_id": "9MahnirC-VmlloME9XDr1A", + "name": "Susie's Sweets Bakery", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Bakeries, Event Planning & Services, Food, Caterers, Desserts", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "TEMI8cox1nHyZu3NAnC0dg", + "name": "Dunkin'", + "address": "2654 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9180427, + "longitude": -75.1780221, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "DriveThru": "None", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "waPAecxML2o95uZhalnBtg", + "name": "2000 Nails", + "address": "5850 Loretto Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0337788, + "longitude": -75.0854391, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "VVtDFxOn5NnjBryjo7RVEA", + "name": "Tech Smart", + "address": "529 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420804, + "longitude": -75.1517827, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "False" + }, + "categories": "Books, Mags, Music & Video, Video Game Stores, Electronics, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "c6tlkzg9aKA8aGHvBC9u1w", + "name": "Long In the Tooth", + "address": "2027 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514996, + "longitude": -75.1746687, + "stars": 3.5, + "review_count": 125, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Music & DVDs, Books, Mags, Music & Video, Shopping, Vinyl Records", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "wUMb_6v15-jBH14RAhkYog", + "name": "Bicycle Stable", + "address": "1420 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9722745, + "longitude": -75.1345266, + "stars": 4.5, + "review_count": 43, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Sporting Goods, Bike Repair/Maintenance, Local Services, Bikes", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "LZxRqo5BkIuNMPHg7gPVcQ", + "name": "Sprint Store", + "address": "1235 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507126194, + "longitude": -75.1615945995, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BikeParking": "True" + }, + "categories": "Shopping, Electronics, Mobile Phones, Mobile Phone Accessories", + "hours": null + }, + { + "business_id": "Rc5F8Gtu-wdbPmVU8DFdJQ", + "name": "La Mamiringa Restaurant", + "address": "5009 North 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.027564, + "longitude": -75.1321794, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Spanish, Restaurants, Caribbean", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "lInYEIj1qrXJ8jS70FoSwg", + "name": "Worldwide Aquarium & Pet Center", + "address": "6801 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.031986, + "longitude": -75.0503298, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Training, Pet Stores, Pet Services", + "hours": null + }, + { + "business_id": "e6koMMDPeRixkV2Jxv8msw", + "name": "Washing Well", + "address": "305 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94855, + "longitude": -75.178964, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "sHl8UZE_vX9vF6p9GESLVw", + "name": "City House Hostel - Philadelphia", + "address": "17 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9534329, + "longitude": -75.146216, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "DogsAllowed": "False" + }, + "categories": "Hostels, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "FrtU3wDgLuDGGSO8fz88sw", + "name": "D & J Entertainment", + "address": "7516 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0389615, + "longitude": -75.035765, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Clowns, Magicians, Arts & Crafts, Shopping, Face Painting, Costumes", + "hours": null + }, + { + "business_id": "hkirr3WzSTx2d9cdP_NKSQ", + "name": "Mama's Vegetarian", + "address": "18 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952706, + "longitude": -75.173477, + "stars": 4.5, + "review_count": 592, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "RestaurantsTableService": "False" + }, + "categories": "Comfort Food, Middle Eastern, Vegetarian, Kosher, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-15:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "bScE17sBJkvHtUW_rnNNtA", + "name": "Rocket Burger", + "address": "7109 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0346506, + "longitude": -75.0440235, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "HasTV": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Hot Dogs, Cheesesteaks, Burgers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "-v1Ia8G_G00SuygAm6koUg", + "name": "Wawa", + "address": "912-16 Walnut St, Ste 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482296, + "longitude": -75.156935, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Convenience Stores, Food, Coffee & Tea, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "Lcco-Yzab4bqjQnhUKg05A", + "name": "Congregation Bnai Abraham", + "address": "527 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431675, + "longitude": -75.1512774, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Synagogues", + "hours": null + }, + { + "business_id": "BzLWDaIPM21GCpzYWv06KA", + "name": "Brooklyn Flea Market", + "address": "The Piazza at Schmidt's, 1050 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966403, + "longitude": -75.13923, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flea Markets, Shopping", + "hours": null + }, + { + "business_id": "LX9FOwFOyXZaKnDCwIYpkg", + "name": "Grassia's Italian Market Spice Company", + "address": "949 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376806, + "longitude": -75.157979, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Herbs & Spices, Food, Specialty Food", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "yj6Z7KRusjHAj3osvhrxsw", + "name": "Bloom Eye Assocs", + "address": "525 Jamestown St, Ste 207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0281747, + "longitude": -75.2087512, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Ophthalmologists, Health & Medical, Doctors", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-12:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "AyCgav6b_x0HmSj4T6311A", + "name": "Burlington", + "address": "833 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515892654, + "longitude": -75.154816702, + "stars": 3.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Department Stores, Shopping, Fashion", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "zG8xZ-X3QPt7KucfYVffCg", + "name": "Philly Pretzel Factory", + "address": "1401 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9255776, + "longitude": -75.1700902, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True" + }, + "categories": "Hot Dogs, Restaurants, Pretzels, Fast Food, Food, Bakeries", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "YgngCm6a1lOiyPp0HE437g", + "name": "Cityview Condominiums", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962593, + "longitude": -75.171882, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Real Estate, Condominiums, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "ypJdCkGXcLPHrmH7NBPM_g", + "name": "Blurr Nightlife", + "address": "29 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949293, + "longitude": -75.145029, + "stars": 2.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'" + }, + "categories": "Nightlife, Dance Clubs", + "hours": { + "Thursday": "21:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "20:30-2:0" + } + }, + { + "business_id": "8TCKKnWkMUdp_7SU2NI75g", + "name": "Arch Nail", + "address": "938 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532717, + "longitude": -75.1562016, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "C2XaAQrXj5UUWaHRw2CiRg", + "name": "Geechee Girl Rice Cafe", + "address": "6825 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0549698, + "longitude": -75.1868357, + "stars": 3.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "American (New), Restaurants, Southern", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-21:0", + "Saturday": "17:30-21:0", + "Sunday": "17:30-21:0" + } + }, + { + "business_id": "CLVICRuP-1DilA-NLwOGvw", + "name": "Pat's Pizza Express", + "address": "2311 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0484332935, + "longitude": -75.0584227592, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Pizza, Restaurants, Salad, Italian, Food, Pasta Shops, Cheesesteaks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "2i08phNpJ938airDq5Af6w", + "name": "Domus", + "address": "3411 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547583074, + "longitude": -75.1927307901, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Property Management, Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "dWoJKEoFPbCr5pL2Y0LkJA", + "name": "Nan Restaurant", + "address": "4000 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553597, + "longitude": -75.202452, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, French, Thai", + "hours": { + "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:30" + } + }, + { + "business_id": "1u7ag9oxHJCki3ThALuQFw", + "name": "Cancer Treatment Centers of America, Philadelphia - CTCA", + "address": "1331 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0188947, + "longitude": -75.0990337, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Oncologist, Medical Centers, Hospitals", + "hours": { + "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" + } + }, + { + "business_id": "AdSZfKMp4wMRf-GO1cPOEg", + "name": "Philadelphia Vision Center", + "address": "1100 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517266, + "longitude": -75.1583172, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyewear & Opticians, Health & Medical, Optometrists, Shopping", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "UZK6s1jQKJerSdrU75UBJQ", + "name": "Lancaster Nail Salon", + "address": "4058 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.964173, + "longitude": -75.2044519, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyelash Service, Beauty & Spas, Permanent Makeup, Nail Salons", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "_ihHbuK9r3PLwMUhURKPYg", + "name": "The Eyeglass Works", + "address": "4407 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261261, + "longitude": -75.2248998, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Eyewear & Opticians", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "7lYSam2Ci_1WzzoUicug3w", + "name": "Checkers", + "address": "2008 Oregon Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9178315, + "longitude": -75.1814532, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'quiet'", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (Traditional), Fast Food, Burgers", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-4:0", + "Friday": "10:0-5:0", + "Saturday": "10:0-5:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "qP954Yf1Qa5Ckkw4RU6w7A", + "name": "DOHO Taqueria", + "address": "18 W Hortter", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0497663, + "longitude": -75.1848614, + "stars": 4.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Vegan, Mexican, Restaurants, Tacos, Asian Fusion", + "hours": { + "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" + } + }, + { + "business_id": "bJdKrQIF5SihmWWZD0AIkg", + "name": "Wacky Zaki's", + "address": "10002 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1055278, + "longitude": -75.0324753, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "BikeParking": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True" + }, + "categories": "Chicken Wings, Pizza, American (Traditional), Burgers, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "B-SiesU4hxIiL7rl7vzayA", + "name": "Jim's Steaks", + "address": "431 N 62nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9692157, + "longitude": -75.2430863, + "stars": 4.0, + "review_count": 319, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Cheesesteaks, Steakhouses, Salad, Burgers, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "cXpVHOurlyKuVPIIbvh_LQ", + "name": "Escape Rooms at The Franklin Institute", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9581389, + "longitude": -75.1726258, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Escape Games, Challenge Courses", + "hours": { + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-17:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "y6FxggLj1xnJ0ArqV3UoVw", + "name": "Andy's Chicken", + "address": "2001 Memphis St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774804, + "longitude": -75.128401, + "stars": 4.5, + "review_count": 233, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'no'", + "BikeParking": "False", + "HasTV": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants, Korean, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "coiorbCRjfNkj-0hZ2AXwA", + "name": "Strawberry Green Driving Range", + "address": "1500 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9812514475, + "longitude": -75.1905192063, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Local Flavor, Active Life, Golf", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "h1RQEy-kVBy2T9rMlp5VIw", + "name": "Samwich", + "address": "600 Catherine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386746, + "longitude": -75.1531814, + "stars": 4.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "E54C2rEwaQ8btmRqoC8iCw", + "name": "Jc's Service Repair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9116195992, + "longitude": -75.151478412, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Electronics Repair, Local Services, Appliances & Repair, Home Services, Plumbing", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "q3NsTN4umVlCpOmYpIKkyA", + "name": "Baskin-Robbins City Line", + "address": "7606 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9786355, + "longitude": -75.2713077, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "D_JgJY5V54i0EYOdTHmWlg", + "name": "Toast", + "address": "1201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467659, + "longitude": -75.1611269, + "stars": 3.0, + "review_count": 253, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Coffee & Tea, Breakfast & Brunch, Cafes, American (New)", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-19:45", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "CZuC-Yp3O96vUyk-mvAd4A", + "name": "Chat On Chew", + "address": "435 W Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380838, + "longitude": -75.1296708, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BYOB": "True" + }, + "categories": "Restaurants, Soul Food", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-4:0", + "Wednesday": "12:0-4:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-4:0", + "Saturday": "12:0-4:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "UbaXiTFyljLu0Bi4jP2AkQ", + "name": "SEPTA Oregon Station", + "address": "2700 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9164839, + "longitude": -75.1711595, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Trains, Hotels & Travel, Transportation", + "hours": null + }, + { + "business_id": "uumuIX8VTKcgqN0EJI4geA", + "name": "Twelve Baskets", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Cupcakes, Bakeries, Desserts, Food", + "hours": { + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "U0bLVXiFbYsWEURSSx3feg", + "name": "Rittenhouse Needlepoint", + "address": "1216 Arch St, Ste 2A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538948607, + "longitude": -75.160390338, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Arts & Crafts, Shopping, Embroidery & Crochet, Art Restoration", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Wednesday": "10:30-16:30", + "Thursday": "10:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "lEC_8UDzg206jEawykDguw", + "name": "Wawa", + "address": "6th St & Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492309, + "longitude": -75.1507462, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Sandwiches, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "rEHsV4FrD4ndG_Ui0JxvsQ", + "name": "Whisper", + "address": "1712 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497186, + "longitude": -75.1698503, + "stars": 3.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "GoodForKids": "None", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "True", + "BikeParking": "False", + "OutdoorSeating": "False" + }, + "categories": "Dance Clubs, Bars, Nightlife, Arts & Entertainment, Music Venues", + "hours": { + "Thursday": "22:0-3:0", + "Friday": "22:0-3:0", + "Saturday": "22:0-3:0" + } + }, + { + "business_id": "6DDoz1tuCRpPWGxXLgpp7w", + "name": "Rudolphs Auto Service", + "address": "1213 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229735, + "longitude": -75.1668733, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Car Inspectors, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "CatoRG04GDTn0emzbbZoaQ", + "name": "Bleu Denim", + "address": "4329 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025474, + "longitude": -75.222873, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Shopping", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-19:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Y7GQz75azaE8yEyvzdcGkg", + "name": "Penn Family Care", + "address": "3737 Market St, 9th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957007, + "longitude": -75.197148, + "stars": 2.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Internal Medicine, Doctors", + "hours": { + "Monday": "7:45-20:15", + "Tuesday": "7:45-17:0", + "Wednesday": "7:45-20:15", + "Thursday": "7:45-17:0", + "Friday": "7:45-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "yHDaRDsyYXcT8_n0dcc49w", + "name": "Whitman Family Eye Care", + "address": "590 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9149192, + "longitude": -75.1579697, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-17:30", + "Friday": "10:0-16:0", + "Saturday": "10:0-13:30" + } + }, + { + "business_id": "tdXi48prLc1yx9ttCQD_xw", + "name": "Hair Hair", + "address": "7618 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9824919034, + "longitude": -75.2635865186, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Wigs, Discount Store", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "ZCyRHFSAAgoC7d1u3MHg2g", + "name": "Constellar", + "address": "4323 Spruce St, A1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952998, + "longitude": -75.210043, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Property Management, Commercial Real Estate, Apartments, University Housing, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "HHpkOkPN0sk7ScP7Y7XBXg", + "name": "Meze Cafe", + "address": "4311 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250895, + "longitude": -75.2221742, + "stars": 3.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Food, Middle Eastern, Ethnic Food, Restaurants, Turkish, Specialty Food", + "hours": { + "Tuesday": "12:30-22:0", + "Wednesday": "12:30-22:0", + "Thursday": "12:30-23:0", + "Friday": "12:30-3:0", + "Saturday": "12:30-3:0", + "Sunday": "12:30-22:0" + } + }, + { + "business_id": "hlelvgQWzowBck_AqkSpUg", + "name": "USA Tax Service", + "address": "6234 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.036411, + "longitude": -75.2187915, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Bookkeepers, Tax Services, Payroll Services, Professional Services, Financial Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-15:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "D8BMs1nTggV4e2w2TdKLvQ", + "name": "Koco Nail Salon and Wax Studio", + "address": "4161 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0083555, + "longitude": -75.1927916, + "stars": 4.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Nail Salons, Eyelash Service, Beauty & Spas, Day Spas, Hair Removal, Skin Care, Event Planning & Services", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "LEwyF97d5SS_V4kLwSMu3A", + "name": "Union Taco", + "address": "712 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.970211, + "longitude": -75.148728, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Restaurants, Mexican", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "K_s-9Wd6vXSfnxYFzhE0Kw", + "name": "Kei Sushi Restaurant", + "address": "1711 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944413, + "longitude": -75.1707392, + "stars": 4.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "-8iiwnBs4yu4s1yLkWzU9Q", + "name": "Doggie Style", + "address": "114 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949781, + "longitude": -75.1621801, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "PzVtBh0oGZWFEJa1So7K8g", + "name": "General Restaurant Equipment Supply", + "address": "1018 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9544101, + "longitude": -75.1569217, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Kitchen & Bath, Home & Garden, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "WGWfTNNmKZ44mFlKS3pkDQ", + "name": "Volpe Cycles", + "address": "115 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519333, + "longitude": -75.1770042, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sporting Goods, Bikes, Local Services, Beauty & Spas, Bike Repair/Maintenance, Shopping", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "mglB7j8w91-7JmcbgmKlCQ", + "name": "Union Cycle Supply Co.", + "address": "1864 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978458, + "longitude": -75.130905, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": null, + "categories": "Local Flavor, Motorcycle Repair, Automotive", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "o7YE1WaFeQg_piECb9cgjQ", + "name": "Ratchada Thai & Laos Cuisine", + "address": "1117 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936534, + "longitude": -75.16139, + "stars": 4.0, + "review_count": 285, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Thai, Laotian, Asian Fusion", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "wTVczLDput_PVOXrPiqdvA", + "name": "Lou & Choo's Lounge", + "address": "2101 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0118111, + "longitude": -75.1633621, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "BusinessParking": "None", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "False", + "Smoking": "u'outdoor'", + "OutdoorSeating": "True" + }, + "categories": "Dive Bars, Bars, Seafood, Nightlife, Restaurants, Mexican, Lounges", + "hours": { + "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-0:0" + } + }, + { + "business_id": "gOfCxAiQmQYywXYJ3KeP-w", + "name": "Beijing Garden", + "address": "5911 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0306329, + "longitude": -75.2112921, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "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" + } + }, + { + "business_id": "Mk2184ZyG1PcS1rMFxvrUA", + "name": "Tap Room On 19th", + "address": "2400 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.921596, + "longitude": -75.178679, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Pubs, Comfort Food, Restaurants, Gastropubs, Nightlife, Bars, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "Gj5G0asdNZILROHEUEF-iQ", + "name": "DaFranco Pizzeria", + "address": "742 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1050859, + "longitude": -75.0337505, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Pizza, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "dwh4dy4zyrf-NTqaCYjH6A", + "name": "Byrne's Tavern", + "address": "3301 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9841717, + "longitude": -75.0987438, + "stars": 4.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HappyHour": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "American (Traditional), Irish, Chicken Wings, Restaurants", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "pbHUglsehzeP4hPZX3IoaA", + "name": "A.Cafe AKA Cafe", + "address": "135 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503651, + "longitude": -75.1704529, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "s5LHJu6ALBj0ujBZODHK5A", + "name": "Caffe Bene", + "address": "3737 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955369, + "longitude": -75.1980204, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "HbbPQJ3Ccy8d2kSEPv-StA", + "name": "Chlitina", + "address": "228 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560438, + "longitude": -75.1546521, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Skin Care, Beauty & Spas, Shopping, Massage, Women's Clothing, Accessories, Day Spas, Fashion", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "RrM_40kC8x3x17uHJngyrg", + "name": "Rita's Italian Ice", + "address": "7718 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9775026113, + "longitude": -75.273721366, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}" + }, + "categories": "Ice Cream & Frozen Yogurt, Shaved Ice, Food, Desserts", + "hours": { + "Monday": "0:0-22:0", + "Tuesday": "0:0-22:0", + "Wednesday": "0:0-22:0", + "Thursday": "0:0-22:0", + "Friday": "0:0-22:0", + "Saturday": "0:0-22:0", + "Sunday": "0:0-22:0" + } + }, + { + "business_id": "Dc3wwi81xXrKqvFHl2zoRw", + "name": "Family Appliance Service", + "address": "3016 Richmond St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9809873316, + "longitude": -75.1055211471, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Appliances & Repair, Local Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "3HLIMLpqby-AtroW-QzhvA", + "name": "Pennsylvania Foot and Ankle Associates", + "address": "1304 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0675353, + "longitude": -75.0672746, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Health & Medical, Podiatrists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "XGxsV7f16mW051jsEafAQQ", + "name": "Fountain Restaurant", + "address": "Four Seasons Hotel Philadelphia, 1 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9567043, + "longitude": -75.1697047, + "stars": 4.0, + "review_count": 99, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "4", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'dressy'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New), Sandwiches", + "hours": { + "Monday": "6:30-14:0", + "Tuesday": "6:30-14:0", + "Wednesday": "6:30-14:0", + "Thursday": "6:30-14:0", + "Friday": "6:30-14:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "MJQAt7zTodEHNcpzcOD2Ag", + "name": "Artisan Wood Floors LLC", + "address": "928 E Moyamensing Ave, Ste 1-2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352159, + "longitude": -75.1475122, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Flooring, Contractors, Professional Services, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "PRbf-L4kY5vOGLxwBwzdSg", + "name": "Snow Ice & Hot Dessert", + "address": "1001 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953687067, + "longitude": -75.1564028487, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": null, + "categories": "Food, Shaved Ice, Desserts, Ice Cream & Frozen Yogurt", + "hours": { + "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" + } + }, + { + "business_id": "D1Z06FgUfwdV9dhMW1o8dw", + "name": "Kung Fu Tea", + "address": "600 Washington Ave, Unit 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344835, + "longitude": -75.1549941, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Bubble Tea, Coffee & Tea", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "c6NQy_kMo031AE2k5IPT4Q", + "name": "Striped Bass", + "address": "1500 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9494166, + "longitude": -75.1661366, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsTakeOut": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'dressy'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "Corkage": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "o7maiIUu3OmqMvmUB8YW-Q", + "name": "Au Bon Pain", + "address": "Terminal F, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8803399012, + "longitude": -75.237121582, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Cafes, Restaurants, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "xWIpnqIyNdsgn2dWoz0_1g", + "name": "Fresh Grocer", + "address": "310 W Chelten Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0300171, + "longitude": -75.180668, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "v72qGvd53IxhM2m8aatOpg", + "name": "Kanella Grill", + "address": "1001 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463188, + "longitude": -75.1579609, + "stars": 4.0, + "review_count": 242, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOB": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "OutdoorSeating": "False" + }, + "categories": "Falafel, American (Traditional), Greek, Mediterranean, Breakfast & Brunch, Restaurants, Middle Eastern", + "hours": { + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:0", + "Saturday": "16:0-20:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "cXfQ9MqoG41RGd8oIaFxag", + "name": "Palm Tree Gourmet", + "address": "322 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.959019, + "longitude": -75.162394, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}" + }, + "categories": "Convenience Stores, Grocery, Specialty Food, Restaurants, Food, Breakfast & Brunch, Coffee & Tea", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "iSOwZtXQaUBf5tX-MTVT4w", + "name": "Q BBQ & Tequila", + "address": "207 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484906, + "longitude": -75.1444675, + "stars": 3.0, + "review_count": 137, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "HappyHour": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Nightlife, Barbeque, Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "vIT19IkXjNd39r55YTeq2w", + "name": "Passero's Coffee Roasters", + "address": "100 E Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951381, + "longitude": -75.162135, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True" + }, + "categories": "Food, Coffee Roasteries, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-17:0", + "Wednesday": "6:0-17:0", + "Thursday": "6:0-17:0", + "Friday": "6:0-17:0" + } + }, + { + "business_id": "hbWjJ0Sutq-zKVUQo7-kdQ", + "name": "Philadelphia Professional Driving School", + "address": "1216 S 12th St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344863734, + "longitude": -75.1639287, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Driving Schools, Education, Specialty Schools", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "rq73JstJMaLKwx7HLBra_Q", + "name": "Aria Jefferson Health", + "address": "800 North Delaware Ave, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625349, + "longitude": -75.136795, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Urgent Care, Cardiologists, Osteopathic Physicians, Health & Medical, Doctors, Orthopedists, Medical Centers", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "qYVfM4fkcJIW1GhW3pXDTw", + "name": "Produce Cart", + "address": "40TH And Locust", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952977, + "longitude": -75.2028214, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Farmers Market", + "hours": null + }, + { + "business_id": "bYY8A2Sp0iddTrGj_IH41Q", + "name": "Godiva Chocolatier", + "address": "1625 Chestnut St, Ste 150", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Candy Stores, Specialty Food", + "hours": null + }, + { + "business_id": "QiyqXmWar10YCIXJLqD8cA", + "name": "Larry Heating and Cooling", + "address": "4764 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9572096, + "longitude": -75.2172118, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Electricians, Contractors", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0" + } + }, + { + "business_id": "SbYv-eEgFmSbRxDv--CnoQ", + "name": "Opera Barber Shop", + "address": "138 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507708, + "longitude": -75.1739238, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "Uosbm5HT-5_huvehe3hHaw", + "name": "Joseph Naseef", + "address": "1230 S 35th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391133, + "longitude": -75.2001121, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Junk Removal & Hauling", + "hours": null + }, + { + "business_id": "9sEzWuaOicYlbp9a6A829A", + "name": "Jin Wei", + "address": "925 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554576, + "longitude": -75.1551993, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsAttire": "u'formal'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': None, 'casual': True}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "23H5J1Y5rRMLU8dMxN7EPA", + "name": "Sanctuary on 2nd", + "address": "752 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389221, + "longitude": -75.146352, + "stars": 5.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Massage, Beauty & Spas, Massage Therapy, Day Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "unZwLRvJV_fMbbFvrOWU6w", + "name": "Liberty Deli", + "address": "326 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965221, + "longitude": -75.143259, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Delis, Restaurants, Event Planning & Services, Caterers", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-20:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "OWPHQD0tkvnuTy8_8JaMnA", + "name": "Teppanyaki Grill & Supreme Buffet", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9138276632, + "longitude": -75.1570135053, + "stars": 3.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "False" + }, + "categories": "Buffets, Food, Seafood, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "G9QFbucw_PC-eFjAfN-49g", + "name": "Crabdaddys", + "address": "6910 Cobbs Crk Pwky", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9243171, + "longitude": -75.2453659, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Specialty Food, Seafood Markets, Food", + "hours": null + }, + { + "business_id": "-ols5tgh9GslgqmFvTOsDw", + "name": "Tire Techs USA", + "address": "5000 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.030682, + "longitude": -75.156819, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Automotive, Oil Change Stations, Tires", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "0798Us9C0Aw0OCuf9lUFJQ", + "name": "LeChel Beauty", + "address": "525 S 4th St, Ste 586, The Foremost Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419044, + "longitude": -75.1488744, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Eyebrow Services, Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-19:30", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "N6t1bTuWAfgYKVmdQf53lA", + "name": "Old Nelson Food Company", + "address": "1833 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545578, + "longitude": -75.1710331, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Restaurants, Food, Convenience Stores, Delis", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "7w0Yok3_HkY4FObH7bSurg", + "name": "Marino Bros. Cheesesteaks", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True" + }, + "categories": "Cheesesteaks, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "I6Y02PJiMMlXMluwXuU5pQ", + "name": "Terra", + "address": "243 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472422, + "longitude": -75.1615547, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "dZOiUVLqinNT8e_XUaq_qA", + "name": "Penns Landing", + "address": "114 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9552973222, + "longitude": -75.1409192117, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "NEeIzvgXV6sA3xKPTI4Ufg", + "name": "Comcast", + "address": "One Comcast Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703, + "longitude": -75.1684962, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Internet Service Providers, Professional Services, Home Services, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "gmgU0o7DjmE81Hk0LJcueg", + "name": "Civil Barbers", + "address": "2501 Olive St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9680915, + "longitude": -75.1786376, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Hair Salons, Barbers, Men's Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "tl5dthD9F3vGCww-N9kSVA", + "name": "Harvest Seasonal Grill & Wine Bar - Philadelphia", + "address": "200 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539370699, + "longitude": -75.2028741528, + "stars": 3.0, + "review_count": 257, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Wine Bars, Bars, American (New), Restaurants, Vegetarian, Nightlife, Breakfast & Brunch", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "x19LbnFdSo3LXYqfOrTtBg", + "name": "Blue Belly BBQ", + "address": "600 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386795, + "longitude": -75.1532197, + "stars": 3.5, + "review_count": 58, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "i6DlLLxZ2iwQRxhUDx3TTg", + "name": "The Adobe Cafe", + "address": "4550 Mitchell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0342316, + "longitude": -75.2191448, + "stars": 3.5, + "review_count": 317, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Mexican, Vegan, Restaurants", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "M54YgTqNenGObSv1opsGEg", + "name": "Bree's Animal Hospital", + "address": "7436 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0385994, + "longitude": -75.0365865, + "stars": 3.5, + "review_count": 44, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Veterinarians, Pets", + "hours": { + "Monday": "17:0-19:0", + "Tuesday": "17:0-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "17:0-19:0", + "Friday": "9:30-17:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "by3YMt91fzjTJv5zd8RBeA", + "name": "Precision Window Tinting", + "address": "2400 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924199549, + "longitude": -75.0966716589, + "stars": 5.0, + "review_count": 84, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Glass Services, Auto Customization, Car Window Tinting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-13:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "BRDRW5HCAqB5KvpUk_Z2eg", + "name": "Cigna", + "address": "1601 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19192", + "latitude": 39.9516682, + "longitude": -75.167215, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Insurance, Financial Services", + "hours": null + }, + { + "business_id": "8ZU1N9vxDsJvyBY0fCi4bw", + "name": "Konak", + "address": "228 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955585, + "longitude": -75.143719, + "stars": 4.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "Corkage": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_corkage'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Turkish", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-1:0" + } + }, + { + "business_id": "HYbQulTlnV8lButMp1kuBw", + "name": "New York & Company", + "address": "9TH St And Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513246, + "longitude": -75.1551742, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Women's Clothing, Fashion, Shopping", + "hours": null + }, + { + "business_id": "Cu7gosOTjGDs6p_OPhtWSw", + "name": "E-Z Park", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524435, + "longitude": -75.1757574, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "s59Ye_3f6LLRX46GqDy3IQ", + "name": "PFS Roxy Theater", + "address": "2023 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515267, + "longitude": -75.1745636, + "stars": 3.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Cinema", + "hours": { + "Monday": "14:0-23:30", + "Tuesday": "14:0-23:30", + "Wednesday": "14:0-23:30", + "Thursday": "14:0-23:30", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-23:30" + } + }, + { + "business_id": "FdAQ7g7swv2lVuf845A26w", + "name": "Paul's Driving School", + "address": "8111 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0423512, + "longitude": -75.0249029, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Driving Schools, Specialty Schools, Professional Services, Education, Editorial Services, Educational Services", + "hours": { + "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" + } + }, + { + "business_id": "FKECa722YgWl7y2qUUx-xw", + "name": "Fit Academy", + "address": "1363 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9775302, + "longitude": -75.1855542, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Gyms, Active Life, Boot Camps, Fitness & Instruction, Trainers", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "rowZsHs7UFgiL4Okqnk_Jg", + "name": "ShopRite of Morrell Plaza", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0649469, + "longitude": -74.9837669, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Bakeries, Delis, Restaurants, Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "tYnfA3Ee_YSAUvNQmsHELw", + "name": "Forever Young Medical Spa", + "address": "1522 Locust St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9483512, + "longitude": -75.1672381, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Eyelash Service, Beauty & Spas, Body Contouring, Medical Spas, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "h7n599RGtvFLmLycugT2MQ", + "name": "Warmdaddy's", + "address": "1400 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9293522, + "longitude": -75.1454738, + "stars": 3.5, + "review_count": 498, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "True" + }, + "categories": "Soul Food, Breakfast & Brunch, Southern, Restaurants, Salad", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "tRB23T77qIIOLVgz071M3w", + "name": "Benjamin Franklin Beer Distributor", + "address": "26 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490871442, + "longitude": -75.1438378887, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "vAHGWua5eUbI0R06i-_GmA", + "name": "CaroTech Automotive", + "address": "2109 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9227413, + "longitude": -75.159668, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "-cEFKAznWmI0cledNOIQ7w", + "name": "Gran Caffe L'Aquila", + "address": "1716 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512789, + "longitude": -75.1695181, + "stars": 4.5, + "review_count": 1138, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "Caters": "True", + "WiFi": "'free'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Gelato, Coffee & Tea, Food, Italian, Bakeries", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "aDQ-n4B5FAUwEiADAkHoJA", + "name": "Popeyes Louisiana Kitchen", + "address": "3110 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0810229, + "longitude": -75.170115, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "None" + }, + "categories": "Chicken Wings, Restaurants, American (Traditional), Fast Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "R62ILQKzC5DMAKHZr0iszA", + "name": "The Little Sicilian Food Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547909, + "longitude": -75.1887721, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Food Trucks, Restaurants, Caterers, Event Planning & Services, Pizza, Sicilian, Italian", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-22:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "xFbdXq4NZ6I_ulCcNEy8Qw", + "name": "Panda Garden Chinese Restaurant", + "address": "130 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949193, + "longitude": -75.159102, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "NoiseLevel": "'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "r84vJL6dZPBrOPTcCeeR4g", + "name": "iGeeks Repair", + "address": "2745 N 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.001484, + "longitude": -75.223093, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Electronics Repair, Local Services, Electronics, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "r6L5i18RTx6u6a3xeKLQ9g", + "name": "Grace Tree Company", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.057497848, + "longitude": -75.1376483291, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Tree Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "evSPTk8ghmt7lj9jGQR-Ow", + "name": "Shampoo Bar Salon & Studio", + "address": "2651 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9794594, + "longitude": -75.1117449, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Hair Removal, Waxing, Hair Salons, Active Life, Beauty & Spas, Yoga, Fitness & Instruction, Makeup Artists", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "6F-6mFFNw2YXN7lD_Gukcg", + "name": "Lolita", + "address": "106 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950081, + "longitude": -75.162148, + "stars": 4.0, + "review_count": 423, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "Caters": "False" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "lDiBEdaF6XIeYp3RTGNv0A", + "name": "Central City Eyecare", + "address": "105 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535415158, + "longitude": -75.1547436352, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Optometrists, Health & Medical, Eyewear & Opticians", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Nw82Vw1rKv6TfeeIA9LusQ", + "name": "BLO/OUT Blow Dry Bar", + "address": "29 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498089299, + "longitude": -75.1521725216, + "stars": 4.5, + "review_count": 114, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Blow Dry/Out Services, Hair Salons, Hair Extensions, Beauty & Spas, Hair Stylists", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "IFFuw9ZIzpcWSqu2OHmjZA", + "name": "Tampopo", + "address": "269 S 44th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530336, + "longitude": -75.2102968, + "stars": 3.5, + "review_count": 185, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sushi Bars, Restaurants, Japanese, Korean", + "hours": { + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-21:30", + "Saturday": "16:30-21:30", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "UTsdMl-ZkoUqz5tjH3SM5w", + "name": "Dhl", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8764679883, + "longitude": -75.2473609318, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Couriers & Delivery Services, Local Services, Shipping Centers", + "hours": null + }, + { + "business_id": "MBgcdANmx6p02-cktR0aDg", + "name": "Plants Etc", + "address": "2313 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675215, + "longitude": -75.1758448, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Flowers & Gifts, Florists, Home & Garden, Nurseries & Gardening, Professional Services, Indoor Landscaping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "CKyeKODeDG9WNxzrkn7uMA", + "name": "Swarovski", + "address": "1421 Walnut Street, Space 1421", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949669, + "longitude": -75.165138, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Jewelry, Fashion, Watches, Accessories, Personal Shopping, Shopping", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "NwH5ETXhpibGWsntrXQZhg", + "name": "Mr Pizza", + "address": "5539 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0358663, + "longitude": -75.1304006, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "NoiseLevel": "'very_loud'", + "WiFi": "'no'", + "BikeParking": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "XF4C6O4HWhUipPiRfjtqww", + "name": "Xhale Cigar Lounge", + "address": "453 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9709183, + "longitude": -75.1290445, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Nightlife, Party Supplies, Event Planning & Services, Bars, Tobacco Shops, Hookah Bars, Shopping", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "-PMXnNJ1D67NkAupRHNkpQ", + "name": "Domino's Pizza", + "address": "6391 Oxford Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.044236, + "longitude": -75.087194, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Pizza, Italian, Chicken Wings, Sandwiches", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "4RquQY6VxOOw8s4r9-4DZA", + "name": "Sulimay's Barber Shop", + "address": "303 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9700059, + "longitude": -75.1317233, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "duAwbsF-DSd8BZomQQJ5VQ", + "name": "Prince Of Pizza & Falafel", + "address": "9987 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1015816, + "longitude": -75.0284266, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Mediterranean, Restaurants, Pizza, Falafel, Cheesesteaks, Chicken Wings", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "WgmaxBbCRAlq06_bPLUcSA", + "name": "Vape & Artisan Glass Gallery", + "address": "4335 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025477, + "longitude": -75.223097, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Head Shops, Tobacco Shops, Vape Shops, Shopping", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-1:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "cd-EkTwPP0G-bOoZtRTaVA", + "name": "Tony Lukes Casa De Pasta", + "address": "26 East Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9136284, + "longitude": -75.1488145, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "KVJlTdRTH0VVMA4j0FUxhw", + "name": "Andorra Pediatrics", + "address": "8945 Ridge Ave, Ste 3-4-5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0698199, + "longitude": -75.2403741, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Doctors, Pediatricians", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "PbAp9uPa89Hgbgg9BoGNXg", + "name": "Liberty Bellows Accordion Shop", + "address": "614 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407326, + "longitude": -75.1459302, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "True", + "DogsAllowed": "True" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "eUeVuus97AKQLd9-vhfGQA", + "name": "CVS Pharmacy", + "address": "1301 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.069, + "longitude": -75.0667, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Drugstores, Shopping, Pharmacy, Health & Medical, Photography Stores & Services, Convenience Stores, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "10:0-20:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "0FKcaGqieDQAC4g17Qf1HQ", + "name": "Nutritiously Yours", + "address": "1010 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965888, + "longitude": -75.139462, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dietitians, Health & Medical, Nutritionists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0" + } + }, + { + "business_id": "e3Y3hDpwHc9RmQlJtIgHuw", + "name": "Lacroix Restaurant at The Rittenhouse", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499125, + "longitude": -75.1736448, + "stars": 4.5, + "review_count": 434, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "WiFi": "u'free'", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "u'dressy'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "BikeParking": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Breakfast & Brunch, Brazilian, American (New), French, Asian Fusion", + "hours": { + "Monday": "17:30-22:30", + "Tuesday": "17:30-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "Ww8DBKYd-NSRMfDRuddrjA", + "name": "Sushi Kingdom", + "address": "427 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0860312, + "longitude": -74.9649713, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "WiFi": "'no'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Japanese, Restaurants", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "a00dh6rJkNacLw2yZ35ZsQ", + "name": "CVS Pharmacy", + "address": "6900 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9108889, + "longitude": -75.2294466, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "DriveThru": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Food, Health & Medical, Drugstores, Pharmacy, Convenience Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "10CVsckZKfUFO1LnXfMZ6A", + "name": "Zerit's Taxi-Cab Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Airport Shuttles, Transportation, Limos, Airports, Taxis, Hotels & Travel", + "hours": null + }, + { + "business_id": "Eqj-RXQHbelEGH7XL3gLnA", + "name": "Presidential City Apartments", + "address": "3902 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0082279, + "longitude": -75.2054801, + "stars": 3.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "9AE75wIWF9XiV23NBpHyVA", + "name": "Corfu Pizza", + "address": "6730 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.056005, + "longitude": -75.1406056, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Pizza, Burgers, Wraps", + "hours": { + "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" + } + }, + { + "business_id": "wB1Tin0OW1JRpaKM-E3ZYA", + "name": "National Mechanics", + "address": "22 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495443, + "longitude": -75.1459872, + "stars": 4.0, + "review_count": 875, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "Corkage": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "CoatCheck": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "Smoking": "u'outdoor'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Pubs, Food, Breakfast & Brunch, Dance Clubs, Bars, American (New), American (Traditional), Beer, Wine & Spirits, Restaurants, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-1:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "t7vVRlyF9_lxuL1auqVchg", + "name": " Joe's Throwback Barber Shop", + "address": "6802 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0423946, + "longitude": -75.226518, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "6:0-16:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "a5KZ1p08huX4cPWI5H7Geg", + "name": "Van Leeuwen Ice Cream", + "address": "119 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949887, + "longitude": -75.1617079, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "kPXsRJKRRE5wmMBMBqkFbQ", + "name": "Evergreen Deli", + "address": "46 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493121, + "longitude": -75.1476035, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Food, Restaurants, Grocery, Delis, Convenience Stores", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "H2c5e7PfcCg9f9Ew19-xRw", + "name": "Sushi Poke", + "address": "1310 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943271, + "longitude": -75.163744, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Corkage": "False", + "Caters": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "BYOB": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "12:30-21:30" + } + }, + { + "business_id": "Zq3rnDND8yzpoqdcabFThQ", + "name": "Back 2 New", + "address": "3820 Baring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9603026353, + "longitude": -75.1979011693, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "6cfNCzL2A0XsmXnjeg0u7w", + "name": "Cosi", + "address": "325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 2.0, + "review_count": 77, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True" + }, + "categories": "Coffee & Tea, Pizza, Restaurants, Food, Sandwiches", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "0aTNHayaZKiD_4QNo4M9lA", + "name": "CoreFitness", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647415434, + "longitude": -75.1809537905, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Trainers, Fitness & Instruction", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "4iXL8_-le76T3o2b05rGjw", + "name": "Rich's Barber Shop", + "address": "2616 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9876, + "longitude": -75.0988579, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "d28lZlSps97FHhXZazJ8zA", + "name": "Misconduct Tavern", + "address": "1511 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486272, + "longitude": -75.1666356, + "stars": 3.5, + "review_count": 396, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WiFi": "u'free'", + "DriveThru": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "GoodForDancing": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, American (Traditional), Bars, Burgers, Nightlife", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "BKsiYYKeLAXaJVYrdTwtNw", + "name": "Silva's Tailoring & Alterations", + "address": "2375 Woodward St, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.072332, + "longitude": -75.038801, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "qCpdeQYPf9i1EZhTnQgjtg", + "name": "The Foodery at Rittenhouse", + "address": "1710 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505843, + "longitude": -75.1693697, + "stars": 4.0, + "review_count": 265, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, Food, Restaurants, Delis, Beer, Wine & Spirits, Gastropubs, Beer Bar, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "_3SJZnJN4wT8yr4DVNNqDA", + "name": "David Gardner, DMD - Rittenhouse Dentistry", + "address": "1728 Spruce St, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9474581, + "longitude": -75.1708299, + "stars": 5.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Cosmetic Dentists, Endodontists, General Dentistry, Periodontists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "xdc0TbKkHMZN3N82oeq2XA", + "name": "Via Locusta", + "address": "1723 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9489844, + "longitude": -75.1701508, + "stars": 4.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "Smoking": "u'no'", + "Caters": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': True, 'upscale': True, 'classy': True, 'casual': None}", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': True, u'sunday': True}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': True}", + "OutdoorSeating": "True" + }, + "categories": "Bars, Tapas/Small Plates, Cocktail Bars, Nightlife, Italian, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-23:0", + "Friday": "11:30-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "sxDxM54lLvUNaya7o75b0w", + "name": "Bruegger's Bagels", + "address": "8000 Essington Ave, Terminal A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876058894, + "longitude": -75.2429844842, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Breakfast & Brunch, Food, Bagels, Delis, Sandwiches", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "5:30-22:0", + "Saturday": "5:30-22:0", + "Sunday": "5:30-22:0" + } + }, + { + "business_id": "BuEEKAmr1JDfhwG8Q0ODoA", + "name": "Marino's Deli", + "address": "5910 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.017289, + "longitude": -75.060404, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Delis, Restaurants", + "hours": null + }, + { + "business_id": "VF-xxQsEeWYwdqiGVC7L0Q", + "name": "Penn Cafe & Pizzeria", + "address": "4909 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483437001, + "longitude": -75.2221290417, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False" + }, + "categories": "Pizza, Food, Cafes, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "nImrfb4ncIH2cG23Lm2YMQ", + "name": "Furfari Soft Pretzel Bakery", + "address": "2025 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9790666, + "longitude": -75.1297393, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bakeries, Pretzels, Food", + "hours": { + "Monday": "4:30-12:0", + "Tuesday": "4:30-12:0", + "Wednesday": "4:30-12:0", + "Thursday": "4:30-12:0", + "Friday": "4:30-12:0", + "Saturday": "4:30-12:0" + } + }, + { + "business_id": "uPuHiKV7o-7izxLiFJIz2g", + "name": "Nutmeg Cake Design", + "address": "The Bakeshop on Twentieth, 269 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484101, + "longitude": -75.174133, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Active Life, Desserts, Bakeries", + "hours": { + "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" + } + }, + { + "business_id": "2ykIi7hnAbg5ohYQ1kIRaw", + "name": "Costa's Pizza & Grill", + "address": "11716 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.119547, + "longitude": -75.0181479, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTableService": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Seafood, Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "P1J6n3KatrpWlYu_PTQsHA", + "name": "Precious Pearls Dental Spa", + "address": "706 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420931, + "longitude": -75.1542617, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Cosmetic Dentists, General Dentistry, Endodontists, Health & Medical, Dentists", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "10:0-14:0", + "Wednesday": "13:0-19:0", + "Thursday": "10:0-14:0", + "Friday": "13:0-16:0" + } + }, + { + "business_id": "XqWebxpqQkIgetia5mskEQ", + "name": "Diamond Nails", + "address": "4531 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491817, + "longitude": -75.214341, + "stars": 4.5, + "review_count": 227, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "mNjxBK9j2hNAdkEV8b61jQ", + "name": "Barry's Buns", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074096, + "longitude": -75.2025511, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTableService": "False" + }, + "categories": "Breakfast & Brunch, Desserts, Restaurants, Waffles, Bakeries, Food, Event Planning & Services, Caterers", + "hours": { + "Monday": "8:0-14:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "E0E901zeU9Kir_MqeYx-5w", + "name": "Ban Bamboo", + "address": "6190 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0353901654, + "longitude": -75.2175498381, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsPriceRange2": "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}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Laotian, Thai", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "LZbPAYNpIUhcKHvNhoyT8A", + "name": "Ballroom Philadelphia", + "address": "1207 Gerritt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9321814, + "longitude": -75.1647396, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Entertainment, Specialty Schools, Fitness & Instruction, Performing Arts, Education, Dance Studios, Active Life, Dance Schools", + "hours": { + "Tuesday": "16:0-21:0", + "Wednesday": "17:30-21:30", + "Thursday": "16:0-21:0", + "Friday": "17:30-21:30", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "8od5TSdUqiFTWCoyHC99YQ", + "name": "Avenue Grill", + "address": "4010 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0068777, + "longitude": -75.2109721, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, American (Traditional)", + "hours": { + "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-20:0" + } + }, + { + "business_id": "wDNMIOy1Y4HxqeD8cBjfrQ", + "name": "Old Navy", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.030296, + "longitude": -75.10142, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Children's Clothing, Men's Clothing, Fashion, Women's Clothing", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "zeounyPVXFZEz1c9KtptLA", + "name": "Renzis Pizzeria", + "address": "6300 Battersby St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.02987, + "longitude": -75.0625976, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Steakhouses, Salad, Pizza, Italian, Chicken Wings, Sandwiches", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "xQrzu_DJHwVdokMDLq7KTA", + "name": "The Enerjuicer - Suburban Station", + "address": "1617 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542677, + "longitude": -75.1678993, + "stars": 3.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Restaurants, Acai Bowls, Vegetarian", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "8:30-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "pKccrz26dHNUcR5ShhoKJw", + "name": "9th Street Coffee & Tea", + "address": "814 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393718, + "longitude": -75.1579241, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Appliances, Coffee & Tea, Food, Coffee Roasteries, Home & Garden, Shopping", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "mcaCxMzXxF8hGer4aYIkbQ", + "name": "District N9ne", + "address": "460 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605594, + "longitude": -75.1532552, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "CoatCheck": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Music": "{'dj': True, 'background_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForKids": "False", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Arts & Entertainment, Music Venues, Nightlife", + "hours": null + }, + { + "business_id": "sR5w0hg9TRYFvaObwifO2g", + "name": "D'Angelo Bros", + "address": "909 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385953, + "longitude": -75.1577303, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Specialty Food, Meat Shops, Food, Butcher", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "_1Pid2TAS7REGzTMa2tMRg", + "name": "Manton Appliance Service", + "address": "101 Almott Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.106902, + "longitude": -75.055531, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shopping, Home & Garden, Appliances & Repair, Appliances", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "gihNKyt5d6lIZQem2r12Lw", + "name": "Giunta's Prime Shop", + "address": "1100 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953175, + "longitude": -75.158852, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Specialty Food, Meat Shops, Grocery, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "N4UpSKh-PQNfvk4w1QAYrA", + "name": "Caffeination", + "address": "2100 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522150967, + "longitude": -75.1755575165, + "stars": 3.0, + "review_count": 129, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True" + }, + "categories": "Breakfast & Brunch, Bagels, Cafes, Caterers, Coffee & Tea, Food, Event Planning & Services, Restaurants", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "8:0-18:0", + "Sunday": "8:30-17:30" + } + }, + { + "business_id": "W9dDiZnNgBwmsoue2r68Sg", + "name": "Edgar Allan Poe House", + "address": "532 N 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620288, + "longitude": -75.1498375, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Museums, Public Services & Government, Arts & Entertainment, Landmarks & Historical Buildings", + "hours": { + "Friday": "13:0-17:0", + "Saturday": "13:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "hnXA1m5_6ogFvuvPDEP0Aw", + "name": "Penn Museum", + "address": "3260 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.949477, + "longitude": -75.1917841, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Colleges & Universities, Education, Museums, Venues & Event Spaces, Arts & Entertainment, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "i7H6gGM5jXMMrhr8VRZXDg", + "name": "The Black Squirrel Pub and Haunt", + "address": "3749 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.009233, + "longitude": -75.1939231, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "HasTV": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "DogsAllowed": "False", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Nightlife, Bars, Pubs, Restaurants", + "hours": { + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "3EDcg1HPXiTbayaHxWqzrg", + "name": "Milano Pizza & Grill", + "address": "1140 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935293, + "longitude": -75.1589736, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-23:0" + } + }, + { + "business_id": "vBQNbW_aiKCteAp756VQgw", + "name": "Sphinx Cafรฉ", + "address": "234 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412409, + "longitude": -75.1470082, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Food, Mediterranean, Bars, Restaurants, Nightlife, Hookah Bars", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-4:0", + "Saturday": "17:0-4:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "SwGlO9zZR94CPXyMhITizg", + "name": "OCF Realty", + "address": "1936 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938761, + "longitude": -75.176284, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Property Management, Real Estate Services, Real Estate Agents, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-13:0", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "iyZGLIhZffqIycfvBwTyCA", + "name": "Best Western Center City", + "address": "501 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963091, + "longitude": -75.173804, + "stars": 2.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": null + }, + { + "business_id": "rY3bChlXDbRYKKHmGdLLeA", + "name": "Green Village", + "address": "127 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9554207, + "longitude": -75.1645477, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "hPHMUGxUSsMn7DisVIYRlA", + "name": "Yummy Body Nutrition", + "address": "325 Chestnut St, Ste 800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949183, + "longitude": -75.147221, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Nutritionists, Health & Medical, Dietitians, Weight Loss Centers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "mXCc-htrMH55gdaWF7wH2A", + "name": "Lucky Star Asian Cuisine", + "address": "8919 Ridge Ave Store", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.069648, + "longitude": -75.239764, + "stars": 4.0, + "review_count": 127, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Thai, Restaurants, Chinese, Asian Fusion", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "s7y1DzPheW7UrOlLHNHpyQ", + "name": "Fresh Works of Mayfair", + "address": "6801 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0320816, + "longitude": -75.0502564213, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "7_Hz9ORTZ7zFJRRShyKExA", + "name": "Guldner's Collision Service", + "address": "5105 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0381053, + "longitude": -75.2388589, + "stars": 5.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "rmbVGeRc6xel5blLNshuCw", + "name": "Kids at Play", + "address": "3502 Scotts Ln, Ste 711", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0080104551, + "longitude": -75.1845801476, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BikeParking": "True", + "AcceptsInsurance": "False" + }, + "categories": "Occupational Therapy, Recreation Centers, Fitness & Instruction, Physical Therapy, Speech Therapists, Kids Activities, Indoor Playcentre, Active Life, Playgrounds, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-16:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "gdo6ygbZlpZY1mj9P0sxLQ", + "name": "Marathon Grill", + "address": "1818 Market St, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529992561, + "longitude": -75.1714430727, + "stars": 3.0, + "review_count": 154, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "None", + "BikeParking": "True" + }, + "categories": "Food, American (New), American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "PThO5psE-zbRtVyGSRVgGA", + "name": "Crust Vegan Bakery", + "address": "4409 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261433443, + "longitude": -75.2249567583, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries, Cupcakes, Desserts", + "hours": { + "Wednesday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "g1JcUNqh_jCx_kXoHg583w", + "name": "Richmond Nails & Spa", + "address": "4424 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.997804, + "longitude": -75.072996, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Beauty & Spas, Eyelash Service, Nail Salons", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "DjdSIwAbttOUQWa8gpWzTQ", + "name": "Classic Pizza", + "address": "748 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0011832, + "longitude": -75.1147441, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "NoiseLevel": "'quiet'", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-0:0", + "Saturday": "13:0-0:0", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "gOnDl0sNbRLWqu4CwE8oTg", + "name": "Triple Play Sports", + "address": "827 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9390315, + "longitude": -75.157575, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Sports Wear, Local Services, Fashion, Graphic Design, Shopping, Sporting Goods, Professional Services, Sewing & Alterations", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "_Ak8OUmD5jJc8BpP2nfIPg", + "name": "The Igloo", + "address": "1205 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489715636, + "longitude": -75.1607965347, + "stars": 4.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Desserts, Gelato, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "fSpQlTHx27EDhUc_MmXG5Q", + "name": "Quaker City Dental", + "address": "1015 Chestnut St, Ste 1117", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950426, + "longitude": -75.15753, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, Periodontists, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "KwgYrGC62jTgXyV3_-Yktg", + "name": "Payless Parking", + "address": "6975 Norwitch Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9097841, + "longitude": -75.2257089, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Airports, Hotels & Travel, Automotive, Parking", + "hours": { + "Monday": "4:0-0:0", + "Tuesday": "4:0-0:0", + "Wednesday": "4:0-0:0", + "Thursday": "4:0-0:0", + "Friday": "4:0-0:0", + "Saturday": "4:0-0:0", + "Sunday": "4:0-0:0" + } + }, + { + "business_id": "MRO3b1t0TXlj8zu6o841KQ", + "name": "Galdo's Catering & Entertainment", + "address": "1933 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.914025, + "longitude": -75.1812594, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "IbJqpgbMZGPcFDR0DNiaeQ", + "name": "Umai Royal", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9483732998, + "longitude": -75.1537483, + "stars": 3.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Asian Fusion, Food, Sushi Bars, Chinese, Japanese, Restaurants, Szechuan, Thai, Nightlife, Specialty Food", + "hours": { + "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": "12:0-23:0" + } + }, + { + "business_id": "IUy1uzwr_aQ4nzdBNMwgRA", + "name": "Roman Rozanov D.M.D., P.C.", + "address": "1880 John F Kennedy Blvd, Ste 403", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541222, + "longitude": -75.1710001, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Orthodontists, General Dentistry, Cosmetic Dentists, Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "Nsh4KiDEu5xWhPjJftSESA", + "name": "Lyn's", + "address": "3600 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950743692, + "longitude": -75.1956453556, + "stars": 4.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food, Food Stands, Sandwiches, Street Vendors, Breakfast & Brunch, Restaurants, American (Traditional), Food Trucks", + "hours": { + "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" + } + }, + { + "business_id": "s5K7M7BBFDbFkvv14XwkgA", + "name": "Bronze Table", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "None", + "HappyHour": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Food, Pasta Shops, Specialty Food, Italian, Restaurants", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "s_srwvcdLZ5CIWrydX8YmA", + "name": "Bonnie's Capistrano Bar", + "address": "1503 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931276, + "longitude": -75.165899, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Local Flavor, Dive Bars, Nightlife, Bars, Sports Bars", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-2:0", + "Saturday": "9:0-2:0" + } + }, + { + "business_id": "E6Qs5dCetaqZqHOnqVZ2Ng", + "name": "The Last Word Bookshop", + "address": "220 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534149, + "longitude": -75.2028624, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Newspapers & Magazines, Shopping", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "bqmoIYvmMYKkVUmxm2Ngfg", + "name": "Irish Pride Hardwood Floors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Refinishing Services, Contractors, Flooring", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "Mmn9ahJT4JC-SRrJErQNUw", + "name": "ONLO", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358382, + "longitude": -75.174734, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False" + }, + "categories": "Massage Therapy, Hair Salons, Makeup Artists, Beauty & Spas, Hair Stylists, Massage, Health & Medical", + "hours": null + }, + { + "business_id": "k2LRL37Ubi9DcHbhsIeUbA", + "name": "Ulana's", + "address": "205 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404983, + "longitude": -75.1462159, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Nightlife, American (New), Restaurants, Dance Clubs", + "hours": null + }, + { + "business_id": "-M4bstf1eZI1cltbABQO5g", + "name": "Grow Property Management", + "address": "1165 S 9th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9346406825, + "longitude": -75.1586565, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Home Services, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "6PStPuXfwZz8VcuXWxNi1w", + "name": "New Era Indian Cuisine", + "address": "219 E Willow Grove Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0734681804, + "longitude": -75.1982523426, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BYOB": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "17:0-22:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "zMcns4agk1HdjFMUwhmpBQ", + "name": "Ideal Tile of Philadelphia", + "address": "1516 N 5th St, Ste 102 & 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.974523, + "longitude": -75.144287, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Kitchen & Bath, Building Supplies, Shopping, Home & Garden, Tiling, Home Services, Cabinetry, Home Decor, Interior Design, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "NLUW5WmYvFAxwDXDPkhA_w", + "name": "Nick's Vegan", + "address": "1507 N 33rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9802426, + "longitude": -75.1887303, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True" + }, + "categories": "Bakeries, Restaurants, Food, Vegetarian, Food Delivery Services, Vegan", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "0UeRtEKxY-ghJplTzgVNKw", + "name": "Aaron's", + "address": "2043 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.918539, + "longitude": -75.1822853, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Electronics, Home & Garden, Shopping, Furniture Stores, Appliances", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "bSuADas9mTPxI2UUGR8PGg", + "name": "Popeyes Louisiana Kitchen", + "address": "7124-62 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0443567742, + "longitude": -75.23186, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False" + }, + "categories": "Chicken Wings, Restaurants, American (Traditional), Fast Food", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "18790ccUVHejWqCmkoSJjA", + "name": "Casta Diva", + "address": "227 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496781, + "longitude": -75.1738043, + "stars": 4.5, + "review_count": 148, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "False", + "Caters": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "HappyHour": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "nxuvcr3611_uvr57ucI5hg", + "name": "Le Bus Bakery", + "address": "Reading Terminal Market, 51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9523527438, + "longitude": -75.15852, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Bakeries, Restaurants, Food, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "o6QW19rG1Xsy_ySsxqkpxg", + "name": "Caffe Chicco", + "address": "2532 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.918636, + "longitude": -75.171153, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Sandwiches, Restaurants, Food, American (Traditional), Breakfast & Brunch, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-18:30", + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "10:30-18:30" + } + }, + { + "business_id": "bLwWM6J-VjE8B6LPiOdf8A", + "name": "Philly Tour Hub", + "address": "7 N. Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951459, + "longitude": -75.140206, + "stars": 5.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Hotels & Travel, Local Flavor, Walking Tours, Active Life, Scavenger Hunts, Tours", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "8VZd61Jo4WUdacQuRjrZoQ", + "name": "China King", + "address": "2501 S 70th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9170069, + "longitude": -75.2365572, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'quiet'", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "3Wyjm5SA7BxwJK3RBpkqcg", + "name": "Broad Street Diner", + "address": "1135 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936729, + "longitude": -75.1669582, + "stars": 3.0, + "review_count": 146, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Diners, American (Traditional), Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "H35-qdYCX2N7nb-dbvjrZQ", + "name": "A P J Texas Weiner", + "address": "47 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536411, + "longitude": -75.1609231, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Caters": "None", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Burgers, Hot Dogs", + "hours": null + }, + { + "business_id": "1yuSWypzGewvhNZSwUlvPw", + "name": "Ela", + "address": "627 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406135, + "longitude": -75.147572, + "stars": 4.0, + "review_count": 323, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "CoatCheck": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "American (New), Restaurants, Bars, Breakfast & Brunch, Nightlife", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "QpVXlRplG91fRBFEzHD-9Q", + "name": "Sammy Chon's Koagie Truck", + "address": "1919 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.981878, + "longitude": -75.154706, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Korean, Street Vendors, Food, Restaurants", + "hours": { + "Monday": "11:0-18:30", + "Tuesday": "11:0-18:30", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-18:30", + "Friday": "11:0-17:30" + } + }, + { + "business_id": "Eu2wjbfHBUfXgLVDq5NrsQ", + "name": "Jacques Ferber", + "address": "1708 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949701, + "longitude": -75.16967, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "Kf1M74ZpUJhESFTDl34Qmw", + "name": "Renew Acupuncture", + "address": "514 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422579, + "longitude": -75.149052, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Acupuncture, Massage Therapy, Traditional Chinese Medicine", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "3cGEOpKF8Uz5RHawkT4YhQ", + "name": "Self Service Storage", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Self Storage, Shipping Centers, Mailbox Centers", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "Gm1DYE8Ko0IaYnpfvKhCXQ", + "name": "Pho Viet", + "address": "5520 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0356633, + "longitude": -75.1006256, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "qOrzaDT6Q92tVnBziWw8NA", + "name": "Weckerly's Ice Cream", + "address": "9 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689478, + "longitude": -75.1348105, + "stars": 4.5, + "review_count": 326, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Desserts, Caterers, Street Vendors, Event Planning & Services, Ice Cream & Frozen Yogurt, Food, Farmers Market", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "14:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "x6__XFxj5KQY3r2GNyc8DQ", + "name": "Cafe Canela", + "address": "2201 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921511, + "longitude": -75.158275, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, Fast Food, Mexican, American (Traditional), Sandwiches, Comfort Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "3qVvyOk6a9uZDEeJB2FHRA", + "name": "Kremp Florist", + "address": "18 Locust", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.1278627, + "longitude": -75.0321352, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": null + }, + { + "business_id": "9Q5GrEg9iy_RXuRkxIENVg", + "name": "Society Hill Veterinary Hospital", + "address": "501 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420123954, + "longitude": -75.145163807, + "stars": 4.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pet Boarding, Pet Sitting, Pets, Veterinarians, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-16:0", + "Thursday": "13:0-16:0", + "Friday": "13:0-15:0", + "Saturday": "13:0-16:0" + } + }, + { + "business_id": "xqK_Llsauh92u7iovSKPGw", + "name": "H&R Block", + "address": "1927 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950640996, + "longitude": -75.1736710221, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Accountants, Financial Advising, Financial Services, Professional Services, Tax Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "B6psaiNazV_U5XhWRO-xog", + "name": "A & M Auto Body", + "address": "1201 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340594, + "longitude": -75.1581179, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "hnGqJ78Y4Ph9gyQmtqnhVg", + "name": "Top of the Hill Cafรฉ", + "address": "184 E Evergreen Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076895, + "longitude": -75.2063692, + "stars": 4.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'no'" + }, + "categories": "Event Planning & Services, Soup, Delis, Restaurants, Sandwiches, Cafes, Caterers", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "pxmBh8YZ6HLGQfNHvJoHzA", + "name": "Nomad Roman Pizza", + "address": "1305 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480175237, + "longitude": -75.1626882641, + "stars": 4.0, + "review_count": 286, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Bars, Wine Bars, Italian, Pizza, Nightlife", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "OHXoPMr8QjPuFtyFqZygBA", + "name": "Ostroff's Candies", + "address": "2542 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0728301, + "longitude": -75.0335658, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Candy Stores, Chocolatiers & Shops, Food, Specialty Food", + "hours": null + }, + { + "business_id": "EzV_I35eggTXjmzps_0fgA", + "name": "Focus Pointe Global - Philadelphia", + "address": "100 N 18th St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553945, + "longitude": -75.1696508, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Marketing, Professional Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0" + } + }, + { + "business_id": "_tnLEdv1H_JYEcfWSpNFow", + "name": "7-Eleven", + "address": "3401 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9576784, + "longitude": -75.1913765, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Coffee & Tea, Grocery, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "PPmR0rqpBTeijmixLfuuZw", + "name": "Sidney L Gold and Associates", + "address": "1835 Market St, Ste 515", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536963, + "longitude": -75.1711447, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Lawyers, Employment Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ZsnasqY3YhRf_g2OmlTtoA", + "name": "Delta Airlines", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8957459, + "longitude": -75.2284202, + "stars": 2.5, + "review_count": 48, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Airlines", + "hours": null + }, + { + "business_id": "PQODX9oE6VqEOHNV2bkTTQ", + "name": "Lily's Nails", + "address": "1110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949872, + "longitude": -75.159212, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Beauty & Spas, Nail Salons, Hair Extensions, Hair Salons", + "hours": null + }, + { + "business_id": "yG5tkMER9Ftkv4RDwMaQuA", + "name": "Chengdu Famous Food", + "address": "3635 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591840099, + "longitude": -75.1945733333, + "stars": 4.0, + "review_count": 214, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "Alcohol": "'none'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "HasTV": "True", + "BYOB": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Noodles, Chinese, Restaurants, Szechuan, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "GY0OfiGt04kur8WlviKacw", + "name": "7-Eleven", + "address": "2144-48 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9461467334, + "longitude": -75.1782122254, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Food, Shopping, Tobacco Shops, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "N3wKFf3q6vJi0g5g0Y1ICw", + "name": "Dunkin'", + "address": "4160 Monument Rd, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0023308435, + "longitude": -75.2138614655, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Restaurants, Breakfast & Brunch, Bagels, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "SSazv1QWTBzGVnsrqgGVAg", + "name": "Woodland Building Supply", + "address": "4701 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9430779, + "longitude": -75.2113497, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Building Supplies, Home Services", + "hours": { + "Monday": "6:30-16:0", + "Tuesday": "6:30-16:0", + "Wednesday": "6:30-16:0", + "Thursday": "6:30-16:0", + "Friday": "6:30-16:0", + "Saturday": "7:30-13:0" + } + }, + { + "business_id": "EgI6S-JxwpxICPsqmaggiw", + "name": "Sofitel Philadelphia", + "address": "120 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509482, + "longitude": -75.1695409, + "stars": 4.0, + "review_count": 373, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "WiFi": "u'free'" + }, + "categories": "Bars, Nightlife, Event Planning & Services, Hotels & Travel, Hotels, Lounges, Caterers", + "hours": { + "Monday": "6:0-5:30", + "Tuesday": "6:0-5:30", + "Wednesday": "6:0-5:30", + "Thursday": "6:0-5:30", + "Friday": "6:0-5:30", + "Saturday": "6:0-5:30", + "Sunday": "6:0-5:30" + } + }, + { + "business_id": "dqtxVD047wFtHltVAgfZfw", + "name": "Sermania Jewelry", + "address": "1719 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280745, + "longitude": -75.1654027, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Jewelry", + "hours": null + }, + { + "business_id": "WZVYASnelainA2_rG91phg", + "name": "Sharp Cuts Hair Salon", + "address": "1725 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9282497, + "longitude": -75.1685491, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "45CvrxmM8rBwuV2iWHjZ_w", + "name": "South View Pizza", + "address": "367 Durfor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9194588, + "longitude": -75.1538954, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BYOB": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Corkage": "False" + }, + "categories": "Sandwiches, Pizza, Salad, Seafood, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:15", + "Wednesday": "12:0-22:15", + "Thursday": "11:0-22:15", + "Friday": "11:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "Ch2TWEHEGgab5Ec-Z_yM4g", + "name": "Tibet Foot SPA", + "address": "930 C Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9361779, + "longitude": -75.1595544, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Removal, Day Spas, Beauty & Spas, Waxing, Massage, Skin Care", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "waUa7Egg0WmvhkIzj4ImXg", + "name": "Barry Rhome, DMD", + "address": "1528 Walnut St, Ste 2010", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Endodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "4qG7aFq9-45830OfYt7gCA", + "name": "Radicchio Cafe", + "address": "402 Wood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.956611, + "longitude": -75.1463377, + "stars": 4.0, + "review_count": 309, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "BYOB": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Caters": "True", + "HappyHour": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Cafes, Restaurants, Italian", + "hours": { + "Wednesday": "17:0-20:30", + "Thursday": "17:0-20:30", + "Friday": "17:0-20:30", + "Saturday": "17:0-20:30", + "Sunday": "17:0-20:30" + } + }, + { + "business_id": "IKvCKwRrj9_m9mR2pLp8HA", + "name": "The Prime Rib", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Steakhouses", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-0:0", + "Wednesday": "16:30-0:0", + "Thursday": "16:30-0:0", + "Friday": "16:30-2:0", + "Saturday": "16:30-2:0", + "Sunday": "16:30-0:0" + } + }, + { + "business_id": "nKK8tgjteduOIxALbfJNgg", + "name": "Ristorante La Buca", + "address": "711 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947079, + "longitude": -75.154165, + "stars": 3.5, + "review_count": 113, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "GoodForKids": "False", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "u'dressy'", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False" + }, + "categories": "Restaurants, Seafood, Bars, Italian, Wine Bars, Nightlife", + "hours": { + "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": "17:0-22:0" + } + }, + { + "business_id": "jFyvKHmFDCmkV6fg-vCg2Q", + "name": "The International Bar", + "address": "1624 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9749361, + "longitude": -75.1345397, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': True, 'casual': True}", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "True", + "Corkage": "False", + "Smoking": "u'no'", + "BYOB": "False" + }, + "categories": "Vermouth Bars, Cocktail Bars, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "sEiFwUjk9esYl49JZFwvBw", + "name": "All Seasons Cleaners", + "address": "101 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553712, + "longitude": -75.202168, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "wsvGdHY8nD5xtMrztt6iBA", + "name": "Bellissima Pizza", + "address": "7816 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0586616, + "longitude": -75.059457, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "GoodForKids": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "WheelchairAccessible": "True", + "Corkage": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HappyHour": "False", + "Caters": "True" + }, + "categories": "Event Planning & Services, Restaurants, Pizza, Fast Food, Chicken Wings, Caterers", + "hours": { + "Monday": "11:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-22:45", + "Thursday": "11:0-22:45", + "Friday": "11:0-23:45", + "Saturday": "11:0-23:45", + "Sunday": "12:0-22:45" + } + }, + { + "business_id": "iTjhwZjjlGjyPywY_rgCaA", + "name": "Palm Tree Gourmet", + "address": "1940 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9465934, + "longitude": -75.1745617, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "qok5k7BMwX85McARwxzIpw", + "name": "The Spare Parts", + "address": "406 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9559609, + "longitude": -75.1464866, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Motorcycle Dealers, Automotive", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "JiXvIIxJ5iOHqYyWQfvPuQ", + "name": "Barbers & Gents", + "address": "1114 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447167, + "longitude": -75.1604436, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'no'" + }, + "categories": "Barbers, Beauty & Spas, Hair Salons, Men's Hair Salons", + "hours": { + "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": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "0BJy9The-xE_M912gkwDHQ", + "name": "Germantown Style Pizza", + "address": "324 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0299678, + "longitude": -75.1807177, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza, Sandwiches, Italian", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "FYYFJy-Wfq1H4-D5EpPzdg", + "name": "Stadium Sports Bar and Restaurant", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 2.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Bars, Sports Bars", + "hours": null + }, + { + "business_id": "HMNvzlEacv6yge7m0YmNXg", + "name": "JCPenney", + "address": "1754 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0872284, + "longitude": -74.9615353, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Department Stores, Shopping, Women's Clothing, Baby Gear & Furniture", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "gNMAEldBHzkUSKNS9adw0g", + "name": "Bain's Deli", + "address": "1 Liberty Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952012, + "longitude": -75.1677625, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Burgers, Delis, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "xYfX43qH2bLNKpcqINdS_g", + "name": "Ateethi", + "address": "2046 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513644, + "longitude": -75.1750697, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BYOB": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BikeParking": "True", + "HasTV": "True", + "Corkage": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsTableService": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "16:0-21: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", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "zDSZ1o-FYC2U7rrBg_kH7w", + "name": "Two Eagles Cafe", + "address": "1401 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9340562738, + "longitude": -75.1773206199, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HappyHour": "False", + "RestaurantsReservations": "False" + }, + "categories": "Breakfast & Brunch, Italian, Food, Mediterranean, Coffee & Tea, Restaurants, Cafes", + "hours": { + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "6mZCkALTvbeWPcc5IAImHg", + "name": "Robert Chiarella's Gourmet Pizzeria", + "address": "1627 Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9212897, + "longitude": -75.1747508, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "Alcohol": "u'none'" + }, + "categories": "Pizza, Restaurants, Sandwiches, Italian", + "hours": { + "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": "13:0-21:0" + } + }, + { + "business_id": "CpBuc0aSueBpTXce3fJoRQ", + "name": "Fiore Fine Foods", + "address": "757 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938608, + "longitude": -75.144302, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Food, Pizza, Cafes, Bakeries, Desserts, Breakfast & Brunch, American (New), Italian, Coffee & Tea", + "hours": { + "Wednesday": "17:0-20:30", + "Thursday": "17:0-20:30", + "Friday": "17:0-20:30", + "Saturday": "8:0-15:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "G_h3OH7YLOH0iqW4YQU2jQ", + "name": "Bricco Pizza Romana", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "9qn6D6Bewuwd4Ay1bEs83w", + "name": "The Cave", + "address": "3rd St & Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9627701553, + "longitude": -75.1523675503, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Adult Entertainment", + "hours": { + "Saturday": "21:0-0:0" + } + }, + { + "business_id": "sjzxGfyC_IL4cKLnzgJ_7Q", + "name": "ZynnieBakes", + "address": "1255 Marlborough St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9712578, + "longitude": -75.1323787, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bakeries, Food", + "hours": null + }, + { + "business_id": "5gKc4Xr-aK7zXPEhTdluDA", + "name": "Johnny Manana's", + "address": "1080 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9658134, + "longitude": -75.1329272, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Tex-Mex, Restaurants, Mexican", + "hours": { + "Monday": "11:0-0: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": "11:0-1:0" + } + }, + { + "business_id": "u5KVgQMHi5bPwPSVUkOYWg", + "name": "Salon Chelsea Rae", + "address": "3201 Magee Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0314899, + "longitude": -75.0557546, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "9:0-16:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "QVccj6Ke-eD7k-4cyo1yAQ", + "name": "Auto Specialties", + "address": "7972 Rockwell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0742129, + "longitude": -75.0833867, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Towing, Auto Repair, Car Dealers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-13:0" + } + }, + { + "business_id": "KyupDWgHg9juUPvQrRKDBw", + "name": "Indochino", + "address": "1718 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949887, + "longitude": -75.170103, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Formal Wear, Men's Clothing, Shopping, Bespoke Clothing, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "vVfy055EfLMdd0yJYHxiMQ", + "name": "A La Mousse", + "address": "145 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552167, + "longitude": -75.1574268, + "stars": 4.5, + "review_count": 691, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "ByAppointmentOnly": "False", + "DriveThru": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Cafes, Bakeries, Desserts, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "X9rHylXdk7KEb-r4ByDmxw", + "name": "Little Geniuses Academy", + "address": "8012 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.060183, + "longitude": -75.0521602, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Child Care & Day Care, Local Services", + "hours": null + }, + { + "business_id": "wuH4TPUo8oJo4E59xZKsNg", + "name": "&pizza - Walnut", + "address": "430 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492067124, + "longitude": -75.1659201062, + "stars": 4.5, + "review_count": 364, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "None", + "HasTV": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False" + }, + "categories": "Pizza, Vegetarian, Restaurants, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "OtQRB80tu4kHewypn6s0rg", + "name": "Delia's Firearms", + "address": "6104 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0187827, + "longitude": -75.0575783, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Guns & Ammo, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "d_I4GH4Ek_YM2tpsuXW6mg", + "name": "Reading Terminal Market Merchants Catering Co", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": null + }, + { + "business_id": "e0ZGMlXcMQ8bfvLFiLfuAw", + "name": "Hessert Chevrolet", + "address": "6301 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0344821, + "longitude": -75.0695104, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Parts & Supplies, Auto Repair, Used Car Dealers, Car Dealers, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-19:0" + } + }, + { + "business_id": "pGfx4lp39-1dJXmSY6XU0w", + "name": "SquareTrade Go", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0729157, + "longitude": -75.1691305, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Electronics Repair, Local Services, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "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" + } + }, + { + "business_id": "MipTUN8eKwxZR61bHLJ64Q", + "name": "Hot Chocolate 15k and 5k", + "address": "Philadelphia Art Museum, Ste ps", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9661593, + "longitude": -75.1795271, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Fashion, Shopping, Recreation Centers, Races & Competitions", + "hours": null + }, + { + "business_id": "UCmTG_e7I2a5dY_3qI6Jbg", + "name": "Dunkin'", + "address": "1425 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948588, + "longitude": -75.1658929, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Bagels, Food, Donuts, Coffee & Tea, Breakfast & Brunch", + "hours": { + "Monday": "4:30-23:0", + "Tuesday": "4:30-23:0", + "Wednesday": "4:30-23:0", + "Thursday": "4:30-23:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "E_6jUatxBImLU-JT21rsbQ", + "name": "Advanced Custom Cabinets", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618676, + "longitude": -75.0465123, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Interior Design, Contractors, Home Services", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "aBTdxqhKOsoWJWgdDP-MEw", + "name": "Jefferson Hospital", + "address": "833 Chestnut St, Ste 220", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499234105, + "longitude": -75.1550482846, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Hospitals, Doctors, Obstetricians & Gynecologists", + "hours": { + "Monday": "7:30-16:30", + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30" + } + }, + { + "business_id": "p9GWVLG-BBwnJHnYaHquwA", + "name": "Breaking Point Fitness - CrossFit Ridge Ave", + "address": "3791 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0180211, + "longitude": -75.2133099, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Interval Training Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "16:0-20:30", + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:0", + "Friday": "16:0-19:30", + "Saturday": "9:0-11:30" + } + }, + { + "business_id": "Rzx2E5XgTeGU7FEbUZ-bGg", + "name": "IKEA", + "address": "2206 Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9171275, + "longitude": -75.1418318, + "stars": 3.0, + "review_count": 365, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "Alcohol": "u'none'" + }, + "categories": "Kitchen & Bath, Shopping, Restaurants, Furniture Stores, Nurseries & Gardening, Home Decor, Appliances, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "AiByKTUdixBd5vWAMyxN5g", + "name": "Las Vegas Lounge", + "address": "704 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491707, + "longitude": -75.1526659, + "stars": 3.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Nightlife, Lounges, Restaurants, Bars", + "hours": { + "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": "17:0-2:0" + } + }, + { + "business_id": "ig3SPW9DM4CLlG5_1eeXSQ", + "name": "Antiquarian's Delight", + "address": "615 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415759, + "longitude": -75.1524061, + "stars": 2.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Shoe Stores, Shopping, Fashion, Women's Clothing, Used, Vintage & Consignment, Men's Clothing, Luggage, Antiques, Lingerie, Jewelry", + "hours": null + }, + { + "business_id": "Cdt9D6XfEF7FBHRBbj-BgQ", + "name": "Blatt Tire & Auto Repair", + "address": "1000 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9588694, + "longitude": -75.1554945, + "stars": 4.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Tires, Auto Repair, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "uD_nMWd5b5d7gW1srYH6Jg", + "name": "Top Taste", + "address": "40 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9612429, + "longitude": -75.2248632, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "ay8LAfHI0KQOEKNF-E24IA", + "name": "Allan Domb Real Estate", + "address": "1845 Walnut St, Ste 2200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506933, + "longitude": -75.1715016, + "stars": 3.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Real Estate Services, Home Services", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "WglSxOOjnw3pGpHWj6Poag", + "name": "Potbelly Sandwich Shop", + "address": "1635 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953463, + "longitude": -75.168192, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Soup, Salad, Fast Food, Desserts, Sandwiches, Restaurants, Delis", + "hours": { + "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": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "hZTaTVsigf9rngodD2VIjw", + "name": "David's Bridal", + "address": "6595 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0357304, + "longitude": -75.0648976, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bridal, Shopping", + "hours": null + }, + { + "business_id": "ZCxi49hVqS3zVUkRLoEwdA", + "name": "Grim Philly Twilight Tours", + "address": "Market and N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509039, + "longitude": -75.1501212, + "stars": 4.0, + "review_count": 245, + "is_open": 1, + "attributes": null, + "categories": "Arts & Entertainment, Haunted Houses, Walking Tours, Hotels & Travel, Tours, Historical Tours", + "hours": { + "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" + } + }, + { + "business_id": "jB6YIqT9zUspGJZ7H4IRLg", + "name": "Luxury Nails", + "address": "276 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9549597, + "longitude": -75.2261875, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "by2wRASwOKpCZU9KtZ3MHA", + "name": "Manhattan Bagel", + "address": "125 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508002, + "longitude": -75.1703050733, + "stars": 3.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WiFi": "u'free'", + "AgesAllowed": "u'allages'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Sandwiches, Breakfast & Brunch, Coffee & Tea, Restaurants, Bagels", + "hours": { + "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" + } + }, + { + "business_id": "sjhKb2jJsdq7a8CHfEa0uQ", + "name": "Tacony Billiards", + "address": "6201 Keystone St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0169891, + "longitude": -75.0519999, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Pool Halls", + "hours": null + }, + { + "business_id": "LIF7l-f4etKxOToHkg8PgA", + "name": "Avalon Flooring", + "address": "48 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9204264, + "longitude": -75.14664, + "stars": 3.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Kitchen & Bath, Shades & Blinds, Interior Design, Flooring, Home & Garden, Shopping, Home Services, Carpeting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "9ujr7iilByV0mM8N0-DAJw", + "name": "Rae", + "address": "2929 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9571037, + "longitude": -75.1822356, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "qjivA_eSsUd73NuPY8_PRg", + "name": "Liberty and Lace Bridal", + "address": "4390 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258028, + "longitude": -75.2248609, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Fashion, Shopping, Bridal", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "VWy97TpzjreU_78xotES2A", + "name": "Underground Arts", + "address": "1200 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19108", + "latitude": 39.958992034, + "longitude": -75.157813851, + "stars": 3.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Music Venues, Bars, Performing Arts", + "hours": null + }, + { + "business_id": "3bMVhRoYXU4UND8G0xLflw", + "name": "Man vs Fries", + "address": "701 Cathedral Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.063497, + "longitude": -75.236561, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Food Delivery Services, Fast Food, Pop-Up Restaurants, Sandwiches, Mexican, Food", + "hours": { + "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" + } + }, + { + "business_id": "lKU_kljhbEQKIPaM1Zbqiw", + "name": "Little Nonna's", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947786438, + "longitude": -75.1618928091, + "stars": 4.0, + "review_count": 1147, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': True, u'classy': None, u'upscale': False}", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "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" + } + }, + { + "business_id": "c4l3nCukNtMwOmxNtC3p2g", + "name": "Bee Flowers", + "address": "2637 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9849193, + "longitude": -75.102816, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Event Planning & Services, Floral Designers, Flowers & Gifts, Shopping, Florists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "c4dbRo1LHY_q5VoYMzqSjg", + "name": "Mari BYO", + "address": "795 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9380055713, + "longitude": -75.1481305808, + "stars": 4.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Seafood, Sicilian, Restaurants, Italian", + "hours": { + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "A9Ne7d0MHUqPRdeWTyYZdw", + "name": "Alpha Mobile Detailing Company", + "address": "6346 Revere St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.032472, + "longitude": -75.0656206, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Automotive", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "OcWuxEqm_5gTz7oPSHB6Jw", + "name": "The Institute Craft Bar & Kitchen", + "address": "525 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624658, + "longitude": -75.155683, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BYOB": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Corkage": "False" + }, + "categories": "Nightlife, Bars, Restaurants, Cocktail Bars, American (Traditional)", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "KHQXmUFiAD0FHvrMSakJBA", + "name": "Fare", + "address": "2028 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967061, + "longitude": -75.171243, + "stars": 3.5, + "review_count": 456, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}", + "WiFi": "u'free'" + }, + "categories": "Nightlife, Vegetarian, Wine Bars, American (New), Restaurants, Bars, Seafood, Vegan", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "scZ4wwY8oaVH9qjzosb1gA", + "name": "Ross Dress for Less", + "address": "701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512937, + "longitude": -75.1526227, + "stars": 3.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Shopping, Men's Clothing, Discount Store, Accessories, Home Decor, Department Stores, Women's Clothing, Fashion, Home & Garden", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "HrIEc9gVWWnjqn9OiglrVQ", + "name": "Jakes Sandwich Board - 12th St", + "address": "122 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494836, + "longitude": -75.1606662, + "stars": 4.0, + "review_count": 368, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "False" + }, + "categories": "Fast Food, Restaurants, Delis, Sandwiches, Event Planning & Services, Cheesesteaks, American (New), Caterers", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "4hv1n1VBzMvE-T4UtIcOcw", + "name": "Di Bruno Bros.", + "address": "1730 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951311, + "longitude": -75.1700653, + "stars": 4.0, + "review_count": 550, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "Corkage": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "None", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Coffee & Tea, Breakfast & Brunch, American (New), Chocolatiers & Shops, Meat Shops, Italian, Seafood Markets, Fruits & Veggies, Sandwiches, Shopping, Grocery, Specialty Food, Desserts, Food, Cheese Shops", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "Nsr46P7bRd1lATqE7H09Pw", + "name": "Al-Amana Grocery Store", + "address": "1502 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9738199, + "longitude": -75.1419827, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Specialty Food, Food", + "hours": null + }, + { + "business_id": "kvzzU6ouwmDEUBs87VAELg", + "name": "Maximus Towing and Recovery", + "address": "6801 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0567722, + "longitude": -75.1393286, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Towing, Automotive, Body Shops, Auto Repair", + "hours": { + "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" + } + }, + { + "business_id": "XXWxdyq2QfKF4wpdDZUcxA", + "name": "Wingstop", + "address": "7644 City Line Ave, Ste F11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9776992, + "longitude": -75.2724114, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "WiFi": "u'no'", + "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': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "vJ3Jh0vXXeFWmo1PQ-N0nQ", + "name": "Kif's Sports Bar and Hookah Lounge", + "address": "6142 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9621917, + "longitude": -75.2443677, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), Bars, Restaurants, Hookah Bars, Sports Bars, Nightlife", + "hours": { + "Monday": "17:0-0:30", + "Tuesday": "17:0-0:30", + "Wednesday": "17:0-0:30", + "Thursday": "17:0-0:30", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "uFs6biPJw2FlVY3taR4QNQ", + "name": "Joyce Leslie", + "address": "1851 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.923491, + "longitude": -75.1405828, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "keX192_3bHKBGneV4GPZPg", + "name": "Frame Fatale", + "address": "1813 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9273284, + "longitude": -75.1662141, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Arts & Crafts, Shopping, Framing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "zQrVOv8HISzIlwOiZMbwEA", + "name": "Old Towne and Sannas", + "address": "2301 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444635842, + "longitude": -75.180571, + "stars": 3.0, + "review_count": 95, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants, Halal, Middle Eastern, Mediterranean", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "xbf-mSUzJc9_8YEZeFIjVw", + "name": "Grace & Glory Yoga Fishtown", + "address": "2220 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.98014, + "longitude": -75.12913, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Pilates, Fitness & Instruction, Yoga", + "hours": { + "Monday": "5:45-7:30", + "Tuesday": "9:0-21:0", + "Wednesday": "5:45-21:0", + "Thursday": "9:0-21:0", + "Friday": "5:45-19:0", + "Saturday": "7:30-11:30", + "Sunday": "9:0-11:30" + } + }, + { + "business_id": "8zSL0IFhoRjfcDpWAHCA_g", + "name": "Kevin J Cross, MD - Cross Medical Group", + "address": "2200 Arch St, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557702, + "longitude": -75.177019, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Health & Medical, Doctors, Beauty & Spas, Skin Care, Plastic Surgeons, Cosmetic Surgeons", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "lq3igA-wjYGgDfpx0AG2Sg", + "name": "Famous Famiglia Pizzeria", + "address": "3409 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530891, + "longitude": -75.1926123, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "ePs4Z_Nqsm5-kQk_hAp2Dg", + "name": "Irish Pub", + "address": "2007 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508625, + "longitude": -75.1740205, + "stars": 3.0, + "review_count": 167, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Irish, Nightlife, Restaurants, Pubs, Bars, Irish Pub", + "hours": { + "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": "10:0-2:0" + } + }, + { + "business_id": "grIIeZIaKNv9BIWRTD5abg", + "name": "Talarico Electric", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Electricians, Home Services", + "hours": null + }, + { + "business_id": "Jce6MfjcGJzWCrhDpqzP2Q", + "name": "Toyotomi Sushi Bar & Asian Cuisine", + "address": "1627 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9213746, + "longitude": -75.1746809, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False" + }, + "categories": "Japanese, Restaurants, Sushi Bars, Asian Fusion", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30" + } + }, + { + "business_id": "AtQdWoyNLo9BekRajDbSqQ", + "name": "Cleaner's 21", + "address": "122 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510848, + "longitude": -75.1757867, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "_l2qMhWrwrYp-HoiBkfi-Q", + "name": "O-Sunnyside Breakfast", + "address": "7706 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0709591, + "longitude": -75.1578899, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'" + }, + "categories": "Food, Breakfast & Brunch, Restaurants, Coffee & Tea", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0", + "Sunday": "6:0-14:0" + } + }, + { + "business_id": "XdipvXDdsYt_MDtTaMtXPA", + "name": "Hikaru Restaurant", + "address": "607 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408868, + "longitude": -75.1456071, + "stars": 3.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": { + "Monday": "17:0-22:30", + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-23:30", + "Saturday": "16:0-23:30", + "Sunday": "16:0-22:30" + } + }, + { + "business_id": "MWRXvUogMXNJyCIFVq7_1Q", + "name": "Temple ReadyCare", + "address": "11000 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.101128, + "longitude": -75.008189, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Health & Medical, Physical Therapy", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "pmXIwjsdAMjeW0xyPMRe1Q", + "name": "Kabul Afghan Cuisine", + "address": "106 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480734, + "longitude": -75.1428404, + "stars": 3.5, + "review_count": 185, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'yes_free'", + "Corkage": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Soup, Middle Eastern, Food, Desserts, Restaurants, Kebab, Afghan, American (New), Halal", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "14:0-23:0", + "Friday": "15:0-23:0", + "Saturday": "15:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "1JTT6PBYcoVwiUdhsSLDEg", + "name": "Teas N' Mi", + "address": "1907 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263495641, + "longitude": -75.1673861593, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Vietnamese, Restaurants, Bubble Tea, Indian, Food, Sandwiches", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "_wc7LXPb_lnubImu2MuQTA", + "name": "Generation 3 Electric & HVAC", + "address": "1257 S 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.937153, + "longitude": -75.187015, + "stars": 4.5, + "review_count": 231, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Lighting Fixtures & Equipment, Electricians, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "uFws8Op2hSwixi75YF06Rw", + "name": "Charles Shoe Repair", + "address": "1800 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539914, + "longitude": -75.1699969, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "YYcgOI-I9QeJj1PJ60UwoA", + "name": "Snapology of Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Education, Educational Services, Kids Activities, Active Life, Summer Camps", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "CuvEvIkPvYVvVvsWDW4T4Q", + "name": "Steve's Steaks", + "address": "650 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94203, + "longitude": -75.153798, + "stars": 3.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Cheesesteaks, American (Traditional), Restaurants, Sandwiches", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "0Sv4WR04RTjvCutQjtTepQ", + "name": "Ann's Nail Salon", + "address": "2847 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057196, + "longitude": -75.030789, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyebrow Services, Eyelash Service, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "HBk165NRJcLWdPHzuSkAEA", + "name": "House of Kosher", + "address": "9806 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0927682371, + "longitude": -75.0331032578, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Kosher, Restaurants, Food, Grocery, Specialty Food", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-15:0", + "Saturday": "19:0-23:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "bgxDswHIdFP0Go0pNfyAAw", + "name": "Hummus Grill", + "address": "3931 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954349, + "longitude": -75.2021586, + "stars": 4.0, + "review_count": 372, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Corkage": "False" + }, + "categories": "Specialty Food, Food, Sandwiches, Middle Eastern, Vegetarian, Ethnic Food, Restaurants, Mediterranean, Greek, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0" + } + }, + { + "business_id": "PPc-Pnkn8J7M0o-XNIdV8Q", + "name": "Fishtown Vapes", + "address": "2040 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9795493, + "longitude": -75.129798, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Tobacco Shops, Shopping, Vape Shops", + "hours": { + "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": "12:0-19:0" + } + }, + { + "business_id": "YZIRZPmkM7EIkClsmPBeVg", + "name": "J Brite Cleaners", + "address": "617 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414018, + "longitude": -75.1506845, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "phsLOuBeiYI43hglvWK96Q", + "name": "P S & Co", + "address": "1706 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487961, + "longitude": -75.1697449, + "stars": 4.0, + "review_count": 437, + "is_open": 1, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "WiFi": "u'no'", + "HappyHour": "False", + "BYOB": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Food, Vegetarian, Coffee & Tea, Bakeries, Juice Bars & Smoothies, Food Delivery Services, Gluten-Free, Cafes, Restaurants, Breakfast & Brunch, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "qauNuzGr6cmAuT7K7FzX5w", + "name": "Atlas Chiropractic", + "address": "333 Bainbridge St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940886, + "longitude": -75.148877, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Chiropractors, Beauty & Spas, Massage", + "hours": { + "Monday": "15:0-18:30", + "Tuesday": "10:0-14:0", + "Wednesday": "15:0-18:30", + "Friday": "15:0-18:0", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "fM9XZyZTGGyW2ONDofqk9w", + "name": "The Atacan Group at Keller Williams Realty", + "address": "1619 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate Services, Commercial Real Estate, Real Estate, Real Estate Agents", + "hours": { + "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" + } + }, + { + "business_id": "T1ZMdMt06W4KMktI5dC9XQ", + "name": "Overbrook Food Market", + "address": "2123 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9888601, + "longitude": -75.2498411, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "t-9LJ6-J1yCiSmY8OygLSA", + "name": "HH Gregg", + "address": "9733 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.085932, + "longitude": -75.0239021, + "stars": 1.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "4" + }, + "categories": "Home & Garden, Appliances, Electronics, Shopping, Computers", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "vhd7sbDlz9gT453ITmCa_Q", + "name": "Eiselen's Pastry Shoppe", + "address": "7130 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0449324, + "longitude": -75.2311961, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": null + }, + { + "business_id": "2WGnykxiM-Mp-qIm2u7iAw", + "name": "Maggiano's Little Italy", + "address": "1201 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531992, + "longitude": -75.1602278, + "stars": 3.5, + "review_count": 676, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "None", + "Smoking": "u'no'", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza, Bars, Nightlife, Italian, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "yMlOwZWKLJQ-ETtkDLP4RQ", + "name": "Philadelphia Dental Cosmetics", + "address": "1601 Walnut St, Ste 822", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950007, + "longitude": -75.167691, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, General Dentistry, Dentists, Oral Surgeons", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "TQ3XTsjmefGlkhFtx1OTIQ", + "name": "Romano's Meatball", + "address": "3136 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9824897835, + "longitude": -75.1027133333, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Sandwiches, Restaurants, Italian", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "Jn4tRtjIuz6MBCykQySpeg", + "name": "Woodrow's Sandwich Shop", + "address": "630 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419789, + "longitude": -75.1532317, + "stars": 4.5, + "review_count": 312, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "None", + "GoodForKids": "False", + "HappyHour": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Sandwiches, Event Planning & Services, Specialty Food, Food, Caterers, Cheesesteaks", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "gqwJxrdXimdw5LuXwEYjfQ", + "name": "VCA Knightswood Animal Hospital", + "address": "12121 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.087836, + "longitude": -74.970201, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "k_eKYlkhI11VGzb5RxHmOA", + "name": "Gennaro's Pizza", + "address": "1200 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430766, + "longitude": -75.1619363, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "Mz5GkS4EPimKV3wOuwm1Ug", + "name": "Singing Fountain", + "address": "Passyunk Ave And 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93027, + "longitude": -75.1629972, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "vUBnjutMeNiBRSB-7o1imQ", + "name": "Tarka Restaurant", + "address": "3801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555544, + "longitude": -75.1985848, + "stars": 2.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Caters": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True" + }, + "categories": "Food, Halal, Indian, Food Delivery Services, Pakistani, Restaurants, Buffets, Asian Fusion", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "NuxizIKs6_4YJrWBjt-Apg", + "name": "Party City", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.913544, + "longitude": -75.155269, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Party Supplies, Event Planning & Services, Arts & Crafts, Costumes, Shopping", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "8:30-20:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "il5H-xceqRVR3EvaC-u00Q", + "name": "Modern Jewels and Watches", + "address": "127 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486003, + "longitude": -75.1539452, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Jewelry, Local Services, Watch Repair, Shopping, Watches", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "u0Bt7uvvj7LAjAdiMtrhug", + "name": "Laser Wolf", + "address": "1301 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9706068, + "longitude": -75.1365465, + "stars": 4.5, + "review_count": 162, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': True}", + "BYOB": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "Corkage": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Middle Eastern, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:45", + "Wednesday": "17:0-21:45", + "Thursday": "17:0-21:45", + "Friday": "17:0-21:45", + "Saturday": "17:0-21:45" + } + }, + { + "business_id": "pgri9CUZXGy9hi6UMMQR6A", + "name": "Louie Louie", + "address": "3611 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9532791038, + "longitude": -75.1955875611, + "stars": 4.0, + "review_count": 272, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BYOB": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': True}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Corkage": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Restaurants, Burgers, Salad, American (New), Modern European", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "nvDowNzcqPpNkmt1Bc7xiA", + "name": "NRG Residential Solutions", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 1.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Utilities", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "r4gAaKt-6w_YYoY2TQIegA", + "name": "Fairmount Nail Salon", + "address": "2016 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670731, + "longitude": -75.1708686, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "J-7oP_UaDIYG8CZwFL70kg", + "name": "Pete's Pizza", + "address": "6047 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9295069803, + "longitude": -75.2289936736, + "stars": 1.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "LqkSZd1KXnpPp_fVUeCwZw", + "name": "Hello Home", + "address": "1004 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9445447, + "longitude": -75.1585144, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Home Decor, Home & Garden, Shopping", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "sXRlie2aaSWsHeuUuaz3lQ", + "name": "PA Auto Sales.com", + "address": "11600 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1042946, + "longitude": -75.0034047, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Car Dealers", + "hours": { + "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" + } + }, + { + "business_id": "V_fRQ5GUSdoBGELhu0D00w", + "name": "American Red Cross", + "address": "700 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605438, + "longitude": -75.1507073, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "CPR Classes, Blood & Plasma Donation Centers, Education, Community Service/Non-Profit, Local Services, Health & Medical, Specialty Schools", + "hours": null + }, + { + "business_id": "MGaeVgdIhDUFHSrDpv8hIw", + "name": "Wine Dive", + "address": "1506 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437287261, + "longitude": -75.1675457507, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "BYOB": "False", + "HasTV": "True", + "OutdoorSeating": "True" + }, + "categories": "Beer, Wine & Spirits, Nightlife, Food, Wine Bars, Bars", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "-hsR1sWeD9Vw_nh5Qym2fg", + "name": "Trolley Car Cafe", + "address": "3269 S Ferry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.00737, + "longitude": -75.191347, + "stars": 3.5, + "review_count": 261, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "True" + }, + "categories": "American (Traditional), Restaurants, Food, Breakfast & Brunch", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "6t5GtOtmoApCtSNXv2RJpg", + "name": "Mian at Rivers Casino Philadelphia", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9638134, + "longitude": -75.1324645, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "None", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "WiFi": "'free'", + "RestaurantsReservations": "True", + "BYOB": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "WheelchairAccessible": "True" + }, + "categories": "Asian Fusion, Restaurants", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "7Zv6DTlcUZvBjmTic6oqTQ", + "name": "Brunics", + "address": "2000 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9261964, + "longitude": -75.1744997, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "6:30-14:30", + "Tuesday": "6:30-14:30", + "Wednesday": "6:30-14:30", + "Thursday": "6:30-14:30", + "Friday": "6:30-14:30", + "Saturday": "7:0-14:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "2BYieRxHbrxMzSyZbPE13w", + "name": "Independence Seaport Museum", + "address": "211 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459179924, + "longitude": -75.1404742245, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Public Services & Government, Landmarks & Historical Buildings, Arts & Entertainment, Museums", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "odEaURWaQp2Uh0ifndZWng", + "name": "Lofts 640", + "address": "640 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964665, + "longitude": -75.161876, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:15-16:0", + "Tuesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "sW2_khTBl1ugiCz8jRr9qw", + "name": "Liberty Nail", + "address": "15 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0864050428, + "longitude": -74.9674042677, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "l5HRfT1HH1gYAKZpgBhLtA", + "name": "Frankford Transportation Center", + "address": "5200 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.022584, + "longitude": -75.078303, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Public Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "bd_ATF7_7iPF-yzI_vvgWw", + "name": "Ramblei", + "address": "1500 Market St E, Fl 12, East Tower", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Home Cleaning, Local Services, Movers, Handyman, Self Storage, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "zxRmQ_FWVowh8rlzLCSURQ", + "name": "Verree Express Pizza", + "address": "7959 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.072409, + "longitude": -75.0760465, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "90LsqLbaoQpz_xNbSQsCFA", + "name": "Starbucks", + "address": "8515 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076366, + "longitude": -75.206754, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:30-20:0", + "Sunday": "5:30-20:0" + } + }, + { + "business_id": "Q0pFg3ri7kt9xIxxXh7-RQ", + "name": "SOMO Manayunk", + "address": "4311 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250874, + "longitude": -75.2221876, + "stars": 3.5, + "review_count": 288, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "Caters": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "WiFi": "'free'", + "BYOB": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Tapas/Small Plates, Restaurants, American (New), Nightlife, Breakfast & Brunch, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-0:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "5oG8X7xD0VSmsnz-Hztvnw", + "name": "Fine Wine & Good Spirits", + "address": "32 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491489, + "longitude": -75.1441494, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "None" + }, + "categories": "Shopping, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "mFsmzyiRoLS7i4zsqFduxA", + "name": "PRO Handy services", + "address": "127 West Luray St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.021063, + "longitude": -75.125486, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Plumbing, Handyman, Electricians, Home Services", + "hours": null + }, + { + "business_id": "L4xQO6dGB193NuuY4_PkGA", + "name": "Blue Bear", + "address": "216 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948104, + "longitude": -75.159407, + "stars": 2.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "6IwF2rpoaiR_W6DzOvuceA", + "name": "Victory Brewing Company Philadelphia", + "address": "1776 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9561946841, + "longitude": -75.1689851604, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Nightlife, Breweries, Bars, Food, Pubs, Restaurants, Brewpubs", + "hours": { + "Monday": "0:0-0: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-21:0" + } + }, + { + "business_id": "eLXLVbJJlqslB0MZNY1G6A", + "name": "Sam's Cold Cuts", + "address": "173 W Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0373432, + "longitude": -75.1235487, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Restaurants", + "hours": null + }, + { + "business_id": "KqUinf0QEeiZdxko2dFEsA", + "name": "Shane Confectionery", + "address": "110 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495474, + "longitude": -75.1426984, + "stars": 4.5, + "review_count": 169, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Coffee & Tea, Specialty Food, Desserts, Candy Stores, Food, Local Flavor, Chocolatiers & Shops", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "11:0-22:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "3O7QheC6iNpkkFWSWD0DwQ", + "name": "Village Tabako", + "address": "211 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483666, + "longitude": -75.1621289, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Tobacco Shops", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "72RtdjlVLaVedeXvowj04w", + "name": "South Philly Dinette", + "address": "2454 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9351719227, + "longitude": -75.1855945715, + "stars": 4.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "None", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Mattresses, Home & Garden, Furniture Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "XCJ8N1GrV9Gdgbyp1U05NQ", + "name": "Key Food Pizza", + "address": "1846 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264546, + "longitude": -75.1656307, + "stars": 3.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True" + }, + "categories": "Pizza, Restaurants, American (Traditional)", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-22:30" + } + }, + { + "business_id": "-6AjXJIUlbGSUohUzg9-iA", + "name": "Liberty Bell Bicycle", + "address": "1901 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264379, + "longitude": -75.1668767, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Sporting Goods, Bikes, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "lls1UnqkM_qEqPNS-geZVw", + "name": "Tastebuds Market & Catering", + "address": "2400 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465437, + "longitude": -75.1805393, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Food, Event Planning & Services, Caterers", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "FJl6LCHbqiM9mvSwDjFAjw", + "name": "Kim's Restaurant", + "address": "5955 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0421548, + "longitude": -75.1289525, + "stars": 4.0, + "review_count": 181, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "False", + "RestaurantsTableService": "True", + "HappyHour": "False", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Specialty Food, Restaurants, Korean, Ethnic Food, Food, Barbeque", + "hours": { + "Monday": "11:0-22:30", + "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": "11:0-22:30" + } + }, + { + "business_id": "9wvOZ7ADt8gidMPg0i4wsQ", + "name": "Joseph M Lichtman, MD", + "address": "514 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422857, + "longitude": -75.1492594, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Family Practice, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "10:0-16:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "jdMKSgqSelFKfrFoa6KXgg", + "name": "Miller's Auto Repair", + "address": "4417 Mitchell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0308287, + "longitude": -75.214837, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "RQAF6a0akMiot5lZZnMNNw", + "name": "Dalessandroโ€™s Steaks & Hoagies", + "address": "600 Wendover St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.029494, + "longitude": -75.2059714, + "stars": 4.0, + "review_count": 2686, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "Corkage": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True" + }, + "categories": "Sandwiches, Delis, Restaurants, Cheesesteaks", + "hours": { + "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-21:0" + } + }, + { + "business_id": "xZ8xX5epDVMqD6mklwtP3g", + "name": "Mama Yolanda's Italian Restaurant", + "address": "746 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402619, + "longitude": -75.1561121, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "qM7Uh41I8wStZMXeoyDTYQ", + "name": "Hatch & Coop", + "address": "125 South 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547153, + "longitude": -75.2020952, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chicken Shop, Fast Food, Sandwiches", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "a8lpo_f90MkG38-g6Dv6dw", + "name": "Manayunk Cafรฉ", + "address": "3722 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0154121, + "longitude": -75.210575, + "stars": 1.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'quiet'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Restaurants, American (New), American (Traditional)", + "hours": { + "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" + } + }, + { + "business_id": "TYURMcdjX8f0QcIkbEK2IQ", + "name": "The Wilma Theater", + "address": "265 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472561, + "longitude": -75.1644518, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False" + }, + "categories": "Performing Arts, Cinema, Arts & Entertainment", + "hours": null + }, + { + "business_id": "U7XK2Ki-PGx87IgXxH55IQ", + "name": "Divan Turkish Kitchen", + "address": "918 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9407814, + "longitude": -75.1796694, + "stars": 3.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_corkage'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'" + }, + "categories": "Mediterranean, Turkish, Middle Eastern, Restaurants", + "hours": { + "Monday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "2hCJpE5I2OfEToUGcvdGRQ", + "name": "Wajoe", + "address": "2034 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951986, + "longitude": -75.17492, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Korean, Restaurants", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30" + } + }, + { + "business_id": "2Z4UlKeHAKmxHqbyhj4a_w", + "name": "Herman's Coffee", + "address": "1313 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9313999, + "longitude": -75.1497036, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Coffee & Tea, Coffee Roasteries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "8:0-12:0", + "Friday": "6:0-18:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "dyxO905efg4xDODf-FCzZA", + "name": "Katie O'Donnell's", + "address": "4501 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0837370517, + "longitude": -74.9661775389, + "stars": 3.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "HasTV": "True", + "GoodForDancing": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Bars, Pizza, Nightlife, Restaurants, Pubs, Burgers, Irish", + "hours": { + "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" + } + }, + { + "business_id": "-LoYGjfeHbGklgmiJU9EMQ", + "name": "The Other Wedding DJ", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, DJs", + "hours": { + "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" + } + }, + { + "business_id": "K2svtoFXk68mFIIwLjG36g", + "name": "Devon & Blakely", + "address": "1801 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535838538, + "longitude": -75.1701486602, + "stars": 3.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Soup, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": null + }, + { + "business_id": "BFPxxguGxBZQ0kR0rWePTQ", + "name": "Dunkin'", + "address": "2530 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978086, + "longitude": -75.1194651, + "stars": 1.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "None", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Food, Coffee & Tea, Donuts, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "dJGZ4w3ujr-X44XPOzxOfw", + "name": "Cafe Mocha", + "address": "263 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466562, + "longitude": -75.1578532, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Sandwiches, Breakfast & Brunch, Coffee & Tea, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "C_0iYuJI4uCVM-fC4AF7OA", + "name": "Pinki Nails", + "address": "8919 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0695947, + "longitude": -75.2397487, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "dIplIuCRDhqZQ2OVj1NjdQ", + "name": "Ken's Garage Door Repair", + "address": "5240 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9372763, + "longitude": -75.2172266, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Garage Door Services, Auto Repair, Home Services, Automotive", + "hours": null + }, + { + "business_id": "1tTv3J1_b_pYLv2eGIn35g", + "name": "Prime Master Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0637900438, + "longitude": -75.0508600301, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Drywall Installation & Repair, Painters, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "LSh18uOYKvYUtVoRXAsrtw", + "name": "The Bourse Food Hall", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False", + "HappyHour": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Food Delivery Services, Shopping, Public Markets, Shopping Centers, Food Court, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "N00XVr8qnUl5DSdTecFJ0w", + "name": "Cafe Express", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9527827, + "longitude": -75.1703617, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True" + }, + "categories": "Delis, Sandwiches, Coffee & Tea, Restaurants, Food", + "hours": null + }, + { + "business_id": "7u-7PVcjECvTeIumVTmS4g", + "name": "The King of Shave", + "address": "1201 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945238, + "longitude": -75.161439, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Barbers", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "11:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "7SUOgtE3XmoKbLT5KuUYlA", + "name": "Taj-E-India", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634438366, + "longitude": -75.1468081, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForKids": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "Ntv3JRLGSFoOo4mr82U2NA", + "name": "Visionworks Market Square at Chestnut Hill", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.07299, + "longitude": -75.194644, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical, Eyewear & Opticians, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "yCJ5Ws_RarcO2pusKzmnkg", + "name": "20th Street Dental", + "address": "1638 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.930598, + "longitude": -75.1783641, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "U_X60dqUInqe-F3cvbY57Q", + "name": "A Taste O' Home", + "address": "6045 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9437982, + "longitude": -75.2464248, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "None", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Restaurants, Caribbean, Food, Event Planning & Services, Caterers", + "hours": { + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "uCvxaG9bm7kTv3ZeMzTfpQ", + "name": "EZ Clean Up", + "address": "1744 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9365747, + "longitude": -75.1735194, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Recycling Center, Home Services, Contractors, Junk Removal & Hauling", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-16:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "tbIYD0lBGRJcvNEtU-QzHw", + "name": "Jiffy Lube", + "address": "1600 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0551829, + "longitude": -75.0732123, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "7:30-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "uPrgY60Ibnlc7zn323kg1Q", + "name": "Bianca Pizza & Trattoria", + "address": "514 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941646, + "longitude": -75.151419, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "Caters": "True" + }, + "categories": "Restaurants, Pizza, Sandwiches, Italian", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "uVyohgIjld0qrQOPv7mXUQ", + "name": "Sole Food", + "address": "Loews Philadelphia Hotel, 1200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9518185, + "longitude": -75.1603207, + "stars": 3.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Jazz & Blues, Restaurants, Seafood, Arts & Entertainment, Nightlife", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-22:0", + "Sunday": "6:30-22:0" + } + }, + { + "business_id": "QtYVt1X2clFJlpkBah8c7A", + "name": "west elm", + "address": "1330 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950638, + "longitude": -75.163154, + "stars": 2.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "False" + }, + "categories": "Home & Garden, Furniture Stores, Rugs, Shopping, Home Decor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "bukNFgeOlyTpeKnB7VxBCA", + "name": "Berkshire Hathaway HomeServices Fox & Roach", + "address": "530 Walnut St, Ste 480", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947254, + "longitude": -75.15056, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Mortgage Lenders, Mortgage Brokers, Real Estate Agents, Financial Services, Real Estate, Real Estate Services, Insurance", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "hOupS2QRNIuMLfcpOqC0oA", + "name": "Rose Petals Cafe", + "address": "322 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0295621, + "longitude": -75.1808491, + "stars": 4.0, + "review_count": 252, + "is_open": 0, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "HappyHour": "False" + }, + "categories": "Food, Restaurants, Coffee & Tea, Breakfast & Brunch, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-14:45", + "Wednesday": "8:0-14:45", + "Thursday": "8:0-14:45", + "Friday": "8:0-14:45", + "Saturday": "8:0-15:45", + "Sunday": "8:0-15:45" + } + }, + { + "business_id": "eE1VUJ1ZjOv_ee21fSztxg", + "name": "Mattress Firm Cottman", + "address": "2548 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.045254, + "longitude": -75.0560405315, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Home Decor, Shopping, Home Services, Home & Garden, Shades & Blinds, Mattresses, Furniture Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "O3ulREMR1qM7TbtxL0sQ6Q", + "name": "Cathay Xpress", + "address": "1011 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539384228, + "longitude": -75.156795457, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Tours, Local Services, Airports, Airport Shuttles, Hotels & Travel, Limos, Taxis, Transportation", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "LKARmHZQs4cF5_OtE196xw", + "name": "HubBub Coffee", + "address": "3736 Spruce St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509565, + "longitude": -75.1987396, + "stars": 4.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Coffee & Tea, Food Trucks, Food", + "hours": { + "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" + } + }, + { + "business_id": "disg8YUCaHC2-NIUDTTNyA", + "name": "Philadelphia Pregnancy Center", + "address": "201A N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553413, + "longitude": -75.1542032, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Crisis Pregnancy Centers, Diagnostic Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "RgKuzaeMxkvyms2UXq_XQw", + "name": "AAA Philly Overhead Doors", + "address": "2542 E Ann St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9831656, + "longitude": -75.11011, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Garage Door Services, Door Sales/Installation, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "tTzXJ9oXZCCL3Wip6dEoTQ", + "name": "The Crimson Cafe", + "address": "5847 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9618991, + "longitude": -75.2384373, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Soul Food, Southern", + "hours": { + "Friday": "10:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "b0BEvP8q6y4TigPxigLDQA", + "name": "Sweat Fitness", + "address": "45 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515365707, + "longitude": -75.1449960548, + "stars": 2.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Cycling Classes, Gyms", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "YPLfRswyryjjW3VJa-SdaA", + "name": "Ishkabibble's", + "address": "337 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416787531, + "longitude": -75.1487875936, + "stars": 4.0, + "review_count": 722, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Seafood, Cheesesteaks, Burgers, Pizza, Sandwiches", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "8:30-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "lQqHGyMrCfnPJATp7wUrZQ", + "name": "Santucci Square Pizza V", + "address": "2313 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9944495, + "longitude": -75.0970217, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "J1_GoJjDYmjOVmq6D5mAKA", + "name": "RidgeView Apartments", + "address": "6725 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.041415, + "longitude": -75.224289, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "3Bj4z0nL1W85kzYsXJ4U1A", + "name": "Rumble Boxing", + "address": "1520 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494601, + "longitude": -75.1670101, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Boxing, Fitness & Instruction, Active Life", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "5:30-22:0", + "Saturday": "7:0-18:30", + "Sunday": "7:0-19:30" + } + }, + { + "business_id": "jh2GuTfXy0hm3cDaQCXV6g", + "name": "FMF Cleaning Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19160", + "latitude": 40.009879, + "longitude": -75.1498475, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Cleaning, Window Washing, Office Cleaning, Home Services, Professional Services, Home Organization", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "fzftd8EhMnYCXE7D76zCrA", + "name": "McDonald's", + "address": "120 W Oregon", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9137981886, + "longitude": -75.1511147859, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "DriveThru": "True", + "Alcohol": "'none'" + }, + "categories": "Fast Food, Coffee & Tea, Burgers, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "THDT2sGR0efmkqGz6PFkEg", + "name": "Deborah's Kitchen", + "address": "2608 Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9738245, + "longitude": -75.1792592, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "OutdoorSeating": "None", + "Caters": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "Corkage": "False" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "T5PYyOLAsBEjbajP68CpyA", + "name": "Continental Cleaners", + "address": "800 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9375456, + "longitude": -75.1466371, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "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" + } + }, + { + "business_id": "m6kuLG__NpbZpbeKNV6-lg", + "name": "Philly Pretzel Factory", + "address": "132 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949151, + "longitude": -75.159053, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Pretzels, Hot Dogs, Bakeries, Restaurants", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "vaagry98q-pJHzoU8WX0HA", + "name": "PFCU Branch", + "address": "929 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9236409, + "longitude": -75.1626325, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "2fP_YgVovTdPzUNlnTFeQw", + "name": "Spectrum Home Maintenance", + "address": "3559 Byrne Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.083178, + "longitude": -74.9845515, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Contractors", + "hours": null + }, + { + "business_id": "nZTS28H71sFDU5dSRMnrLQ", + "name": "Dennis Pratt Plumbing & Heating", + "address": "2251 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9238767, + "longitude": -75.1847029, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Plumbing", + "hours": null + }, + { + "business_id": "hrxuwAwj7TIgAgo6TkPEMQ", + "name": "Saxbys 11th and Locust", + "address": "234-236 S11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947449137, + "longitude": -75.1593495905, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Coffee & Tea, Food, Juice Bars & Smoothies, Restaurants, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "9:30-17:0", + "Saturday": "7:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "Z09sEigZt5MksIqRt6x7jA", + "name": "City Cigars", + "address": "615 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1232958756, + "longitude": -75.0146139041, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "CoatCheck": "False", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "Smoking": "u'yes'", + "Corkage": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'free'" + }, + "categories": "Nightlife, Tobacco Shops, Lounges, Shopping, Bars", + "hours": { + "Monday": "10:0-0:30", + "Tuesday": "10:0-0:30", + "Wednesday": "10:0-0:30", + "Thursday": "10:0-0:30", + "Friday": "10:0-0:30", + "Saturday": "10:0-0:30", + "Sunday": "10:0-0:30" + } + }, + { + "business_id": "2a5YdnWyr7KIFl2FTFk4Yw", + "name": "Starboard Side Tavern", + "address": "2500 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9759248, + "longitude": -75.126193, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "GoodForDancing": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Bars, Dive Bars, Pubs, Nightlife", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "QVIqk_mjBKjMXj9OR1mGpQ", + "name": "Sun Cleaners", + "address": "603 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491278, + "longitude": -75.2169954, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Dry Cleaning & Laundry, Shoe Repair, Laundry Services, Local Services, Sewing & Alterations, Dry Cleaning", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "LR40dPwDG7bVoIPQM9M78g", + "name": "7-Eleven", + "address": "1501 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9790836429, + "longitude": -75.1596549153, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "rnecTemi_wnY5fjBng77Kw", + "name": "Kayu", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9554942817, + "longitude": -75.1689308789, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "True" + }, + "categories": "Restaurants, Soup, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "6pYdKvd0G2pHEL_lIeqaRA", + "name": "E Cigs International", + "address": "6212 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0357922, + "longitude": -75.218028, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Health & Medical, Tobacco Shops, Arts & Entertainment, Vape Shops, Electronics, Active Life, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "6nsLTDOIE5DrikDTaQ_cYQ", + "name": "AT&T Store", + "address": "248 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949951, + "longitude": -75.14551, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False" + }, + "categories": "Mobile Phone Accessories, Mobile Phones, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "57bce3hS4snqOknTfsiMKw", + "name": "Station Pizza", + "address": "9319 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.086125, + "longitude": -75.044986, + "stars": 2.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "Caters": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Sandwiches, Pizza, Wraps", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "j_ptLwL_NYicKAXtI0S-3g", + "name": "Frankford Hospitals", + "address": "10800 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0711972803, + "longitude": -74.9827623367, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "X1LzdU7gjVSrm4ELizVRDA", + "name": "B & A Appliances Repair", + "address": "3500 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0664183, + "longitude": -75.00294, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Appliances & Repair", + "hours": null + }, + { + "business_id": "7byebxnQrKk9bEwdp_HCWA", + "name": "b2 Salon", + "address": "777 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411431, + "longitude": -75.1655878, + "stars": 3.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Makeup Artists, Eyelash Service", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "DeGqvsBOXXu5jpSaQHjksQ", + "name": "East End Salon", + "address": "219 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9521086, + "longitude": -75.1438554, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Day Spas, Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "_qjkKeAxHyQlmjR_f08W5w", + "name": "Speed Date Philadelphia", + "address": "105 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482306, + "longitude": -75.1439499, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Event Planning & Services, Party & Event Planning, Social Clubs, Arts & Entertainment", + "hours": null + }, + { + "business_id": "xz_RcwDtr8_nHWnSj-oU-A", + "name": "Saladworks", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87642, + "longitude": -75.24698, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': False, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "Caters": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Soup, American (Traditional), American (New), Salad, Vegetarian, Restaurants, Sandwiches", + "hours": { + "Monday": "5:15-21:15", + "Tuesday": "5:15-21:15", + "Wednesday": "5:15-21:15", + "Thursday": "5:15-21:15", + "Friday": "5:15-21:15", + "Saturday": "5:15-21:15", + "Sunday": "5:15-21:15" + } + }, + { + "business_id": "eAzeb04i354i6VZFI4bJRQ", + "name": "Philadelphia Distilling", + "address": "25 E Allen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9656840022, + "longitude": -75.1354179992, + "stars": 5.0, + "review_count": 182, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "HappyHour": "True" + }, + "categories": "Distilleries, Nightlife, Food, Beer, Wine & Spirits, Bars, Cocktail Bars", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "RtmrqFKEtcJJdUkQEiSqDw", + "name": "Brasserie Perrier", + "address": "1619 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501502, + "longitude": -75.1683554, + "stars": 3.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsPriceRange2": "3", + "Corkage": "True", + "BYOBCorkage": "'yes_corkage'", + "RestaurantsTakeOut": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, French", + "hours": null + }, + { + "business_id": "99JbYCWcjo5J7CKJUDkWpg", + "name": "Wingstop", + "address": "9910 Frankford Ave, #262", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0648403503, + "longitude": -74.9837319859, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "lV7zv7jsrLAZ6IslbzQiuA", + "name": "Fine Wine & Good Spirits", + "address": "724 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942176347, + "longitude": -75.1545138263, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "ra6Ejpr6Y5nJL1Um6pzTdg", + "name": "Mustard Greens Restaurant", + "address": "622 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405417, + "longitude": -75.1459758, + "stars": 4.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Chinese, Dim Sum", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "Zxr0o83EgGQcf6wnS7dUXw", + "name": "Jin House", + "address": "1117 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478229, + "longitude": -75.1600295, + "stars": 3.0, + "review_count": 76, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Sushi Bars, Japanese, Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "i-FcfJpx8COXHJuj4PFb3Q", + "name": "Azione", + "address": "241 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948674, + "longitude": -75.145814, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "vP0EREbfTWAeK51PTaQeMA", + "name": "Best In Show Grooming Salon", + "address": "2708 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9739784, + "longitude": -75.1809044, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "kxKai8GE5oDMPevV7oxvbA", + "name": "Tequilas Restaurant", + "address": "1602 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485127, + "longitude": -75.1680322, + "stars": 4.0, + "review_count": 753, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "HasTV": "True", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "3", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "False", + "BYOB": "False", + "HappyHour": "True", + "Corkage": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "CoatCheck": "True" + }, + "categories": "Restaurants, Bars, Nightlife, Mexican", + "hours": { + "Monday": "16:0-21:0", + "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" + } + }, + { + "business_id": "u4ygjA4qLNNp1lp6MpqsFQ", + "name": "Insomnia Cookies", + "address": "1000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9382786, + "longitude": -75.1675345, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Bakeries, Food", + "hours": null + }, + { + "business_id": "0hPp_rLhzOVZ0YRbojvSeQ", + "name": "Montesini Pizza", + "address": "6420 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0295108576, + "longitude": -75.0583856691, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "-mVpEeb0zGMv81_IWoXT5g", + "name": "Pep Boys", + "address": "2491 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9745638, + "longitude": -75.1192382, + "stars": 1.5, + "review_count": 101, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Auto Parts & Supplies, Auto Repair, Automotive, Tires", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "m_WFKz_yIdEm7L4AXeJ6pA", + "name": "Happy Tails Grooming", + "address": "1901 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.084517471, + "longitude": -75.035003642, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Groomers, Pets", + "hours": null + }, + { + "business_id": "jW3DYkTscWLXCNbwSjRVtg", + "name": "Lululemon Athletica", + "address": "1720 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949946, + "longitude": -75.170193, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Yoga, Fashion, Shopping, Men's Clothing, Fitness & Instruction, Active Life, Accessories, Sporting Goods, Sports Wear, Women's Clothing", + "hours": { + "Monday": "0:0-0: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": "11:0-18:0" + } + }, + { + "business_id": "3LaKoLsyhZniWjS-6N1boA", + "name": "Milano Di Rouge", + "address": "1509 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629171, + "longitude": -75.1634193, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Fashion, Shopping, Men's Clothing, Accessories, Women's Clothing", + "hours": { + "Monday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "nUWkp_Z58CLcyFVxJOIL5w", + "name": "The Boom Room", + "address": "1300 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9704045863, + "longitude": -75.1358812675, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Cultural Center, Arts & Entertainment, Recording & Rehearsal Studios, Local Services", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "c3bTW4kOYpIjibqoy-5i_w", + "name": "Artigiano Pizza", + "address": "3804 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.064705, + "longitude": -74.987157, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "yPOVNQu0iU6BR8RPIfIE3Q", + "name": "Crรชpe Town", + "address": "1500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9623509, + "longitude": -75.1637363, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Creperies", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "FJ2JmZGB5rotQ43BxyIp_Q", + "name": "JBCB Properties", + "address": "1818 Market St, Ste 2440", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "kV09n7x7koVyHvd4kPZIMg", + "name": "Media Copy", + "address": "1310 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499129, + "longitude": -75.1626598, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Printing Services, Bookbinding", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "loKMBVzemBJN0RMGwW8K8w", + "name": "Baba Olga's Cafe & Supper Club", + "address": "4700 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0155545, + "longitude": -75.1728699, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "American (New), Restaurants, Event Planning & Services, Arts & Entertainment, Caterers, Music Venues, American (Traditional), Coffee & Tea, Food, Nightlife, Wedding Planning, Venues & Event Spaces, Cafes", + "hours": null + }, + { + "business_id": "aJ539lqzcTThRxA0GAKkxQ", + "name": "Chrissy Nails", + "address": "4042 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084812, + "longitude": -74.970709, + "stars": 3.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "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": "9:0-19:0" + } + }, + { + "business_id": "AYazcc7KcRV8BlVEjuu7kg", + "name": "Delta Iron Works", + "address": "3501 Janney St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.994211, + "longitude": -75.100311, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Garage Door Services, Fences & Gates, Home Services, Metal Fabricators, Local Services, Handyman, Door Sales/Installation", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-15:0" + } + }, + { + "business_id": "7o2Eb6zvYv-P2jHuHlTG_A", + "name": "Secret Garden", + "address": "7631 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0517469381, + "longitude": -75.2352404727, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Nurseries & Gardening, Home & Garden, Home Services, Landscaping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Tbc0uyY1O-Fc18FfTCDqIA", + "name": "Kristina Pizza", + "address": "1901 N Mascher St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9790008, + "longitude": -75.1353151, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "FSgsyY_ofQtAy6PNVcBeYQ", + "name": "Tina's Nail & Spa", + "address": "445 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605192, + "longitude": -75.1578355, + "stars": 4.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Waxing, Beauty & Spas, Nail Salons, Massage, Hair Removal", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "4TCZPKmZV5gEf8igML2aNw", + "name": "Bill Frusco", + "address": "8675 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.043283, + "longitude": -75.009995, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Excavation Services, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "cZ4Es9_BRkfaqA4tC7ilWQ", + "name": "Goodman Plumbing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618676, + "longitude": -75.0465123, + "stars": 4.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Plumbing, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "42iv8H7NqN1f9fSz_NPf4g", + "name": "El Boom Catracho", + "address": "1438 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9358187, + "longitude": -75.1686973, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Latin American, Spanish, American (Traditional), Chicken Wings, Restaurants, Mexican", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "gWJdBPzO0XqMzVDjnlF8TA", + "name": "Hall Of Fame Club", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9054009918, + "longitude": -75.1666567471, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Stadiums & Arenas, Arts & Entertainment", + "hours": null + }, + { + "business_id": "ajGUFDANNSnqUoLvZPCcPw", + "name": "Mace's Crossing", + "address": "1714 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9559201, + "longitude": -75.1683168, + "stars": 3.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "HasTV": "True", + "GoodForKids": "False", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "False", + "GoodForDancing": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "WiFi": "'no'" + }, + "categories": "American (Traditional), Restaurants, Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "mpwqMltxw7_pJjJELDLoeA", + "name": "Casa Papel", + "address": "804 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631864, + "longitude": -75.1412345, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Flowers & Gifts, Printing Services, Cards & Stationery, Graphic Design, Arts & Crafts, Event Planning & Services, Local Services, Professional Services, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "FTOz8_xNk6BBrsY1O_KF8Q", + "name": "Bare Feet Shoes", + "address": "1217 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509179, + "longitude": -75.1608768, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shoe Stores, Fashion, Shopping", + "hours": null + }, + { + "business_id": "t3PkHzVTvPA8qRxKe9TIkQ", + "name": "Booker's Restaurant and Bar", + "address": "5021 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948041, + "longitude": -75.2242388, + "stars": 3.5, + "review_count": 276, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "HasTV": "True", + "CoatCheck": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Event Planning & Services, Nightlife, Salad, American (Traditional), Tapas/Small Plates, Venues & Event Spaces, Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "iRLFBbtyP8dpOKSFi6wXfg", + "name": "Federal Donuts", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503652439, + "longitude": -75.1668518404, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Food, Donuts, Chicken Shop, Restaurants, Coffee & Tea", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "D6T7YvQlBSy6edaIdCLQUg", + "name": "Big Jar", + "address": "55 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514104, + "longitude": -75.1430545, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Books, Mags, Music & Video, Bookstores, Shopping, Coffee & Tea", + "hours": null + }, + { + "business_id": "VLXdtDIywkZ3anJWgplQ-g", + "name": "Trustco Heating & Air", + "address": "10901 Waldemire Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0749103, + "longitude": -74.9836841, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Plumbing, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "wjJ4QBThuRUAz3m5-Wqxkg", + "name": "Ambassador", + "address": "635 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9707616, + "longitude": -75.1479482, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BYOB": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "True", + "CoatCheck": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "Corkage": "False", + "Smoking": "u'no'", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Cocktail Bars, Nightlife, Bars, Sports Bars, Falafel, Restaurants, Mediterranean, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "CSJLpk1Z233hOPoZFsBl-w", + "name": "Helens Nails", + "address": "2701 S Darien St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9154316, + "longitude": -75.1620059, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas, Massage", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Ue1s07RYxb6IDIwZ8sq0Sg", + "name": "Beauty Coliseum", + "address": "1118 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429101, + "longitude": -75.1608524, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Hair Salons, Beauty & Spas, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "Cwz2B0bXZXwCZ6Ru9-P6UA", + "name": "Miracles Jamaican Restaurant and Bakery", + "address": "6635 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0428569974, + "longitude": -75.0737344846, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Caribbean, Food, African, Fast Food, Bakeries", + "hours": null + }, + { + "business_id": "cpnIFN5G_J2UK7PNDT0j0A", + "name": "US Nails", + "address": "9971 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1020936781, + "longitude": -75.0288081542, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "QI7hNd1fCZBWlD6u0RS6nQ", + "name": "Purity Spa", + "address": "1501 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310758, + "longitude": -75.1642466, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Health & Medical, Day Spas, Medical Spas, Skin Care", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "DJt7e6ID5I7Wvc4-Iu6ueQ", + "name": "Junior's Beef And Pork", + "address": "1840 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9266757689, + "longitude": -75.1673920592, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Cheesesteaks, Restaurants, Sandwiches", + "hours": { + "Monday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "TOGQERO4hdon5DoVXHooEw", + "name": "Le Petite Bistro", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8760588, + "longitude": -75.2429838, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Cafes, Restaurants, Modern European", + "hours": null + }, + { + "business_id": "YajautTNwCHcMFKmSkabcg", + "name": "Popi's Italian Restaurant", + "address": "3120 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9115964464, + "longitude": -75.1826359382, + "stars": 3.5, + "review_count": 153, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants, American (New)", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "pQ-oo8Bai2VuTqxy0bhLgQ", + "name": "Kurry Korner", + "address": "1016-18 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553668, + "longitude": -75.1566243, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Japanese, Asian Fusion, Japanese Curry, Thai", + "hours": { + "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" + } + }, + { + "business_id": "xc5Z7nSf2751PtTO_G8bhA", + "name": "Troy Food Cart", + "address": "38TH And Spruce St Corner", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9512903, + "longitude": -75.1992768, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Food, Street Vendors, Food Trucks", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "RbZioknGd6gcVWp67Mujgw", + "name": "US Post Office", + "address": "900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951089, + "longitude": -75.155366, + "stars": 1.5, + "review_count": 51, + "is_open": 0, + "attributes": null, + "categories": "Post Offices, Public Services & Government", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "NB4W5huUdS5YZxHbPNMrqA", + "name": "The Mike Mccann Team - Keller Williams Philly", + "address": "728 S Broad St, FL 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9422651, + "longitude": -75.1664857, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Services, Real Estate Agents, Property Management, Home Services, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "XeDoDjvzfGAE3PUgqhcbZQ", + "name": "Momiji Sushi & Grill", + "address": "522 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422549, + "longitude": -75.1507654, + "stars": 4.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Sushi Bars", + "hours": { + "Monday": "18:0-22:0", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "RkSs_qLitbI320DP245Ebw", + "name": "Teri's Bar", + "address": "1126 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9356619, + "longitude": -75.1586745, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'free'" + }, + "categories": "Nightlife, Restaurants, Bars, Breakfast & Brunch, Diners", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "eO8XNUZBVA6XLEONqipFqw", + "name": "Beer Garden at the Oval", + "address": "Eakins oval", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.9638212374, + "longitude": -75.177462659, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "'beer_and_wine'", + "HasTV": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "CoatCheck": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "HappyHour": "True" + }, + "categories": "Music Venues, Nightlife, Arts & Entertainment, Bars", + "hours": null + }, + { + "business_id": "jigDkvD3IrEl37ID-o14tA", + "name": "Viet Kitchen", + "address": "716 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0315658, + "longitude": -75.1047976, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": null + }, + { + "business_id": "bACIZGdHRFfNtrufH0wMbQ", + "name": "New York Bagel Bakery", + "address": "7555 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9797004, + "longitude": -75.2680846, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "False" + }, + "categories": "Coffee & Tea, Restaurants, Bagels, Food, Caterers, Bakeries, Event Planning & Services, Kosher", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "EuKQDXK_AnBudtbeeRbpOA", + "name": "Professional Aesthetics and Wellness Center", + "address": "1315 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218319, + "longitude": -75.1685885, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Health & Medical, Doctors, Obstetricians & Gynecologists, Laser Hair Removal, Skin Care, Hair Removal, Beauty & Spas, Weight Loss Centers, Medical Spas", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "ImskA2HuVbTc9KQtH0kIjw", + "name": "Quality Discount Tire Service Center", + "address": "3219 Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0568924091, + "longitude": -75.0133543986, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Wheel & Rim Repair, Tires, Auto Repair", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "GzWUL6ctJJnVmWuRzQSLBQ", + "name": "Frontier", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8780277785, + "longitude": -75.2415841072, + "stars": 1.5, + "review_count": 31, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Airport Terminals, Airports, Airlines, Hotels & Travel", + "hours": null + }, + { + "business_id": "w5FjaN7TdoduMUD0CYYD8g", + "name": "Bald Birds Brewing Company", + "address": "4323 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253102, + "longitude": -75.2227694, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Caters": "False", + "BYOB": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Bars, Nightlife, Beer Bar, Food, Breweries", + "hours": { + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "rLhvrwxGREfdE1eMr3bG5Q", + "name": "Sunrise Complete Auto Service", + "address": "300 E Luzerne St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.009905, + "longitude": -75.121077, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Auto Glass Services, Body Shops, Automotive, Towing", + "hours": { + "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-13:0" + } + }, + { + "business_id": "z7GXmSfRl92A_NWB7Zz4Og", + "name": "Green Line Cafe", + "address": "28 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563381, + "longitude": -75.202346, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Breakfast & Brunch, Sandwiches, Restaurants, Coffee & Tea, Food, Cafes", + "hours": { + "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": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "tG5kVhwH8g10gLLjrzZiaQ", + "name": "Queen Village Dog & Cat Grooming Salon", + "address": "745 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389073, + "longitude": -75.1459487, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Services, Pet Sitting", + "hours": null + }, + { + "business_id": "bJJWjoYM8SMB9c4l1VKA1Q", + "name": "Drougie's Pizza", + "address": "3542 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.036958, + "longitude": -75.0415951, + "stars": 2.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': False}" + }, + "categories": "Italian, Pizza, Restaurants, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "_EZHPW0PczhF6yCoApiNNg", + "name": "Advance Auto Parts", + "address": "1001 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373306607, + "longitude": -75.1603285875, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "nnWPSAuwbfnKRVVJmd6www", + "name": "Youma", + "address": "4519 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9492053, + "longitude": -75.2137235, + "stars": 3.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "BikeParking": "False", + "WiFi": "'no'" + }, + "categories": "Event Planning & Services, Senegalese, Restaurants, African, Caterers, Halal", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "kw-MfMhHNzEw3RhTNz-wNw", + "name": "Wills Eye Hospital", + "address": "840 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479144844, + "longitude": -75.1549652295, + "stars": 2.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Doctors, Hospitals, Optometrists, Medical Centers, Ophthalmologists, Health & Medical", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "1MSqiroAeu3ZeOWjtls8Dg", + "name": "Skillfix", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False" + }, + "categories": "Local Services, TV Mounting, Home Cleaning, Home Services, Home & Garden, Garage Door Services, Shopping, Painters, Handyman, Grilling Equipment, Heating & Air Conditioning/HVAC, Furniture Assembly, Fitness/Exercise Equipment, Grill Services, Carpenters", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "HnHAbKQmecWR4VCvub0AdA", + "name": "Max's Brew Bar", + "address": "1050 N Hancock", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966403, + "longitude": -75.13923, + "stars": 2.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "Caters": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "False", + "HappyHour": "True" + }, + "categories": "American (New), Restaurants, Bars, Nightlife, Beer Bar, American (Traditional), Sports Bars", + "hours": { + "Monday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "scAwHI2oLLu11eKNGkIWEg", + "name": "Compass Self Storage", + "address": "1300 Belmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9752636544, + "longitude": -75.2139483691, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Movers, Home Services, Parking, Local Services, Automotive, Truck Rental, Packing Supplies, Shopping", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:30-16:0" + } + }, + { + "business_id": "lIvFAGQA5iO9pR10mShG5Q", + "name": "Forbidden Planet", + "address": "10 N. 3rd Street, Basement Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "WheelchairAccessible": "False" + }, + "categories": "Fashion, Shopping, Used, Vintage & Consignment", + "hours": null + }, + { + "business_id": "xvgNB1eqquyuxghWG7cUjw", + "name": "The UPS Store", + "address": "3720 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509645, + "longitude": -75.1983376, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Notaries, Printing Services, Mailbox Centers, Shipping Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "p-XV3iBrPTeYsTkYOuJILA", + "name": "Jonathan Best Speciality Foods & Cheese", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741672, + "longitude": -75.2030982, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Cheese Shops, Specialty Food, Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "t9genPFreMXsZ-znukJHuw", + "name": "Atomic City Comics", + "address": "638 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420117, + "longitude": -75.1534778, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Comic Books, Hobby Shops, Books, Mags, Music & Video, Toy Stores", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "p5pQ5PKXiEc4yLxsL4TsFA", + "name": "Starbucks", + "address": "254 South 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947897, + "longitude": -75.166424, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "y5aRZEQExOFZwJ2Hj8htbw", + "name": "Verizon Authorized Retailer - Cellular Sales", + "address": "2220 W Oregon Ave, Ste H1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.918432, + "longitude": -75.184507, + "stars": 2.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "None", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Telecommunications, IT Services & Computer Repair, Shopping, Mobile Phones, Mobile Phone Accessories, Local Services, Electronics", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "wZbk5vEGyxtGxLUJ09j-8g", + "name": "Style Camp", + "address": "9 W Highland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076088, + "longitude": -75.205777, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Jewelry, Women's Clothing, Fashion", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "Z2Dh3nBT7bGIS2IVoV2zAw", + "name": "Dunkin' Donuts", + "address": "12055 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0858038, + "longitude": -74.972094, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": null + }, + { + "business_id": "2E_xdmb-eR2ThEAXLY0UUQ", + "name": "Piazza Honda Of Philadelphia", + "address": "6935 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9038423, + "longitude": -75.2253442, + "stars": 3.5, + "review_count": 148, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Auto Repair, Automotive, Body Shops", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-16:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "aoeurSB_Ivxj93TlGgU2vQ", + "name": "Penn Book Center", + "address": "130 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529919776, + "longitude": -75.1925988772, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Bookstores, Books, Mags, Music & Video", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "ZdMr2rrZAYfPVewtd29ifw", + "name": "Kennett", + "address": "848 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9363263, + "longitude": -75.1469373, + "stars": 4.0, + "review_count": 144, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "HappyHour": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Beer Hall, American (New), Gastropubs, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "eox0eTlcTFf1Txwor-b6DA", + "name": "Hyperion Bank", + "address": "199 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9696662, + "longitude": -75.139283, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Financial Services, Banks & Credit Unions", + "hours": { + "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" + } + }, + { + "business_id": "DIG_4Jkj7YxgK7vha3XO6A", + "name": "Red Lobster", + "address": "9140 Roosevelt Blvd E, ACROSS THE STREET FROM NORTHEAST SHOPPING CENTER", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.075949, + "longitude": -75.034346, + "stars": 2.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "'average'", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "WiFi": "u'free'", + "HappyHour": "True" + }, + "categories": "Seafood, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20: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" + } + }, + { + "business_id": "FmYKd0C06vACiDX8WGWFpQ", + "name": "Szollose Plumbing & Heating", + "address": "442 Rector St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.028434, + "longitude": -75.2131963, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Plumbing", + "hours": null + }, + { + "business_id": "5UgrgU1ETU_D78hWQnWn8w", + "name": "Fishtown Richmond Realty", + "address": "240 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9692626, + "longitude": -75.132359, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate Agents, Property Management, Real Estate", + "hours": null + }, + { + "business_id": "tUgyIDPLZxQg7ohm8ZJPAQ", + "name": "My Philly Roofer", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9945911334, + "longitude": -75.0739454663, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Roofing, Home Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0" + } + }, + { + "business_id": "N1a7z4ID9K0Hqz-Zf3V3yw", + "name": "US Inspect", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0693132723, + "longitude": -75.0072478876, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Inspectors", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "pIRZugEcfOAGbH4N-uQ-3Q", + "name": "Arch Cleaners", + "address": "45 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9526981, + "longitude": -75.152999, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": null + }, + { + "business_id": "M7qv_LrFhOb-OIl0ma4DSw", + "name": "Dunkin'", + "address": "1700 JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954123, + "longitude": -75.166819, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-19:0" + } + }, + { + "business_id": "LO5yBY9uoowtq7FsaKPJXA", + "name": "Kraftwork", + "address": "541 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9714957, + "longitude": -75.1273589, + "stars": 4.0, + "review_count": 559, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "HappyHour": "True" + }, + "categories": "Gastropubs, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "NNi37vwG9SFX_Wn4oEJ1xA", + "name": "Beehive Bake Shop", + "address": "1764 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9763043, + "longitude": -75.132394, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Macarons, Bakeries, Cupcakes, Cafes, Donuts, Restaurants, Specialty Food, Food", + "hours": { + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "lV6P5CCe8NmTtrE1ix5Geg", + "name": "Bocci's Steakhouse & Comedy Cafe", + "address": "1400 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9292011, + "longitude": -75.144848, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Steakhouses, Comedy Clubs, Seafood, Nightlife", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "v7NImH-BJ4xUcX1YkjmAPQ", + "name": "Kevin Chou, CPA", + "address": "1522 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9455502, + "longitude": -75.1677397, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Financial Services, Financial Advising, Accountants, Tax Services, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "TJhQ9wS_nuLE383nfWXnqw", + "name": "Major Wing Lee Grocery Market", + "address": "4207 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0090963, + "longitude": -75.1940071, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Delis, Food, Grocery, Sandwiches", + "hours": null + }, + { + "business_id": "9oZc6qwbJfO0SuKXEMh27g", + "name": "Pizza Roma", + "address": "7300 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0495358252, + "longitude": -75.0597809021, + "stars": 3.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "pKzB6k2-SnHp6ZfNK6vB4w", + "name": "Gallagher Memorials", + "address": "3400 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.083677, + "longitude": -75.1748023, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Funeral Services & Cemeteries, Thrift Stores, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "nFFCuRvcmvStV4Mwl6gFBg", + "name": "Veggie Lovers", + "address": "225 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956394, + "longitude": -75.157096, + "stars": 3.5, + "review_count": 137, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False" + }, + "categories": "Soup, Vegetarian, Restaurants, Chinese", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "13:0-21:30", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "8U5EhUUxyGpcNdCWJephPA", + "name": "Bulb", + "address": "2056 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9494469, + "longitude": -75.1759474, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Shopping, Home & Garden", + "hours": null + }, + { + "business_id": "RbjRDH7YDUf7-9F5yMOC4g", + "name": "Optimal Gym", + "address": "325 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409193, + "longitude": -75.1486498, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Trainers, Yoga, Martial Arts, Active Life, Gyms", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-20:30", + "Sunday": "7:0-20:30" + } + }, + { + "business_id": "r2AhwhhigE1k4dIL5uZKrg", + "name": "Chestnut Hill Jewelers", + "address": "8138 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0729031, + "longitude": -75.2026081, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True" + }, + "categories": "Shopping, Local Services, Jewelry, Jewelry Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "8JZ0kn1NcXaa5fCxUpltzQ", + "name": "Anila's Dress Maker", + "address": "6502 Ridge Ave, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.038149, + "longitude": -75.223137, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Women's Clothing, Shopping, Local Services, Fashion, Sewing & Alterations, Professional Services", + "hours": { + "Tuesday": "13:0-17:0", + "Wednesday": "13:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "UeU-2-XK9lh6xMHg7M_gaQ", + "name": "Rocco& Sons Roof Contract", + "address": "8601 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0427547, + "longitude": -75.0102746, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Contractors, Siding, Roofing", + "hours": { + "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" + } + }, + { + "business_id": "A00csfWALqToKolzHRUOlQ", + "name": "Creative Vision Coaching", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466853, + "longitude": -75.1639777, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Career Counseling, Health & Medical, Life Coach, Professional Services, Counseling & Mental Health", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-16:30" + } + }, + { + "business_id": "RrGlQNBklfDA0yUHssRaxw", + "name": "University City Arts League", + "address": "4226 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9521161, + "longitude": -75.2082269, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Specialty Schools, Education, Arts & Entertainment, Art Galleries, Shopping, Community Service/Non-Profit, Art Schools, Art Classes, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "YktkVafPoIrYiKZpC0--bQ", + "name": "Benjamin Lovell Shoes", + "address": "60 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9517932, + "longitude": -75.1454787, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shoe Repair, Fashion, Local Services, Shoe Stores, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "qnprJxrjwuEivitA8V2aEQ", + "name": "Fiorella", + "address": "817 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388677768, + "longitude": -75.156939, + "stars": 4.5, + "review_count": 120, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BikeParking": "False", + "Caters": "False", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "HappyHour": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Pasta Shops, Specialty Food, Food, Italian, Restaurants", + "hours": { + "Monday": "16:0-21: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", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "90uXOQ0oaEaxiO-wJQkaRA", + "name": "Katerina's Pizza", + "address": "10101 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.105194, + "longitude": -75.0320455, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "HasTV": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Pizza, Restaurants, Chicken Wings", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "yIw9cW6siE-vEVYyC8KMKQ", + "name": "Soul D'lysh & Catering", + "address": "1923 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 39.9813918503, + "longitude": -75.1534097959, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "None", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "Ambience": "None", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "False", + "WheelchairAccessible": "False", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessParking": "None", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Food Trucks, Food, Soul Food, Restaurants, Barbeque, American (Traditional)", + "hours": null + }, + { + "business_id": "taVKq3N2vPxeNAHYDJAL5g", + "name": "Cornerstone Bed & Breakfast", + "address": "3300 Baring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9613129, + "longitude": -75.1899803, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Bed & Breakfast, Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "Monday": "8:30-20:30", + "Tuesday": "8:30-20:30", + "Wednesday": "8:30-20:30", + "Thursday": "8:30-20:30", + "Friday": "8:30-20:30", + "Saturday": "8:30-20:30", + "Sunday": "8:30-20:30" + } + }, + { + "business_id": "34-i9B0d0r0575-x6xDTsw", + "name": "Pizzacato", + "address": "248 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95028, + "longitude": -75.145481, + "stars": 3.0, + "review_count": 129, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "eWnm-cQ8a-4KmuIqUm9rLg", + "name": "Bargain Thrift Warehouse", + "address": "4530 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.024165, + "longitude": -75.160116, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Thrift Stores, Shopping", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "96SzgUpXYKLcipfRr_w8wg", + "name": "Fitlife Fitness, Aquatics and Physical Therapy", + "address": "7140 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0590714, + "longitude": -75.1906974, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Rehabilitation Center, Swimming Pools, Education, Health & Medical, Fitness & Instruction, Physical Therapy, Active Life, Massage Therapy, Specialty Schools, Swimming Lessons/Schools, Gyms, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "w5UWnbTFwgLqrbuMuQGvOg", + "name": "US Post Office", + "address": "615 Chestnut St Lbby", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494396, + "longitude": -75.15169, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Public Services & Government, Shipping Centers, Post Offices", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "8:30-12:30" + } + }, + { + "business_id": "A4zsfXGNGeOu37dDMcKTUg", + "name": "Honey Bee Gourmet Deli", + "address": "1034 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9459602, + "longitude": -75.1594404, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "BYOB": "False", + "HasTV": "False" + }, + "categories": "Delis, Restaurants, Convenience Stores, Grocery, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-20:0", + "Wednesday": "6:30-7:30", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "KzsC1sM5PwMY6kWcgs72GA", + "name": "Philadelphia Massage Studio", + "address": "1637 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294868, + "longitude": -75.1682527, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'" + }, + "categories": "Massage Therapy, Health & Medical, Rehabilitation Center, Doctors, Acupuncture, Pain Management, Rolfing, Massage, Reflexology, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "14:0-15:30", + "Friday": "12:30-3:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-23:0" + } + }, + { + "business_id": "bnjzz3F8Nb5E2pymOYJfWA", + "name": "Washington Brothers Import", + "address": "2301 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938817, + "longitude": -75.182574, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services", + "hours": null + }, + { + "business_id": "Mna6U7kUX36l8-dpDt-U-A", + "name": "Gianfranco Pizza Rustica", + "address": "6 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504169, + "longitude": -75.1456794, + "stars": 4.0, + "review_count": 247, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Italian, Pizza, Sandwiches, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "2daynBPzdkiqdW1ecWAZCA", + "name": "Right Off Main", + "address": "125 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296964, + "longitude": -75.2286022, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'upscale': False, 'divey': True, 'classy': False, 'trendy': False, 'hipster': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "n38QafGVzbdjavNHtCcpqA", + "name": "12th Street Cantina", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532957, + "longitude": -75.1594389, + "stars": 3.0, + "review_count": 83, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "MpdPPW1M0aizCCEwy4S3OA", + "name": "U.S. Airways Club", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8806405139, + "longitude": -75.2375623483, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "BikeParking": "False" + }, + "categories": "Bars, Travel Services, Nightlife, Airlines, Airport Lounges, Hotels & Travel, Transportation", + "hours": { + "Monday": "5:30-22:30", + "Tuesday": "5:30-22:30", + "Wednesday": "5:30-22:30", + "Thursday": "5:30-22:30", + "Friday": "5:30-22:30", + "Saturday": "5:30-22:30", + "Sunday": "5:30-22:30" + } + }, + { + "business_id": "SyBdgRHhxsPSAlLPtJVLZw", + "name": "cityHUNT", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533468, + "longitude": -75.1633285, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Scavenger Hunts, Active Life, Event Planning & Services, Party & Event Planning, Marketing, Team Building Activities", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Fznh-uToFJJxTuY0JFT3lg", + "name": "Fine Wine & Good Spirits", + "address": "1935 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673791, + "longitude": -75.169887, + "stars": 2.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "yP1IBeS0hPYqSTB5bzxxZA", + "name": "Tio Pepe Restaurant & Bar", + "address": "6618 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0426014, + "longitude": -75.0747689, + "stars": 4.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BikeParking": "True", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Caters": "True" + }, + "categories": "Nightlife, Bars, Restaurants, Portuguese, Iberian, Seafood", + "hours": null + }, + { + "business_id": "NOSxPZtl8dElAveDgMRsbA", + "name": "Thomas Jefferson University Hospital", + "address": "111 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487610481, + "longitude": -75.1565121199, + "stars": 2.5, + "review_count": 133, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Education, Health & Medical, Colleges & Universities, Family Practice, Medical Centers, Hospitals, Doctors", + "hours": { + "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" + } + }, + { + "business_id": "CFPWVAFSP3Ktfe-cEXeKoA", + "name": "Liberty Real Estate Associates", + "address": "924 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531343, + "longitude": -75.1557466, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Services, Real Estate", + "hours": null + }, + { + "business_id": "dN2whsRNU90vPfocjdTmzQ", + "name": "Baltimore Pet Shoppe", + "address": "4532 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487666, + "longitude": -75.2138752, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pets", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "BnffoBFNuGmNAksel7AX8g", + "name": "Cavanaugh's Restaurant", + "address": "119 S 39th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544307, + "longitude": -75.1999069, + "stars": 3.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}" + }, + "categories": "Burgers, Caterers, Restaurants, Nightlife, American (Traditional), Bars, Event Planning & Services", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "bbWRELNpKXXnFgQMkGVT_g", + "name": "Trolley Car Station", + "address": "3940 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9496602, + "longitude": -75.2026672, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "U3s0z5VAYvOlr4fCSipFpg", + "name": "Cycle Brewerytown", + "address": "2800 B W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9741163, + "longitude": -75.1821029, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Yoga, Active Life, Fitness & Instruction, Cycling Classes", + "hours": { + "Monday": "17:30-19:30", + "Tuesday": "17:30-19:30", + "Wednesday": "8:30-11:0", + "Thursday": "17:30-19:30", + "Friday": "17:30-19:30", + "Saturday": "9:0-11:0", + "Sunday": "9:0-11:0" + } + }, + { + "business_id": "rHLJ0CW60VNonqIL5_jE4Q", + "name": "SEPTA BSL Lombard-South Station", + "address": "500 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444141, + "longitude": -75.1656692, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Trains, Hotels & Travel, Train Stations", + "hours": null + }, + { + "business_id": "BJf5N4JIUYm42yE5n2ERGA", + "name": "US Post Office", + "address": "1602 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9744173, + "longitude": -75.1334223, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Shipping Centers, Local Services, Post Offices", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-12:30" + } + }, + { + "business_id": "4nmafS5eEVKv-Uip2UC5yQ", + "name": "Junk Be Gone", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Junk Removal & Hauling, Office Cleaning, Home Services, Local Services, Home Cleaning, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "HxYMoEFg4mL2XDxfd605Dg", + "name": "PetSmart", + "address": "4640-60 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0315785, + "longitude": -75.1003405, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Training, Pet Stores, Pet Services, Pet Groomers, Pet Sitting", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "rjzbEpSKOkh2pQ0IPQUJ0Q", + "name": "Lattanzio's Linn Cleaners", + "address": "2100 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9244957, + "longitude": -75.1716046, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Sewing & Alterations, Dry Cleaning, Laundry Services", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "n3sRn8jx0zT5ew4tjjrRBw", + "name": "Spring Garden Restaurant", + "address": "400 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9609007304, + "longitude": -75.145153154, + "stars": 4.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "g8PXwe9ftfM4_n7yWrMiaQ", + "name": "Midas", + "address": "854-60 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.062034, + "longitude": -75.0852691, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "FfrMJk5L3weVgVGhpG4c2Q", + "name": "Rustika Pollo a La Brasa", + "address": "3945 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558813, + "longitude": -75.2020031, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "None", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Chicken Shop, Peruvian", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "AdHcFvYr4CtIntZH0WNFyQ", + "name": "Removery Tattoo Removal & Fading", + "address": "1800 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514851225, + "longitude": -75.1705057877, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Doctors, Medical Spas, Skin Care, Health & Medical, Beauty & Spas, Tattoo Removal", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "2aqdv9UuOiO8crPo90nj5A", + "name": "Arts & Crafts Holdings", + "address": "600 Spring Garden St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961156, + "longitude": -75.148472, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate, Commercial Real Estate, Shared Office Spaces", + "hours": null + }, + { + "business_id": "TC0SkzAqSdbmX0bYyvoJ8g", + "name": "McDonald's", + "address": "7613 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.056364, + "longitude": -75.0605151, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "DriveThru": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Fast Food, Restaurants, Food, Coffee & Tea, Burgers", + "hours": { + "Monday": "5:30-0:0", + "Tuesday": "5:30-0:0", + "Wednesday": "5:30-0:0", + "Thursday": "5:30-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "5:30-0:0" + } + }, + { + "business_id": "GZAHv66k9rDSRx_JHDOMpw", + "name": "Steven S Greenbaum, MD", + "address": "1528 Walnut St, Ste 1101, Skin & Laser Surgery Center Of Pennsylvania", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dermatologists, Health & Medical, Doctors", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "zkrKSW5yrb0OPvhwpn-SeA", + "name": "Charm Hair & Skin Studio", + "address": "53 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9513271, + "longitude": -75.1431654, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Skin Care, Beauty & Spas, Eyelash Service, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "S7tZmvSqrpH18cDE_fwVgA", + "name": "Love Park", + "address": "Arch St And 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548784, + "longitude": -75.1663593, + "stars": 3.5, + "review_count": 207, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "0:30-0:30", + "Tuesday": "0:30-0:30", + "Wednesday": "0:30-0:30", + "Thursday": "0:30-0:30", + "Friday": "0:30-0:30", + "Saturday": "0:30-0:30", + "Sunday": "0:30-0:30" + } + }, + { + "business_id": "0Dw5cikYionDC-RKLxY2Aw", + "name": "Dennis' Auto Repair", + "address": "853 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9733029, + "longitude": -75.1235475, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "1kRUUIg0EsHQndMfMC2x9g", + "name": "Creative Silver", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951647, + "longitude": -75.155749, + "stars": 5.0, + "review_count": 174, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Jewelry Repair, Watch Repair, Shopping, Watches, Jewelry, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "10:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "bjkA3ustWdg3EsTLRiUNKA", + "name": "The Inn at Penn, a Hilton Hotel", + "address": "3600 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537829039, + "longitude": -75.1957815881, + "stars": 4.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "dgm6jrUZj-vAWa1OU5rbNQ", + "name": "Yiro Yiro", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0323421405, + "longitude": -75.2142540024, + "stars": 4.5, + "review_count": 163, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BikeParking": "True" + }, + "categories": "Greek, Food, Mediterranean, Falafel, Restaurants, Salad, Caterers, Event Planning & Services", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "yj0SWZvJ0tGwAywoVxPT5A", + "name": "Dig", + "address": "1616 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951201755, + "longitude": -75.1680316, + "stars": 4.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "cXayRrbjhViK99vIarHLJA", + "name": "McCann Painting & Historical Restoration", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Painters, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "wXKiStXyJo0zI4uCwpNFMg", + "name": "Tony's Market", + "address": "153 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.916983, + "longitude": -75.1508328, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "None", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Sandwiches, Grocery, Restaurants, Delis", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "7:0-13:0" + } + }, + { + "business_id": "BKNuaJXC1repEeByzGycxw", + "name": "Art Lair Shave Parlor", + "address": "732 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9627949, + "longitude": -75.1413011, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Salons", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "T9C1od-JorSPXwXgzSqM9Q", + "name": "David's Mai Lai Wah", + "address": "1001 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95549425, + "longitude": -75.1559746, + "stars": 3.0, + "review_count": 522, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}" + }, + "categories": "Seafood, Chicken Shop, Restaurants, Chinese", + "hours": { + "Monday": "16:0-3:0", + "Tuesday": "16:0-3:0", + "Wednesday": "16:0-3:0", + "Thursday": "16:0-3:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-3:0" + } + }, + { + "business_id": "6gzx9Z2rU12pjLXODOB9_w", + "name": "AQ Rittenhouse Apartments", + "address": "2021 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521622, + "longitude": -75.1742557, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True" + }, + "categories": "Apartments, Home Services, Real Estate, University Housing", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "DLQO-0BnlO3emlzZyEBbIQ", + "name": "Spirited Tattooing Coalition", + "address": "4912 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479183, + "longitude": -75.2218571, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Arts & Entertainment, Beauty & Spas, Tattoo", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0" + } + }, + { + "business_id": "RLoGgt2GGC8wHpZ7K2ZbRA", + "name": "OCF Coffee House", + "address": "1745 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446597, + "longitude": -75.1717524, + "stars": 3.5, + "review_count": 148, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Coffee & Tea, Bagels, Internet Cafes", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "rCjSWBrL9DWMZ_ETu5AElg", + "name": "Tired Hands Biergarten", + "address": "2213 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9797416849, + "longitude": -75.1290151477, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Beer Gardens, Nightlife", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "uW1e8m0WJNhLAw2OYajVYA", + "name": "Valley to Summit", + "address": "1528 E Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9761542, + "longitude": -75.130433, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Rafting/Kayaking, Hiking, Rock Climbing", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "cXa1G6GYqpKR3hjw9zR3qA", + "name": "Lou Lou Boutique", + "address": "143 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492427, + "longitude": -75.1618709, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Fashion, Women's Clothing, Jewelry, Accessories, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fFbRLJVbT8DnEbm9sjDuCQ", + "name": "Tradesman's", + "address": "1322 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504938936, + "longitude": -75.1627459377, + "stars": 3.0, + "review_count": 203, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "GoodForDancing": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "HasTV": "True", + "Music": "{u'dj': None, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Barbeque, Nightlife, Beer Bar, Bars, Restaurants, Whiskey Bars", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "iCVrRHR_Yxr6mHCpObnE1g", + "name": "AmeriThai", + "address": "1244 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9239494074, + "longitude": -75.1674575204, + "stars": 4.0, + "review_count": 120, + "is_open": 1, + "attributes": { + "NoiseLevel": "'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Thai, Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "Xeqb2RxA3ApFCThIYOstQA", + "name": "TAP Esports Center", + "address": "924 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9542323, + "longitude": -75.155587, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "LAN Centers, Food, Arcades, Internet Cafes, Arts & Entertainment", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "3WX24d4v-R1OK4xqrcVL7g", + "name": "Lacquer Lounge", + "address": "38 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9513, + "longitude": -75.145563, + "stars": 4.0, + "review_count": 168, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Spray Tanning, Hair Removal, Nail Salons, Waxing, Tanning", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "NjxeaAGpXpxk47KVrx--4g", + "name": "Northern Liberties Mailbox Store", + "address": "702 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624887, + "longitude": -75.1432052, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Home Services, Keys & Locksmiths, Local Services", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "YnVSWZgrwvv6EHckS8fCYw", + "name": "Sweet Ending", + "address": "1300 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490257, + "longitude": -75.1622237, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "G1PbNo1yYxAu7G6b6sXZiw", + "name": "Taco Loco", + "address": "400 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9343722849, + "longitude": -75.1514797566, + "stars": 4.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Ethnic Food, Restaurants, Specialty Food, Food, Mexican, Food Trucks, Food Stands", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "WLe2mbp0wzWfaDgAzyXbMA", + "name": "Greenbriar Club Apartments", + "address": "3901 Conshohocken Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.004102, + "longitude": -75.206847, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "52iW9Eo-EWJZXYYjQ5pAKw", + "name": "Bonner's Irish Pub", + "address": "120 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520039, + "longitude": -75.1784589, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "CoatCheck": "True", + "WiFi": "'free'", + "DogsAllowed": "True", + "HappyHour": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Bars, Nightlife, Dive Bars, Pubs, Irish Pub", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "HpxdtJYWumMuLV9Crvf-Ew", + "name": "Carpenter Lane Garage", + "address": "752 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0436712, + "longitude": -75.1982657, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "7kLE0V9Pid6dx1vD4-jQfQ", + "name": "Maoz Vegetarian", + "address": "248 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412785, + "longitude": -75.1473324, + "stars": 4.0, + "review_count": 159, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Sandwiches, Middle Eastern, Vegetarian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "iii_Pgd7_-bASlcyV3FQHA", + "name": "La Palette", + "address": "129 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546529718, + "longitude": -75.1559135548, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Eyelash Service, Permanent Makeup, Massage, Nail Salons, Beauty & Spas, Skin Care", + "hours": { + "Monday": "11:30-20:30", + "Tuesday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "10:30-20:30", + "Saturday": "10:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "1w40T5J6br425rMvpS1zgQ", + "name": "La Cocina del Cafe", + "address": "1500 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9316737, + "longitude": -75.1684579, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "Caters": "False" + }, + "categories": "Coffee & Tea, Food, Bubble Tea, Restaurants, Cafes, Mexican, Latin American, Breakfast & Brunch", + "hours": { + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "8ymBNifw6TBTTKY5IDhfqw", + "name": "Chestnut Street Philly Bagels", + "address": "1705 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516438387, + "longitude": -75.1690094, + "stars": 3.5, + "review_count": 302, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Caterers, Event Planning & Services, Bagels", + "hours": { + "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:0", + "Sunday": "13:30-14:0" + } + }, + { + "business_id": "YMhQIKOsqhc8y2cjgO-8EA", + "name": "Movies Unlimited", + "address": "3015 Darnell Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0907198, + "longitude": -74.9914677, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Videos & Video Game Rental, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "h2Ncwq8AH_wtGsGmO0XwbQ", + "name": "You Move Me Philadelphia", + "address": "7708 City Ave, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9682609, + "longitude": -75.1753533381, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Local Services, Self Storage, Movers", + "hours": { + "Monday": "7:0-19:30", + "Tuesday": "7:0-19:30", + "Wednesday": "7:0-19:30", + "Thursday": "7:0-19:30", + "Friday": "7:0-19:30", + "Saturday": "7:0-19:30", + "Sunday": "7:30-19:30" + } + }, + { + "business_id": "tQKqrLs16Xi-lFrd3_CBAQ", + "name": "JL Sullivan's Speakeasy", + "address": "Bellevue Bldg, 200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949028, + "longitude": -75.164482, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Nightlife, Tapas Bars, Lounges, Sports Bars, Bars", + "hours": { + "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" + } + }, + { + "business_id": "k3DmkNWPy8af6J538zwYJw", + "name": "CVS Pharmacy", + "address": "7219 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0458195, + "longitude": -75.2319566, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Shopping, Drugstores", + "hours": null + }, + { + "business_id": "grnU6NAQge0ISlDZTXOJBg", + "name": "Condom Kingdom", + "address": "437 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941875, + "longitude": -75.150466, + "stars": 3.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Adult", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "8BrOCC2ULjW5gZVCwv91cA", + "name": "The Dog Zone", + "address": "7735 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0578308, + "longitude": -75.0594769, + "stars": 1.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Pet Groomers, Pets", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "BgQOm2TuoF1UmD4e7BOUjA", + "name": "Jerry's Bar", + "address": "129 W Laurel St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9651094, + "longitude": -75.1389069, + "stars": 3.5, + "review_count": 424, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "CoatCheck": "True", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'" + }, + "categories": "American (New), Bars, Sandwiches, Restaurants, American (Traditional), Nightlife, Cocktail Bars", + "hours": { + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-23:0", + "Friday": "15:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "z3eM7Wb7EsCuJbNz5IYu_Q", + "name": "Bossam Bar", + "address": "719 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94888, + "longitude": -75.153243, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Korean, Japanese, Restaurants, Asian Fusion", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "KzJ_J-U08OhhDJjuW0DCWg", + "name": "Zipperhead", + "address": "407 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941814, + "longitude": -75.149468, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Accessories, Men's Clothing, Fashion, Shopping", + "hours": null + }, + { + "business_id": "llZMN2GpQKtz31-0xaA2Tg", + "name": "Dental Solutions of Roxborough", + "address": "6162 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.03486, + "longitude": -75.21684, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Orthodontists, Health & Medical, Dentists, Cosmetic Dentists, Pediatric Dentists, General Dentistry, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "JxRSBtTNuLULDfKI3YGQSA", + "name": "Asia Bakery", + "address": "115 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540019, + "longitude": -75.1560283, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Bakeries, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "_xkQHl2lkKvPkvVocxwjjQ", + "name": "Pathmark of Cottman Avenue", + "address": "840 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0613939, + "longitude": -75.0865706, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "RAgOpHQ5UqcgsOFInC0VMQ", + "name": "R & A Discount Auto Repairs", + "address": "928 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9387519, + "longitude": -75.1628604, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Body Shops, Auto Repair, Automotive", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "rfFJTymwtgcnSdb1BXb7xw", + "name": "Saxbys 1800", + "address": "1800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514852281, + "longitude": -75.1705109411, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "cXMdeBlGAbmQRo47rd0s0g", + "name": "7-Eleven", + "address": "2201 Walnut St", + "city": "PHILADELPHIA", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512203419, + "longitude": -75.1775576768, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Gas Stations, Automotive, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "MBTM2JWD6aIXpeTnFoMtBQ", + "name": "Parkway 20th And walnut", + "address": "1906 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504659851, + "longitude": -75.1737365598, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "g4aOMPa3a7wHUWXBoA5RTQ", + "name": "Vip Nails & Spa", + "address": "7532 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0553337, + "longitude": -75.0627459, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Hair Removal, Waxing, Health & Medical, Professional Services, Beauty & Spas, Permanent Makeup, Eyelash Service, Nail Salons, Skin Care", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30" + } + }, + { + "business_id": "B8zcvfugwqLqQ_Brg9INwA", + "name": "Sniffles and Friends Dog Walkers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Services, Pet Sitting", + "hours": null + }, + { + "business_id": "5CCWbCvlxPCX3kLSSFTfEA", + "name": "Chestnut Hill Tower Apartments", + "address": "7600 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0732581, + "longitude": -75.1906974, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Apartments, Hotels, Home Services, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "2c3aYeUSQ8p1bmSpo7QTFw", + "name": "John E McGovern & Associates", + "address": "4109 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0224946, + "longitude": -75.2183813, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Food, Financial Services, Ice Cream & Frozen Yogurt, Professional Services, Bookkeepers, Accountants, Tax Services", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "cMXOwg5C_VJLEqHPmj2PPg", + "name": "Clark Park Flea Market", + "address": "43RD St And Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9495541, + "longitude": -75.2092403, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Local Flavor, Flea Markets, Shopping", + "hours": null + }, + { + "business_id": "cNbwhOrfltPDjmouB8xJfA", + "name": "The Sandwich Cafe", + "address": "2400 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93815, + "longitude": -75.183635, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "etZqWE3kh6KKFCf8WkMSaQ", + "name": "Fabufloras", + "address": "2101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Wedding Planning, Event Planning & Services, Florists, Shopping, Flowers & Gifts", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "SyXnI-BnDfjZ7SgRfTbvjQ", + "name": "Superior Shoe Repair", + "address": "138 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949943, + "longitude": -75.1658759, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair", + "hours": { + "Monday": "7:0-17:30", + "Tuesday": "7:0-17:30", + "Wednesday": "7:0-17:30", + "Thursday": "7:0-17:30", + "Friday": "7:0-17:30" + } + }, + { + "business_id": "cvwYlbvxGOtNNNds_r409w", + "name": "Vernie's Soul Food", + "address": "1800 W Eleanor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0273606, + "longitude": -75.1539957, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Soul Food", + "hours": null + }, + { + "business_id": "TUtOrI_GnVwSuHHTTEN8MA", + "name": "Chhaya Cafe", + "address": "1819 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9272228, + "longitude": -75.1663261, + "stars": 4.0, + "review_count": 301, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Coffee & Tea, Sandwiches, Food, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "7:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "aNRpREDMKg5nchFjU-V19w", + "name": "NE Flower Boutique - Northeast Philly", + "address": "11702 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1192616, + "longitude": -75.0183647, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True", + "RestaurantsDelivery": "None", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "Open24Hours": "True" + }, + "categories": "Flowers & Gifts, Florists, Shopping, Floral Designers, Wedding Planning, Event Planning & Services, Gift Shops", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "0ievJ8EHvr1YjXA1_I-YUg", + "name": "Shifty's Taco", + "address": "2730 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9742043947, + "longitude": -75.1815459547, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Tex-Mex", + "hours": { + "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": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "QKCpN2DE_iz5om4tdaWndw", + "name": "Slack's Hoagie Shack", + "address": "2499 Aramingo Ave, Ste F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.975726, + "longitude": -75.119743, + "stars": 3.5, + "review_count": 79, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sandwiches, Restaurants, Salad, Delis", + "hours": { + "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-21:0" + } + }, + { + "business_id": "EvYeRMbG9XlEkafCJfnovA", + "name": "Bruno's", + "address": "9800 Germantown Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.086094, + "longitude": -75.230789, + "stars": 3.0, + "review_count": 114, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BYOB": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "HasTV": "False" + }, + "categories": "Italian, Brazilian, Coffee & Tea, Breakfast & Brunch, Breweries, Restaurants, Brewpubs, Food", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "S6vez0X3gxURb9NUViVXcQ", + "name": "Loft Bar", + "address": "1439 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944025, + "longitude": -75.166676, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Smoking": "u'yes'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "True", + "NoiseLevel": "u'very_loud'", + "Music": "{'dj': True}", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "CoatCheck": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HappyHour": "True" + }, + "categories": "Lounges, Nightlife, Bars, Hookah Bars", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "wyDWf4-YO_CMgW3XiMMM4g", + "name": "Cedrone's Flowers", + "address": "800 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9433021, + "longitude": -75.15540651, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "jnIbjpGeAcdHxZlzbvSoGA", + "name": "AT&T Store", + "address": "2201 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224477597, + "longitude": -75.1697418094, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Mobile Phones, Shopping, IT Services & Computer Repair, Local Services, Telecommunications, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "1WAGu6OZiH3hkH16G9JCXw", + "name": "Verizon Wireless Authorized Retailer", + "address": "2300 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.915489, + "longitude": -75.188281, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Professional Services, Home Services, Internet Service Providers, Mobile Phones, Shopping, Electronics", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "NiLbn86tt2CTObFqsfwLRw", + "name": "Jason Neustadter, MD", + "address": "1528 Walnut St, Ste 1101, Skin & Laser Surgery Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Beauty & Spas, Dermatologists, Health & Medical, Laser Hair Removal, Doctors, Hair Removal, Skin Care", + "hours": null + }, + { + "business_id": "fUKvUex3TPrxH3n_9pR9FQ", + "name": "Pagano's Steaks", + "address": "7617 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0704904, + "longitude": -75.1569826, + "stars": 3.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Sandwiches, Food, Cheesesteaks, Specialty Food, Restaurants, Ethnic Food", + "hours": { + "Monday": "10:0-23:30", + "Tuesday": "10:0-23:30", + "Wednesday": "10:0-23:30", + "Thursday": "10:0-23:30", + "Friday": "10:0-23:30", + "Saturday": "10:0-23:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "vwAhm3pRjCEz_jNXr9vMaA", + "name": "Matt & Marie's", + "address": "100 N 18th St, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9558026, + "longitude": -75.1694544, + "stars": 4.0, + "review_count": 201, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "GoodForKids": "True", + "WiFi": "'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Delis, Italian, Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-14:0", + "Thursday": "10:0-14:0", + "Friday": "10:0-14:0" + } + }, + { + "business_id": "uaA4U64_XZMM-VkvjKB67w", + "name": "Funhouse", + "address": "720 S. 5th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402338, + "longitude": -75.1511539, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Jewelry, Used, Vintage & Consignment, Antiques, Shopping", + "hours": null + }, + { + "business_id": "0oNiXwMtqXIrI0QEJphn1Q", + "name": "The Playhouse 822", + "address": "822 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687706, + "longitude": -75.160512, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "HasTV": "True", + "BikeParking": "False" + }, + "categories": "Hookah Bars, Bars, Food, Nightlife, Dance Clubs", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "Hd_nssBYzYDdwd2_i1dfYQ", + "name": "Aleksandra Ambrozy Makeup & Hair Artistry", + "address": "1118 Pine St, Unit a", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.944762, + "longitude": -75.160567, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Makeup Artists, Beauty & Spas, Hair Stylists, Hair Salons", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "E2HM4u24stI2Rai4PGC27Q", + "name": "Sweet Frogs Frozen Yogurt", + "address": "8500 Henry Ave, Ste 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0631436, + "longitude": -75.2357443, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts", + "hours": null + }, + { + "business_id": "Teabe43lPy9IXdBlIMgn2g", + "name": "European Wax Center", + "address": "1502 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.973328, + "longitude": -75.134237, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Skin Care, Beauty & Spas, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "3LI8UDH94zmJxTTVm2rXIA", + "name": "Relievus", + "address": "9815 Roosevelt Blvd, Unit J", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0856834, + "longitude": -75.0221416, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Neurologist, Health & Medical, Medical Centers, Doctors, Pain Management", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "3QPAh9VvYNTnqAFgBeBcng", + "name": "Alexander Inn", + "address": "301 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946396818, + "longitude": -75.1609669488, + "stars": 4.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Event Planning & Services, Hotels & Travel, Bed & Breakfast, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "x7gEX6dthpJvoOafV1XHaA", + "name": "Cook", + "address": "253 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488681, + "longitude": -75.1741267, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False" + }, + "categories": "Adult Education, Specialty Schools, Kitchen Supplies, Restaurants, Cooking Schools, Education, Kitchen & Bath, Home & Garden, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "YXqqSPG3M3-pnJW9FjQfWg", + "name": "Chillin Pizza", + "address": "6545 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9216112, + "longitude": -75.2315848, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "cbmX8n3ruCXz1dkyetEnaA", + "name": "Avanda Flower Shop", + "address": "401 S16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9457807091, + "longitude": -75.1682639122, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "12:0-18:30", + "Tuesday": "12:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Npx4gS9yp1asWrW3VNY_AA", + "name": "Health Connections Center Inc", + "address": "530 S 2nd St, Ste 106", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414737, + "longitude": -75.1459837, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Colonics, Health & Medical, Naturopathic/Holistic, Doctors", + "hours": { + "Tuesday": "18:0-21:0", + "Thursday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "L7ds4L1huaAAjE4ctmt-Rw", + "name": "Mayfair Fitness", + "address": "7416 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0382087089, + "longitude": -75.037385188, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Trainers", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "5:30-20:0", + "Saturday": "7:30-18:30", + "Sunday": "7:30-18:30" + } + }, + { + "business_id": "1YkxGFLXEJIW4oLgEUcqKw", + "name": "Bravo Pizza & Halal Food", + "address": "3748 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0106311, + "longitude": -75.1515396, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza, Halal", + "hours": null + }, + { + "business_id": "a0rBn7usm4HTnPcz_Angmw", + "name": "Dunkin'", + "address": "125 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547153, + "longitude": -75.2020952, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-22:30", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "aqtrgURADdcKupFyWig_bQ", + "name": "Chez Rosaire Haitian Market And Restaurant", + "address": "121 W Tabor Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0323244, + "longitude": -75.1231028, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "None" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "ESgGX4_yw6pnVVQA-oyHsg", + "name": "Little Thai Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.0, + "review_count": 189, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "kOmhn5Eo6AWzMVL6ALRq2Q", + "name": "Amazing Crab House", + "address": "604 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941011, + "longitude": -75.1458433, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Smoking": "u'outdoor'", + "CoatCheck": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': False}", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Bars, Sports Bars, Nightlife, Southern, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "DGeUJFwqY7Y_rNL_naQHAQ", + "name": "Rocket Tan", + "address": "3629 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591871, + "longitude": -75.1943676, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Tanning, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0" + } + }, + { + "business_id": "LCXRkGG1RhisKLVTHH3jiQ", + "name": "Asian Fusion & Steak", + "address": "2647 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9167625, + "longitude": -75.1690051, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Asian Fusion, Restaurants, Sushi Bars", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "MPQww2b74ASo1CW05BpubA", + "name": "Subway", + "address": "1100 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428357, + "longitude": -75.1604151, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Restaurants, Sandwiches, Fast Food", + "hours": null + }, + { + "business_id": "bzI37p4xLwtyWTKUEZ4GBA", + "name": "Max Weiner Fine Jewelers", + "address": "805 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490077, + "longitude": -75.1543336, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Jewelry, Wholesale Stores, Pawn Shops, Watches, Shopping, Antiques", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "Vz_KIz6gWmtMKbbDaXO-Eg", + "name": "Luxe Nail Bar", + "address": "212 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536562, + "longitude": -75.2030044, + "stars": 3.0, + "review_count": 107, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "fJ5H1bY0I91C3XFpdqv8Tw", + "name": "Fireside Camp Supply", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.12, + "longitude": -75.01, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hiking, Active Life, Outdoor Gear, Hobby Shops, Sporting Goods, Shopping", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "8:0-19:0" + } + }, + { + "business_id": "nKdvOAenRN4WllzGJ3hd4g", + "name": "Win Win", + "address": "931 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961891, + "longitude": -75.154075, + "stars": 4.5, + "review_count": 102, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "GoodForDancing": "False", + "Smoking": "u'no'", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Cafes, Bars, Nightlife, Food, Coffee & Tea, Cocktail Bars", + "hours": { + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "NswyW1E_C9hsKdW5oOF_Tg", + "name": "Royal Tea Truck", + "address": "40th St & Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529301182, + "longitude": -75.2028094667, + "stars": 4.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Trucks, Specialty Food, Bubble Tea, Ethnic Food, Taiwanese, Restaurants, Food", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0" + } + }, + { + "business_id": "c3UFFHR5j8e0pQZLOMWP9g", + "name": "Kanell Jewelers", + "address": "134 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484492, + "longitude": -75.154369785, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Jewelry, Local Services, Watches, Shopping, Jewelry Repair", + "hours": { + "Wednesday": "10:0-16:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:30", + "Saturday": "10:0-16:30" + } + }, + { + "business_id": "6oIrAMeAol4RxfIxaTuePw", + "name": "Sharps Kerry Dr Dentist", + "address": "1612 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295606, + "longitude": -75.1640874, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, General Dentistry, Health & Medical", + "hours": null + }, + { + "business_id": "EhPoBZIeHCfrFPl3Rqcg-Q", + "name": "Wrap Shack", + "address": "112 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496367181, + "longitude": -75.1587568223, + "stars": 3.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Sports Bars, Bars, Mexican, Nightlife, Tacos, Wraps, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "aPLhrCU3vkFM3Ius0CbFPg", + "name": "Healthy Paws Pet Insurance & Foundation", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Pet Insurance, Insurance, Pet Services, Pets", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "7j-s7IsivJLszx0s0w_QNw", + "name": "Montego Grill", + "address": "5222 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9568403, + "longitude": -75.2263347, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Bars, Trinidadian, Nightlife, Caribbean, Chicken Wings", + "hours": { + "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" + } + }, + { + "business_id": "82lRUyC9iKqI3Z4BBLCvyA", + "name": "Mavis Discount Tire", + "address": "2749 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078109502, + "longitude": -75.1742731032, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-20:30", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "9kYR383I5IumdKEFTAsrxQ", + "name": "Philly Style Bagels", + "address": "1451 E Columbia Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9744268, + "longitude": -75.1326498, + "stars": 4.0, + "review_count": 185, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bagels", + "hours": { + "Monday": "7:0-13:0", + "Thursday": "7:0-13:0", + "Friday": "7:0-13:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "AwvhobfqOJNBnbXQ_pB3pw", + "name": "Chix & Bowls", + "address": "28 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524750756, + "longitude": -75.1735316558, + "stars": 4.0, + "review_count": 142, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "OutdoorSeating": "None" + }, + "categories": "Seafood, Restaurants, Sandwiches, Korean, Asian Fusion, American (Traditional), Chicken Wings, Comfort Food", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "9kfDDNapNWKF5B41X27HkA", + "name": "Best Buy South Philadelphia", + "address": "2300 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9158008, + "longitude": -75.1390352, + "stars": 2.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Photography Stores & Services, Electronics, Computers, Shopping, Home & Garden, Department Stores, Fashion, Appliances", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0" + } + }, + { + "business_id": "UQNQzgy32KycsODdErBUpw", + "name": "Flat Iron", + "address": "26 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9135752232, + "longitude": -75.1487063865, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "CoatCheck": "False", + "RestaurantsReservations": "True" + }, + "categories": "Bars, Nightlife, Sports Bars, Beer, Wine & Spirits, Food, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "7QfRLE_ti1yA0NqTWKLjdw", + "name": "La Viola Ovest", + "address": "252 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9480118, + "longitude": -75.1680247, + "stars": 3.5, + "review_count": 209, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "KDRKXax6rpTCdHf43nqQcw", + "name": "The Penthouse Club", + "address": "3001 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9854586, + "longitude": -75.08589, + "stars": 3.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "True", + "Smoking": "u'yes'" + }, + "categories": "Pubs, Lounges, Nightlife, Steakhouses, Adult Entertainment, Restaurants, Strip Clubs, Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "sYWl8GUvtCJFSYEBA58zdQ", + "name": "Headliners Barber Shop", + "address": "4036 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0743549839, + "longitude": -75.0323545626, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "fuTio4avbu27o-XYk7k2Mw", + "name": "Jefferson Urgent Care - Washington Square - Jefferson Health 20", + "address": "700 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9478762053, + "longitude": -75.1533981565, + "stars": 3.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Urgent Care, Health & Medical", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "FhwTEGqdir75uyXZqWqxlw", + "name": "Big Gay Ice Cream", + "address": "1351 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9437382492, + "longitude": -75.1650942516, + "stars": 3.5, + "review_count": 404, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "DriveThru": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Ice Cream & Frozen Yogurt, Party & Event Planning, Event Planning & Services, Food, Desserts", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "7HE_mWkvZ8GxsP0sLP-_ng", + "name": "The PokรฉSpot", + "address": "1804 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515786, + "longitude": -75.1706125, + "stars": 4.0, + "review_count": 99, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'" + }, + "categories": "Fast Food, Poke, Food, Restaurants, Hawaiian, Japanese", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "AWzvmAw4X0FEMuYDa3CrQA", + "name": "Rick's Green Lane Garage", + "address": "527 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0344637, + "longitude": -75.2147459, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "94WmO8fa7AoOhl_ojRRcGw", + "name": "Elegance Hair Design", + "address": "923 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555635, + "longitude": -75.1551081, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "0X8oDzOK9HMMP3I7cwwYsg", + "name": "Yd Hardwood Floors", + "address": "1900 Washington Ave, Unit E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9385487, + "longitude": -75.1749623, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Flooring, Refinishing Services, Building Supplies", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "bi-o0KPezuAfK6xGIDWM8g", + "name": "Philadelphia Vision Center", + "address": "2536 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0727786994, + "longitude": -75.0340655545, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Optometrists, Health & Medical, Eyewear & Opticians, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "wa3q5TWk2uQITvYh73IwHQ", + "name": "CrossFit Prime", + "address": "220 Geiger Rd, Unit 106", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1089584, + "longitude": -75.0499348, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Trainers, Nutritionists, Health & Medical, Gyms, Fitness & Instruction, Active Life", + "hours": null + }, + { + "business_id": "ZFr7_g4Jp1yhwkUeHzqSWQ", + "name": "Bright Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 2.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Home Cleaning", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "nBtIu2PasIHzlZMD_v2nfg", + "name": "Germantown Biergarten", + "address": "8500 Essington Ave, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8946127289, + "longitude": -75.2292965411, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "5:15-22:0", + "Tuesday": "5:15-22:0", + "Wednesday": "5:15-22:0", + "Thursday": "5:15-22:0", + "Friday": "5:15-22:0", + "Saturday": "5:15-22:0", + "Sunday": "5:15-22:0" + } + }, + { + "business_id": "vR43f5X0ZZHZ3Si8MpXzew", + "name": "Circle Compost", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Nurseries & Gardening, Local Services, Recycling Center, Shopping, Home & Garden", + "hours": { + "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": "10:0-16:0" + } + }, + { + "business_id": "bLR4wS2pcve9ode2Z-h4Ig", + "name": "Tooba Fashions", + "address": "5207 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9573479, + "longitude": -75.2259824, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Fashion, Shopping", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "wrQB8peQ0H4Oqd5Dszz6NA", + "name": "Tattoo Odyssey", + "address": "8012 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.062343, + "longitude": -75.0559355, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Tuesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Saturday": "13:0-18:0" + } + }, + { + "business_id": "mTQaqMlwbYivhRdSZqKAWA", + "name": "Michael L Mendlow, DDS", + "address": "8505 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0762246, + "longitude": -75.2063897, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Health & Medical, Oral Surgeons, Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "8:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "fq1yCVBgBB7s6V-D68NO1g", + "name": "Cafe Mi Quang", + "address": "3324 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9984294, + "longitude": -75.1102539, + "stars": 5.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:30-19:0", + "Sunday": "8:30-19:0" + } + }, + { + "business_id": "6W6qogKV7x6hdloEo9WC8w", + "name": "Cinemark University City Penn 6", + "address": "4012 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9538571, + "longitude": -75.2032469, + "stars": 2.5, + "review_count": 244, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "False", + "HappyHour": "False", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False" + }, + "categories": "Cinema, Arts & Entertainment, Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "GMQew93RTcPVK09i5AVXiA", + "name": "Rita's Italian Ice", + "address": "239 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414439, + "longitude": -75.1471094, + "stars": 4.0, + "review_count": 86, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shaved Ice, Desserts, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "twj9nh0N4cr-8OgOlsk1xw", + "name": "Spring Garden Cleaners", + "address": "1941 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963911, + "longitude": -75.170781, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services, Dry Cleaning, Sewing & Alterations, Shoe Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "H0XGVaiFWuyYSz6WMIBJWg", + "name": "Nadeau - Furniture with a Soul", + "address": "4131 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0228673, + "longitude": -75.2188285, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Furniture Stores, Shopping, Home Decor, Home & Garden, Wholesale Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "z1Ak92zJkn0nHfsYh4e3mg", + "name": "Mission Escape Games", + "address": "707 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497346, + "longitude": -75.1526048, + "stars": 5.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "ByAppointmentOnly": "True" + }, + "categories": "Escape Games, Active Life", + "hours": { + "Monday": "15:0-21:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "12:0-22:30", + "Saturday": "10:30-22:30", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "WZrewAhx0q7g_kcIQQeHfQ", + "name": "Sook Hee's Produce & Squeeze Juice Bar", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544249402, + "longitude": -75.1685428619, + "stars": 4.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Specialty Food, Food, Grocery, Fruits & Veggies, Juice Bars & Smoothies", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "UCxfP4Lu3SxSh6U2fE8qcg", + "name": "Fishtown Pizza", + "address": "607 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9716784, + "longitude": -75.1269349, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Burgers, Pizza, Cheesesteaks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "7OtVGStKeahBg_7oVgJr9w", + "name": "Inkadelphia", + "address": "2834 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9945058954, + "longitude": -75.139805496, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BikeParking": "False", + "WiFi": "u'free'" + }, + "categories": "Piercing, Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "airww_vmo32XbKt_6LAWnw", + "name": "Dollar Days Plus", + "address": "309 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9535265, + "longitude": -75.2181452, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Discount Store", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "vrx-YThMm8N6pLr7YkXINA", + "name": "R&B Nail Salon", + "address": "7950 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.075833, + "longitude": -75.085183, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:30" + } + }, + { + "business_id": "y7IbpgftK97lerMOrgHFoA", + "name": "United Airlines", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8757359, + "longitude": -75.2493279, + "stars": 2.0, + "review_count": 61, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Airlines", + "hours": { + "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" + } + }, + { + "business_id": "ceHw5IvTMXThwG6Bi1L8lg", + "name": "Sun Tan City", + "address": "6024 Ridge Ave, Ste 106", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322466, + "longitude": -75.2141304, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Spray Tanning, Tanning Beds, Tanning", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "6eNaNLgDCWsuez7GOLCNTA", + "name": "Kiehl's", + "address": "1737 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501337, + "longitude": -75.1704821, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Skin Care, Shopping, Cosmetics & Beauty Supply, Beauty & Spas", + "hours": null + }, + { + "business_id": "Aral3Kbhv-LmR7gLINzrxA", + "name": "Interstate Lift", + "address": "4726 Blakiston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0406832, + "longitude": -75.0126936, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobility Equipment Sales & Services, Local Services, Shopping, Elevator Services, Medical Supplies, Automotive", + "hours": { + "Monday": "8:30-16:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "kw0KN4KjzPcDuZPyVbq0TQ", + "name": "Franklin Cleaners", + "address": "1806 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9631392, + "longitude": -75.1682846, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "sV6up2rehuTegmfo3uYUtA", + "name": "City Winery - Philadelphia", + "address": "990 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952533, + "longitude": -75.1562439278, + "stars": 2.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "CoatCheck": "False", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True" + }, + "categories": "Music Venues, American (Traditional), Venues & Event Spaces, Wineries, Arts & Entertainment, Nightlife, Restaurants, Event Planning & Services, Bars, Wine Bars, American (New), Food", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "DutymeNUKwy8N2pAYvukRw", + "name": "Salon Pourquoi", + "address": "246 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949128, + "longitude": -75.1779879, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "False", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas, Hair Removal, Hair Salons", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "OeE7CgEfECz0onTTF07xvw", + "name": "Ritz Five", + "address": "214 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9468170875, + "longitude": -75.1455080509, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": null + }, + { + "business_id": "XwIN2RaaJEg8ztFWTAPqEQ", + "name": "Jefferson Square Park", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933608, + "longitude": -75.150175, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "aQDNvFHkKkKuXLfzAjZhXQ", + "name": "Satya Juice", + "address": "700 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404951, + "longitude": -75.1517106, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Specialty Food, Food, Juice Bars & Smoothies, Farmers Market, Health Markets, Food Delivery Services", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-22:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "gOyOVDYXO8zkj-nCIwZd1w", + "name": "Power Plant Productions", + "address": "230 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9547232, + "longitude": -75.1431763, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "1XxEqx1h0xpPLkqiqQn3QA", + "name": "Rikumo", + "address": "1216 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948951, + "longitude": -75.161346, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Home Services, Home & Garden, Interior Design, Personal Shopping, Flowers & Gifts, Jewelry, Gift Shops, Shopping, Home Decor, Kitchen & Bath", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "7eiGKDBo7qymeasy-uq1qQ", + "name": "Ritz At the Bourse", + "address": "400 Ranstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492886, + "longitude": -75.1477118, + "stars": 4.0, + "review_count": 103, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Cinema", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "rIqkOMxkeoqvUzl909gNmQ", + "name": "Kiwi Frozen Yogurt", + "address": "3606 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9545832568, + "longitude": -75.1948285103, + "stars": 3.5, + "review_count": 124, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Tozj3jTcnclmQKlNViY7SA", + "name": "Volvรฉr", + "address": "300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9467935, + "longitude": -75.165297, + "stars": 3.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'quiet'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsAttire": "u'dressy'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "4", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True" + }, + "categories": "Tapas/Small Plates, Diners, Bars, Restaurants, Nightlife, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "qmNgEkCHUP6Hjg233Um34A", + "name": "Maria's Hair Braiding Shop", + "address": "276 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9549597, + "longitude": -75.2261875, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "IoEjQnHm67nkTRdlIb5FoA", + "name": "Sip-N-Glo Juicery Rittenhouse", + "address": "257 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486826, + "longitude": -75.1740209, + "stars": 4.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Juice Bars & Smoothies, Food", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "WlqdFsFjvZgpoWi-jJCspw", + "name": "Magic Hands Handyman", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9938284, + "longitude": -75.1399443, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Handyman, Contractors, Flooring, Drywall Installation & Repair, Roofing, Home Services, Professional Services, Painters, Pressure Washers, Junk Removal & Hauling, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "sXxYeDRZN_2Rp12QF3Q0gQ", + "name": "Coins Restaurant and Pub", + "address": "400 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9520404, + "longitude": -75.147515, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': False, u'lot': False, u'validated': False}", + "DriveThru": "False", + "BYOB": "False", + "WiFi": "u'free'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "uKEZQ_j3B8kMd-ThoGZDYQ", + "name": "Dunkin'", + "address": "6110 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9288577, + "longitude": -75.229312, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "None" + }, + "categories": "Donuts, Food, Coffee & Tea, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "zD0jDAeVSoKuEd1RYg_6HQ", + "name": "The Homework Crew", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.12, + "longitude": -75.01, + "stars": 1.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Home Services, Home Cleaning", + "hours": null + }, + { + "business_id": "KNghZPPBf4JA8fsG_qaHKg", + "name": "Il Polpo", + "address": "9825 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0902817564, + "longitude": -75.0326782465, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Mediterranean, Uzbek, Italian, Russian", + "hours": { + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-22:30", + "Saturday": "16:0-22:30", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "oe8gfIXFgwbzij35f-QfsQ", + "name": "Envirotech Heating and Cooling", + "address": "1634 S Beulah St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9283173, + "longitude": -75.1576891, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-11:0" + } + }, + { + "business_id": "qaPADjsU6c0Ufho0zdL6Yw", + "name": "Azure", + "address": "931 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9648195, + "longitude": -75.1402322, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "HgjHiBZtYXgpsBhEITn-EA", + "name": "KFC", + "address": "161 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0324851868, + "longitude": -75.1785321, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "True" + }, + "categories": "Chicken Wings, Fast Food, Restaurants, Chicken Shop", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-18:0", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "GtLs9oOfNzBlR7JUehCVrQ", + "name": "Hamilton Restaurant", + "address": "4008 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9569323, + "longitude": -75.2024667, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "5:0-15:0", + "Tuesday": "5:0-15:0", + "Wednesday": "5:0-15:0", + "Thursday": "5:0-15:0", + "Friday": "5:0-15:0", + "Saturday": "5:0-15:0" + } + }, + { + "business_id": "GgkFADywPR-BU4T25H8K-w", + "name": "West Philly Tool Library", + "address": "1314 South 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9426904, + "longitude": -75.2104835, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "17:30-20:30", + "Tuesday": "17:30-20:30", + "Wednesday": "17:30-20:30", + "Thursday": "17:30-20:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "L4TYFwhUHYoDmkUKfUUqCg", + "name": "Giant Food Store", + "address": "2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.078233551, + "longitude": -75.0271404524, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Farmers Market, Grocery, Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "A0zVp_iZadoSrirJrSkpeQ", + "name": "PAWS Spay/Neuter & Wellness Clinic", + "address": "2900 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387267, + "longitude": -75.1923844, + "stars": 3.5, + "review_count": 81, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": null + }, + { + "business_id": "QPl9wksjgU8t2SjvSCBx1w", + "name": "J Karma Boutique", + "address": "62 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9518339, + "longitude": -75.1453962, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shoe Stores, Jewelry, Shopping, Accessories, Fashion", + "hours": { + "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", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "zE1ukT4dVBV6Wk-reSpWHA", + "name": "Gaetano's", + "address": "3330 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.06821, + "longitude": -75.0068299, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": null + }, + { + "business_id": "PoYIk44V6bwUNU1EQWJiXQ", + "name": "We Rock the Spectrum - Northeast Philadelphia", + "address": "12357-59 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.096291, + "longitude": -74.974298, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Active Life, Playgrounds, Kids Activities", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "9P0NX-RMC0V8JPbZBM4R6g", + "name": "Triangle Dog Park", + "address": "898 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9739454, + "longitude": -75.1226585, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pets, Dog Parks, Active Life, Parks", + "hours": null + }, + { + "business_id": "006GkdbyGrW9rs8jBSjokQ", + "name": "Coleman and Turner Dental Associates", + "address": "1601 Walnut St, Ste 720", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "0fGD3Ea30DywMORW6vD2Yw", + "name": "XpresSpa", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895756, + "longitude": -75.2284302, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Nail Salons, Skin Care, Massage, Beauty & Spas, Day Spas", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "-k8xRvR5UUSjOaefkVgzLA", + "name": "Mattress Firm Manayunk", + "address": "4121 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0226934, + "longitude": -75.2186059, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Furniture Stores, Home & Garden, Shades & Blinds, Shopping, Mattresses, Home Decor, Home Services", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "c3x0Tg8MUfQMSJkd67J7ew", + "name": "Club Ozz", + "address": "1155 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9686586, + "longitude": -75.1361214, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "YZteQZSWaSw-eGjpnwCL6w", + "name": "Lounge 125", + "address": "125 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9476017, + "longitude": -75.1444627, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": null + }, + { + "business_id": "iEK8ExR1z2C2qaVKzl0nrw", + "name": "Leroy E Kean", + "address": "1821 Sansom St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511419, + "longitude": -75.1714788, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Real Estate, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "oZ9DSo4FCPcxE0bjgPRk5A", + "name": "Heritage Nails", + "address": "2000 Hamilton St, Ste 108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962277, + "longitude": -75.172359, + "stars": 3.5, + "review_count": 121, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ETjyPeqYHYkd3m0VR2k6uA", + "name": "New Noodle Heaven", + "address": "1148 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9238087, + "longitude": -75.1659356, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Corkage": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'" + }, + "categories": "Vegetarian, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "_YkEJDR2wr23_ATOd7H3eA", + "name": "Museum Restaurant", + "address": "2601 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9657459198, + "longitude": -75.1810451801, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "W6CV25UWatpZuD42o-Lcww", + "name": "East King Buffet", + "address": "9171 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.95421, + "longitude": -75.18417, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "SWVNaTxWXg1yiWGMYsRAmg", + "name": "Ashtanga Yoga Philadelphia", + "address": "733 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948864, + "longitude": -75.153766, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Fitness & Instruction, Yoga, Active Life", + "hours": { + "Monday": "6:0-9:0", + "Tuesday": "6:0-9:0", + "Wednesday": "6:0-9:0", + "Thursday": "6:0-9:0", + "Friday": "7:0-8:30", + "Sunday": "8:0-11:0" + } + }, + { + "business_id": "dFEnHoG5JZSFUsEJYofZ2A", + "name": "Quest Diagnostics", + "address": "525 Jamestown Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0281747, + "longitude": -75.2087512, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Laboratory Testing, Diagnostic Services", + "hours": { + "Monday": "13:0-15:0", + "Tuesday": "13:0-15:0", + "Wednesday": "13:0-15:0", + "Thursday": "13:0-15:0", + "Friday": "13:0-15:0" + } + }, + { + "business_id": "lh3QYUmMsx1gSnH2dYwJSg", + "name": "Brooklyn Bowl - Philadelphia", + "address": "1009 Canal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965276, + "longitude": -75.134904, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Nightlife, Arts & Entertainment, Restaurants, American (Traditional), Venues & Event Spaces, Event Planning & Services, Music Venues, Bowling, Active Life", + "hours": null + }, + { + "business_id": "dTL6npuTfmM-kieva8U43w", + "name": "Hot Tamales", + "address": "1805 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544196, + "longitude": -75.1699529, + "stars": 2.5, + "review_count": 73, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "Caters": "True" + }, + "categories": "Mexican, Fast Food, Restaurants", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "5A4OCImLDi8tTYzcFjRQAQ", + "name": "Philly Pizza and Grill", + "address": "7315 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0618893, + "longitude": -75.0832513, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "D9_XFaD9Zi1F3REIiyh37A", + "name": "Meltkraft Rittenhouse", + "address": "46 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517305, + "longitude": -75.1687295, + "stars": 4.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "Caters": "False" + }, + "categories": "American (New), Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:30", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-18:30", + "Friday": "11:0-18:30", + "Saturday": "11:0-17:30", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "b6kCTSH1kHtfcHxUTm2odA", + "name": "BAMBU", + "address": "600 Washington Ave, Ste 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9346629, + "longitude": -75.1542102, + "stars": 4.0, + "review_count": 170, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Desserts, Bubble Tea, Juice Bars & Smoothies, Food, Coffee & Tea, Restaurants, Vietnamese", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "-ZeEseRyVaUDYq2QimamBg", + "name": "Eastern Pass Tattoo", + "address": "1625 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9293482, + "longitude": -75.1638751, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "MpQXDNeG727hc2eUotCuow", + "name": "Executive House", + "address": "6100 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9904717, + "longitude": -75.2483162, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "shuAjSIsKG6Zg8blW2fmPw", + "name": "Club Risquรฉ", + "address": "5921 Tacony St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0132935, + "longitude": -75.0562444, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "HappyHour": "True" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "WQzQvusL15qZMxKlQq4CDA", + "name": "Point Breakfast Restaurant", + "address": "1438 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9337388, + "longitude": -75.1805413, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch", + "hours": { + "Monday": "6:0-14:30", + "Tuesday": "6:0-14:30", + "Wednesday": "6:0-14:30", + "Thursday": "6:0-14:30", + "Friday": "6:0-14:30", + "Saturday": "6:0-14:30", + "Sunday": "6:30-14:0" + } + }, + { + "business_id": "8YzDC_frEdRBv1CZfCpXjg", + "name": "Enterprise Rent-A-Car", + "address": "1236-40 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9371600646, + "longitude": -75.1643720269, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-12:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "TywTBjUpo4J3TXvBtxG1MA", + "name": "Chris's Pizza", + "address": "3971 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9998548, + "longitude": -75.2089107, + "stars": 2.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-12:0", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "j2-5NpfNw6gNyMg8iWh1hg", + "name": "Mercy Catholic Medical Center - Mercy Philadelphia Campus", + "address": "501 S 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.951998, + "longitude": -75.2295378, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Doctors, Health & Medical, Emergency Rooms, Hospitals, Medical Centers", + "hours": { + "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" + } + }, + { + "business_id": "a_fp9I18WcbP86rQ4c_QZQ", + "name": "Uzbekistan Restaurant", + "address": "12012 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1226988, + "longitude": -75.0162309, + "stars": 4.0, + "review_count": 282, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "BYOB": "True" + }, + "categories": "Restaurants, Uzbek, Russian, Middle Eastern", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "kBL0Z76KLUxBjvZS2djZzw", + "name": "MidAtlantic Restaurant & Tap Room", + "address": "3711 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956641, + "longitude": -75.196958, + "stars": 3.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "11:30-1:0", + "Tuesday": "11:30-1:0", + "Wednesday": "11:30-1:0", + "Thursday": "11:30-1:0", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0" + } + }, + { + "business_id": "aHcmo000M6SFHiwX0J8SEw", + "name": "CIBO Express Market", + "address": "Terminal C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.88678, + "longitude": -75.23097, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "False" + }, + "categories": "Food, Specialty Food, Health Markets", + "hours": null + }, + { + "business_id": "pl5Aa-czd1t0eQBCCFUfTw", + "name": "The Little Bird Bakery & Cafe", + "address": "517 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422853867, + "longitude": -75.1505559683, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Cafes, Caterers, Food, Event Planning & Services, Bakeries", + "hours": { + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:30-16:0", + "Sunday": "8:30-16:0" + } + }, + { + "business_id": "v92xgVl-BH_pQM486ea-9g", + "name": "Greens and Grains", + "address": "1700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506387, + "longitude": -75.1691989, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BikeParking": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "HasTV": "False" + }, + "categories": "Restaurants, Vegan", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "gMxJOS-SBu7oOShfegBKIg", + "name": "Credit Exterminators", + "address": "555 Diamond St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.983144, + "longitude": -75.1436289, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Debt Relief Services, Financial Services", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "hs2ifqouFH_w-GJ39Oq_IA", + "name": "Rainbow Hair Styling Salon", + "address": "215 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9557919, + "longitude": -75.1556554, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "NWLViuVGh--12IAL1iw2pQ", + "name": "The Shake Seafood", + "address": "5717 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0416423, + "longitude": -75.1058717, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'" + }, + "categories": "Seafood, Cajun/Creole, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "sYlYeHpykKr-sdE7Unuidg", + "name": "Hoof + Fin", + "address": "617 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409344, + "longitude": -75.1476183, + "stars": 4.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Steakhouses, Seafood, Argentine, Restaurants", + "hours": null + }, + { + "business_id": "dtsnh96yn64IT7sErc509g", + "name": "Asian Palace", + "address": "2001 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9183863039, + "longitude": -75.1813937037, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Asian Fusion, Vietnamese, Restaurants, Venues & Event Spaces, Chinese, Event Planning & Services", + "hours": null + }, + { + "business_id": "5nxIL-sSPgyATXmGtjuhtQ", + "name": "Furniture Lifestyle", + "address": "120 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9538625, + "longitude": -75.1946632, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Je10gqBQIqSvYNS8XGrYnw", + "name": "Chez Colette", + "address": "120 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507208157, + "longitude": -75.1689343926, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Hotels, Nightlife, Event Planning & Services, Hotels & Travel, Caterers, Breakfast & Brunch, French, Cocktail Bars, Bars", + "hours": { + "Tuesday": "7:0-11:0", + "Wednesday": "7:0-11:0", + "Thursday": "7:0-11:0", + "Friday": "7:0-11:0", + "Saturday": "7:0-11:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "7iDE5Vwm71BWioQfES0Bkw", + "name": "Jolly's Dueling Piano Bar", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480692, + "longitude": -75.1430342, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False" + }, + "categories": "Piano Bars, Nightlife", + "hours": { + "Friday": "20:30-2:0", + "Saturday": "20:30-2:0" + } + }, + { + "business_id": "RnMGVQpGRmEmJlI7Uewi4A", + "name": "Taijiang Snackies", + "address": "106 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538713, + "longitude": -75.1563263, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "zy0GWJhzZCQ-mTPPHr_Ujg", + "name": "Black Tire Shop", + "address": "151 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9877747, + "longitude": -75.1297963, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Tires, Automotive", + "hours": null + }, + { + "business_id": "LH5biiHY0zfWWQtcrIjLTw", + "name": "Em's Place", + "address": "2632 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978353, + "longitude": -75.1149835, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "OutdoorSeating": "True" + }, + "categories": "Nightlife, Bars", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "wyriYrcjGqbyRiW9MyIdbw", + "name": "Bikram Yoga Northern Liberties", + "address": "801 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9629776, + "longitude": -75.1407034, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Active Life, Yoga", + "hours": { + "Monday": "15:30-20:30", + "Tuesday": "15:30-20:30", + "Wednesday": "15:30-20:30", + "Thursday": "15:30-20:30", + "Friday": "16:30-20:30", + "Saturday": "15:30-17:30", + "Sunday": "15:30-17:45" + } + }, + { + "business_id": "Pb2Gda3L6H3SRefymTtzAw", + "name": "GiGi Restaurant & Lounge", + "address": "319 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950674, + "longitude": -75.146297, + "stars": 2.0, + "review_count": 182, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "HappyHour": "True", + "OutdoorSeating": "True" + }, + "categories": "American (New), Tapas/Small Plates, Restaurants, Latin American, Mediterranean", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "FBv7DrM8M4uFoclwAL90QQ", + "name": "Sakura Japanese Restaurant", + "address": "7910 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0504143, + "longitude": -75.0513295, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Japanese, Buffets", + "hours": null + }, + { + "business_id": "kbEVlzQLcYS3JSQPG9QMOQ", + "name": "Liberty Bell Center", + "address": "6th St & Chesnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495774962, + "longitude": -75.1503095688, + "stars": 4.0, + "review_count": 618, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'validated': False, 'street': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Public Services & Government, Landmarks & Historical Buildings, Local Flavor", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "TYTbp9Ksi0r7LHqK20bcJA", + "name": "Manayunk iPhone Repair", + "address": "4329 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253179, + "longitude": -75.2229883, + "stars": 5.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Mobile Phone Repair, Data Recovery, Electronics Repair, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "EBdpDhJb5QcdOd3rQn4GOw", + "name": "Philadelphia Eye Associates", + "address": "1930 S Broad St, Ste 103, Constitution Health Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9260201, + "longitude": -75.1698529, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Shopping, Health & Medical, Ophthalmologists, Laser Eye Surgery/Lasik, Optometrists, Doctors", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "Kdp7FV0Pl5kHIGivo2sRbw", + "name": "Madison K", + "address": "600 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611465, + "longitude": -75.14164, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Accessories, Skin Care, Cosmetics & Beauty Supply, Fashion, Beauty & Spas, Makeup Artists, Toy Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "oikYO1xHeFwbLKi4EiRZag", + "name": "Orianna Hill Dog Park", + "address": "901-913 N Orianna St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9656131161, + "longitude": -75.1430350543, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Parks, Professional Services, Active Life, Dog Parks", + "hours": null + }, + { + "business_id": "5WuL7awZmCQMUHA30zENtw", + "name": "Hughes Cleaning Service", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599, + "longitude": -75.172695, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Office Cleaning, Professional Services, Window Washing, Home Cleaning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "nF9pEi7NxvMWXZYTHOhdew", + "name": "Rosa Blanca Cafe", + "address": "Dilworth Park N, 1400 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531863003, + "longitude": -75.1645308389, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'beer_and_wine'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Coffee & Tea, Breakfast & Brunch, Food, Cuban, Cafes", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "jSJz9deiv12E6RBztzUfag", + "name": "Scout Salvage and Vintage Rescue", + "address": "21 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509003, + "longitude": -75.1452517, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Antiques, Used, Vintage & Consignment, Thrift Stores, Shopping", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "pnDavnO86ecVdnecksUW9w", + "name": "Georgian Bread Cuisine", + "address": "10865 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1106186, + "longitude": -75.0239353, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'" + }, + "categories": "Food, Delis, Coffee & Tea, Salad, Russian, Restaurants, Georgian", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "GBX0BkRwTDgXGuxieyxkEA", + "name": "Calm Massage Yoga and Reiki Studio", + "address": "1214 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9275635, + "longitude": -75.1657614, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Fitness & Instruction, Massage, Yoga, Active Life", + "hours": { + "Tuesday": "9:30-18:30", + "Wednesday": "11:0-20:0", + "Thursday": "9:30-18:30", + "Friday": "11:0-20:0", + "Saturday": "9:30-18:30", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "ww1Earyr85UwXHwjA7wAlA", + "name": "Fancy Nails", + "address": "7608 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9785656, + "longitude": -75.2713191, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "elWsPNrZ62gt8-AZ8V8TNg", + "name": "Huda", + "address": "32 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952171, + "longitude": -75.1704643294, + "stars": 4.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None" + }, + "categories": "Kosher, Sandwiches, Restaurants, Food, Food Delivery Services, Salad", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "Dy4cK6E_7Ws14SluCdUacA", + "name": "Lidl", + "address": "2290 E Butler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.99694495, + "longitude": -75.09370749, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}" + }, + "categories": "Food, Beer, Wine & Spirits, Bakeries, Shopping, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "RjKTDimEapGJGtxIMnIwbQ", + "name": "Cloud Coffee", + "address": "2001 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829493, + "longitude": -75.1547108, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food, Arts & Entertainment, Art Galleries, Food Trucks, Shopping", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "xrlyoI0SHEFBJa52qQnPUw", + "name": "iSushi", + "address": "425 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9447422, + "longitude": -75.1649204, + "stars": 3.0, + "review_count": 109, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsTableService": "True" + }, + "categories": "Chinese, Restaurants, Thai, Sushi Bars", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "sb8-TzsXOV7IsErbpHZo3g", + "name": "Positano Coast by Aldo Lamberti", + "address": "212 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9466579, + "longitude": -75.144724, + "stars": 3.5, + "review_count": 689, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "HappyHour": "True", + "Caters": "True", + "WiFi": "u'free'", + "HasTV": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Lounges, Seafood, Bars, Nightlife, Restaurants, Italian, Tapas Bars", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "1qM6Es6A2N21bm7boRwKxQ", + "name": "Cescaphe Ballroom", + "address": "923 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9646123, + "longitude": -75.1400811, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "FZixbNAPJsQzCsXkEx9oGA", + "name": "PMC Property Group", + "address": "1608 Walnut St, Ste 1400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496794, + "longitude": -75.1681091, + "stars": 2.0, + "review_count": 158, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "UjCalhRfvSEjAcdJMGbZwA", + "name": "All for Animals", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Sitting", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "ndVqbK8tlQSZM63rajPkBQ", + "name": "Palizzi Filippo Social Club", + "address": "1408 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9321574, + "longitude": -75.1644109, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': True}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Social Clubs, Arts & Entertainment, Restaurants, Italian", + "hours": null + }, + { + "business_id": "RhLoQa81h-Yt-MblI4MBJg", + "name": "Temple Teppanyaki", + "address": "1928 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982233, + "longitude": -75.153304, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Food Stands, Korean, Japanese, Food Trucks", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "CBcqn-mhXgWfZIreUWHTYw", + "name": "Michael Jay Jewelers", + "address": "800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494093, + "longitude": -75.1541276, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Jewelry Repair, Local Services, Watch Repair, Jewelry", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "VunuxKegBjV417P5SXDxhg", + "name": "New China - Philadelphia", + "address": "2552 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9857264, + "longitude": -75.1042409, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "17: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": "12:0-22:0" + } + }, + { + "business_id": "lzC5GKuP0haiIz7gOtvDFQ", + "name": "Buffalo Wild Wings", + "address": "9701 Roosevelt Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.082758811, + "longitude": -75.025806427, + "stars": 2.5, + "review_count": 158, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "False" + }, + "categories": "Bars, Beer, Wine & Spirits, American (Traditional), Chicken Wings, Restaurants, Nightlife, Food, Sports Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "R1aHeUAwUF1Qkpacrn2Njw", + "name": "Hideaway Music", + "address": "8232 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074002, + "longitude": -75.203574, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BikeParking": "False" + }, + "categories": "Music & DVDs, Shopping, Vinyl Records, Books, Mags, Music & Video", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "DhBe7gF3li2eCYRjwi2_Hw", + "name": "Kisso Sushi", + "address": "205 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9542717, + "longitude": -75.1463139, + "stars": 4.0, + "review_count": 194, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "lDhBIE5Uzb0jZwkEjGvsfg", + "name": "Bolt Bus", + "address": "N 30th St & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558308137, + "longitude": -75.1835042619, + "stars": 3.0, + "review_count": 217, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Public Transportation", + "hours": null + }, + { + "business_id": "RMRlzkMedvSjxFLN9cIJSw", + "name": "Coffee House", + "address": "113 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9691333, + "longitude": -75.1366249, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "iuRf6DVjkS3UkPwHjEb6Wg", + "name": "Indian Sizzler", + "address": "3651 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9594605, + "longitude": -75.1949617, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "14:0-22:30", + "Saturday": "11:0-22:30" + } + }, + { + "business_id": "pHck07yAj5jG0fv0AkRWyg", + "name": "Twistee Treat", + "address": "3401 Longshore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0333726, + "longitude": -75.0488396, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "mEP3rHiYbMVDUxOLZLp1IA", + "name": "Ernesto's 1521 Cafe", + "address": "1521 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9476346, + "longitude": -75.1672947, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "ZC56RwFrkVSM7FMzsUf63w", + "name": "Gravena Ceramic Tile", + "address": "5220 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0392957, + "longitude": -75.2416051, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Kitchen & Bath, Interior Design, Flooring, Home Services, Home & Garden, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Pwe0o-B52HVdQ6ForPl-SQ", + "name": "Hair We Are Hair Salon", + "address": "9305 Banes St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.083228, + "longitude": -75.040837, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Hair Stylists, Hair Removal, Beauty & Spas, Waxing, Tanning, Spray Tanning", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-21:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "lh3ApskP-4XVdsQ-82792g", + "name": "Last Drop", + "address": "1300 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9451009, + "longitude": -75.1630885, + "stars": 3.0, + "review_count": 209, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "HasTV": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}" + }, + "categories": "Breakfast & Brunch, Bagels, American (Traditional), Cafes, Coffee & Tea, Sandwiches, Restaurants, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "OhLEbbM5BC5Fk6fRWp5rAA", + "name": "Pokeworks", + "address": "1037 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502987, + "longitude": -75.1583669, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Poke, Sushi Bars, Restaurants, Salad, Seafood, Food, Hawaiian", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "NABcZKRWQF9-rDVt0P0bhw", + "name": "Ocean City", + "address": "234 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562822155, + "longitude": -75.15419, + "stars": 3.0, + "review_count": 215, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BikeParking": "True" + }, + "categories": "Chinese, Restaurants, Seafood, Dim Sum", + "hours": { + "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:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "zLwqBfXiICl6moUA8yjmwA", + "name": "Curley's Pub", + "address": "8929 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0835078, + "longitude": -75.0481493, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Nightlife, Bars, Irish Pub, Pubs", + "hours": { + "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" + } + }, + { + "business_id": "30cpm1uq6xcQCmN6JTrB8w", + "name": "Luke's Lobster Rittenhouse", + "address": "130 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505067, + "longitude": -75.1691375, + "stars": 4.5, + "review_count": 1161, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BYOB": "True", + "Corkage": "False" + }, + "categories": "Sandwiches, Seafood, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "_UOg5_pk9IhKee91eWrT4A", + "name": "Sweet Lucy's Smokehouse", + "address": "7500 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.029103, + "longitude": -75.0272619, + "stars": 4.5, + "review_count": 721, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "BikeParking": "True", + "BYOB": "False", + "HappyHour": "True" + }, + "categories": "Smokehouse, Barbeque, Food, Restaurants, Buffets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "4Cqcgn7wL1lO08IKqnooAg", + "name": "Yoga Brain East Falls", + "address": "3426 Conrad St, Ste C4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0116849, + "longitude": -75.1893296, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Yoga, Meditation Centers", + "hours": { + "Monday": "9:15-19:45", + "Tuesday": "16:15-20:45", + "Wednesday": "5:45-20:30", + "Thursday": "9:15-20:45", + "Friday": "5:45-13:15", + "Saturday": "7:45-11:0", + "Sunday": "9:15-18:30" + } + }, + { + "business_id": "51BQzF_4dOOuIO9s-4Ropw", + "name": "Golosa", + "address": "806 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385564, + "longitude": -75.1531778, + "stars": 4.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True" + }, + "categories": "Desserts, Food, Specialty Food, Coffee & Tea, Restaurants, Chocolatiers & Shops", + "hours": { + "Tuesday": "18:0-22:30", + "Wednesday": "18:0-22:30", + "Thursday": "18:0-22:30", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "4pyR9gY74U0cRWZDB9C6Cw", + "name": "Dunkin'", + "address": "1420 W. Cecil B Moore, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9786829, + "longitude": -75.1589817, + "stars": 1.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "GoodForKids": "True", + "BikeParking": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "'very_loud'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "DriveThru": "None" + }, + "categories": "Sandwiches, Food, Coffee & Tea, Breakfast & Brunch, Donuts, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "MW9zMuk__22iBJfBR7DYLg", + "name": "Way Out", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.047194, + "longitude": -75.055695, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Jewelry, Customized Merchandise, Fashion, Piercing, Shopping, Men's Clothing", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "04srD0j0OwEA_VcVfM76lw", + "name": "Vip Perfect Nails", + "address": "1422 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0601041, + "longitude": -75.1646865, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "L5BHhLkVTuJNDjgiZpCpeg", + "name": "Harker Robt E Plmbr", + "address": "4259 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0098697, + "longitude": -75.1960725, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Plumbing, Home Services", + "hours": null + }, + { + "business_id": "lmpjnr3sCLD84lfThoiQ3w", + "name": "Six Feet Under Gastropub", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481865634, + "longitude": -75.1536804065, + "stars": 4.0, + "review_count": 99, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "Caters": "False", + "Smoking": "u'outdoor'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "CoatCheck": "True" + }, + "categories": "Breakfast & Brunch, Nightlife, Restaurants, Bars, American (Traditional), Gastropubs, Cocktail Bars", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "w5fyVRnGWXl_ldGt0Hu5uQ", + "name": "Starbucks", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949096, + "longitude": -75.1645450294, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-14:30", + "Wednesday": "7:30-14:30", + "Thursday": "7:30-14:30", + "Friday": "7:30-14:30" + } + }, + { + "business_id": "eVzgXdm2cWUCveWXfKDCtQ", + "name": "City Cab", + "address": "6930 Norwitch Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.909122, + "longitude": -75.2257545, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Limos, Hotels & Travel, Transportation, Taxis, Airport Shuttles", + "hours": null + }, + { + "business_id": "KMZfBj-P8Mcw1rPLp3QTtA", + "name": "Doors Unlimited", + "address": "318 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0147682, + "longitude": -75.1330307, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Windows Installation, Home Services, Garage Door Services, Contractors, Door Sales/Installation", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "LQH2uWNJrht-ez0yoZDl9A", + "name": "Stylish Pooch", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19092", + "latitude": 39.9499983, + "longitude": -75.1799987, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Groomers", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "688sqo63oc2y535vI2UbhQ", + "name": "Pho Cali Vietnamese Restaurant", + "address": "1000 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533132, + "longitude": -75.1565235, + "stars": 3.5, + "review_count": 319, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "ETvzuRC9gRPHHSfu-6H9ew", + "name": "SelfEmbodiment Fitness", + "address": "1349 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9436856, + "longitude": -75.164769, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Boot Camps, Fitness & Instruction, Gyms, Trainers, Gun/Rifle Ranges, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "cPBngGz1gvCS8J8kK8frpw", + "name": "Jakes Place", + "address": "5550 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9377304, + "longitude": -75.2252872, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "6Nc_5oujhvR_TMd0be1bkA", + "name": "PJP Marketplace", + "address": "3899 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9967185, + "longitude": -75.0894942, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Specialty Food, Candy Stores, Beer, Wine & Spirits, Wholesalers, Restaurant Supplies, Professional Services, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "0UCh75Aoz8YMe9nrnjawwg", + "name": "Oh So Good Eatery", + "address": "1700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9527, + "longitude": -75.16926, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "BikeParking": "True", + "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': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "Caters": "True" + }, + "categories": "Restaurants, Event Planning & Services, Caterers, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "usUdcj28S3uak8n6vaTLFQ", + "name": "Headhouse Salon", + "address": "141 League St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342655, + "longitude": -75.1468537, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Extensions, Permanent Makeup, Hair Salons, Makeup Artists, Beauty & Spas, Eyelash Service", + "hours": { + "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": "9:0-16:0" + } + }, + { + "business_id": "k3uioll2as8C6W-0EWpurA", + "name": "Brazilian Wax and Spa by Claudia", + "address": "4370 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255846, + "longitude": -75.2243132, + "stars": 4.0, + "review_count": 96, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Waxing, Beauty & Spas, Laser Hair Removal, Sugaring, Hair Removal, Skin Care, Day Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "p-i059P8Uyh52mWumZ3TUA", + "name": "Avenue Chiropractic", + "address": "6233 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0273833, + "longitude": -75.0612744, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Chiropractors, Health & Medical", + "hours": null + }, + { + "business_id": "7Klk8UuK1sdJt5_44eUtDg", + "name": "Starbucks", + "address": "1001-1005 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950143, + "longitude": -75.157164, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "4:30-20:0", + "Wednesday": "4:30-20:0", + "Thursday": "4:30-20:0", + "Friday": "4:30-20:0", + "Saturday": "4:30-18:0", + "Sunday": "4:30-18:0" + } + }, + { + "business_id": "bXDc-Am_-hq5TzqWaJc3EQ", + "name": "Carvana Philadelphia", + "address": "1043 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967065, + "longitude": -75.136177, + "stars": 2.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'" + }, + "categories": "Car Buyers, Automotive, Car Dealers, Used Car Dealers, Auto Loan Providers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "Jxv_aGuB6uvZs67PxzJJjw", + "name": "Phil Kramer Photographers", + "address": "225 Quarry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953652, + "longitude": -75.144433, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Art Galleries, Education, Session Photography, Shopping, Photography Classes, Specialty Schools, Arts & Entertainment, Photographers, Event Planning & Services, Event Photography", + "hours": { + "Monday": "8:30-19:30", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-19:30", + "Saturday": "8:30-19:30", + "Sunday": "8:30-19:30" + } + }, + { + "business_id": "FFaf8mspfggNqmKAdk6tQQ", + "name": "Turbo Thai ", + "address": "1439 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.958432, + "longitude": -75.1638358, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BYOB": "True", + "Alcohol": "u'none'", + "Caters": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Thai", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "KPIjz4gMwMTZzTGT_g8Byw", + "name": "Far East Chinese Cuisine", + "address": "5043 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0196952, + "longitude": -75.1742716, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Cantonese, Chinese, Restaurants", + "hours": { + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "13:30-21:0" + } + }, + { + "business_id": "55X3tkJf7TJGdOOHOIxGag", + "name": "Kyushu Ramen & Sushi", + "address": "907 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386887, + "longitude": -75.1577701, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Sushi Bars, Asian Fusion, Restaurants, Japanese, Ramen", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "tkjW0lQd9tNdJNS7NW72cw", + "name": "Tommi Studio", + "address": "718 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949445, + "longitude": -75.153222, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Event Planning & Services, Beauty & Spas, Day Spas, Photographers", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "yT6p6OapmmsmCXPlI9PTsw", + "name": "Quick Sip", + "address": "738 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.94104, + "longitude": -75.1608535, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Caters": "False" + }, + "categories": "Beer, Wine & Spirits, Food, Food Delivery Services", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "bN_9QgxdOIk4oK-6fBDJtQ", + "name": "Honey's Sit N Eat", + "address": "2101 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451794837, + "longitude": -75.1771896936, + "stars": 4.0, + "review_count": 691, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Restaurants, Comfort Food, Diners", + "hours": { + "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" + } + }, + { + "business_id": "srGJZnh4Fc8sO8pza8Uarg", + "name": "J & K Roofing LLC", + "address": "1603 67th Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0557931, + "longitude": -75.1446076, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Roofing, Building Supplies, Gutter Services, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "8o50oRFIEfXrmoIJJj3fmQ", + "name": "Pho Ha Saigon", + "address": "1601 N 15th St, Unit 5-6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9779537017, + "longitude": -75.1593169793, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:45", + "Wednesday": "10:0-20:45", + "Thursday": "10:0-20:45", + "Friday": "10:0-20:45", + "Saturday": "11:0-20:45", + "Sunday": "11:0-18:45" + } + }, + { + "business_id": "ij4m-6fYAq16IlmHEQFAIw", + "name": "Swirl Cafe", + "address": "4610 Cedar Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9488850074, + "longitude": -75.2159567953, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "Caters": "False", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "None", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "DogsAllowed": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Ice Cream & Frozen Yogurt, Food, Cafes, Bubble Tea", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "5vAtunQlPFkfdTI9zn4TIw", + "name": "Pitruco Pizza", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 142, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Street Vendors, Food, Restaurants, Pizza, Food Trucks, Italian", + "hours": { + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "11:30-14:30" + } + }, + { + "business_id": "sBZClv18j7gr1HIGIMXNcA", + "name": "Hampton Inn Philadelphia Center City-Convention Center", + "address": "1301 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562835951, + "longitude": -75.1607483625, + "stars": 3.5, + "review_count": 175, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "bVxv7T0QN0j9189YWP7ruw", + "name": "Reserve Wine Bar & Lounge", + "address": "724 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952721, + "longitude": -75.152503, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "Music": "{'dj': True}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForDancing": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Smoking": "u'outdoor'", + "NoiseLevel": "'loud'" + }, + "categories": "Wine Bars, Dance Clubs, Beer, Wine & Spirits, Lounges, Bars, Food, Nightlife", + "hours": { + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "0EMIzcRDDq_8hqHWDQbaLg", + "name": "Elite Flavors Catering", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Personal Chefs, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "i-eQ41eTQRKKZlUg23SUdQ", + "name": "Talk of the Town", + "address": "7804 Limekiln Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0719713, + "longitude": -75.161367, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Ethnic Grocery, Food, Restaurants, Caribbean, International Grocery", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0" + } + }, + { + "business_id": "PjJurj0F0zU3pif3KsJ9jQ", + "name": "West & Down", + "address": "3816 Chestnut St, Unit 2 Lower Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551256, + "longitude": -75.1998158, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Bars, Dance Clubs, Karaoke, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "SUpQ7uFtXvdzgVubewMV8g", + "name": "Good Karma Cafe", + "address": "331 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9473679, + "longitude": -75.1780146, + "stars": 4.0, + "review_count": 217, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "Caters": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "a-Fl6PBagatwgYPYwxUpHg", + "name": "Modish Nail Spa", + "address": "7126 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0443588, + "longitude": -75.2316231, + "stars": 4.0, + "review_count": 190, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Waxing, Nail Technicians, Nail Salons, Hair Removal", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "muCelHtTlX5PrJd8JKkf_w", + "name": "New Harmony Vegetarian Restaurant", + "address": "135 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95445, + "longitude": -75.1543215, + "stars": 4.0, + "review_count": 327, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'none'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Health Markets, Restaurants, Specialty Food, Vegetarian, Kosher, Chinese, Ukrainian, Vegan", + "hours": { + "Monday": "11:30-23:30", + "Tuesday": "11:30-23:30", + "Thursday": "11:30-23:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "11:30-23:30" + } + }, + { + "business_id": "bjYCFd_zlb7Y7GwoEaBPTA", + "name": "Markel's Cleaning Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Professional Services, Office Cleaning, Local Services, Carpet Cleaning, Home Cleaning, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "htOy0gB1GpJVOHG0BBo-NQ", + "name": "Labcorp", + "address": "9331 Old Bustleton Ave, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0815823913, + "longitude": -75.0386902174, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Medical Centers, Laboratory Testing, Diagnostic Services, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-11:0", + "Saturday": "7:0-11:0" + } + }, + { + "business_id": "GnQ1o_nd0dBzrEZ_b_h5Og", + "name": "Cleaning Fairies", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0018403, + "longitude": -75.0669552, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Organization, Professional Services, Office Cleaning, Home Services, Home Cleaning", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "R3FDYMQBrMpkUquwE-eniQ", + "name": "The Continental Restaurant and Martini Bar", + "address": "138 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496927497, + "longitude": -75.1436231285, + "stars": 4.0, + "review_count": 638, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "Caters": "False", + "BikeParking": "True", + "GoodForDancing": "False", + "GoodForKids": "True", + "DogsAllowed": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (New), Lounges, Nightlife, Bars, Breakfast & Brunch", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "-qBwKdTHaYClas69Y5biWQ", + "name": "Mr deer the camp", + "address": "1023 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95476, + "longitude": -75.156933, + "stars": 4.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Bubble Tea, Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "YHau-ky1o9hm1jare21Syw", + "name": "Christ Church", + "address": "20 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507587728, + "longitude": -75.1438647821, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Funeral Services & Cemeteries, Local Services, Religious Organizations, Churches", + "hours": null + }, + { + "business_id": "IXkVHVU9jY_VTwTTJ4ZlRw", + "name": "Grays Ferry Crescent", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9424082581, + "longitude": -75.2021455765, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Parks, Active Life, Fishing", + "hours": null + }, + { + "business_id": "N1xujxx3e8M1R7wX3UAhFA", + "name": "Dim Sum Factory - Philadelphia", + "address": "1304 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489101, + "longitude": -75.1624159, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Seafood, Chinese, Dim Sum, Shanghainese", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "HAUzjmv7YWHulWLsgdgmIw", + "name": "Ten Asian Food Hall", + "address": "1715 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516409, + "longitude": -75.1693482, + "stars": 3.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "Asian Fusion, Japanese, Restaurants, Ramen, Bubble Tea, Poke, Food", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-21:30", + "Saturday": "10:30-21:30", + "Sunday": "10:30-21:30" + } + }, + { + "business_id": "I3fp0l4Qkvhkiu6lkVYcdA", + "name": "Custom Fine Jewellery", + "address": "735 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948877, + "longitude": -75.1539233, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "11:0-17:0", + "Wednesday": "10:45-19:0", + "Thursday": "11:0-17:0", + "Friday": "10:45-18:0", + "Saturday": "10:45-18:0" + } + }, + { + "business_id": "LwtjkyjvpN4O7dHk-XK6lA", + "name": "Blick Art Materials", + "address": "1330 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506205, + "longitude": -75.163159016, + "stars": 4.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Local Services, Hobby Shops, Shopping, Arts & Crafts, Printing Services, Art Supplies, Framing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "fMjyjqrtqNWjHIMfH7vkgg", + "name": "Cafe Bravo", + "address": "21 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498306, + "longitude": -75.1490878, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "m_P0oMu3PVz5pGBKjYGl_A", + "name": "Chris' Jazz Cafe", + "address": "1421 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503269, + "longitude": -75.165171, + "stars": 3.5, + "review_count": 252, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "GoodForDancing": "False", + "RestaurantsTakeOut": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': None}", + "RestaurantsDelivery": "None" + }, + "categories": "Jazz & Blues, Nightlife, Arts & Entertainment", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-0:0", + "Saturday": "18:0-0:0" + } + }, + { + "business_id": "C2nJjRwdcC8pNrLUsLfCNg", + "name": "Arm Enterprise & Auto Repair", + "address": "1243 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9635751, + "longitude": -75.1584646, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Smog Check Stations, Tires, Body Shops, Auto Repair, Automotive", + "hours": { + "Monday": "7:0-6:30", + "Tuesday": "7:0-6:30", + "Wednesday": "7:0-6:30", + "Thursday": "7:0-6:30", + "Friday": "7:0-6:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "_LOJW0XkOpj4O348GVRDeQ", + "name": "Zavino", + "address": "112 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499542, + "longitude": -75.1621423, + "stars": 4.0, + "review_count": 843, + "is_open": 0, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Italian, Wine Bars, Bars, Mediterranean, Pizza, Restaurants, Nightlife", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "DPO-9YTlStI7ihLl-wUN5w", + "name": "Just Dogs! Gourmet", + "address": "1804 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515739, + "longitude": -75.1706242, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": null, + "categories": "Pet Stores, Pets", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "-CoVlGcw8nOmkp_ASc_DIQ", + "name": "AMC Broadstreet 7", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9774330477, + "longitude": -75.1586017528, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "_tyK0c33YkbF7PBSeKkjaA", + "name": "Tara Yoga", + "address": "84 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0801196, + "longitude": -75.2076446, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-19:45", + "Saturday": "8:0-13:15", + "Sunday": "10:0-11:15" + } + }, + { + "business_id": "r6urzh91dq72mEREmoE-1g", + "name": "Hatville Deli", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534686184, + "longitude": -75.1592448352, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "DriveThru": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "Corkage": "False" + }, + "categories": "Burgers, Sandwiches, Restaurants, Delis", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "nGL6KIyPvsSYHZm5y31eXw", + "name": "Dollar Tree", + "address": "31 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9708429377, + "longitude": -75.1552769914, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "24LgPIiGIUH-03AqXAOhGw", + "name": "Cheys Kitchen", + "address": "131 S 17th St, basement", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504051287, + "longitude": -75.1690360049, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cheesesteaks, Juice Bars & Smoothies, Food, Acai Bowls, Restaurants, Sandwiches", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "qYuVkDQ5SJj5SrYv3SGc6g", + "name": "Einstein Center One", + "address": "9880 Bustleton Ave, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0944174154, + "longitude": -75.0307431647, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Ear Nose & Throat, Cardiologists, Health & Medical, Doctors, Obstetricians & Gynecologists, Orthopedists, Family Practice", + "hours": { + "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" + } + }, + { + "business_id": "SJJaIBGBBB3T_OX7iy-D4g", + "name": "Authentik Byrek", + "address": "3500 Block On Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95588, + "longitude": -75.19283, + "stars": 5.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Turkish, Mediterranean, Greek, Specialty Food, Food, Food Trucks, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:30" + } + }, + { + "business_id": "zhFONN1m6MzdVcK8QjEljA", + "name": "Premier Pet Services", + "address": "4325 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253664, + "longitude": -75.2228257, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Animal Physical Therapy, Pets, Pet Services, Pet Groomers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "K83AQ_2U1Fuf_TIF-fRRXg", + "name": "Kung Fu Tea", + "address": "13 N 32nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955934, + "longitude": -75.187982, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BikeParking": "False" + }, + "categories": "Juice Bars & Smoothies, Coffee & Tea, Food, Bubble Tea", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "_znNs6VkbR0bS5kWO7_ajg", + "name": "The Service Connection", + "address": "2145 McKinnley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0319284, + "longitude": -75.0684969, + "stars": 1.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Electricians, Home Services, Handyman, Garage Door Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "BrO4rhvgGU2vXx4cvVJIpg", + "name": "Target Optical", + "address": "1 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260112, + "longitude": -75.1462054, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyewear & Opticians, Shopping, Health & Medical, Optometrists", + "hours": { + "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": "9:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "v30UfHgDVZJSjLriIwnh3w", + "name": "Dunkin'", + "address": "1113 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9521961, + "longitude": -75.1595214, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "DriveThru": "None", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-20:30", + "Tuesday": "5:0-20:30", + "Wednesday": "5:0-20:30", + "Thursday": "5:0-20:30", + "Friday": "5:0-20:30", + "Saturday": "5:0-20:30", + "Sunday": "5:0-20:30" + } + }, + { + "business_id": "BqYv564gTb64rkArp018jQ", + "name": "Danger Danger Gallery", + "address": "5013 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480617, + "longitude": -75.2239653, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "ByAppointmentOnly": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}" + }, + "categories": "Art Galleries, Nightlife, Music Venues, Shopping, Arts & Entertainment", + "hours": null + }, + { + "business_id": "zhcGL_py81FPAfUhmn56Nw", + "name": "DA Auto Clinic", + "address": "6345 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0502644, + "longitude": -75.14181, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "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" + } + }, + { + "business_id": "ZErQImneQAZJMFBymcKL7w", + "name": "My Fabulous Mama", + "address": "1430 Walnut Street, Suite 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491039, + "longitude": -75.1658813, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Health & Medical, Nanny Services, Doulas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "1ju18Y3tWAFIP5mhk32UoA", + "name": "Siddiq's Real Fruit Water Ice", + "address": "264 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9573108194, + "longitude": -75.2415780723, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "-Q9gvLmYlv68lT9Z2kH09g", + "name": "Sweat Fitness", + "address": "1 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508981, + "longitude": -75.1634218, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gyms, Cycling Classes", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "fkhLmMdYwArwHW9y5-efdw", + "name": "BellyWise", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Specialty Schools, Education, Midwives", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "qT726FrfU1mOhctIb6v4-w", + "name": "Villa's Shoe Repair", + "address": "266 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481823, + "longitude": -75.1728798, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "BUEx8JCXx5v81EEVAIUC-Q", + "name": "Parkway Corner Deli", + "address": "2201 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9639216, + "longitude": -75.1751039, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "u'quiet'", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "CoatCheck": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'free'" + }, + "categories": "Bars, American (Traditional), Beer Bar, Restaurants, Sandwiches, Beer, Wine & Spirits, Nightlife, Breakfast & Brunch, Delis, Food, Grocery", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "gc0ILTYjBM-DdkeoXrDcPQ", + "name": "Odabu", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Salons, Arts & Entertainment, Art Galleries, Shopping, Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "T0hoD_5xZ1zM6CgJMhmiGA", + "name": "Moo Tattoo", + "address": "513 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420651, + "longitude": -75.1512825, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "Monday": "14:0-22:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "uhYXfgidTaK9q2j1jBnkhg", + "name": "Mitchell & Ness", + "address": "1201 Chestnut St, Fl 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950706, + "longitude": -75.160324, + "stars": 2.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "False" + }, + "categories": "Shopping, Sports Wear, Fashion, Sporting Goods", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "EdW55E5NZdYODrcDUx8-bQ", + "name": "Deke's BBQ", + "address": "137 W Berkley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0229869, + "longitude": -75.1616977, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Seafood, Barbeque, Restaurants", + "hours": { + "Monday": "15:0-20:0", + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "15:0-20:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "SruGlT3aLDyqDN3uDR2CMw", + "name": "Pistola's Del Sur", + "address": "1934 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9258883014, + "longitude": -75.1683752239, + "stars": 4.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "HasTV": "True", + "WiFi": "'no'" + }, + "categories": "Nightlife, Bars, Mexican, Restaurants, Beer Bar, Breakfast & Brunch, Desserts, Food", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "69k7MF2-nXq-tNNHrJYONw", + "name": "Chipotle Mexican Grill", + "address": "3925 Walnut St, Ste 128", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954101, + "longitude": -75.200795, + "stars": 2.5, + "review_count": 146, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Food, Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "xQblY1vBHV8Fp3Xdi3rDcw", + "name": "Pho & Cafe Viet Huong", + "address": "1110 Washington Ave, Ste 2A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369395037, + "longitude": -75.1618840073, + "stars": 3.5, + "review_count": 242, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Alcohol": "u'beer_and_wine'", + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Vietnamese, Restaurants, Pakistani", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "xcySfsPDols3EdtFC6b76g", + "name": "Sheraton Philadelphia University City Hotel", + "address": "3549 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954872, + "longitude": -75.194173, + "stars": 2.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Hotels, Hotels & Travel, Venues & Event Spaces, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "G5rmqJ7nPv04Jm1slaDYsA", + "name": "Yellow Cab", + "address": "8125 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.042053, + "longitude": -75.024137, + "stars": 1.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Taxis", + "hours": null + }, + { + "business_id": "1v7bKStGaE7Q9pYffjAwTw", + "name": "Philadelphia Gateway Parking Facility", + "address": "1540 Spring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9569919, + "longitude": -75.1649771, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "5_MhGhgowfS92cu_BQQRkg", + "name": "Azul Cantina", + "address": "941 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946173, + "longitude": -75.157795, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Hgqa3SSaNQbNTbniScCR7Q", + "name": "Danny's Wok 3", + "address": "4322 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0192629311, + "longitude": -75.1495601982, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Chicken Wings, Asian Fusion, Chinese, Seafood, Restaurants", + "hours": { + "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:30-22:0" + } + }, + { + "business_id": "wbEsvQ-WTQ1M95QcRrApLg", + "name": "Nail Pro", + "address": "2330 S Croskey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9229523, + "longitude": -75.1842003, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30" + } + }, + { + "business_id": "01Ym9dytHULJdqich0_YIg", + "name": "Guaranteed Rate", + "address": "1500 Walnut St, Ste 803", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Real Estate, Mortgage Lenders, Financial Services, Mortgage Brokers", + "hours": null + }, + { + "business_id": "K9WeFqsGnQXTPFskzYCPAw", + "name": "Lali Restaurant", + "address": "744 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1050687, + "longitude": -75.03362, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Modern European, Mediterranean, Restaurants", + "hours": { + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "qOrNC_PsAHf-LPsyyzBIUw", + "name": "Elite Online Media", + "address": "1735 Market St, Ste 3750", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953669, + "longitude": -75.169586, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Advertising, Internet Service Providers, Web Design, Marketing, Home Services, Graphic Design", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "zxWeLWsv6Ebrkb-MDMbD-g", + "name": "Rabinovich Sokolov Law Group", + "address": "1700 Market St, Ste 1005", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952671, + "longitude": -75.169108, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Lawyers, Real Estate Services, Personal Injury Law, General Litigation, Professional Services, Real Estate, Divorce & Family Law, Real Estate Law, Business Law", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "UqdrEYnSSypu5IXHT48c9Q", + "name": "Lovely Rentals", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9384803772, + "longitude": -75.1540985107, + "stars": 1.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Real Estate Services", + "hours": null + }, + { + "business_id": "aNZLBVMMI-zjZN6KIA4CeA", + "name": "Family Dollar", + "address": "1700 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9384574, + "longitude": -75.1717998, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Shopping, Discount Store", + "hours": null + }, + { + "business_id": "bfiO0n663Ej36svzuRuVtA", + "name": "Nodding Head Brewery & Restaurant", + "address": "1516 Sansom St, 2nd Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950221, + "longitude": -75.166583, + "stars": 3.5, + "review_count": 339, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "BYOBCorkage": "'no'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Corkage": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "HappyHour": "True" + }, + "categories": "Nightlife, Breweries, Pubs, Bars, Food, American (New), Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "ZbBLdIlFsbVnbQoLUwmkEw", + "name": "Jamils Cafe On Wheels", + "address": "7135 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0593836661, + "longitude": -75.1902470411, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Food, Food Trucks, Soul Food", + "hours": null + }, + { + "business_id": "uraQK3Sd3qe3r4a0ZeG-Hw", + "name": "2 Hair Salon", + "address": "919 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555909, + "longitude": -75.1550169, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "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" + } + }, + { + "business_id": "4r4B36aNolZKmMi8yZzUww", + "name": "Quest Chiropractic", + "address": "1233 Locust St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480845, + "longitude": -75.1617606, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Massage, Chiropractors, Health & Medical, Massage Therapy", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "14:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "BdTbH72RDWnPu_Qcev0ziw", + "name": "Enjay's Pizza", + "address": "210 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536784, + "longitude": -75.2027865, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BikeParking": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Restaurants, Sandwiches, Pizza, Italian", + "hours": { + "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": "11:30-22:0" + } + }, + { + "business_id": "2MZRpN_BaKxsQwkknCk8aA", + "name": "New Wong House", + "address": "4503 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0215945644, + "longitude": -75.1482826266, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Chinese, Asian Fusion", + "hours": null + }, + { + "business_id": "7-fvaCmEMOZ4hc6wMJoTcg", + "name": "Mr. V's Steaks", + "address": "193 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0916106, + "longitude": -74.9655844, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches", + "hours": null + }, + { + "business_id": "x3WfR5-l2ZU_e--_NUGikQ", + "name": "Afaze", + "address": "8500 Essington Ave, Ste B10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.878778, + "longitude": -75.242122, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Shopping, Women's Clothing, Accessories", + "hours": null + }, + { + "business_id": "k99d0o0T_qS8-oidI72nfA", + "name": "Jefferson Oral & Maxillofacial Surgery", + "address": "909 Walnut St, Floor 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948606, + "longitude": -75.1562254, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists", + "hours": null + }, + { + "business_id": "36bv1R2iH5d3WCK8nwqOSw", + "name": "Gold's Pharmacy", + "address": "7543 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9796723, + "longitude": -75.2681178, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vitamins & Supplements, Health & Medical, Drugstores, Shopping", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "nzGPYlzhmvCxTfPKKRQurg", + "name": "Passero's Gourmet Coffee Co", + "address": "The Wanamaker Building, Juniper St Lobby, 100 N Wanamaker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9519386292, + "longitude": -75.1587524414, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "5gqoD4EknTFf-39zz1Fa1w", + "name": "El Compadre", + "address": "1149 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9349357, + "longitude": -75.1585625, + "stars": 4.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Mexican, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "R9EQOZOoO1a-WQLOq0KgHQ", + "name": "Mike's Steaks", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703, + "longitude": -75.1684962, + "stars": 3.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForKids": "True", + "Caters": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, American (Traditional), Food Delivery Services, Sandwiches, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "F7FYN-nZ_Vb4o2oaPJjr-A", + "name": "The Bistro", + "address": "1001 Intrepid Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.894345, + "longitude": -75.175177, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'breakfast': False, 'brunch': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False" + }, + "categories": "Food, Cafes, American (New), Restaurants", + "hours": null + }, + { + "business_id": "0OsR9lO16jxa0xWUY57s9g", + "name": "Koto Sushi", + "address": "719 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487051045, + "longitude": -75.1531596925, + "stars": 4.5, + "review_count": 280, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HasTV": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False" + }, + "categories": "Japanese, Restaurants, Salad, Sushi Bars", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "15:30-21:30", + "Sunday": "15:30-21:0" + } + }, + { + "business_id": "6SclMbv8-46ZsJAPDoiLGg", + "name": "Cure Nails and Spa", + "address": "404 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429638, + "longitude": -75.1455767, + "stars": 5.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "DGowEJK6gOUUIyv0GgNR6w", + "name": "Fitler Square Park", + "address": "Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947639, + "longitude": -75.180066, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "8jPCTltGBbYjHgDRY3MhUw", + "name": "Pep Boys", + "address": "2298 Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9213666, + "longitude": -75.1845423, + "stars": 2.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Parts & Supplies, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "R0JUjyjGEzUlY3auVhY_tg", + "name": "North Bowl", + "address": "909 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644125073, + "longitude": -75.1403277254, + "stars": 4.0, + "review_count": 484, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForDancing": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': True, u'dessert': None}", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Vegan, Venues & Event Spaces, Active Life, American (Traditional), Sports Bars, Lounges, Bowling, Bars, Nightlife, Event Planning & Services", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "14:0-0:0" + } + }, + { + "business_id": "j0nfkOogyh43lFcuUMlVsQ", + "name": "Stan's Deli", + "address": "3632 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9595725, + "longitude": -75.1950883, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "Sandwiches, Delis, Restaurants, Food Delivery Services, Food", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "QQUDUU_4bCu2BIeofxaY0Q", + "name": "Pellicane's Nest", + "address": "743 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940224, + "longitude": -75.15579, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Diners, Cafes, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "QtST1igZAi0q9LxJr6srIQ", + "name": "Pearl's Oyster Bar", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953298, + "longitude": -75.159071, + "stars": 4.0, + "review_count": 298, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': False, u'latenight': False, u'dessert': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Seafood, American (New), Live/Raw Food, Breakfast & Brunch", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Wq7YGTnSQ-89TJzBGpcRhQ", + "name": "Recharge Spa", + "address": "905 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9643106, + "longitude": -75.140581, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage Therapy, Health & Medical, Beauty & Spas, Reflexology, Tui Na, Massage, Traditional Chinese Medicine", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "pxqbzJhk7ZLGYe580JDeQQ", + "name": "Scoops Ice Cream and Water Ice Stand", + "address": "812 E Thompson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9737568, + "longitude": -75.1249212, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Desserts, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "0R2yKDNMUztQwgo8pG4z-Q", + "name": "Triumph Brewing Company", + "address": "117 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948506, + "longitude": -75.143475, + "stars": 3.5, + "review_count": 318, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Breweries, Music Venues, Nightlife, American (New), Food, Arts & Entertainment", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-23:0" + } + }, + { + "business_id": "DZzZwAWTgMiSHAyPrVgqOw", + "name": "Minuteman Press - Philadelphia", + "address": "2715 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9130548, + "longitude": -75.149704, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Printing Services, Graphic Design, Professional Services, Local Services", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "sLz2ZKYSS8zYsQnWZbVO7g", + "name": "Rite Aid", + "address": "810-814 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9402844859, + "longitude": -75.1667500566, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Health & Medical, Drugstores, Food, Shopping, Convenience Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "tS8uQ3F3azhluLqcoG3v-Q", + "name": "Balance Spa & Fitness", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488677, + "longitude": -75.1475866, + "stars": 4.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Health & Medical, Massage Therapy, Day Spas, Active Life, Massage, Gyms, Fitness & Instruction", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "wLzrd4ulKXJN4s_CzZAlgQ", + "name": "Le Reve Rittenhouse Spa", + "address": "255 S 17th St, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948135, + "longitude": -75.16933, + "stars": 3.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Cosmetic Surgeons, Skin Care, Beauty & Spas, Medical Spas, Massage, Halotherapy, Massage Therapy, Doctors, Health & Medical, Day Spas", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "py_xCryhIVIiJLqSSFv2YA", + "name": "Lady Liberty Transportation", + "address": "1242 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9434689, + "longitude": -75.2114845, + "stars": 2.5, + "review_count": 67, + "is_open": 0, + "attributes": null, + "categories": "Airport Shuttles, Hotels & Travel, Transportation", + "hours": { + "Monday": "5:30-0:0", + "Tuesday": "5:30-0:0", + "Wednesday": "5:30-0:0", + "Thursday": "5:30-0:0", + "Friday": "5:30-0:0", + "Saturday": "5:30-0:0", + "Sunday": "5:30-0:0" + } + }, + { + "business_id": "3ONID-FiN6arsuNUjRz-1Q", + "name": "Cjs Tire and Auto", + "address": "6801 Oldyork Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.05678, + "longitude": -75.13956, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Auto Repair, Tires, Automotive, Towing, Wheel & Rim Repair", + "hours": { + "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-15:0" + } + }, + { + "business_id": "XTb74bt6Xm-YJM7YQrHwhQ", + "name": "Chinese Natural Herbs", + "address": "1011 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539385, + "longitude": -75.1567954, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Food, Specialty Food, Herbal Shops, Traditional Chinese Medicine, Health Markets, Health & Medical", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "k8pY5zMMdflYze96KFdmyw", + "name": "Manayunk Chambers Guest House", + "address": "168 Gay St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0277653, + "longitude": -75.2229511, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Bed & Breakfast, Hotels & Travel, Guest Houses", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "v9jNsSprsNpERYvyTOAzqw", + "name": "Aramingo Buffet", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924676, + "longitude": -75.1013555, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True" + }, + "categories": "Buffets, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "5Q82x5hIwfWSF3XEeINkgQ", + "name": "Dienner's Bar-B-Q Chicken", + "address": "12TH And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953773, + "longitude": -75.159079, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food Stands, Restaurants, Barbeque", + "hours": { + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "zAVc0p8TQtR-6IfJsNNEVQ", + "name": "Green Street Dog Park", + "address": "1819 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964923, + "longitude": -75.168253, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Active Life, Dog Parks, Parks", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "s4V0kpHHzUyEKmKBgKwSUw", + "name": "LA Nail Bar", + "address": "315 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9460278, + "longitude": -75.1625185, + "stars": 4.0, + "review_count": 222, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:30-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "WFbbnkAeA9MLZ8_e-OJ6bQ", + "name": "A's Place", + "address": "3722 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.016169, + "longitude": -75.210611, + "stars": 3.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Lounges, Nightlife, American (New), Restaurants, Bars", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "hAcBP6zU9qAs6o3cbUW6MA", + "name": "bฤoโ€ขlogy", + "address": "1829 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545598054, + "longitude": -75.1705203793, + "stars": 4.0, + "review_count": 183, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "HappyHour": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BYOB": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Restaurants, Taiwanese, Street Vendors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0" + } + }, + { + "business_id": "M9CeG1q58WqCkCsBJ4nUbw", + "name": "Nuvane Salon", + "address": "1110 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428667, + "longitude": -75.160694, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "V4Dr3ragKHKeUab96miyMA", + "name": "Mole Poblano Restaurant", + "address": "1144 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93522, + "longitude": -75.158815, + "stars": 4.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "HappyHour": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "S0WyIb_04ZtOI8l1vY5TPw", + "name": "Monte Cristo", + "address": "2421 E Allegheny", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9876355, + "longitude": -75.105178, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, American (Traditional), Restaurants", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Jno4HLrVJ08zkMIGqkaU8A", + "name": "Sexy Green Truck", + "address": "1256 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9797909, + "longitude": -75.1546781, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Caterers, Food Stands, Event Planning & Services, Food Trucks, Specialty Food, Sandwiches, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "ZPx5jZclnGvijR8ULhjuwg", + "name": "Philadelphia Lens Library", + "address": "4919 Pentridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9475718, + "longitude": -75.2220622, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photography Stores & Services, Shopping, Video/Film Production, Professional Services", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "ZRb203peHsQKibqyKqZaGg", + "name": "KC's Pastries", + "address": "109 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953863, + "longitude": -75.156041, + "stars": 4.0, + "review_count": 181, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Chinese, Bakeries, Ethnic Food, Specialty Food, Food", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "7:0-18:30", + "Sunday": "7:0-18:30" + } + }, + { + "business_id": "eZY83JEDe8ZIu00uAhj13g", + "name": "TruMark Financial Credit Union", + "address": "7350 Large St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0510424, + "longitude": -75.0633192, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions, Financial Advising", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "EjuhuChTEGX1eT0t-8OUfg", + "name": "James G. Kaskey Memorial Park", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Botanical Gardens, Arts & Entertainment, Parks, Active Life", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "FvBUare-QfqoTyHIvbWkvA", + "name": "Bishos", + "address": "7950 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0758304, + "longitude": -75.0851789, + "stars": 4.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'" + }, + "categories": "Mediterranean, Middle Eastern, Restaurants, Food, Juice Bars & Smoothies, Halal", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "kyKpF_EmiTCL661oGcqL-g", + "name": "Philadelphia Paint & Glass", + "address": "235 Cotton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0273846, + "longitude": -75.2182103, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Contractors, Windows Installation", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "2OpdiV_aHk87jCBpY8P6lQ", + "name": "Belmont Plateau", + "address": "2000 Belmont Mansion Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9903274662, + "longitude": -75.2126649307, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "Xgjb_kURbGsSB6fmlvPMug", + "name": "The Real Le Anh", + "address": "36TH And Spruce", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9507797509, + "longitude": -75.1952898502, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Street Vendors, Food Trucks, Food", + "hours": null + }, + { + "business_id": "nxLjhcf-1GMXWpZWZEVnCw", + "name": "S Murphy Auto Repair", + "address": "5539 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9596828, + "longitude": -75.2320219, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Transmission Repair, Automotive, Roadside Assistance", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "Z2eNK-urdPVr0a1n0TSz3A", + "name": "Francis Salon", + "address": "2045 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524024, + "longitude": -75.1751267, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bridal, Blow Dry/Out Services, Shopping, Hair Salons, Eyebrow Services, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "0vfmJXYVLZAMpUuNJx6ejw", + "name": "Grindcore House", + "address": "4134 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9482179212, + "longitude": -75.2068880573, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "HasTV": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Food, Vegan, Sandwiches, Bakeries, Restaurants, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "NWh7tUUKUL_eWYPQuYGuDA", + "name": "Glidden Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Windows Installation, Home Services, Door Sales/Installation, Handyman, Contractors, Home & Garden, Kitchen & Bath, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "l7G__JgJviXZ6DEOk2C1EA", + "name": "Zoom Room Dog Training", + "address": "180 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9684394, + "longitude": -75.1390321, + "stars": 5.0, + "review_count": 36, + "is_open": 0, + "attributes": null, + "categories": "Pet Training, Pet Services, Pets, Pet Stores", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "2eQYH6noLRTmkKyo0K_Y3w", + "name": "John Romano Hair Stylist", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "piSFtzkXxkpU1q9a66ot2w", + "name": "La tapenade", + "address": "Terminal A W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 39.8730720324, + "longitude": -75.2521005794, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False" + }, + "categories": "Bars, Wine Bars, Cafes, Nightlife, Restaurants, Mediterranean", + "hours": null + }, + { + "business_id": "hljCyVrQuuYtMj2D1g5DDA", + "name": "Judah Mediterranean Grill", + "address": "9311 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.085558, + "longitude": -75.0454938, + "stars": 4.0, + "review_count": 102, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Mediterranean, Middle Eastern, Kosher", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-15:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "yIIibdtcOnGsjtvgNuBqKA", + "name": "Rally", + "address": "701 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412553, + "longitude": -75.1539819, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Event Planning & Services, Food, Marketing, Professional Services, Venues & Event Spaces, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "8:0-16:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "9ULVQhqw1ZwQxkKJwxaCVA", + "name": "Lily Pads Frozen Yogurt", + "address": "3130 Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0576691912, + "longitude": -75.015246183, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "ih5UsOi5jHDINYkno0bl7g", + "name": "Mayfair Nail Salon", + "address": "4200 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0351773, + "longitude": -75.0396979, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Piercing", + "hours": { + "Monday": "8:45-19:45", + "Tuesday": "8:45-19:45", + "Wednesday": "8:45-19:45", + "Thursday": "8:45-19:45", + "Friday": "8:45-19:45", + "Saturday": "8:45-19:45", + "Sunday": "8:30-18:0" + } + }, + { + "business_id": "Rx3JSrJyOyBseaJhYrVTSw", + "name": "Auto Glass Fitters", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 1.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Glass Services", + "hours": null + }, + { + "business_id": "QrTymDJEN4NzLaXnSJXizA", + "name": "The Philadelphia Contributionship", + "address": "210 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9470349417, + "longitude": -75.1481578899, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Insurance, Financial Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "08fkgKXeLTFmE35fCydRpA", + "name": "juju spa", + "address": "728 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939782, + "longitude": -75.14983, + "stars": 4.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Day Spas, Beauty & Spas", + "hours": null + }, + { + "business_id": "T85Ck4uybby0-klUlxF_nw", + "name": "The Satellite Cafe", + "address": "701 S 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9476547, + "longitude": -75.2227069, + "stars": 3.5, + "review_count": 158, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'" + }, + "categories": "Coffee & Tea, Vegan, Vegetarian, Restaurants, Food, Bagels, Wraps", + "hours": { + "Monday": "7:0-14:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "AnzUwNOyk16m8Nnltz7T-Q", + "name": "House of Clarity", + "address": "1532 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503576, + "longitude": -75.167022, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': False, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': False}", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Makeup Artists, Tanning, Eyelash Service, Beauty & Spas, Hair Stylists, Hair Extensions, Spray Tanning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "v-Ei13KTC1CMV7-yMGHAug", + "name": "Philly Souvenir", + "address": "64 N 3rd St Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95188, + "longitude": -75.1454079, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Specialty Food, Souvenir Shops, Food, Gift Shops, Shopping, Candy Stores, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-15:30" + } + }, + { + "business_id": "rneH08TZ6SvtGNMHU3uT1g", + "name": "Cafe 900", + "address": "900 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9532365, + "longitude": -75.1548483, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Vietnamese, Restaurants", + "hours": null + }, + { + "business_id": "oK4108Qg_mAccEbRb41o1Q", + "name": "Isabel", + "address": "2601 Pennsylvania Ave, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687718, + "longitude": -75.1807705, + "stars": 3.5, + "review_count": 107, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "Caters": "False", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Tex-Mex, Mexican", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "4fXN8iR4PHnwR7BpdUPC8g", + "name": "Houwzer", + "address": "1435 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9497195, + "longitude": -75.165688, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Commercial Real Estate, Real Estate Agents, Real Estate Services, Mortgage Brokers, Real Estate, Home Services", + "hours": { + "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": "10:0-14:0" + } + }, + { + "business_id": "mlrYh-m3Zlqp9CTeSvdOsQ", + "name": "Chix & Wings", + "address": "138 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489939, + "longitude": -75.1590351, + "stars": 3.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Comfort Food, Korean, Chicken Shop, Restaurants, Chicken Wings, Fast Food, Soul Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "gKAKnXmvkj8ENFIFMhEGlg", + "name": "Bain's Deli", + "address": "1500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9625548, + "longitude": -75.1634936, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Sandwiches, Delis", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "G4y0HxePBgAYi3iJS_tUPQ", + "name": "Chickie's Italian Deli", + "address": "1014 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344984, + "longitude": -75.1610345, + "stars": 4.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Burgers, Delis, Sandwiches, Restaurants, Food", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "9_5HYYGBF4O80G4cgEpXKQ", + "name": "Five Iron Golf", + "address": "2116 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523660761, + "longitude": -75.1766079291, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "True", + "WiFi": "u'free'", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "BYOB": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Bars, Golf, Venues & Event Spaces, Golf Lessons, Fitness & Instruction, Active Life, Nightlife, Sports Bars, Event Planning & Services, Team Building Activities", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "8:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-20:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "NXL_hNxPiuarSRhNK2Qm6w", + "name": "AMS Salon", + "address": "1719 Chestnut St 4th Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947785, + "longitude": -75.16826, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Blow Dry/Out Services, Hair Salons, Hair Stylists, Hair Extensions, Beauty & Spas", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "Yle2_bVkAv3ahUenS2KPEw", + "name": "Blasius Chocolate Factory", + "address": "1849 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.000586, + "longitude": -75.102725, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "True" + }, + "categories": "Candy Stores, Food, Specialty Food", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-14:0", + "Thursday": "10:0-14:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "BGf313yoWCFJVAS05rJt7A", + "name": "Nancy's Nails & Salon", + "address": "6045 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.035132, + "longitude": -75.081319, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "nbxFr2d30dYRWXy1rc0agg", + "name": "Chu Shang Spicy ๅŽจๅฐš้บป่พฃ", + "address": "925 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95379, + "longitude": -75.15583, + "stars": 3.0, + "review_count": 127, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "borPW4gf5gX_8tn5hTOZOg", + "name": "Main Line Risk Management", + "address": "7300 City Ave, Ste 150", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9805141, + "longitude": -75.2677459, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Home & Rental Insurance, Life Insurance, Auto Insurance, Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ES5-3q2LzvChQWlhbFCZWw", + "name": "Tacos California", + "address": "1030 South 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9364579957, + "longitude": -75.1569402963, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "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': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Tacos, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-23:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "Tsu0y3A9jRb8hZmQPw-QXg", + "name": "Style of Man", + "address": "4450 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0265305, + "longitude": -75.2265912, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:30", + "Sunday": "10:0-15:30" + } + }, + { + "business_id": "pIInvqxgFYFptmbz7kcaeA", + "name": "Unsoulfood", + "address": "1801 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925850846, + "longitude": -75.1526172608, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Vegan, Southern, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "9VHPGvPfEtu-utXkoJmL-Q", + "name": "Crown Deli", + "address": "3806 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0645814, + "longitude": -74.9870966, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Delis", + "hours": { + "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" + } + }, + { + "business_id": "RCBAA0i5IjDRqR-K9DWuOg", + "name": "Ground Zero South", + "address": "700 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402124, + "longitude": -75.1511721, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Removal, Skin Care", + "hours": { + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "NC3nqCgbd3l6dbFlbVN8Cg", + "name": "Michael E Docktor, DDS", + "address": "1522 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9483512, + "longitude": -75.1672381, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Oral Surgeons, General Dentistry, Health & Medical", + "hours": null + }, + { + "business_id": "xBS2bMESuefLuhZMltM_ww", + "name": "Philadelphia Java Company", + "address": "518 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420925, + "longitude": -75.1492085, + "stars": 4.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "40xoTPjCQ9uvpc2GqGnEqA", + "name": "Capa Cueros", + "address": "1015 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950218, + "longitude": -75.157633, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Leather Goods, Shopping, Fashion, Accessories, Local Services, Shoe Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "EmQQkn-kdK3bZI1cpHRQyA", + "name": "Indian Cuisine", + "address": "1939 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955609433, + "longitude": -75.1729371116, + "stars": 3.5, + "review_count": 106, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "'free'", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "NoiseLevel": "'quiet'", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "DogsAllowed": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "VEsJqjwNm5jb6xN8BGTn5Q", + "name": "Two Street Pizza", + "address": "1616 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9274627, + "longitude": -75.1489763, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "15:30-23:30", + "Tuesday": "15:30-23:30", + "Wednesday": "15:30-23:30", + "Thursday": "15:30-23:30", + "Friday": "15:30-23:30", + "Saturday": "15:30-23:30" + } + }, + { + "business_id": "l-t8gnBTRy2Bmq62C-CDgA", + "name": "Multi-Electric", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Electricians, Contractors, Home Services, Lighting Fixtures & Equipment", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "ek44MbBmjmcQywn8Y1rVZA", + "name": "20/20 dentistry", + "address": "1601 Walnut St, Ste 801, Medical Arts Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499527, + "longitude": -75.1676791, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Cosmetic Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "kDyTz0tiW9P1pPYVrCXk3g", + "name": "Chestnut Hill Pharmacy", + "address": "8030 Germantown Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0712452251, + "longitude": -75.2013529702, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Drugstores, Shopping, Health & Medical, Home Health Care", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "9kvhb23dTj8o1chCyHjSvg", + "name": "Benjamin's On the Row", + "address": "138 1/2 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948291531, + "longitude": -75.154283237, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Doctors, Orthopedists, Local Services, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "dGy_GFVHQbmqzcIpSY6fSw", + "name": "DeMarco's Italian Specialties", + "address": "1338 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9228564, + "longitude": -75.1692901, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Caterers, Restaurants, Delis, Event Planning & Services, Italian, Wraps", + "hours": { + "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" + } + }, + { + "business_id": "dR54APnpymYQofIAUx7aWA", + "name": "Verizon Authorized Retailer - Victra", + "address": "10000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0955059025, + "longitude": -75.0154467518, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mobile Phones, Mobile Phone Accessories, Shopping, Electronics", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VDnXlYO0f2KRjnspZuK2EQ", + "name": "Park Waverly", + "address": "155 Godfrey Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0442542, + "longitude": -75.1150144, + "stars": 1.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eYESS3Yp-yTi9dC8pGkBrg", + "name": "Angel Nails", + "address": "2438 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.919683, + "longitude": -75.171062, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Eyelash Service, Hair Removal, Nail Salons, Beauty & Spas, Waxing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "L0cREFNSrDZbozJYWwn5_A", + "name": "SOMO SoPhi", + "address": "3101 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9111895, + "longitude": -75.1701, + "stars": 3.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "HasTV": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "American (Traditional), Nightlife, Bars, Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-1:30", + "Saturday": "10:30-1:30", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "RmwLGLDc2rBo6K6MMPZzBA", + "name": "Smoke Cigar & Hookah Lounge", + "address": "4453 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0269376, + "longitude": -75.2265066, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Smoking": "u'yes'", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BYOB": "True", + "CoatCheck": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "Corkage": "True" + }, + "categories": "Arts & Entertainment, Shopping, Local Flavor, Lounges, Bars, Tobacco Shops, Hookah Bars, Nightlife, Adult Entertainment", + "hours": { + "Monday": "18:0-22:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-0:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "mgA9sBSkcoAOAEmyTbLVbA", + "name": "Top Hair Salon", + "address": "919 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95546, + "longitude": -75.15502, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Stylists, Hair Salons, Blow Dry/Out Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "BJjyhlURNnsOlizLQXMJmg", + "name": "Diane & Tom's Cafe", + "address": "40 W Maplewood Mall", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0341212, + "longitude": -75.1748979, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "HasTV": "False" + }, + "categories": "Restaurants, Soul Food, Italian, Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "_0JDs_1DLtLH5XppCbSk_A", + "name": "Aromatic House of Kabob", + "address": "113 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948399, + "longitude": -75.14314, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Middle Eastern", + "hours": null + }, + { + "business_id": "BLYR46gGpEbb5TcSGFQTPQ", + "name": "Brand Murray Dr Assocs", + "address": "7524 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0390997, + "longitude": -75.0352516, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "Zqd_DHAtrdzRJ8u3zwrvEA", + "name": "Hershel's East Side Deli", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953284, + "longitude": -75.159403, + "stars": 4.5, + "review_count": 718, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "Caters": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "None", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Delis, Sandwiches, Salad", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "B6HUaOSZ9ZVZ68ImDF5EqQ", + "name": "Jomici Apothecary", + "address": "273 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9473341, + "longitude": -75.1662796, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Drugstores, Shopping", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "dITkxWBe92OzvXA2kJWz9g", + "name": "El nica", + "address": "211 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459451841, + "longitude": -75.1404828755, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Food Trucks", + "hours": null + }, + { + "business_id": "4hb5DrxoyZ6dhE0qsSkkzQ", + "name": "Free Library of Philadelphia - Lovett Branch", + "address": "6945 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.056207, + "longitude": -75.187487, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "10:0-18:0", + "Wednesday": "13:0-21:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "JzZ8jz4J6AEd8JF-k2gIKA", + "name": "Sofian Cleaning Services", + "address": "2424 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.97747, + "longitude": -75.124605, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Window Washing, Professional Services, Office Cleaning, Home Services, Masonry/Concrete, Home Cleaning, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "i1VMkj7p-JzVcrUEYtnupQ", + "name": "3rd Street Cafe", + "address": "444 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9583181, + "longitude": -75.1449099, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False" + }, + "categories": "Soup, American (Traditional), Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "AmI3LIUNwsi4023hOVGu3w", + "name": "Moshulu", + "address": "401 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.942335482, + "longitude": -75.1413081, + "stars": 3.5, + "review_count": 874, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'dressy'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "BYOB": "False", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "GoodForDancing": "False", + "Corkage": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "WiFi": "u'free'", + "CoatCheck": "True", + "RestaurantsTableService": "True" + }, + "categories": "American (Traditional), Seafood, Nightlife, Event Planning & Services, Cocktail Bars, Wine Bars, Restaurants, Venues & Event Spaces, American (New), Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "trA2mh8TMb-keNb1AzYh1w", + "name": "Dave's Wissahickon Barber Shop", + "address": "5113 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0172257, + "longitude": -75.2105861, + "stars": 5.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "YZPIEmUIRvDUL_HCyKL3CA", + "name": "Dollar General", + "address": "520 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945498, + "longitude": -75.1798529, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "sgDw5vVkx7HLRoIdyO8OLw", + "name": "Sawtown Tavern", + "address": "4717-19 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0278013385, + "longitude": -75.0383652002, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "1", + "CoatCheck": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "RestaurantsTableService": "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': True, 'video': False, 'karaoke': False}", + "Caters": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "American (Traditional), Bars, Restaurants, Nightlife", + "hours": null + }, + { + "business_id": "P4h9ff9Zu3c_Rqb-gWkhUg", + "name": "Maple Japanese Ramen", + "address": "2102 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521517, + "longitude": -75.1757544, + "stars": 4.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Caters": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "BYOB": "True", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ramen, Restaurants, Japanese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "YWlbmf70DcaPh6FGnuZhkA", + "name": "Christian Nails & Spa", + "address": "1537 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9406075281, + "longitude": -75.1696526448, + "stars": 4.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ckbvLKwjEb836t-EDKsVVg", + "name": "Abyssinia", + "address": "229 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541658, + "longitude": -75.2116004, + "stars": 3.5, + "review_count": 307, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "Caters": "False", + "Corkage": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Restaurants, Bars, Nightlife, Ethiopian", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "zy_g2wKTNIB7EQdG73_Xaw", + "name": "Einstein Medical Center Philadelphia", + "address": "5501 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0368199, + "longitude": -75.1435058, + "stars": 2.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hospitals, Health & Medical, Medical Centers, Emergency Rooms", + "hours": { + "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" + } + }, + { + "business_id": "vq28UnCEKii1j5wt8LA9bA", + "name": "Indian Restaurant 722", + "address": "722 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9626251, + "longitude": -75.1412441, + "stars": 4.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "12:30-23:0", + "Sunday": "12:30-22:0" + } + }, + { + "business_id": "rK4MQ-vybY5KXI73o-0mlw", + "name": "Jake's & Cooper's Wine Bar & Wine Shop", + "address": "4365 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025925, + "longitude": -75.2241818, + "stars": 3.5, + "review_count": 306, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "BYOB": "False", + "HappyHour": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Cocktail Bars, Wine Bars, American (New), Pizza, Tapas Bars, Beer, Wine & Spirits, Nightlife, Food, Bars", + "hours": { + "Monday": "15:0-20:30", + "Tuesday": "15:0-20:30", + "Wednesday": "15:0-20:30", + "Thursday": "15:0-20:30", + "Friday": "13:0-20:30", + "Saturday": "13:0-20:30", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "sPLcoVQ4qyU914NZRmglng", + "name": "Pete's Pizza", + "address": "5536 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0153507, + "longitude": -75.0641916, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "kSWXxtZzpZLrBeyv-1BUuA", + "name": "Cafe Pendawa Lima", + "address": "1529 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9297594, + "longitude": -75.171399, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Specialty Food, Grocery, Indonesian, Restaurants, Ethnic Food, Food", + "hours": { + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "x0B2COlqOwPBeJRhEJ0PWA", + "name": "A Class Act Auto Repair", + "address": "2042 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925178, + "longitude": -75.1735995, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "RhP6pzh6AikgrSODRHS0EA", + "name": "Spitalieri's Italiano Ristorante", + "address": "613 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413743, + "longitude": -75.1503191, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Italian", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "o2Tz5gv31GUf3ThTePrcyg", + "name": "Budget Dumpster Rental", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Dumpster Rental, Junk Removal & Hauling", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "9:0-15:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "D0uoz1yQR10Knf_N_TCJ9g", + "name": "Musette", + "address": "2441 Aspen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9690246, + "longitude": -75.1781931, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Restaurants, Sandwiches, Bakeries, Cafes, Food", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "XYwx1tsEB3_G0tgS6l-0PQ", + "name": "Amuse", + "address": "1421 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548246, + "longitude": -75.1640644, + "stars": 3.5, + "review_count": 154, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "False", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Nightlife, French, Restaurants, Bars", + "hours": { + "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": "15:0-22:0" + } + }, + { + "business_id": "tjGC5TEVfuntyt5hV-m0ZQ", + "name": "McKenzie Sports Physical Therapy", + "address": "3425 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0120136, + "longitude": -75.1890675, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Physical Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "8:30-19:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "aZuB6Mvm6nid8i6J9bfDog", + "name": "La Reserve Center City Bed and Breakfast", + "address": "1804 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9461637, + "longitude": -75.1718381, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Bed & Breakfast, Hotels & Travel", + "hours": null + }, + { + "business_id": "yNv_RImPRQNf9qC8thA_0Q", + "name": "American Signature Furniture", + "address": "9960 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0956301, + "longitude": -75.0176074, + "stars": 1.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Home Decor, Home & Garden, Furniture Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "97ZPxrlnvq78EqSgcQihoQ", + "name": "BR Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9782749, + "longitude": -75.114092, + "stars": 4.5, + "review_count": 143, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Movers, Home Services, Furniture Assembly, Packing Services, Local Services, Self Storage", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "reY1jB3RJ5FZiK1Nx6szYA", + "name": "Johnny Destructo's Hero Complex", + "address": "4327 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025529, + "longitude": -75.222849, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False" + }, + "categories": "Accessories, Comic Books, Books, Mags, Music & Video, Fashion, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "RB0q5kCIAlGgXYV2uLonUg", + "name": "Pierre's Costumes", + "address": "211 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9543910612, + "longitude": -75.1446718723, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping, Costumes, Arts & Crafts, Arts & Entertainment, Performing Arts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "aEYewUCI6hHyKOUzXcWLTw", + "name": "Abakus Takeout", + "address": "227 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956207, + "longitude": -75.155514, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Shopping, Shoe Stores, Fashion, Men's Clothing, Women's Clothing", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "KkYf3vwufgbSWXLINt5YOg", + "name": "Bookspace", + "address": "1113 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9680221, + "longitude": -75.1344228, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Books, Mags, Music & Video, Shopping, Bookstores", + "hours": { + "Friday": "19:0-1:0", + "Saturday": "19:0-1:0", + "Sunday": "19:0-0:0" + } + }, + { + "business_id": "31KYjhEDOC7oPLoKqAi-YA", + "name": "Peace A Pizza", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "U9IinzLvwvNzlg0SqJ-fHg", + "name": "Taylor's Restaurant", + "address": "6144 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0343689, + "longitude": -75.2164426, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "XvV9B9Y4YfVVehSVkX6Ulg", + "name": "Siu Kee Duck House", + "address": "111 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537673, + "longitude": -75.1561518, + "stars": 4.0, + "review_count": 100, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "GoodForKids": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Caters": "False" + }, + "categories": "Chinese, Restaurants, Barbeque", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "9UD0Smup80sh-c7zc9ySdA", + "name": "Danny's Midnight Confessions", + "address": "133 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494695, + "longitude": -75.1617372, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Adult, Books, Mags, Music & Video, Shopping, Bookstores", + "hours": { + "Monday": "5:0-2:0", + "Tuesday": "5:0-2:0", + "Wednesday": "5:0-2:0", + "Thursday": "5:0-2:0", + "Friday": "5:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "zdQlfwvFjy2Lto5ZEe_H2Q", + "name": "Rite Aid", + "address": "1000-1008 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951272, + "longitude": -75.157031, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Photography Stores & Services, Drugstores, Shopping, Convenience Stores, Food", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "qd6t6bkXt5CIEjJdWbYTsw", + "name": "Aramark Corporation", + "address": "1101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95212314, + "longitude": -75.1585425809, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Uniforms, Shopping", + "hours": null + }, + { + "business_id": "ixK2BuHlGEXQdkK8NmALPw", + "name": "Drs Page and Ward", + "address": "1015 Chestnut St, Ste 417", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950375, + "longitude": -75.157534, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Eyewear & Opticians, Optometrists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "Rf9AqIzZyfrQHjkyXDJaHw", + "name": "Krewstown nail spa", + "address": "9317 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0860269, + "longitude": -75.0452792, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "eqK66D5jQRO2eY1_MhAo_Q", + "name": "Dan's Fresh Meats", + "address": "2000 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978783, + "longitude": -75.1306173, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Food, Butcher", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "F13x4Y7Lmv_FgyWUxka5xg", + "name": "AAA South Philadelphia Car Care Insurance Travel Center", + "address": "1601 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924026, + "longitude": -75.142548, + "stars": 2.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Financial Services, Auto Insurance, Travel Services, Insurance, Hotels & Travel", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "liBiXtYbNpcDR-pMPoHAIg", + "name": "Rose Nails", + "address": "5208 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.958369, + "longitude": -75.2256063, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "FGUeyrd0lKyWn1Eb_3H7Pg", + "name": "Chestnut Hill Sushi", + "address": "8605 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0768634, + "longitude": -75.2074063, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Japanese", + "hours": { + "Tuesday": "4:0-20:45", + "Wednesday": "16:0-20:45", + "Thursday": "16:0-20:45", + "Friday": "16:0-20:45", + "Saturday": "16:0-20:45", + "Sunday": "16:0-20:45" + } + }, + { + "business_id": "jdx80PbfbXMkUZvhJmdFbQ", + "name": "Cafe Giardino", + "address": "1732 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9244035, + "longitude": -75.1755284, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Italian, Restaurants, Food, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "7:30-15:30" + } + }, + { + "business_id": "RleiW2_QLyxgNjFfqDoZpw", + "name": "Modo Mio", + "address": "161 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9695788, + "longitude": -75.1383832, + "stars": 4.0, + "review_count": 492, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "3", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Italian, Gluten-Free, Food, Restaurants", + "hours": { + "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": "16:0-20:0" + } + }, + { + "business_id": "f8bCVRQuvK28MxTuXMCh_g", + "name": "Philadelphia Film Center", + "address": "1412 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9508334, + "longitude": -75.164683, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Community Service/Non-Profit, Local Services, Festivals, Arts & Entertainment, Cinema", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "SwsJnao2G91T9LmcBuEiDA", + "name": "Five Star Parking", + "address": "337 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9458475574, + "longitude": -75.1647764155, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "w0MduHbQNWZkYl66jZIiEA", + "name": "JC Fancy Nails & Spa", + "address": "119 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518312, + "longitude": -75.1770399, + "stars": 4.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Day Spas, Waxing, Hair Removal, Nail Salons, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-18:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "FCR7LqDdkKtWsfxeoscAkg", + "name": "The Better You Institute", + "address": "123 S Broad St, Ste 1835", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19109", + "latitude": 39.9498227, + "longitude": -75.1638251, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Sex Therapists, Counseling & Mental Health, Psychologists", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "PsyoQwBcxs98DP-2tBOv6A", + "name": "Mad Greek Restaurant and Pizza", + "address": "3517 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583744, + "longitude": -75.1929368, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Alcohol": "'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Greek, Beer, Wine & Spirits, Restaurants, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "hlTEWtqfWw9r0_LltqWA4A", + "name": "Quiznos", + "address": "3401 Walnut St Frnt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527703831, + "longitude": -75.1921815235, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Sandwiches, Restaurants, Delis, Fast Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "nFkhD1OzSJJoc5z3LCtGGw", + "name": "Douglas Cosmetics", + "address": "3603 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535252, + "longitude": -75.1956275, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": null + }, + { + "business_id": "tqOK-bWQbdgVhSNm38hWwQ", + "name": "American Philosophical Society", + "address": "105 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484148089, + "longitude": -75.1489952549, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "'paid'" + }, + "categories": "Public Services & Government, Libraries", + "hours": null + }, + { + "business_id": "Y7EalRsCafsApK5DcL_mTg", + "name": "Devil's Den", + "address": "1148 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9358085, + "longitude": -75.1620574, + "stars": 3.5, + "review_count": 455, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "'full_bar'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "CoatCheck": "False", + "GoodForDancing": "False" + }, + "categories": "Nightlife, Bars, American (Traditional), Pubs, Breakfast & Brunch, Restaurants, Beer Bar", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "4_K8IBzSQvBkWJBzoTBz2A", + "name": "Manayunk StrEAT Festival", + "address": "116 Cotton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0259392373, + "longitude": -75.2220901474, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "GoodForKids": "True" + }, + "categories": "Food Trucks, Festivals, Food, Arts & Entertainment", + "hours": null + }, + { + "business_id": "s3_l6m4HDxhz_V9T1HKyFg", + "name": "Thunder Hair Salon", + "address": "110 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514396, + "longitude": -75.1721747, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "TwKeUEsAjJz-pTHTg14agw", + "name": "Callahan's Grille", + "address": "2615 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9460707, + "longitude": -75.1837898, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True" + }, + "categories": "Bars, Pubs, Restaurants, American (Traditional), Nightlife", + "hours": null + }, + { + "business_id": "VXhTjyJJe0FDeWu4AMTo-g", + "name": "Champion Dentistry", + "address": "1170 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9831604, + "longitude": -75.2474731, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "twQrGPaDKo26B4kDZjTMeA", + "name": "Blinds Brothers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Shopping, Home Services, Shades & Blinds, Shutters, Home Decor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-17:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "p1iL6s5ebw_9LpkqpmhVEA", + "name": "Lee's Cafe and Bistro", + "address": "522 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934744, + "longitude": -75.153257, + "stars": 4.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "True" + }, + "categories": "Soup, Vietnamese, Restaurants, Desserts, Chinese, Food, Bakeries", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "k7odrCRmLQeoWQev1_MveQ", + "name": "Rite Aid", + "address": "1443 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930283, + "longitude": -75.155923, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Drugstores, Shopping, Photography Stores & Services, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "SfmQZL7Rgon_qT-hjY-f0g", + "name": "Croce's Pizza", + "address": "7400 Lawndale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.061937, + "longitude": -75.08, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Italian, Pizza, Restaurants", + "hours": { + "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-21:0" + } + }, + { + "business_id": "bzmO5_7Y8Ui4wjlSIY51Ow", + "name": "Bubble Bath Car Wash", + "address": "1914 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0836487, + "longitude": -75.0347997, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Automotive, Car Wash", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "A4VzKmiVNuLYPWPpE-49SA", + "name": "Owl Breakfast & Lunch", + "address": "1424 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9788260422, + "longitude": -75.1589941978, + "stars": 4.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "'quiet'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "UMpnAG62H99at_y-J1T1tg", + "name": "Rotten Ralph's Pub & Eatery", + "address": "201 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484876, + "longitude": -75.1442086, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "DogsAllowed": "True", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "BYOB": "False", + "GoodForKids": "True", + "Corkage": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Restaurants, Nightlife, American (Traditional), Bars, Cocktail Bars, American (New)", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "pxZAz8pv18wK_t-m8WpN0g", + "name": "Spruce Street Harbor Park", + "address": "121 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9445424967, + "longitude": -75.1414754636, + "stars": 4.0, + "review_count": 385, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "hc7I_QpCszT3mlIP9uW19w", + "name": "United By Blue", + "address": "3421 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953122, + "longitude": -75.193198, + "stars": 4.0, + "review_count": 102, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Food, Coffee & Tea, Restaurants, Breakfast & Brunch, Fashion, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "-lT5o2BF6ZvSsh8PvpVOgQ", + "name": "Goldie", + "address": "2101 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629294116, + "longitude": -75.1739865249, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'full_bar'", + "DriveThru": "False", + "OutdoorSeating": "None", + "WiFi": "'free'" + }, + "categories": "Salad, Fast Food, Restaurants, Vegan", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "9354_1NfFdwjSQYERhnVFA", + "name": "Feinberg David S DDS Dentist", + "address": "7317 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0368338, + "longitude": -75.0398201, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "jEKE_T_iTSCTehiB5K1CvQ", + "name": "Capital Teas", + "address": "1804 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951523, + "longitude": -75.170638, + "stars": 2.5, + "review_count": 44, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "pnWpIvIsNnp6S2BW0pyreg", + "name": "New Phnom Penh", + "address": "2301 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9202992, + "longitude": -75.1586394, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cambodian, Chinese, Restaurants, Vietnamese", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "DDSlaH86g4liAmxA1pN4OQ", + "name": "Philly Hardwood Floors", + "address": "1215 Friendship St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0515559, + "longitude": -75.0731378, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Refinishing Services, Home Services, Contractors, Flooring", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "W6k6b-bUaX0goySzl-zgTg", + "name": "Red Poke Express", + "address": "135 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412251903, + "longitude": -75.1454926754, + "stars": 4.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "DriveThru": "False", + "RestaurantsReservations": "False" + }, + "categories": "Salad, Sushi Bars, Fast Food, Hawaiian, Seafood, Restaurants, Food, Poke", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "pm1bStJuol5XmxE_atZhCQ", + "name": "Nom Nom Ramen", + "address": "20 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524929, + "longitude": -75.1702943, + "stars": 4.0, + "review_count": 531, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Japanese, Ramen", + "hours": { + "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": "11:30-22:0" + } + }, + { + "business_id": "Fj1jToh-ChfAOSR8x4wEnw", + "name": "La Roca", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023535, + "longitude": -75.2197488, + "stars": 3.0, + "review_count": 195, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Smoking": "u'no'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Nightlife, Mexican, Restaurants, Bars, Cocktail Bars", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "yqKGAqAh9WIeIKIN6ZNBfw", + "name": "Cafe L'Aube", + "address": "2025 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9393491288, + "longitude": -75.1773681382, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Restaurants, Coffee & Tea, Creperies, French", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "DLoLJPqY-LWfJsVZntJYjQ", + "name": "Twinkle Nails & Spa", + "address": "200 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9141040897, + "longitude": -75.1519852797, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "ltMvCPw-XJexlU4M0yu9Sw", + "name": "Methodist Hospital Division Thomas Jefferson University Hospital", + "address": "1900 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9267294, + "longitude": -75.1696315, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Hospitals", + "hours": null + }, + { + "business_id": "pX79hg6t0WsaCzU2npdK5w", + "name": "Rai Rai Ramen", + "address": "915 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955454, + "longitude": -75.1549, + "stars": 3.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Japanese, Asian Fusion", + "hours": null + }, + { + "business_id": "UsS0kw-8FV4iBbohrP4v7g", + "name": "Urban Exchange Project", + "address": "2050 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.979564, + "longitude": -75.1295083, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Thrift Stores", + "hours": { + "Monday": "13: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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "C6glRVRajUc-QGrsZhurAw", + "name": "Serang Dental Associates", + "address": "8016 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.056306, + "longitude": -75.23596, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry, Cosmetic Dentists, Periodontists", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-12:0" + } + }, + { + "business_id": "pUAxkZyr5WcMYVcD7s_OvA", + "name": "Maxamillion's Gentlemen's Quarters Barber Parlor", + "address": "2035 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523549, + "longitude": -75.1747619, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "WazsyeShjw8oAjqZlZ1bvQ", + "name": "Barre Focus Fitness University City", + "address": "4145 Chestnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9561181, + "longitude": -75.2061027, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Barre Classes, Fitness & Instruction", + "hours": null + }, + { + "business_id": "H9dXz4RDYxzRM5-z3FyVTQ", + "name": "El Azteca I Mexican Restaurant", + "address": "1710 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.085707, + "longitude": -75.038427, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "J8CjBAE1l3A4Ny487_5VvA", + "name": "Gastroenterology and Hepatology at Jefferson Hospital", + "address": "132 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491755, + "longitude": -75.157253, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Hospitals, Hepatologists, Gastroenterologist", + "hours": null + }, + { + "business_id": "dcmaQZhv8eaKptO8B4hZKQ", + "name": "Falls Taproom", + "address": "3749 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0092295441, + "longitude": -75.1938630956, + "stars": 3.5, + "review_count": 246, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Caters": "True", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Beer Bar, Bars, American (New), Tapas/Small Plates, Gastropubs, Music Venues, Arts & Entertainment, Breakfast & Brunch, Nightlife, Vegetarian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "r7OYWCI1l5KHj06qnub_Gg", + "name": "Indiana Joe's", + "address": "2501 E Indiana Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9847051, + "longitude": -75.1093903, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Sandwiches, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "Yv8SFSgQG1tXbrCnuQP6bA", + "name": "Saladworks", + "address": "224 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479072, + "longitude": -75.1592739, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Restaurants, Salad, Sandwiches, Vegetarian", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "M3wKxrtuZinZ0P3GGEQ39Q", + "name": "Fred R Levine Real Estate", + "address": "1440 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306335, + "longitude": -75.1582205, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Services, Real Estate", + "hours": null + }, + { + "business_id": "oIr50siZDtDYCE_p5K8nYA", + "name": "Winkel", + "address": "1119 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947791, + "longitude": -75.1603392, + "stars": 4.5, + "review_count": 246, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "HasTV": "False", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False" + }, + "categories": "Breakfast & Brunch, Food, Sandwiches, Salad, Coffee & Tea, Restaurants, Modern European, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "i_sAh-ylmOwCQmqRmXox8g", + "name": "Monsรบ", + "address": "901 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391381, + "longitude": -75.1579072, + "stars": 4.0, + "review_count": 309, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "GoodForKids": "False" + }, + "categories": "Italian, Restaurants, Gluten-Free", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "j95Z749kLfchv_UTpxVpag", + "name": "Tavern 222", + "address": "222 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373187298, + "longitude": -75.158194582, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "HasTV": "True", + "GoodForDancing": "True", + "WiFi": "'no'" + }, + "categories": "Bars, Pubs, Nightlife, Sports Bars", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "kqZNMEhQEsq5aR0SARDF9Q", + "name": "Basements Love Us", + "address": "3653 Salmon St", + "city": "Philadelphia", + "state": "NJ", + "postal_code": "19134", + "latitude": 39.989253, + "longitude": -75.090606, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Damage Restoration, Local Services, Environmental Testing, Home Services, Waterproofing, Structural Engineers, Foundation Repair", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "WoYoLCFZZ-eWeznm1_UxVQ", + "name": "Closets by Design", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19341", + "latitude": 40.056409, + "longitude": -75.651673, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Interior Design, Cabinetry, Home Organization, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "bVv9Qffd9DQJB3nJL2oW9w", + "name": "liang foot spa", + "address": "499 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0454066, + "longitude": -75.2327285, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Massage, Health & Medical, Massage Therapy", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "WMVmyCFzxJQOTxPWwo2ukQ", + "name": "Fabric Horse", + "address": "1737 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277746, + "longitude": -75.1657245, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Flavor, Shopping, Accessories, Fashion", + "hours": null + }, + { + "business_id": "iTvq1gPf62A-z1Axu8elvw", + "name": "Casablanca Moroccan Restaurant", + "address": "7557 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9797496, + "longitude": -75.2681183, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "HasTV": "False" + }, + "categories": "Moroccan, Restaurants", + "hours": null + }, + { + "business_id": "XaBOwJFCe1odBPYdIwCsPg", + "name": "Dunkin'", + "address": "308 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413237, + "longitude": -75.1480395, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "1CCG0WYSoR8ejdgD5-Gaqg", + "name": "Francoluigi's Pizzeria & Italian Restaurant", + "address": "1549 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302667, + "longitude": -75.1659499, + "stars": 4.0, + "review_count": 303, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_corkage'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "jGQnyhGmA6F-uL7TZR4S6A", + "name": "E-Z Brunch", + "address": "1540 Pratt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0226489, + "longitude": -75.0789309, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "9e_rrzyTolsH1RUXHOvsMA", + "name": "Circles Contemporary Thai", + "address": "812 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633982, + "longitude": -75.1411529, + "stars": 3.5, + "review_count": 394, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}" + }, + "categories": "Food, Ethnic Food, Restaurants, Thai, Asian Fusion, Specialty Food, Vegetarian", + "hours": { + "Monday": "17:0-21:45", + "Tuesday": "17:0-21:45", + "Wednesday": "17:0-21:45", + "Thursday": "17:0-21:45", + "Friday": "17:0-22:45", + "Saturday": "12:0-22:45", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "et9os3PW4Tm5SB9eBTJg9Q", + "name": "The Wellnest", + "address": "822 Pine St, Ste 4B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9442666, + "longitude": -75.1560763, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Massage Therapy, Nutritionists, Acupuncture, Health & Medical", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0" + } + }, + { + "business_id": "8GYaV6jgHAAO5TLNEKpG9Q", + "name": "Richart Graphics", + "address": "1305 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9579499, + "longitude": -75.1604973, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Signmaking, Local Services, Professional Services, Advertising, Screen Printing/T-Shirt Printing, Printing Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "hXjBdS5JP4M3MQHokzjzkQ", + "name": "Wallace & Nilan Physical Therapy", + "address": "229 Arch St, Ste 112", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952332, + "longitude": -75.144371, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Occupational Therapy, Physical Therapy, Sports Medicine, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "Jb5ZSvFVQnTZg3B9bln2oA", + "name": "PhillyCareerCoach", + "address": "1601 Walnut St, Ste 1127", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500452155, + "longitude": -75.167701854, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Career Counseling, Professional Services, Life Coach, Business Consulting, Employment Agencies", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "8:30-21:30", + "Wednesday": "8:0-16:0", + "Thursday": "8:30-21:0" + } + }, + { + "business_id": "mbYy1yP9e8BLh-blFviOSQ", + "name": "Five Guys Burgers and Fries", + "address": "1109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949013, + "longitude": -75.159479, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "False" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "KcTsFk7fAMkciPSakHNVcA", + "name": "Biryani Bowl", + "address": "391 Lyceum Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0306018, + "longitude": -75.2176177, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Seafood, Indian, Restaurants", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "_JDHCMJJ_f2qsBWBUyAi9w", + "name": "Berger Henry ENT Specialty Group", + "address": "8815 Germantown Ave, Ste 32", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.07939, + "longitude": -75.211864, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Ear Nose & Throat, Doctors", + "hours": null + }, + { + "business_id": "jmVr98niBB7IPnQGp5UDCQ", + "name": "Lucky's Mexican Spot", + "address": "225 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413796, + "longitude": -75.1467025, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "XUAYdPV31Q2jGostWTqlYg", + "name": "Midas Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0371144828, + "longitude": -75.2228579583, + "stars": 5.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "rEwL8Wbm_Ym7p7GDVsE72A", + "name": "Liberty Art & Framing", + "address": "136 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508314, + "longitude": -75.1738984, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Shopping, Arts & Crafts, Framing, Flowers & Gifts", + "hours": null + }, + { + "business_id": "ejg5XYqnNmPjtwjeFU5GaQ", + "name": "Uptown Seafood", + "address": "6255 Limekiln Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0495757, + "longitude": -75.1525201, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Seafood, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0" + } + }, + { + "business_id": "4_VDvhKpKSsj7jZYdocZYA", + "name": "La Viola", + "address": "253 S 16th St, Apt 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947783, + "longitude": -75.1677739, + "stars": 3.5, + "review_count": 524, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "Caters": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "Corkage": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "df23M3Tt7jWmV7FIIXwZ2A", + "name": "Father & Son Auto Glass", + "address": "2100 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982339, + "longitude": -75.1371394, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Glass Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "q8Tgqu4jDOSrkaam_E7ywA", + "name": "Joseppi's Water Ice", + "address": "Stenton Ave 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.050776, + "longitude": -75.148709, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Pretzels, Desserts", + "hours": null + }, + { + "business_id": "rdCr5KnqfT5IsTOCfCmwfA", + "name": "T Bowl", + "address": "3716 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951131, + "longitude": -75.198256, + "stars": 2.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Food, Chinese", + "hours": null + }, + { + "business_id": "_S8sq_5sEINlTjlY8Kuo_w", + "name": "Philadelphia Marathon", + "address": "1515 Arch St, Fl 12", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548937, + "longitude": -75.1659258, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Races & Competitions, Active Life", + "hours": null + }, + { + "business_id": "-b8iNhBez0hRu478nIDhyg", + "name": "Swift Half", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9667374, + "longitude": -75.140148, + "stars": 3.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "HappyHour": "True" + }, + "categories": "Nightlife, Food, Beer, Wine & Spirits, Restaurants, Gastropubs, Pubs, Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "qAtqgUcGrwv6yHatMb2w0Q", + "name": "Guava & Java", + "address": "8500 Essington Ave, Ste A4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895145, + "longitude": -75.228992, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "None", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Food, Bakeries", + "hours": null + }, + { + "business_id": "rzbIq9mF4s0l9SL-j7XDHA", + "name": "Fat Jack's BBQ", + "address": "6391 Oxford Ave, Ste A7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0439014257, + "longitude": -75.0871487958, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "'quiet'", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False" + }, + "categories": "Burgers, Food, Food Delivery Services, Barbeque, Restaurants, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-17:0", + "Sunday": "10:30-16:0" + } + }, + { + "business_id": "UVlSniAij6XBb4xrh2-emw", + "name": "Chew Man Chu", + "address": "440 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9449809, + "longitude": -75.1653129, + "stars": 3.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True" + }, + "categories": "Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "w89QueMvn2bq2dmnTz-Mww", + "name": "Tin Angel At Serrano", + "address": "20 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494197, + "longitude": -75.1440839, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Music Venues, Nightlife, Arts & Entertainment", + "hours": null + }, + { + "business_id": "aKvowH2UXGvoxJgIRf04Zw", + "name": "Bernie's Restaurant & Bar - Manayunk", + "address": "4411 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026214204, + "longitude": -75.2250791341, + "stars": 2.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New), Bars, Pubs, Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "5ri94LTQqYp0YMuVhyqJPA", + "name": "Powerhouse Gym", + "address": "505 Knorr St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0542945, + "longitude": -75.0896767, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "5:30-23:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:30-23:0", + "Friday": "5:30-22:0", + "Saturday": "7:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "tG_o4LxKqdo6tJGFyS-Qig", + "name": "Coco Blue Spruce", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94680791, + "longitude": -75.1639846609, + "stars": 4.5, + "review_count": 276, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Hair Removal, Waxing, Beauty & Spas, Nail Salons, Massage, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "kgJ0N-a7ITVWQlEq9dSq7Q", + "name": "Vamp Boutique", + "address": "4231 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.02429, + "longitude": -75.2208741, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Accessories, Shopping, Women's Clothing, Fashion, Used, Vintage & Consignment", + "hours": { + "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" + } + }, + { + "business_id": "xS8CV9gvrmogcUUyZCrMKg", + "name": "Sunni's Nail Salon", + "address": "1501 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.977297, + "longitude": -75.158173, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Nail Salons, Skin Care, Day Spas", + "hours": null + }, + { + "business_id": "uX-zr2kPmjmd1g1tpgaaMg", + "name": "Faith West Photography", + "address": "30 S 15th St, Fl 15, The Graham Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493186, + "longitude": -75.165856, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Photography, Event Planning & Services, Photographers, Session Photography, Venues & Event Spaces", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "IHCSJHLyz2MgXpJAVssC3Q", + "name": "Headhouse Farmers' Market", + "address": "South St & S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941168, + "longitude": -75.145552, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Food, Farmers Market", + "hours": { + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "EiCpbBVtUHuni_knPGaG2g", + "name": "Ace Shoe Repair", + "address": "20 East Mount Airy Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.060442, + "longitude": -75.1904428, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "Bd-ferIX15EzxHI4KrpKQg", + "name": "Fu Li Yuan", + "address": "2326 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.99026, + "longitude": -75.1044918, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "n-WO5netYEXLiC6bBJrF4A", + "name": "The Basement Board Game Cafe", + "address": "6109 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0338955, + "longitude": -75.2154464, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Restaurants, Hobby Shops, Shopping", + "hours": { + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "urO7cwWPFRZU1MpSt9JIGw", + "name": "Doggie Style Pets", + "address": "1635 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9477127, + "longitude": -75.1695045, + "stars": 4.0, + "review_count": 100, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Stores, Dog Walkers, Pet Services, Pet Adoption", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "bOPsxcRSEkxDHW9TYTEITQ", + "name": "Mui Chung", + "address": "1133 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9367681, + "longitude": -75.1665655, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "False" + }, + "categories": "Chinese, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "z1TyupB3dqGlAfijPyGryA", + "name": "The Pizza Pub", + "address": "1940 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9235305, + "longitude": -75.1794968, + "stars": 2.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Bars, Pubs, Restaurants, Pizza, Nightlife", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "ukwNOYmoTnLTt07yRo9BeQ", + "name": "XpressMaids", + "address": "2601 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9688056, + "longitude": -75.1806079, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Cleaning, Professional Services, Office Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "Tkx1AiQarmw0zc50GibtTA", + "name": "Marathon On the Square", + "address": "1839 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481101, + "longitude": -75.1726188, + "stars": 3.5, + "review_count": 265, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Sandwiches, Restaurants, Breakfast & Brunch, Barbeque, American (New)", + "hours": { + "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": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Mt6XTQfwk2DUD3AK29YIBg", + "name": "Melograno", + "address": "2012 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512428, + "longitude": -75.1741148, + "stars": 3.5, + "review_count": 451, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "BikeParking": "True", + "Corkage": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "17:0-20:30" + } + }, + { + "business_id": "VN8I0fDPMTgslw33MqqlXQ", + "name": "Blue Mountain Vineyards & Cellars", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532281, + "longitude": -75.1589546, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "WiFi": "u'no'", + "Caters": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Food, Beer, Wine & Spirits, Arts & Entertainment, Wineries", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "yJATJa1CdUFmo4o9bXut8g", + "name": "Keller Williams", + "address": "1619 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Real Estate Agents, Real Estate Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Njv2-eMDyGEWEPEOVonwsA", + "name": "Le Pain Quotidien", + "address": "801 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948249279, + "longitude": -75.1543794572, + "stars": 3.5, + "review_count": 239, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "HasTV": "False", + "WiFi": "u'free'", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Belgian, Coffee & Tea, Bakeries, Food, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "big3BR6iJ3U-sOqOjbiPEA", + "name": "Mostly Books", + "address": "529 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412364, + "longitude": -75.1518246, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Used Bookstore, Hobby Shops, Bookstores, Books, Mags, Music & Video, Shopping, Music & DVDs", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "3TUWwxj6oMz4kKQ6sBaH2w", + "name": "Tokyo Sushi", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0742256969, + "longitude": -75.2026529059, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Wednesday": "12:0-16:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "8FzHRzpAcMaZfGFJwSLiXg", + "name": "Wag N Style Pet Boutique", + "address": "3734 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0091578, + "longitude": -75.1937048, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": null + }, + { + "business_id": "QMSevKu2-czkn3KjkvQOsw", + "name": "Popeyes Louisiana Kitchen", + "address": "2311 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0478979468, + "longitude": -75.0584631691, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "American (Traditional), Restaurants, Chicken Wings, Seafood, Cajun/Creole, Fast Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "N6IVoGyJaK1d9dnHsW0Z_Q", + "name": "A Dollar Store", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "gGXZqxBwGZZ9btJ8hXikBg", + "name": "La Famiglia Pizza & Grill", + "address": "6832 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041444, + "longitude": -75.065017, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "OE984imunvv0HCp2HtgvQg", + "name": "PJP Marketplace", + "address": "8914 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0521829074, + "longitude": -75.0088230148, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Restaurant Supplies, Grocery, Seafood Markets, Home & Garden, Professional Services, Beer, Wine & Spirits, Shopping, Specialty Food, Candy Stores, Wholesalers, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "5UX9Aq_4tBDngkZWHo1c9A", + "name": "Joe & Sons' Auto Repair", + "address": "9101 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0631793, + "longitude": -75.0215114, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Body Shops, Tires, Windshield Installation & Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "Qu-HGo_QNVQHEvJOAOdiOA", + "name": "InterAct Theatre Company", + "address": "2030 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512956, + "longitude": -75.1746805, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Performing Arts, Cinema", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "yrx221Vp9PNYBUJJSIoaiQ", + "name": "S and J Seafood", + "address": "713 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485085, + "longitude": -75.227008, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Seafood Markets, Grocery, Specialty Food, Local Flavor", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "-0x-MbRbsi9YoPxB873qcw", + "name": "Laura Sims Skate House", + "address": "210 S Cobbs Creek Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9593247, + "longitude": -75.2482224, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Skating Rinks, Party Equipment Rentals, Event Planning & Services, Active Life", + "hours": null + }, + { + "business_id": "nW5pVwaq1caliZ5Co1jQmQ", + "name": "Temple University's Foot & Ankle Institute", + "address": "148 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954817, + "longitude": -75.153484, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Colleges & Universities, Education, Podiatrists, Physical Therapy", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "vl4uDnmI6lM9zBcAR--84w", + "name": "Deke's Bar-B-Que", + "address": "443 Shurs Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0253148, + "longitude": -75.2113988, + "stars": 4.5, + "review_count": 257, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "GoodForKids": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Restaurants, Barbeque, Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "QnFsgq_Ez9D9p_4kDsKiuw", + "name": "BBQ Unlimited", + "address": "246 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499759912, + "longitude": -75.1455080509, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Barbeque, Restaurants, Caterers", + "hours": null + }, + { + "business_id": "S8obO75HdAxvT0QPAMFqwg", + "name": "A Full Plate", + "address": "1009 N Bodine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674013268, + "longitude": -75.14140052, + "stars": 3.5, + "review_count": 135, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Restaurants, American (New)", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "NUJrCPU51Cvip4ayZD1P5g", + "name": "Jose Pistola's", + "address": "263 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9476637, + "longitude": -75.166164, + "stars": 3.5, + "review_count": 488, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Restaurants, Bars, Mexican, Tex-Mex", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Aiu1Tm13sMXRAGRYFZ0MUA", + "name": "Grill Master Deli", + "address": "263 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9478904, + "longitude": -75.1694269, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Delis, Restaurants, Salad, Sandwiches", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "nyJfmrWl7OaM-UGeX0_41A", + "name": "Walking Fish Theatre", + "address": "2509 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9833607, + "longitude": -75.1254992, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Performing Arts, Comedy Clubs, Nightlife, Arts & Entertainment", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "SapvBx9qgQU46KPRvsqa_w", + "name": "Dwight's Southern Barbecue II", + "address": "3734 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.01035, + "longitude": -75.15121, + "stars": 3.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Event Planning & Services, Barbeque, Restaurants, Caterers", + "hours": null + }, + { + "business_id": "HdCTQkA_8XeYeqoX6XPPZw", + "name": "Healing Hands Therapy", + "address": "1604 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943961, + "longitude": -75.1690321, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Tui Na, Traditional Chinese Medicine, Active Life, Qi Gong, Day Spas, Massage Therapy, Beauty & Spas, Reflexology, Fitness & Instruction, Massage", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "s6ie5feRENx2WdxfUL5WKw", + "name": "Family Fuel", + "address": "7340 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0267492, + "longitude": -75.0306763, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "G9hwzbk-6OGXqdSli0iKrg", + "name": "Vie", + "address": "600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964129, + "longitude": -75.161985, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "civtZ0a6aFEOA8hpA3kcYg", + "name": "The Pet Snobs Boutique", + "address": "606 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423244, + "longitude": -75.1572226, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Sitting, Pet Services, Pet Stores, Pet Groomers", + "hours": { + "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" + } + }, + { + "business_id": "dnxBrWsHasYXofdKVcM1GA", + "name": "Greenland Tea House", + "address": "155 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550089, + "longitude": -75.15416, + "stars": 4.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Tea Rooms, Coffee & Tea, Bakeries", + "hours": { + "Monday": "6:0-17:30", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-17:30", + "Thursday": "6:0-17:30", + "Friday": "6:0-17:30", + "Saturday": "6:0-17:30", + "Sunday": "6:0-17:30" + } + }, + { + "business_id": "Jd19vvdF_rBTq8-Fpyyfsg", + "name": "Wells Fargo Center", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Musicians, Performing Arts, Arts & Entertainment, Event Planning & Services", + "hours": null + }, + { + "business_id": "6ie9_0MTKFJl5mFVdCtQag", + "name": "Doggie Style Pets", + "address": "715 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9398581, + "longitude": -75.1457478, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pet Adoption, Pet Stores, Pet Services, Pets", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "rFX9WHuPEb5-cZ4yN1uK6w", + "name": "Trophy Bikes", + "address": "611 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612893, + "longitude": -75.1410845, + "stars": 4.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Bikes, Shopping, Fashion, Sports Wear, Local Services, Sporting Goods, Bike Repair/Maintenance", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "00vHxQtHAIf7FnjGZuepfg", + "name": "CSz Philadelphia - Home of ComedySportz", + "address": "2030 Samsom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512318, + "longitude": -75.1745795, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Comedy Clubs, Performing Arts, Arts & Entertainment, Nightlife", + "hours": { + "Friday": "19:0-0:0", + "Saturday": "19:0-0:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "fBxjd0SqSJezssqC9zJCOQ", + "name": "Crabby Cafe - Chinatown BYOB", + "address": "1023 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9547839, + "longitude": -75.156927, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "6PHXDLQCiojDiS1iCZTVAA", + "name": "Astro Vintage", + "address": "720 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402338, + "longitude": -75.1511539, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Used, Vintage & Consignment", + "hours": { + "Monday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "3LTZYgHLXHWStzLL7cFkHg", + "name": "Manor Home and Gifts", + "address": "210 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496276, + "longitude": -75.1693807, + "stars": 2.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Home Decor, Home & Garden, Shopping, Kitchen & Bath, Local Services, Watch Repair", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "9:30-18:30", + "Wednesday": "9:30-18:30", + "Thursday": "9:30-18:30", + "Friday": "9:30-18:30", + "Saturday": "9:30-18:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "xp0ZfLeSimsQIe0DNtpu9A", + "name": "Philly Style Bagels", + "address": "218 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9516402, + "longitude": -75.1442998, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Food, Bagels", + "hours": null + }, + { + "business_id": "oqbhVgliVJH-iRa3AnD-3A", + "name": "Elixr Coffee Roasters", + "address": "207 S Sydenham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493333403, + "longitude": -75.1667326512, + "stars": 4.5, + "review_count": 810, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "None", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'" + }, + "categories": "Cafes, Food, Coffee & Tea, Bakeries, Coffee Roasteries, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "eJaeTZlIdM3HWCq__Ve4Wg", + "name": "Tria Cafe Rittenhouse", + "address": "123 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509483, + "longitude": -75.1704197, + "stars": 4.5, + "review_count": 880, + "is_open": 1, + "attributes": { + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "Alcohol": "'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BYOBCorkage": "'no'", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "Smoking": "u'no'", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "French, Spanish, Tapas Bars, Cafes, Restaurants, Wine Bars, Modern European, Bars, Nightlife, Italian, Comedy Clubs, Greek, American (New)", + "hours": { + "Monday": "14:0-20:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "cZnS2iTmPY6V58YqHiARxQ", + "name": "Aurora Grace", + "address": "517 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422472, + "longitude": -75.1504679, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Macarons, Bakeries, Chocolatiers & Shops, Food, Specialty Food, Desserts", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "-TTYvZ6HvJESApv1drFgkA", + "name": "Kings Kut", + "address": "2610 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9177223, + "longitude": -75.170086, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "ds4Vf2mPGm3NXb0IvpsNtQ", + "name": "Rebel Taco", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "HasTV": "True", + "RestaurantsTakeOut": "None", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False" + }, + "categories": "Tacos, Mexican, Restaurants", + "hours": null + }, + { + "business_id": "nsUP-dBD5ZEGyPQefIDbJA", + "name": "Walk It Like A Dog", + "address": "934 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935063113, + "longitude": -75.1476058, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pet Sitting, Pet Stores, Pets", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "LcdeqN0u-OCql6wiNUktqQ", + "name": "Philadelphia Argentine Tango School", + "address": "2030 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.979408, + "longitude": -75.1299787, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Arts & Entertainment, Specialty Schools, Dance Schools, Education", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-19:0", + "Wednesday": "13:0-0:0", + "Thursday": "13:0-22:30", + "Friday": "13:0-23:0", + "Saturday": "13:0-3:0", + "Sunday": "15:0-0:0" + } + }, + { + "business_id": "YWggYi31fmReeOQB1z2iww", + "name": "New Image Art & Framing", + "address": "1939 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522575, + "longitude": -75.1733049, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Crafts, Framing, Shopping, Art Galleries, Arts & Entertainment, Glass & Mirrors, Art Supplies, Home Services", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "Zl8jd_gzZduzMLN4_vUjLw", + "name": "La Colombe", + "address": "4360 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255165, + "longitude": -75.2240968, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:30-18:30", + "Tuesday": "6:30-18:30", + "Wednesday": "6:30-18:30", + "Thursday": "6:30-18:30", + "Friday": "6:30-18:30", + "Saturday": "7:30-18:30", + "Sunday": "7:30-18:30" + } + }, + { + "business_id": "2ZgLgrXqLVMuY5AmFdPKlw", + "name": "Driven Auto Styling", + "address": "2500 Wilmot St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0018351643, + "longitude": -75.0752338395, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Customization, Vehicle Wraps, Car Window Tinting, Auto Detailing, Automotive, Auto Glass Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "OzruqKZhTokmSZhFVJIcZg", + "name": "AAMCO Transmissions & Total Car Care", + "address": "6726 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0323576, + "longitude": -75.0518514, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Transmission Repair, Automotive, Auto Parts & Supplies, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "2p7pEF7sDGke1NDWd_CsTw", + "name": "New World Coin Laundry & Food Market", + "address": "136 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546909955, + "longitude": -75.1561504669, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "False" + }, + "categories": "Food, Laundromat, Dry Cleaning & Laundry, Laundry Services, Local Services, Grocery", + "hours": null + }, + { + "business_id": "AE1lpZfWA30h4cS25N7SLA", + "name": "2 Brothers Appliance Repair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1145029, + "longitude": -75.0085399, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Local Services, Appliances & Repair, Home Services", + "hours": null + }, + { + "business_id": "J736SbVQcqIm-CDdIntt5w", + "name": "Pharmacy of America", + "address": "232 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969448, + "longitude": -75.140848, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Drugstores, Shopping, Health & Medical", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "wGnBaLvgH3hrq6C3AnO5Mg", + "name": "Shish-Kabob Palace", + "address": "1683 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.086533, + "longitude": -75.039017, + "stars": 3.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Uzbek, Restaurants, Middle Eastern, Russian", + "hours": { + "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" + } + }, + { + "business_id": "5mfnMh_EMOJinRTUUeAo-Q", + "name": "Awesome Dudes Printing", + "address": "1338 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9313713, + "longitude": -75.154865, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Screen Printing, Screen Printing/T-Shirt Printing, Printing Services, Print Media, Mass Media, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "rrCKrOzfMQWwxtLIEk-yVA", + "name": "Greg Avakian", + "address": "4722 Warrington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947394, + "longitude": -75.217146, + "stars": 5.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Electricians, Lighting Fixtures & Equipment", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "vMBNua_gGR8F6CP1_iPH4A", + "name": "MainLine Auto", + "address": "5825 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0422382, + "longitude": -75.1436841, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Used Car Dealers, Car Dealers", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "rf0jA1JNEBenyjvJhgr08Q", + "name": "Tk Homestyle cooking", + "address": "2927 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9930909, + "longitude": -75.1192257, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "HappyHour": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'" + }, + "categories": "Chicken Wings, Restaurants, Breakfast & Brunch, Soul Food, Food, Seafood, Desserts, American (Traditional)", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "FTYGT8M8R3A7RNXz8oIDaA", + "name": "Crab Shack", + "address": "4800 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.026959, + "longitude": -75.1508214, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': False}", + "BikeParking": "None" + }, + "categories": "Specialty Food, Food, Seafood Markets", + "hours": null + }, + { + "business_id": "oH6iX_75CnCg1Bh7TeAsTQ", + "name": "A Quality Cafe", + "address": "Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9554597906, + "longitude": -75.2115872763, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food Trucks, Restaurants, Food, Halal, Falafel, Mediterranean", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "-wkXI95IPxvIJhq2kaeskA", + "name": "Dr. Checchio & Dr. Dowd, Oral and Maxillofacial Surgery", + "address": "9525 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0578334, + "longitude": -74.9983607, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical", + "hours": null + }, + { + "business_id": "GRRMLWCU388_tfvpKYOM9w", + "name": "Restaurant Neuf", + "address": "943 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937807, + "longitude": -75.157949, + "stars": 4.5, + "review_count": 65, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Moroccan, French", + "hours": { + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "_05DcCQmCP5aGnfCnI4r9Q", + "name": "Capital One Cafรฉ", + "address": "135 S 17th St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500535, + "longitude": -75.1689142564, + "stars": 4.0, + "review_count": 178, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Food, Coffee & Tea, Financial Advising, Banks & Credit Unions, Internet Cafes, Financial Services, Restaurants, Cafes", + "hours": { + "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": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "fz9ymU6xguSAdVjSdHBLDg", + "name": "Denise's Delicacies", + "address": "2916 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9991515, + "longitude": -75.1669759, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Desserts, Food, Bakeries, Restaurants", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "TdMja0lg8l5kdTc9qtZoZg", + "name": "Subway", + "address": "910 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497994757, + "longitude": -75.1562181011, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Sandwiches", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "t217un7qMA9RdMvov4kSaA", + "name": "Peters Associates", + "address": "8120 Erdrick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0414938, + "longitude": -75.0241955, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Water Heater Installation/Repair, Local Services, Heating & Air Conditioning/HVAC, Air Duct Cleaning, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "KYHYFXwkHsyEHYYkfkpihQ", + "name": "Pep Boys", + "address": "3118 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0048485, + "longitude": -75.1802107, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Tires, Auto Parts & Supplies, Oil Change Stations", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "EnxvK5bFL7y_N5VrHKOijw", + "name": "Claudio & Co Classic Cuts Barber Shop", + "address": "8011 Pine Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0773889, + "longitude": -75.084633, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Barbers", + "hours": null + }, + { + "business_id": "xn-eXDRGtkOogG86yUCRPw", + "name": "Make A Move", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "TV Mounting, Furniture Assembly, Home Services, Junk Removal & Hauling, Local Services, Movers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "DjnC_sT1RoNUfib1lvcYXw", + "name": "FlexBox Moving and Storage", + "address": "1228 Belmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19014", + "latitude": 39.9738565361, + "longitude": -75.2124795671, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Self Storage, Local Services, Movers, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "vB_UoUN99zSI6jLqPbgOCA", + "name": "Viero Bridal Philadelphia", + "address": "629 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615854, + "longitude": -75.1409359, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Bridal, Event Planning & Services, Wedding Planning", + "hours": { + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "XGb-h8G8TjDKyxOjuoEZqA", + "name": "Labcorp", + "address": "1703 S Broad St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929189, + "longitude": -75.168643, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "DQDZQp-THbeWE1uQ7CNZ5w", + "name": "Colney Delicatessen", + "address": "2047 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525262, + "longitude": -75.1751723, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "eX1E0J6uh8a3oVazer1_yw", + "name": "McDonald's", + "address": "7911-17 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0729200641, + "longitude": -75.1576564461, + "stars": 1.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "TnPYPIDubOiO6ntG7f0r5w", + "name": "Red Brick Craft Distillery", + "address": "2628 Martha St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9846878, + "longitude": -75.1224542, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Cocktail Bars, Bars, Nightlife, Beer, Wine & Spirits, Distilleries, Breweries", + "hours": { + "Saturday": "13:0-18:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "mjUKXi9JbALe-y2yCu92oA", + "name": "The Groove Hound Dog Grooming & Daycare", + "address": "2236 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9804551, + "longitude": -75.1287606, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Sitting, Pet Boarding, Pet Groomers, Pet Services, Pet Training, Dog Walkers", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30" + } + }, + { + "business_id": "p6j9l74eiA7coA_5cWMVdw", + "name": "Metric Salon", + "address": "3502 Scotts Ln, Ste 2111", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007919, + "longitude": -75.18504, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Waxing, Beauty & Spas, Tanning, Hair Salons, Skin Care, Spray Tanning, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-16:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "a-NAN792kCSBucpVgFToIg", + "name": "The Crossroads Coach", + "address": "7715 Crittenden St, Ste 408", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0727535, + "longitude": -75.1950922, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Career Counseling, Life Coach, Professional Services", + "hours": null + }, + { + "business_id": "ZijcWgADCYVwLOOGPkd3tw", + "name": "Rite Aid", + "address": "2301 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951645, + "longitude": -75.1786715, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Photography Stores & Services, Shopping, Drugstores, Food", + "hours": { + "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" + } + }, + { + "business_id": "3AXMyEZKczm5rliRDBJiBA", + "name": "Mediterranean 2000", + "address": "8026 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.06109, + "longitude": -75.0522165, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Portuguese, Iberian, Mediterranean", + "hours": null + }, + { + "business_id": "GOiajzGBbAevPr24G68XOw", + "name": "Man With A Van", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9795244, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Movers, Home Services, Couriers & Delivery Services, Furniture Assembly, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-11:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "zBFoAZg4jY5y3g9c4mSzfQ", + "name": "Computer Nerds", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532813308, + "longitude": -75.1725996666, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Electronics, Printing Services, Electronics Repair, Data Recovery, Home Theatre Installation, Local Services, Professional Services, Mobile Phones, Home Services, Web Design, Computers, Home Automation, Shopping, TV Mounting, IT Services & Computer Repair", + "hours": { + "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" + } + }, + { + "business_id": "8QK0MDPAYsM1kpfGXdWJ5w", + "name": "Vicky Nail Salon II", + "address": "7964 Dungan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0682106, + "longitude": -75.0685704, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "foh6hwQxjCs0SeLT5MO1SQ", + "name": "Wawa", + "address": "8220 West Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8912479794, + "longitude": -75.2418897108, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Gas Stations, Coffee & Tea, Sandwiches, Automotive, Convenience Stores, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "I-478nfv8RXjSW-evYXxiQ", + "name": "Cross Country Movers", + "address": "5213 Grays Ave, Unit 106", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9358399, + "longitude": -75.2145863, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Self Storage, Packing Services, Movers, Local Services, Home Services", + "hours": { + "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": "6:0-17:0" + } + }, + { + "business_id": "FzHOoHFUI_V4lABV1gboKA", + "name": "Park Safe System", + "address": "414 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945516, + "longitude": -75.168754, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "Aw9Tldxcg5ifodzn0R2O6g", + "name": "Blackbird Pizzeria", + "address": "614 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614370059, + "longitude": -75.141503, + "stars": 4.0, + "review_count": 248, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "DogsAllowed": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Restaurants, Desserts, Kosher, Pizza, Salad, Food, Vegan, Chicken Wings", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "SJiPVACkEd6S0v3YrWLTdg", + "name": "George's Pizza", + "address": "201 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969746, + "longitude": -75.1397961, + "stars": 3.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "V8we7-uCa-SouadZmZ9Ieg", + "name": "The Cheesecake Factory", + "address": "1430 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491039, + "longitude": -75.1658813, + "stars": 3.0, + "review_count": 381, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "DriveThru": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Salad, American (Traditional), American (New), Seafood, Food, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "WUdM4vFgbetmu64_HfqStQ", + "name": "Michael's Cafe", + "address": "1623 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294078, + "longitude": -75.1638775, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "U4hibwdvk2pACJeo6FaoIA", + "name": "Dunkin'", + "address": "9240 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0470917, + "longitude": -74.9934078, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "DriveThru": "None", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:0-21:0", + "Tuesday": "4:0-21:0", + "Wednesday": "4:0-21:0", + "Thursday": "4:0-21:0", + "Friday": "4:0-21:0", + "Saturday": "4:0-20:0", + "Sunday": "4:0-20:0" + } + }, + { + "business_id": "8grIwJYQJ16EUImULDCdQw", + "name": "Randi's Restaurant and Bar", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.087697, + "longitude": -75.038827, + "stars": 3.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "WiFi": "'no'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Nightlife, Restaurants, Italian", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Hy-gZGsEpgZhIaARnaBKdQ", + "name": "Snap Kitchen", + "address": "601 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426857, + "longitude": -75.158501, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Health Markets, Salad, American (Traditional), Gluten-Free, Food, Breakfast & Brunch, American (New), Food Delivery Services, Restaurants, Vegetarian, Specialty Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "9qbBrS6IjXLh_d2BNIeGqw", + "name": "Sedition Philly Restaurant and Bar", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481865, + "longitude": -75.1536803, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (New), Restaurants, Bars, Cocktail Bars, Nightlife", + "hours": { + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "rnwZzizgpjocPOeND0luSA", + "name": "Dutch Country Farmers'market", + "address": "2031 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0506537, + "longitude": -75.0646281, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Specialty Food, Farmers Market, Fruits & Veggies", + "hours": { + "Wednesday": "9:0-15:0", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "neYzNhQd5lqq02cx3QZsyA", + "name": "Harry's Natural Food Store", + "address": "1805 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0533817, + "longitude": -75.0693612, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Food, Health Markets", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "A9OppQUMHX-sCMAQ3Ooaww", + "name": "Nicole Dominican Beauty Salon", + "address": "7950 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.059288, + "longitude": -75.052484, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "bJ5Y42F7hPl6rKXIY_LiYQ", + "name": "Heppenstall Bruce, MD", + "address": "3400 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950044, + "longitude": -75.193131, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "8C5bR0nuQzmgRDzEZQ332Q", + "name": "Society Hill Mail & Parcel Service", + "address": "614 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419931, + "longitude": -75.1557352, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mailbox Centers, Local Services, Notaries", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "TB8VwSv-n9S2p2_1wzS3xg", + "name": "Duke and Winston Showroom", + "address": "1822 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516957502, + "longitude": -75.1713559717, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Men's Clothing, Shopping, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "u8WvITGLSvg0bUltHpSUmQ", + "name": "Mockingbird Salon", + "address": "1822 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9271202, + "longitude": -75.1670387, + "stars": 5.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Men's Hair Salons, Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Hair Stylists, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "h4dbFTNOaK0IGdyOTXuu7w", + "name": "Ali Baba", + "address": "10184 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1075174, + "longitude": -75.0270014, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Bakeries, Halal, Mediterranean, Afghan, Restaurants, Food", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "CLxp3JZNCLppIMHRUB3I-Q", + "name": "Smith Chiropractic", + "address": "2875 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057017, + "longitude": -75.029807, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Chiropractors, Health & Medical", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "WDVNB5xRMx0Gz91a2fDTRw", + "name": "E & J Pizza", + "address": "1000 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9834656, + "longitude": -75.1499542, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "DriveThru": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Chicken Wings, Sandwiches, Burgers, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Q-4tY-IVxZCB6ot3x068zQ", + "name": "Cozara", + "address": "3200 Chestnut StChestnut Square, Ste A, 33rd & Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537713201, + "longitude": -75.1894183964, + "stars": 3.5, + "review_count": 181, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Japanese, Food, Tapas/Small Plates, Restaurants", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0" + } + }, + { + "business_id": "RAzantDide4Zr0OQljaQsw", + "name": "Paper On Pine", + "address": "1310 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94961, + "longitude": -75.1629079021, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Cards & Stationery, Books, Mags, Music & Video, Shopping, Arts & Crafts, Bookstores, Flowers & Gifts", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "6vp741cxMvQMicJ3qZuLGQ", + "name": "2nd Street Brew House", + "address": "1700 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926632, + "longitude": -75.1493732, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HasTV": "True", + "Caters": "False", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Corkage": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'" + }, + "categories": "Pubs, Beer, Wine & Spirits, Food, Nightlife, Bars, Restaurants, Beer Bar, American (Traditional), Sports Bars", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "vKLxREcqvvqeNHOVvWw1uw", + "name": "Adrienne Dara Hair", + "address": "1601 Walnut St, Ste 1324, Fl 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499239, + "longitude": -75.1677213, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "True" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "9:0-16:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "F_ker4jxFkcvfZQf-MDfJA", + "name": "Russet", + "address": "1521 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9475385, + "longitude": -75.1673293, + "stars": 3.5, + "review_count": 269, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "True", + "HappyHour": "False", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, French, Italian, American (New)", + "hours": { + "Tuesday": "17:30-21:30", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-21:30", + "Friday": "17:30-22:30", + "Saturday": "17:30-22:30", + "Sunday": "17:30-21:30" + } + }, + { + "business_id": "7M4acncueqDznH9AwgPjeg", + "name": "Maggie's Waterfront Cafe", + "address": "9242 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0434234376, + "longitude": -74.9895148466, + "stars": 3.5, + "review_count": 221, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "WiFi": "'free'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "CoatCheck": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "HappyHour": "True", + "BYOB": "False", + "GoodForDancing": "False", + "Music": "{u'dj': False, u'live': None, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "RestaurantsDelivery": "True", + "Smoking": "u'outdoor'", + "BikeParking": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nightlife, Cafes, American (Traditional), Event Planning & Services, Bars, Restaurants, Venues & Event Spaces, Salad", + "hours": { + "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" + } + }, + { + "business_id": "p6ks6QvrcKDs0uzDmD7sWA", + "name": "Mifflin Market", + "address": "1901 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9247865, + "longitude": -75.1543439, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "BUPdkTi2UMH2D5dkymVnYw", + "name": "1812 Productions", + "address": "1714 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.94679, + "longitude": -75.1703845, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Performing Arts, Cinema", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0" + } + }, + { + "business_id": "-2xzyHY8uWnLmyQkkfwMuQ", + "name": "El Quetzal", + "address": "8427 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0758032, + "longitude": -75.2055828, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "False", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Shopping, Flowers & Gifts, Gift Shops, Women's Clothing, Fashion, Jewelry", + "hours": { + "Monday": "11:0-16:30", + "Tuesday": "11:30-17:0", + "Wednesday": "11:30-17:0", + "Thursday": "11:30-17:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "vdG1rGWbpVyTrFmCQomdnw", + "name": "Super China Buffet", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924676, + "longitude": -75.1013555, + "stars": 2.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "o_Qn1BN-0BQjSo7PNPDCKw", + "name": "PHS Pop Up Garden - East Passyunk", + "address": "Wharton St and South 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9330522, + "longitude": -75.1591362, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Community Service/Non-Profit, Beer Gardens, Food Stands, Local Flavor, Nightlife, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "91Whj280_D7rbpK7D9Q7BQ", + "name": "PupTales", + "address": "1510 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.945581, + "longitude": -75.16731, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Dog Walkers, Pets, Pet Services", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "oNixSz4j87_41czlQtcjLQ", + "name": "Maytag Laundromat", + "address": "1801 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9389489, + "longitude": -75.17328, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Dry Cleaning, Laundromat, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "7:30-20:0", + "Sunday": "7:30-20:0" + } + }, + { + "business_id": "Vlf3TF8ZDGp94VGI2OdyOw", + "name": "California Pizza", + "address": "3231 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.960506597, + "longitude": -75.1891009994, + "stars": 2.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Wraps, Salad, Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:30", + "Tuesday": "11:0-0:30", + "Wednesday": "11:0-0:30", + "Thursday": "11:0-0:30", + "Friday": "11:0-2:30", + "Saturday": "11:0-2:30", + "Sunday": "11:0-0:30" + } + }, + { + "business_id": "na6kPgbJ8c73JELysDrtuw", + "name": "Poi Dog Snack Shop", + "address": "100.5 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951909, + "longitude": -75.1756143, + "stars": 4.0, + "review_count": 227, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Caters": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "HappyHour": "False" + }, + "categories": "Poke, Food, Hawaiian, Restaurants, Desserts, Food Trucks", + "hours": { + "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" + } + }, + { + "business_id": "FjXxz00esSUN0Ij5RmgdeA", + "name": "Channel 6-ABC Wpvi Tv", + "address": "4100 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0054749, + "longitude": -75.2142672, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Television Stations, Mass Media", + "hours": null + }, + { + "business_id": "rK-F9iJA3023_puvYBzw5A", + "name": "Five Below", + "address": "2250 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9172350802, + "longitude": -75.139948057, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "a4yMCHEmXwNvxOIJ-pfp1w", + "name": "Buck's Hardware", + "address": "218 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565932, + "longitude": -75.1607833, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Home & Garden, Hardware Stores", + "hours": { + "Monday": "7:0-16:30", + "Tuesday": "7:0-16:30", + "Wednesday": "7:0-16:30", + "Thursday": "7:0-16:30", + "Friday": "7:0-16:30" + } + }, + { + "business_id": "LBXnNajuMTR6rFR23oalcg", + "name": "The Common PHL", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566244, + "longitude": -75.194436, + "stars": 4.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0" + } + }, + { + "business_id": "--OS_I7dnABrXvRCCuWOGQ", + "name": "Lens Auto Body & Painting", + "address": "4819 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0281603, + "longitude": -75.0338026, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Car Rental, Automotive, Hotels & Travel, Body Shops", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "4fLDpUWfPaYap44vxOOL0A", + "name": "Architectural Window of Philadelphia", + "address": "1901 E Hazzard St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9872577, + "longitude": -75.1266726, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Windows Installation", + "hours": null + }, + { + "business_id": "KQjQiINBQpY63f4loYtThQ", + "name": "Philadelphia Mormon Temple", + "address": "1739 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9590610956, + "longitude": -75.1680254841, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Tuesday": "17:30-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "17:30-20:0", + "Friday": "9:0-20:0", + "Saturday": "6:30-15:0" + } + }, + { + "business_id": "7YZsJLbmUFTgy12q7ARq1A", + "name": "New Germantown Pizza", + "address": "4923 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0288149, + "longitude": -75.1627123, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "NoiseLevel": "'average'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:30", + "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-21:30" + } + }, + { + "business_id": "gKzFir7-U5_sgvCymGPGYw", + "name": "Frank's Pizza", + "address": "3600 Fisk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0131443, + "longitude": -75.1942878, + "stars": 4.0, + "review_count": 109, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Pizza, Italian, Sandwiches, Restaurants", + "hours": { + "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-21:30" + } + }, + { + "business_id": "AQIi4IRvUxkurxNvlUD9hQ", + "name": "Smoothie King", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95188, + "longitude": -75.16772, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Health Markets, Specialty Food, Vitamins & Supplements, Food, Juice Bars & Smoothies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "z7G7-VekRUjGvSu3w05Dkw", + "name": "Society Hill Beverage", + "address": "129 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340072, + "longitude": -75.1468309, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-17:30" + } + }, + { + "business_id": "Z0p3OnRPCUTkihBS_U87Sg", + "name": "ScooterLand USA", + "address": "3818 K St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0057607, + "longitude": -75.1055882, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Motorcycle Dealers, Automotive, Motorcycle Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "bGKwmfoxz9aaj1GdIuJ8JA", + "name": "Roxy Guitar", + "address": "7026 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0441543, + "longitude": -75.2295088, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Musical Instrument Services, Shopping, Guitar Stores, Musical Instruments & Teachers, Local Services", + "hours": null + }, + { + "business_id": "6eKWeZJAuO6CDtH2SCXNDA", + "name": "TD Bank", + "address": "1032 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500555, + "longitude": -75.1584776, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "fWR4Rpw5_zU4g1SbZXEeNg", + "name": "The Wild Burrito", + "address": "2015 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9228995, + "longitude": -75.1525199, + "stars": 3.0, + "review_count": 59, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tex-Mex, Salad, Food, Breakfast & Brunch, Desserts, Restaurants, Mexican", + "hours": { + "Monday": "15:0-21:0", + "Tuesday": "15:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "w4eReKam-skGORjv41A7KQ", + "name": "Shalom Pizzeria", + "address": "7598 Haverford Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.979442, + "longitude": -75.269296, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False" + }, + "categories": "Pizza, Restaurants, Vegetarian, Food, Pasta Shops, Caterers, Middle Eastern, Salad, Specialty Food, Event Planning & Services", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "ffbSQaugQvO30KdGWr9qMQ", + "name": "Blue Jay Restaurant", + "address": "2900 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9744175, + "longitude": -75.1837135, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Diners, Restaurants", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "e3ph3NO-eTeWnJozPRxxkQ", + "name": "Top Cut Salon", + "address": "237 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9564751, + "longitude": -75.1554273, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "19:0-19:30", + "Tuesday": "9:0-19:45", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-19:0", + "Friday": "19:0-19:45", + "Saturday": "19:0-19:30", + "Sunday": "9:0-19:30" + } + }, + { + "business_id": "KN3h_-RuZKcUNL8fJ1r3XQ", + "name": "Liberties West Condominiums", + "address": "712 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9639908, + "longitude": -75.1497496, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Condominiums, Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "dn7fj6iePzwnvyhtNmiTrg", + "name": "Wawa", + "address": "7001 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0594444275, + "longitude": -75.0484237671, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Gas Stations, Food, Coffee & Tea, Sandwiches, Convenience Stores, Restaurants, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "1hsj3R3cqe8x6EG0nzt6TQ", + "name": "Cathedral Basilica of Saints Peter and Paul", + "address": "18th St & Benjamin Franklin Parkway", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9574298042, + "longitude": -75.168461851, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Churches", + "hours": null + }, + { + "business_id": "kPuwg0Lx1RVa9TClDl5Ocw", + "name": "California Tortilla", + "address": "10000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0953268, + "longitude": -75.0155463, + "stars": 3.5, + "review_count": 80, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Vegetarian, Restaurants, Mexican, Tex-Mex", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "65TDxeJI6mFStXxSqAcYWA", + "name": "Taste Restaurant", + "address": "1 Dock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9463008, + "longitude": -75.1435473, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "igxb-eOcw9GbfxZ1yqB2uA", + "name": "MD Dwellings", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19072", + "latitude": 40.0262109, + "longitude": -75.2537397, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "D6tv78balxSAdiUjuM8dGg", + "name": "King of Falafel", + "address": "16th St S & John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9537996, + "longitude": -75.1666213, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Falafel, Food Trucks, Food, Restaurants, Middle Eastern, Mediterranean, Food Stands", + "hours": { + "Monday": "12:0-15:0", + "Tuesday": "12:0-15:0", + "Wednesday": "12:0-15:0", + "Thursday": "12:0-15:0", + "Friday": "12:0-15:0" + } + }, + { + "business_id": "-t1hxZ6X-XaIU4BBUQCXGA", + "name": "Pizza Hut", + "address": "901 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.971405, + "longitude": -75.151021, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza, Chicken Wings, Italian", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Ukkr1N8UApmJsOzbX4XnRA", + "name": "The Green Line Cafe", + "address": "4239 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9497994, + "longitude": -75.2090789, + "stars": 3.5, + "review_count": 197, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Cafes, Food", + "hours": { + "Monday": "6:30-21:30", + "Tuesday": "6:30-21:30", + "Wednesday": "6:30-21:30", + "Thursday": "6:30-21:30", + "Friday": "6:30-21:0", + "Saturday": "7:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "mbO9fm8a1Y8FCLUyPHJ98A", + "name": "Burger King", + "address": "5822 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0328372038, + "longitude": -75.0834001601, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "JPEo1KMRZcx1BSTGwUE-ew", + "name": "Lamb general contractors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Windows Installation, Contractors, Home Services, Roofing", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "DSG_T9HfKqdWxzwMf3DS0A", + "name": "Rice and Things", + "address": "7232 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9747482, + "longitude": -75.261318, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'formal'", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': None}" + }, + "categories": "Diners, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "uFZYgXAubtiZejamwYk_eA", + "name": "Freedom Taxi", + "address": "2351 S Swanson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.917793, + "longitude": -75.1461099, + "stars": 1.5, + "review_count": 129, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Taxis, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "J-6zITFsxeTL3wLBeDDSWg", + "name": "Pennsport Beer Boutique", + "address": "242 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9317282604, + "longitude": -75.149591, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BikeParking": "True", + "HappyHour": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'free'", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': None}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Nightlife, Beer Bar", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "tsMaxWXXA0zcf0D3Iil0BQ", + "name": "Desi Hut Cafe & Grill", + "address": "3651 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9594605, + "longitude": -75.1949603, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'formal'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True" + }, + "categories": "Indian, Pakistani, Restaurants", + "hours": { + "Monday": "14:0-23:45", + "Tuesday": "14:0-23:45", + "Wednesday": "14:0-23:45", + "Thursday": "14:0-23:45", + "Friday": "14:0-23:45", + "Saturday": "14:0-23:45", + "Sunday": "14:0-23:45" + } + }, + { + "business_id": "1ir6Kjb-d4Vg_dViVvR-rQ", + "name": "Carlo's Bakery", + "address": "2101 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95093, + "longitude": -75.1758708, + "stars": 3.0, + "review_count": 177, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Food, Desserts, Bakeries, Patisserie/Cake Shop, Cupcakes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "atLSGvhAF4WoBD8NPCUPwg", + "name": "TJ Maxx", + "address": "1851 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923491, + "longitude": -75.1405772, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Department Stores, Fashion, Shopping", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "gBSHDsZRoFBKDOz9qy9pJQ", + "name": "Esporta Fitness", + "address": "2425 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920916, + "longitude": -75.1863604, + "stars": 2.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Trainers, Gyms, Fitness & Instruction, Yoga, Sports Clubs, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "PTiOZUZjjc-wLoVu8odw_g", + "name": "Liberty Travel", + "address": "10090 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0960962, + "longitude": -75.0148107111, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Travel Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-16:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "a62d7e_xXeljJcOUHkJjkg", + "name": "Circles Contemporary Asian", + "address": "1516 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9306471, + "longitude": -75.1707286, + "stars": 3.5, + "review_count": 377, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Vegetarian, Asian Fusion, Thai, Restaurants", + "hours": { + "Monday": "17:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-22:45", + "Thursday": "11:0-22:45", + "Friday": "11:0-22:45", + "Saturday": "11:0-22:45", + "Sunday": "11:0-22:45" + } + }, + { + "business_id": "aVol4p_C56cyClE5rc274Q", + "name": "Sota Spirit Of The Artist", + "address": "1022 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447526, + "longitude": -75.1591111, + "stars": 5.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Shopping, Arts & Crafts, Home Decor, Art Galleries, Home & Garden", + "hours": { + "Tuesday": "10:30-18:30", + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "10:30-18:30", + "Saturday": "10:30-18:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "GROg6x3Lf-Tp3TgiTtYsoA", + "name": "Dave & Buster's", + "address": "1995 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0917381094, + "longitude": -74.9609848045, + "stars": 2.0, + "review_count": 185, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "WiFi": "'free'", + "HappyHour": "True", + "GoodForDancing": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Arts & Entertainment, American (Traditional), Eatertainment, Event Planning & Services, Nightlife, Arcades, Bars, Venues & Event Spaces", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "0:0-20:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-23:59" + } + }, + { + "business_id": "RVFgQyQg-UWdQjZVbyB4YA", + "name": "Asian Fusion Garden", + "address": "243 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947038, + "longitude": -75.157443, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Chinese, Thai, Asian Fusion", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "x_f_PFhioqXz-yoBCaRaOg", + "name": "Mina Motors", + "address": "1411 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9420866, + "longitude": -75.1666225, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Automotive, Transmission Repair, Oil Change Stations, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "-rVeTFLcXZkE7HlaNXwFxA", + "name": "The Home Hero", + "address": "529 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9241031, + "longitude": -75.1556554, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Damage Restoration, Handyman, Drywall Installation & Repair, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "adlLsuafIDO_OOAr4tG1bg", + "name": "Fatboy & Slim's", + "address": "3929 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548253, + "longitude": -75.2009783, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Sandwiches, Burgers, Restaurants", + "hours": { + "Monday": "17:0-22:30", + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "11:30-22:30" + } + }, + { + "business_id": "MJCKZqLXluoRRYuAT-SOCQ", + "name": "Tastykake", + "address": "3 Crescent Dr, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8959434, + "longitude": -75.1739639, + "stars": 2.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": null + }, + { + "business_id": "UdSRmZE9WhUjuwIOxOLxPQ", + "name": "Clear Reflection Cleaning Service", + "address": "220 A Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9254577, + "longitude": -75.1503087, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Office Cleaning, Home Cleaning, Carpet Cleaning, Professional Services, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "or_WcjWELDsssk2JruvJcg", + "name": "Cafรฉ Lutecia", + "address": "2301 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465958, + "longitude": -75.1796066, + "stars": 4.0, + "review_count": 199, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BYOBCorkage": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Breakfast & Brunch, French", + "hours": { + "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-15:0" + } + }, + { + "business_id": "9YyeoqIBSEL_uikPBTZZUQ", + "name": "Hadramout", + "address": "136 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557192, + "longitude": -75.2117204, + "stars": 4.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Arabic, Halal, Middle Eastern", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "06z3o3yL4ditpwjINSA39Q", + "name": "Metro Home and Hardware", + "address": "620 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9610334, + "longitude": -75.1387928, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "O0vdRrP-pxdEBaxAPSWYUw", + "name": "PhilaMOCA", + "address": "531 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9622322, + "longitude": -75.1574941, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": null + }, + { + "business_id": "xW6nJmGqY-lq4i0xKtBMCg", + "name": "Kings Oak", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664092, + "longitude": -75.138663, + "stars": 3.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "Smoking": "u'no'", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "CoatCheck": "False", + "Caters": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': True}", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "BikeParking": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WiFi": "'free'" + }, + "categories": "American (New), Bars, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "KKeWrAl2luH3Je_ZpJiD7g", + "name": "Fatou African Hair Braiding", + "address": "3541 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0070965, + "longitude": -75.1498523, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "842klWrQcZi4K4rLC10YKA", + "name": "First Unitarian Church", + "address": "2125 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526747, + "longitude": -75.1763644, + "stars": 4.0, + "review_count": 86, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Religious Organizations, Music Venues, Churches, Venues & Event Spaces, Arts & Entertainment, Nightlife, Event Planning & Services", + "hours": null + }, + { + "business_id": "-QI8Qi8XWH3D8y8ethnajA", + "name": "Philadelphia International Airport - PHL", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8730739955, + "longitude": -75.2432488754, + "stars": 2.5, + "review_count": 2149, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Airports, Local Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "DzAiKgi0HH1wDzAt4aEd7g", + "name": "Starbucks", + "address": "1030 Monument Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 40.0067220453, + "longitude": -75.2127534892, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "qHe8EQyf72nWO633eGxG7A", + "name": "Big Ass Slices", + "address": "218 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497522, + "longitude": -75.1444806, + "stars": 3.5, + "review_count": 240, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Restaurants, American (Traditional), Pizza", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-23:0", + "Friday": "8:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "dOQG0KWwxfgjPsAzoM0KSw", + "name": "Lang's Fruit & Produce", + "address": "2101 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9246494, + "longitude": -75.1728012, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Fruits & Veggies, Specialty Food, Food", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "uP-60-QY21kdUKim2QtnNA", + "name": "Steve & Dominic's Auto Repair", + "address": "1010 Wood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9578904, + "longitude": -75.1557922, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "YoD2cYIACaunSwKSy_G-OQ", + "name": "Tri-state Assembly", + "address": "2311 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0484513, + "longitude": -75.0566656, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Junk Removal & Hauling, Furniture Assembly, Home Services, Landscaping, TV Mounting, Contractors, Handyman", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "ZE3aoHsFnTmerDHKbEg4rA", + "name": "Unleashed", + "address": "520 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94561, + "longitude": -75.179891, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "OutdoorSeating": "False", + "DogsAllowed": "True", + "Caters": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "CoatCheck": "False" + }, + "categories": "Pet Training, Pet Groomers, Pet Stores, Pets, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "9:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "aq4qCXFsron30pBPbKDLwg", + "name": "The Beehive Hair Salon", + "address": "1719 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967416, + "longitude": -75.165984, + "stars": 4.0, + "review_count": 61, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Skin Care, Hair Salons, Makeup Artists", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Otg8SkZHFAZUXvW5MeNU6Q", + "name": "M London Furniture", + "address": "500 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 39.970063, + "longitude": -75.1453031, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Furniture Stores, Home & Garden", + "hours": { + "Monday": "10:30-17:0", + "Tuesday": "10:30-17:0", + "Wednesday": "10:30-17:0", + "Thursday": "10:30-17:0", + "Friday": "10:30-17:0", + "Saturday": "10:30-15:0" + } + }, + { + "business_id": "DEh5BPKE8LHm4PUsH_E1ig", + "name": "Pat's Pizza & Pasta", + "address": "1410 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943568, + "longitude": -75.166054, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Caters": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False" + }, + "categories": "Italian, Salad, Pizza, Restaurants", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "fogEQqK7jH0l6FRpzOOBRQ", + "name": "Delaware Valley Sports Center", + "address": "101 Geiger Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1109545, + "longitude": -75.0508475, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Shopping, Guns & Ammo, Gun/Rifle Ranges", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "SEFujmfGZI08JWRyhIpYeQ", + "name": "Embassy Suites by Hilton Philadelphia Airport", + "address": "9000 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8838478195, + "longitude": -75.2497038245, + "stars": 2.5, + "review_count": 170, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "GZwgmKNS01hEWKQaRTro_A", + "name": "The Bean Cafe", + "address": "615 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420800965, + "longitude": -75.1529073994, + "stars": 3.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "NbMzjtTsatnwn49amD-B2Q", + "name": "Coda", + "address": "1712 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497207, + "longitude": -75.1698467, + "stars": 2.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "None", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'loud'" + }, + "categories": "Performing Arts, Nightlife, Dance Clubs, Arts & Entertainment, Bars, Music Venues", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "19:30-3:30", + "Friday": "20:0-3:30", + "Saturday": "20:0-3:30" + } + }, + { + "business_id": "XN_YIYIHTQhdFbnNhGP-HA", + "name": "Natalie's", + "address": "4003 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.957482, + "longitude": -75.202111, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "BikeParking": "True" + }, + "categories": "Nightlife, Jazz & Blues, Arts & Entertainment", + "hours": { + "Monday": "16:30-1:30", + "Tuesday": "16:30-1:30", + "Wednesday": "16:30-1:30", + "Thursday": "16:30-1:30", + "Friday": "16:30-1:30", + "Saturday": "16:30-1:30", + "Sunday": "16:30-1:30" + } + }, + { + "business_id": "GdU2_p4x4-1ql0CU-E6eIA", + "name": "Chestnut Hill Village Apartment by AIMCO Property Management", + "address": "7715 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0727535, + "longitude": -75.1950922, + "stars": 2.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "10:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "10:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "4sHs_tAK1GIAlRujCaIRVg", + "name": "Extra Space Storage", + "address": "12005 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1054381, + "longitude": -74.9995306, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "9TRGordD4MbOR2mglgcvpA", + "name": "New Queen Chinese", + "address": "7552 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9781816, + "longitude": -75.2672874, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "bbjufor5MuV4IVe1FBhmmQ", + "name": "Hush Salon Philadelphia", + "address": "128 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9530183, + "longitude": -75.1453382, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Zj191m1XJiv7u_7jQZlBeg", + "name": "Reanimator Coffee", + "address": "3118 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982199, + "longitude": -75.103423, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "wKdZzz1A4BxUfHibso0bHQ", + "name": "Pampered Pooch", + "address": "244 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472951, + "longitude": -75.1594404, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Groomers, Pet Services", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "3lP2rGLqBwgT24WOqVsPuA", + "name": "Hopkins Pharmacy", + "address": "7700 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0518072, + "longitude": -75.23658, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "6ZDiLEZcaIhlKTQYJ467CA", + "name": "Moore Moves For Less", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9600168, + "longitude": -75.2274866, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Home Services, Movers, Local Services, Furniture Assembly, Self Storage", + "hours": { + "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" + } + }, + { + "business_id": "eubQohkn22b4IytlVNz20g", + "name": "Wishbone", + "address": "210 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484184, + "longitude": -75.1623776, + "stars": 3.5, + "review_count": 191, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "WiFi": "'free'", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Nightlife, Bars, Chicken Shop, American (New), Fast Food, Cocktail Bars, Comfort Food, Chicken Wings, Sandwiches, Burgers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "CJNU0cYlSJVg07IVOc-ayg", + "name": "Escape Center City", + "address": "1218 Chestnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503373, + "longitude": -75.1612416, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Escape Games, Venues & Event Spaces, Event Planning & Services, Team Building Activities", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-22:30", + "Friday": "10:0-22:30", + "Saturday": "10:0-22:30", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "2ISww4-o249VMoy7zKsWBA", + "name": "Just Cravings", + "address": "946 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9653868, + "longitude": -75.1406986, + "stars": 3.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Ice Cream & Frozen Yogurt, Gelato, Sandwiches, Food, Desserts, Restaurants, Juice Bars & Smoothies, Soup", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-23:30" + } + }, + { + "business_id": "bd5tvJYJt-5Tq8tPSG4ruA", + "name": "Faber Bookstore", + "address": "2955 Market St, Ste 125", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557501, + "longitude": -75.1819889, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video, Bookstores", + "hours": null + }, + { + "business_id": "yJw38SIIn9EaQuSSdxRHUA", + "name": "High Point Cafe", + "address": "2831 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974752, + "longitude": -75.1828869, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True" + }, + "categories": "Bakeries, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "MocJbCDNa8FASPLKBfd_ZQ", + "name": "Success Driving School", + "address": "120 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540907, + "longitude": -75.1547785, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Driving Schools, Notaries, Automotive, Education, Registration Services, Local Services, Specialty Schools", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "hj8qm-f2ifwkFEzQRmf-eg", + "name": "Art of Threading Salon", + "address": "814 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495077, + "longitude": -75.1544212, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "False" + }, + "categories": "Eyelash Service, Eyebrow Services, Threading Services, Beauty & Spas, Hair Removal, Waxing", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "fl08K_-1-EVKCQxH6L0tjQ", + "name": "Fu Hai Restaurant", + "address": "2842 Saint Vincent St, Unit B2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0416703384, + "longitude": -75.0545130964, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "None", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dim Sum, Fuzhou, Restaurants, Chinese", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "Y0iaciHFb9vZvMhl9bbIRQ", + "name": "Keystone Veterinary Emergency East", + "address": "4026 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0213444, + "longitude": -75.2175282, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "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" + } + }, + { + "business_id": "z_UbBwd6zvBXs86Az-A8zg", + "name": "Praiseworthy Pets", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pet Training, Pet Services, Pets", + "hours": { + "Monday": "18:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "9:0-15:0", + "Thursday": "18:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "sZS0tCE8zUk4qmK_CUaDPg", + "name": "Ume No Hana", + "address": "13314 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1291576108, + "longitude": -75.0236818693, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Japanese, Restaurants, Sushi Bars, Chinese", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "0:0-23:0", + "Sunday": "1:0-21:30" + } + }, + { + "business_id": "hF2a683wH9CXwrYZnLhSZA", + "name": "Pennsport Barber Shop", + "address": "146 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9228345, + "longitude": -75.1495444, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "HDFpIdD3BFYrrTIJuQTnVA", + "name": "Shanghai Gourmet Chinese Restaurant", + "address": "51 N 12th St, Ste 58", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953432, + "longitude": -75.159193, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Caters": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "FijH8XsF5mX-6BnUXlqTJw", + "name": "Showcase Comics", + "address": "642 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420913, + "longitude": -75.1535375, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Comic Books, Shopping, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "3eAGbHu2VFz8dVNC_dO5ow", + "name": "Lorenzo's Cafe Espresso Ristorante Italiano", + "address": "4741 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0273628392, + "longitude": -75.0379283354, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Corkage": "False", + "BYOB": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Italian, Breakfast & Brunch, Cafes, Coffee & Tea, Salad, Desserts, Restaurants, Sandwiches", + "hours": { + "Tuesday": "16:0-22:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "XrVPT0w1NKaoHDdQhEekjw", + "name": "South Street Nails", + "address": "2208 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94514, + "longitude": -75.178988, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Massage, Waxing, Nail Salons, Nail Technicians, Hair Removal", + "hours": { + "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-19:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "xEnNPPOeoKCfyaOkUX0tFQ", + "name": "Zipcar", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 2.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Rental, Hotels & Travel, Automotive, Truck Rental, Car Share Services", + "hours": null + }, + { + "business_id": "4ZZIxkhZrmRpyNiMjmQG8A", + "name": "Underdogs", + "address": "1205 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340442, + "longitude": -75.1582976, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Hot Dogs, Restaurants, Salad", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "rjObkBLqlve8SAN9hUYygQ", + "name": "Exotic Nails", + "address": "1237 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0588047, + "longitude": -75.0787606, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "PIlWkWHjnlV2wrFvwo5sXA", + "name": "Glasses Galore", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0880408, + "longitude": -75.0376589, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Eyewear & Opticians, Health & Medical, Optometrists, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "yeYnsfWaWxtcDpbTcBgPTg", + "name": "Peace A Pie", + "address": "1429 Marlborough St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9733597, + "longitude": -75.1336174, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Salad, Pizza, Desserts, Restaurants, Food", + "hours": null + }, + { + "business_id": "5YvN5c8-Jn07j7ywazsBBA", + "name": "Smile Team", + "address": "1500 John F Kennedy Blvd, Ste 1906", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 4.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Dentists, Health & Medical, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "1lcY7PZ6xA486kZ989vrQA", + "name": "Paul E Car Care", + "address": "7980 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0727732, + "longitude": -75.076286, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "7:30-13:0" + } + }, + { + "business_id": "mJBYeLEvrIkSYP37tLvmMA", + "name": "The Art Shop", + "address": "8232 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074002, + "longitude": -75.203571, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Art Galleries, Hair Salons, Arts & Entertainment, Men's Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "P7MHW-EtCdp3eVF2P_nX0A", + "name": "Carl Alan Floral Designs LTD", + "address": "1700 Market St, Ste LL48", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954096, + "longitude": -75.168829, + "stars": 5.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Floral Designers, Florists, Flowers & Gifts, Shopping, Party Supplies", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "VZwHhKOFoXth13O3wFtU3w", + "name": "Hughes Bob Chimney & Fireplace Service", + "address": "828 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0530859, + "longitude": -75.0821614, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Chimney Sweeps, Home Services, Fireplace Services", + "hours": null + }, + { + "business_id": "eoj3iAmpgbRIi56yxcTQxA", + "name": "Hook & Reel Cajun Seafood & Bar", + "address": "9763 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0852593, + "longitude": -75.0232518, + "stars": 3.5, + "review_count": 100, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsReservations": "True", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Restaurants, Seafood, Cajun/Creole", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "D-2IC5xzIIWnxBYw7Al5kg", + "name": "JB Motor Works", + "address": "5929 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9313643721, + "longitude": -75.2270176467, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Windshield Installation & Repair, Auto Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "rtrBo_A1IRKBK_GM-T8kqg", + "name": "The Maas Building", + "address": "1325 N Randolph St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9720698, + "longitude": -75.1452789, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Local Services, Recording & Rehearsal Studios", + "hours": { + "Tuesday": "9:0-12:0", + "Wednesday": "9:0-12:0", + "Thursday": "9:0-12:0" + } + }, + { + "business_id": "ypcs0dafdI-3-sFMofRATQ", + "name": "Tommy's Salon", + "address": "1628 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926563, + "longitude": -75.1461639651, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "Ps05fcj2yu0JjGBZ4FJpLw", + "name": "Forever 21", + "address": "1708 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95168, + "longitude": -75.169206, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "None" + }, + "categories": "Women's Clothing, Shopping, Men's Clothing, Accessories, Fashion", + "hours": { + "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-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "e4akHZdEhNWOiaE4hj0OFw", + "name": "Divan Mediterranean Grill", + "address": "622 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413552, + "longitude": -75.1524914, + "stars": 3.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Mediterranean, Turkish", + "hours": { + "Tuesday": "15:0-23:0", + "Wednesday": "15:0-23:0", + "Thursday": "15:0-23:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "zy2p8yfx_fgXMCCUo8nWsA", + "name": "Sleep Inn Center City", + "address": "1020 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546067076, + "longitude": -75.157443872, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False" + }, + "categories": "Hotels & Travel, Hostels, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "b8zYL8751HJXc0XlUw5K3g", + "name": "Taco & Ramen", + "address": "615 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422431, + "longitude": -75.1529191, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False" + }, + "categories": "Mexican, Vegan, Restaurants, Juice Bars & Smoothies, Food, Japanese", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "SZuzpUh09BLVqDdo58c5Jw", + "name": "Escape The Room Philly", + "address": "1528 Walnut St, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 4.5, + "review_count": 167, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Escape Games, Challenge Courses", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "zAZ_t5jCCZukXu3iS7_xWQ", + "name": "Jim's Auto Service", + "address": "7563 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0505637, + "longitude": -75.2357595, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Gas Stations, Tires, Towing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-13:30" + } + }, + { + "business_id": "_4E8aECY-679SxLH4R0Z3g", + "name": "Amoroso's", + "address": "845 S 55th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.945919, + "longitude": -75.2332298, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Bakeries, Food", + "hours": null + }, + { + "business_id": "N5Sv2il5nW-cycfvoo5Sdg", + "name": "Philly Craft Beer Festival", + "address": "5100 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8891929, + "longitude": -75.1754104, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Festivals", + "hours": null + }, + { + "business_id": "So07g7jKXKcar96mhYS5zw", + "name": "All About Events", + "address": "1136 Arch St, Unit 413", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953602, + "longitude": -75.158945, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Event Planning & Services, Wedding Planning", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "QJZdu9kFpKh4Fy8_YuvvXQ", + "name": "La Saveur", + "address": "800 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9396771, + "longitude": -75.1578557, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Caterers, French, Food, Mediterranean, Restaurants, Sandwiches, Event Planning & Services, Desserts", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "14:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "9:30-21:0" + } + }, + { + "business_id": "B5GWMJobuGcD57kASD9ntQ", + "name": "Pomelo", + "address": "6352 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0447401, + "longitude": -75.1820082, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Jewelry, Used, Vintage & Consignment, Pop-up Shops, Fashion, Home Decor, Home & Garden, Flowers & Gifts, Nurseries & Gardening, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "GpEEc2ErQ2TgQk5sGYx9aw", + "name": "Elena's Soul Lounge", + "address": "4912 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480077, + "longitude": -75.2218735, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Restaurants, Bars, Lounges, Soul Food, Southern, Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "JFq-C0k28iKmWdJRWA6RDg", + "name": "Zee Bar", + "address": "100 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9594715, + "longitude": -75.1394882, + "stars": 2.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "WiFi": "'no'", + "BikeParking": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}" + }, + "categories": "Lounges, Nightlife, Bars", + "hours": { + "Wednesday": "22:0-3:0", + "Thursday": "22:0-3:0", + "Friday": "22:0-3:0", + "Saturday": "22:0-3:0" + } + }, + { + "business_id": "YCFt3jhEJIHaXaKDOi8fYg", + "name": "US Post Office", + "address": "5011 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9574207151, + "longitude": -75.222117636, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Post Offices, Local Services, Shipping Centers", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-14:0" + } + }, + { + "business_id": "zGD1PUe6bksPqx5XUqGUIQ", + "name": "Al's Corner Deli and Catering Services", + "address": "7940 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0352699, + "longitude": -75.0255875, + "stars": 4.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Event Planning & Services, Caterers, Delis, Restaurants", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "yuO-Qy1QQVumIhO0ijvl3w", + "name": "Aroma Cafe", + "address": "3701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955066, + "longitude": -75.196776, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Do-It-Yourself Food, Coffee & Tea, Cafes, Restaurants", + "hours": { + "Monday": "8:0-21:30", + "Tuesday": "8:0-21:30", + "Wednesday": "8:0-21:30", + "Thursday": "8:0-21:30", + "Friday": "8:0-21:30", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "15JFk0bn7HJ9g9-N7tXl_Q", + "name": "Heung Fa Chun Sweet House", + "address": "112 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540118, + "longitude": -75.1562827, + "stars": 4.5, + "review_count": 237, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "False", + "Alcohol": "u'none'", + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Chinese, Restaurants, Food, Desserts", + "hours": { + "Monday": "7:30-19:30", + "Tuesday": "7:30-19:30", + "Thursday": "7:30-19:30", + "Friday": "7:30-19:30", + "Saturday": "7:30-19:30", + "Sunday": "7:30-19:30" + } + }, + { + "business_id": "HxdaEwpoXKll0Ze4nhS0XA", + "name": "Starbucks", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8759355, + "longitude": -75.2427455, + "stars": 2.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-18:0", + "Friday": "5:0-18:0", + "Saturday": "5:0-18:0", + "Sunday": "5:0-18:0" + } + }, + { + "business_id": "yrpbZJblFvKpXSMvj--WVQ", + "name": "Blue Cross RiverRink Winterfest", + "address": "101 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482667972, + "longitude": -75.1399237486, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Nightlife, Skating Rinks, Restaurants, Hotels & Travel, Event Planning & Services, Bars, Comfort Food, Active Life, Hotels", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "3Rj9ItAP5k_i6YVmFJgC9w", + "name": "Mica Restaurant", + "address": "8609 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0768628695, + "longitude": -75.2075530661, + "stars": 4.5, + "review_count": 156, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "4", + "RestaurantsAttire": "u'dressy'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-21:0", + "Saturday": "17:30-21:0" + } + }, + { + "business_id": "wiI0GYhfuIjrBldrQdytWg", + "name": "Huong Tram", + "address": "1601 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391517, + "longitude": -75.1703161, + "stars": 4.0, + "review_count": 88, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Yuwn7udUEvLiOsTpJHQkQA", + "name": "Green Line Cafe", + "address": "518 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420818001, + "longitude": -75.1491229981, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Cafes, Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "6:30-18:30", + "Tuesday": "6:30-18:30", + "Wednesday": "6:30-18:30", + "Thursday": "6:30-18:30", + "Friday": "6:30-18:30", + "Saturday": "7:30-17:30", + "Sunday": "7:30-17:30" + } + }, + { + "business_id": "ss6bk9dau55VDXnmMGcNGQ", + "name": "Aldo", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "JIrsBVXBPGeW5hRZvX7ZuA", + "name": "Residence Inn by Marriott Philadelphia Center City", + "address": "One East Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9526484795, + "longitude": -75.1624528099, + "stars": 3.5, + "review_count": 145, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Apartments, Home Services, Hotels, Real Estate, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "G1IFuNVjboZDxyEugrh0ew", + "name": "United Maids of America", + "address": "1019 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618666997, + "longitude": -75.1551902, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Office Cleaning, Professional Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "6:30-18:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "DilN8HS5jy5jNh_Tg2MELA", + "name": "R Chobert Painting", + "address": "641 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315166, + "longitude": -75.1559089, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Drywall Installation & Repair, Local Services, Carpenters, Painters, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "EXvPW0zO4lcR2T8OVdqbGw", + "name": "Sunflower Skin Care Studio", + "address": "139 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9545946, + "longitude": -75.1543573, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Skin Care, Massage", + "hours": null + }, + { + "business_id": "KvbjKiRhLo1_1-zxSXKSoQ", + "name": "Heng's Auto Repair", + "address": "1801 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260029, + "longitude": -75.1541137, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "xWaAs6tFfx3YeUky6oiS-g", + "name": "Old Saint Joseph's Catholic Church", + "address": "321 Willings Aly", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9465665, + "longitude": -75.1475378, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": null + }, + { + "business_id": "z0UD6W-U6fb-f_od2A5rDg", + "name": "The Station at Manayunk", + "address": "1 Parker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034646, + "longitude": -75.236245, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "s2TjkCMtPygI4FiaS0jWLg", + "name": "Ruba Club", + "address": "416 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618711759, + "longitude": -75.1459391268, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cultural Center, Arts & Entertainment, Nightlife, Event Planning & Services, Venues & Event Spaces, Bars, Speakeasies", + "hours": { + "Monday": "9:0-17:0", + "Thursday": "22:30-3:30", + "Friday": "22:30-3:30", + "Saturday": "22:30-3:30", + "Sunday": "22:30-3:30" + } + }, + { + "business_id": "rTKDUHlkWvatEfHOxD_O2g", + "name": "Adriano's Cucina Italiana", + "address": "13023 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1240923, + "longitude": -75.0146487, + "stars": 3.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Italian, Bars, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "P7anLq0I2xzyEpS9HdpkSA", + "name": "Hey Hummus", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525387343, + "longitude": -75.1758082956, + "stars": 4.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'no'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Vegetarian, Middle Eastern, Kebab, Vegan, Breakfast & Brunch, Greek, Kosher, Mediterranean", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "21HJH10HujCUvkl37587uw", + "name": "Andrew Gismondi - Keller Williams Philly", + "address": "728 S Broad St, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.942269, + "longitude": -75.166488, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate Agents, Real Estate Services, Real Estate", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "bTNwrkDJ2HSIQo5egSX37g", + "name": "Days Inn by Wyndham Philadelphia - Roosevelt Boulevard", + "address": "4200 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.029927, + "longitude": -75.1062366, + "stars": 1.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "1cjR9b6qWme6ipVIffWlow", + "name": "Social House", + "address": "2100 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450147098, + "longitude": -75.1771122734, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Alcohol": "u'none'", + "BYOB": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BikeParking": "True" + }, + "categories": "Venues & Event Spaces, Food, Event Planning & Services, Restaurants, Coffee & Tea, Breakfast & Brunch, American (New)", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "bUG1onJ-849RLohkITI_Gw", + "name": "Rossi Plumbing and Heating", + "address": "9713 Glenhope Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0943994, + "longitude": -75.0411958, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Plumbing", + "hours": null + }, + { + "business_id": "dg_sWT4te9aL_am_v8_Isg", + "name": "Baldwin Leather & Fabric", + "address": "755 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388132, + "longitude": -75.149783, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Sewing & Alterations, Fashion, Leather Goods, Local Services, Shopping, Arts & Crafts, Fabric Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "8VfQxXmbPdn8zvsVpYcBWA", + "name": "Cafe L'Aube", + "address": "222 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949195, + "longitude": -75.173373, + "stars": 4.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Internet Cafes, French, Bakeries, Cafes, Coffee & Tea, Restaurants", + "hours": null + }, + { + "business_id": "NxY4Q4QIloifpcKdeN8pfg", + "name": "Orthodontics Limited", + "address": "2137 Welsh Rd, Ste 1b", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0755865, + "longitude": -75.0349921, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Health & Medical, Orthodontists", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "8:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "8:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "L8jywv8RrssSIHn1f-ZYKQ", + "name": "Linda's Cart", + "address": "4400 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.953042, + "longitude": -75.217928, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "NoiseLevel": "'average'", + "Caters": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Food, Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "uj5QvIphe4ZWHBTCJRVkaQ", + "name": "Olympia Ii Pizza & Restaurant", + "address": "616 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419087, + "longitude": -75.1528393, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "False", + "HasTV": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "2BRbu3cBbH2bCgzN3DVc8w", + "name": "Table 31", + "address": "Comcast Center, 1701 JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9540959695, + "longitude": -75.1681137085, + "stars": 2.5, + "review_count": 127, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': True}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "HappyHour": "True" + }, + "categories": "Steakhouses, Italian, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "17:30-23:0" + } + }, + { + "business_id": "owEU7dr6476LFPxuTgSRiA", + "name": "CrossFit Love", + "address": "941 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963925, + "longitude": -75.137455, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Health & Medical, Gyms, Active Life, Interval Training Gyms, Trainers, Nutritionists", + "hours": { + "Monday": "12:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "12:0-19:30", + "Saturday": "10:0-11:0", + "Sunday": "10:0-12:0" + } + }, + { + "business_id": "SYWEMv9i_Pmc9AIfxHWl4Q", + "name": "Pastoral Korean Restaurant", + "address": "205 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485389, + "longitude": -75.1620259, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Korean, Professional Services", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0" + } + }, + { + "business_id": "z6-Nxhr-JX4OBOpmknkkgw", + "name": "Cup of Joe and More", + "address": "1417 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9196628, + "longitude": -75.171532, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Corkage": "False", + "HasTV": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "qKEmQbAUTBkbDLl-XfhIyg", + "name": "Henry's Hardware", + "address": "1822 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9266994, + "longitude": -75.1640148, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "tgdhpWSIqw2u9rNLokZKjA", + "name": "Artiva Hair Salon", + "address": "217 N 11th St, Ste 102B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560986, + "longitude": -75.1571073, + "stars": 4.0, + "review_count": 157, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False" + }, + "categories": "Hair Removal, Hair Salons, Art Galleries, Men's Hair Salons, Arts & Entertainment, Shopping, Waxing, Reflexology, Health & Medical, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "f0LTTims8Om7FT4l75haxg", + "name": "Ministry of Information", + "address": "447 Poplar Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664636, + "longitude": -75.1454542, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "IEQLfPmCLjJU8t_qOnPIxA", + "name": "Doggie Style Pets", + "address": "315 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506749, + "longitude": -75.146184, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pet Adoption, Pet Groomers, Pet Services, Pets", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "AvdhZ3RgY3xJbW-JMACcMg", + "name": "J C Chinese Restaurant", + "address": "1701 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277438, + "longitude": -75.1585739, + "stars": 2.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "'no'", + "BikeParking": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "12:0-1:0", + "Tuesday": "12:0-1:0", + "Wednesday": "12:0-1:0", + "Thursday": "12:0-1:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "0u49g32B_Gfz4G3SOltxgw", + "name": "The Sansom", + "address": "1605 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507699, + "longitude": -75.1681729, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "ol8pa4uP3mu97ii5gvw9qg", + "name": "Chickie's & Pete's", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9063127802, + "longitude": -75.1657080966, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "True" + }, + "categories": "Food Stands, Restaurants, Seafood, Fast Food, American (New)", + "hours": null + }, + { + "business_id": "xHRRyEss7MdIszW9wDkQ2Q", + "name": "Game Stop", + "address": "1001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9519835, + "longitude": -75.1571648, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Video Game Stores, Books, Mags, Music & Video, Videos & Video Game Rental", + "hours": null + }, + { + "business_id": "Yu_QofgDAjn__QsMi5Wudg", + "name": "The Victoria Freehouse", + "address": "10 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491057409, + "longitude": -75.1424021098, + "stars": 4.0, + "review_count": 220, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Bars, Nightlife, British, Pubs, Breakfast & Brunch, Restaurants", + "hours": { + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "6y3ieaio3N5I157dwA2IcQ", + "name": "Wawa", + "address": "1190 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951762, + "longitude": -75.159783, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Restaurants, Sandwiches, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "-6MEKOmFu6jckT3pruSxHg", + "name": "CVS Pharmacy", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529716579, + "longitude": -75.1924387776, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Drugstores, Pharmacy, Convenience Stores, Food, Shopping, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "X2VNoC43s7df58HHDCqMwg", + "name": "Green Olives Market", + "address": "992 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966246, + "longitude": -75.1402736, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Ethnic Food, Food, Mediterranean, Specialty Food, Restaurants", + "hours": null + }, + { + "business_id": "aj7aXKdD6FIB7Q3PFU00nw", + "name": "Arrive University City", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566244, + "longitude": -75.194436, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "3LzUSNKw29s6NEpMOfkJdw", + "name": "Jade Garden", + "address": "1525 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930121, + "longitude": -75.1628263, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BYOBCorkage": "'no'", + "Alcohol": "'none'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "9_NJxQpOjCiO05BZ915f0w", + "name": "Fishtown Nails Bar Cafe", + "address": "2325 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9809424344, + "longitude": -75.1277282021, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Reflexology, Beauty & Spas, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "wgoe4T_BDoV9lljhKo9gUw", + "name": "Ugly Duckling", + "address": "212 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481899048, + "longitude": -75.1592285559, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Smoking": "u'no'", + "HasTV": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True" + }, + "categories": "Bars, Restaurants, Breakfast & Brunch, American (New), Nightlife, Cocktail Bars", + "hours": null + }, + { + "business_id": "OOB-Rd8HtW7Mfj154dFUWw", + "name": "Advanced Skin Care Solutions", + "address": "1404 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9308443, + "longitude": -75.1533638, + "stars": 4.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Health & Medical, Waxing, Hair Removal, Massage Therapy, Massage, Acne Treatment, Beauty & Spas, Skin Care", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "kpW1VNKkomWJvlAkpoTvgg", + "name": "The Weave Bar", + "address": "444 S 52nd St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9522652, + "longitude": -75.2267796, + "stars": 2.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Makeup Artists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "SfBjoyCcKewPpTWkNR8t8w", + "name": "GNC", + "address": "1100 S Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9320271, + "longitude": -75.144647, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vitamins & Supplements, Shopping, Specialty Food, Food, Health Markets", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "_EqPFlfEGFW17wSApMbk8w", + "name": "Monarch Moving Group", + "address": "1910 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9237345, + "longitude": -75.178419, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Services, Movers, Self Storage", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "3nCfcTn3uN5Gzj0WH3NqSA", + "name": "Park It PA", + "address": "2901 Vare Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9272333, + "longitude": -75.1944702, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "l0EaGQCdik3sXG1mX0D6aQ", + "name": "Panini's Trattoria", + "address": "317 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950533, + "longitude": -75.146257, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Caters": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "HCH0I51c0ih2VhEQeaE8Iw", + "name": "Monarch Medspa", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laser Hair Removal, Beauty & Spas, Day Spas, Health & Medical, Medical Spas, Hair Removal", + "hours": null + }, + { + "business_id": "1LAOf6vASiAXKc9-jGv32g", + "name": "Planet Fitness", + "address": "2350 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.918344, + "longitude": -75.188639, + "stars": 3.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False" + }, + "categories": "Active Life, Tanning, Gyms, Trainers, Beauty & Spas, Fitness & Instruction", + "hours": { + "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" + } + }, + { + "business_id": "ovui6FywmF-MCY8QnwoBLw", + "name": "Darling's Coffeehouse & Famous Cheesecakes", + "address": "2100 Spring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9582954, + "longitude": -75.1746246, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Desserts, Food, Coffee & Tea", + "hours": { + "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": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "HjewUoIXMm7yLu3aqQVTLg", + "name": "Peking Inn", + "address": "2020 Penrose Ave, Ste D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.911958, + "longitude": -75.183405, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HappyHour": "False" + }, + "categories": "Restaurants, Food, Beer, Wine & Spirits, Cantonese, Chinese, Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "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": "14:0-22:0" + } + }, + { + "business_id": "j-Akv5AL-z1vuM04oJRc8Q", + "name": "Paradiso", + "address": "1627 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9292709, + "longitude": -75.1639093, + "stars": 3.5, + "review_count": 117, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HasTV": "True" + }, + "categories": "Nightlife, Restaurants, Italian, Mediterranean, Bars, Wine Bars, Greek", + "hours": { + "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": "16:0-21:0" + } + }, + { + "business_id": "hjkkvRz1pCMSsALv0yBKuw", + "name": "Curaleaf PA Philadelphia", + "address": "1125-1127 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935146, + "longitude": -75.15668, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Health & Medical, Cannabis Dispensaries, Cannabis Clinics, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "52coqChJaKo2IYYvZJMezw", + "name": "Posh Kreations", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Wedding Planning, Event Planning & Services, Party & Event Planning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "TrkN92GvXWtsKvxu4l7leA", + "name": "Ruby Tuesday", + "address": "1534 Franklin Mill Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0872574, + "longitude": -74.9617526, + "stars": 2.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Burgers, Desserts, Restaurants, American (Traditional), Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "YvSECK1Zi0cOYx8p1wZILw", + "name": "Danza Academy of Social Dance- Philadelphia", + "address": "2103 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517031, + "longitude": -75.1758224, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Dance Studios, Arts & Entertainment, Performing Arts, Fitness & Instruction, Active Life", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0" + } + }, + { + "business_id": "qAjsqPKJwcWX97_EBHwfjw", + "name": "Rosie's Yarn Cellar", + "address": "2017 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496243, + "longitude": -75.1746957, + "stars": 4.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Knitting Supplies, Shopping, Arts & Crafts, Art Classes, Hobby Shops, Fabric Stores, Education, Art Supplies", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "VxxZzUd6kXtglEhfLaF92Q", + "name": "Unlock Philly", + "address": "Keller Williams Philadelphia, 1619 Walnut St, 5th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "1rv2GqTyH3wH1m3R1L_2lA", + "name": "Walnut Bridge Parking & Storage", + "address": "200 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509293445, + "longitude": -75.1797278729, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Parking, Self Storage, Automotive, Local Services", + "hours": null + }, + { + "business_id": "waWvlZPOgPkfSTsnCju4aA", + "name": "Amma's South Indian Cuisine", + "address": "1518 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950914, + "longitude": -75.1664173, + "stars": 4.0, + "review_count": 301, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "Corkage": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "GoodForKids": "True", + "Caters": "True", + "HasTV": "True", + "OutdoorSeating": "None", + "BYOB": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "11:0-21:45", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-21:45", + "Saturday": "11:0-21:45", + "Sunday": "11:0-20:45" + } + }, + { + "business_id": "_h0UUZu-WF0B1KEQ3m4Znw", + "name": "Joe Fisher & Sons Roofing", + "address": "1306 Unity St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149033, + "longitude": -75.0920946, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gutter Services, Home Services, Contractors, Roofing, Siding, Painters", + "hours": { + "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" + } + }, + { + "business_id": "aegRZDbRiRXmv9M2q6xXLg", + "name": "The Ludlow Apartments", + "address": "1101 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950965, + "longitude": -75.159035, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "IbfjmW7svGRQs7zIBwx-EA", + "name": "Her Daughters Cafe", + "address": "2533 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9850721564, + "longitude": -75.106799081, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Breakfast & Brunch, Coffee & Tea, Desserts", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "L8oJ1bakGgvpGk958EKSyg", + "name": "Hello World", + "address": "257 S 20th St Frnt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948650325, + "longitude": -75.165162291, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Women's Clothing", + "hours": { + "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-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "OZ883IpTwmgSgJt9cTz_ZA", + "name": "Su Simon, MD", + "address": "109 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537666804, + "longitude": -75.1545002601, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Internal Medicine, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "9VV0Qsbwy8Qi5n7nEZZR3g", + "name": "Gaffney Fabrics", + "address": "5401 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0333947, + "longitude": -75.1705441, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Crafts, Fabric Stores, Shopping, Home Decor, Home & Garden", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "T2PFxmNFPoEBBr-prV9aMg", + "name": "Michaels", + "address": "9739 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.084982, + "longitude": -75.024314, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Arts & Crafts, Knitting Supplies, Shopping, Hobby Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "17:0-0:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "4t3yeXmkrMaJruCWA0H8DA", + "name": "Saxbys Temple Fox", + "address": "1810 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.980719982, + "longitude": -75.155526051, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Caters": "None" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-16:0" + } + }, + { + "business_id": "53LiIYSyOiq_qWXHjkE8BQ", + "name": "Bearded Lady Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Interior Design, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "NaRqFZ_l3LCHnX9j2TND-Q", + "name": "Saladworks", + "address": "1760 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9527848, + "longitude": -75.169911, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Vegetarian, Salad, American (Traditional), Soup, American (New), Sandwiches, Restaurants", + "hours": { + "Monday": "9:30-15:30", + "Tuesday": "9:30-15:30", + "Wednesday": "9:30-15:30", + "Thursday": "9:30-15:30", + "Friday": "9:30-15:30" + } + }, + { + "business_id": "5Fm6khB-De-OdqATep9J9Q", + "name": "NYPD Pizza", + "address": "140 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489444, + "longitude": -75.1590443, + "stars": 3.5, + "review_count": 198, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "Caters": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "7T2QFFcqkrJdyK48HVCgFQ", + "name": "Ringpfeil Advanced Dermatology", + "address": "1516 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948303, + "longitude": -75.1670309, + "stars": 4.5, + "review_count": 175, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tattoo Removal, Health & Medical, Doctors, Laser Hair Removal, Beauty & Spas, Dermatologists, Cosmetic Surgeons, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "8:30-14:0", + "Thursday": "8:30-16:30", + "Friday": "7:30-15:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "suFiYIZJz_MaR33LmUAzEA", + "name": "University of Pennsylvania Computer Connection", + "address": "3601 Walnut St, Fl 2, Penn Bookstore", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533526614, + "longitude": -75.1949472146, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Computers, Electronics, Shopping", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "1CUjF57FbndLyNlJ1jvdlQ", + "name": "Five CrossRoads Acupuncture", + "address": "255 S 17th St, Ste 1502", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94827, + "longitude": -75.169466, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "RZiKnkn-YXCn7QK038MocA", + "name": "Thrive Pilates & Yoga", + "address": "2016 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505025, + "longitude": -75.1745567, + "stars": 4.0, + "review_count": 145, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Fitness & Instruction, Pilates, Yoga, Active Life, Meditation Centers, Barre Classes", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "fc64I80cyefYLcfBpu4ivQ", + "name": "Ogontz Glass & Mirror", + "address": "6800 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0577215, + "longitude": -75.1495375, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "yeYJPFkAg6hiqCuQo8hZGA", + "name": "Walgreens", + "address": "2310 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9182484, + "longitude": -75.1867134, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Drugstores, Shopping, Convenience Stores, Cosmetics & Beauty Supply, Food, Photography Stores & Services, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "XXs0Sz04NTeQT_R-chZrbQ", + "name": "ReFocus Eye Health", + "address": "5001 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0202654, + "longitude": -75.0802143, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Ophthalmologists, Shopping, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:30-18:0", + "Friday": "8:0-16:30", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "m7DA8pzug_TcB3EBs1w_vg", + "name": "Tbaar Philadelphia", + "address": "2842 Saint Vincent St, Ste A4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041618, + "longitude": -75.055023, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Bubble Tea, Food, Coffee & Tea, Juice Bars & Smoothies", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "Ll_E6bZMd-GM-_jg1a4qnw", + "name": "Gary Mann Jewelers", + "address": "4349 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0254695295, + "longitude": -75.2236060847, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry, Jewelry Repair, Local Services", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "jQdPQ4WdwCumO0qgst6JKg", + "name": "Go Popcorn", + "address": "112 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9498431, + "longitude": -75.1604041, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Food, Specialty Food, Desserts, Popcorn Shops", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "WGWnx1Dy4plMCiknvOOD8g", + "name": "Travis Rodgers - BHHS Fox & Roach, Realtors", + "address": "112 S 19th St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513772119, + "longitude": -75.1721252438, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate Agents, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "04o5yH6y_49RkLuEaiW5mg", + "name": "Debreaux's", + "address": "2135 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9892351, + "longitude": -75.2497887, + "stars": 3.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "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': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Seafood, Soul Food", + "hours": null + }, + { + "business_id": "Q6ku5LqoqAahrTeNkAb7zA", + "name": "JLC Moving & Home Improvement", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Movers, Local Services, Painters, Couriers & Delivery Services, Junk Removal & Hauling", + "hours": { + "Monday": "8:0-20: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": "10:0-18:0" + } + }, + { + "business_id": "wsRRALb4nihuUYhBbmHbxA", + "name": "RevZilla", + "address": "4020 S 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.90183, + "longitude": -75.1942, + "stars": 4.0, + "review_count": 121, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Motorcycle Gear, Automotive, Shopping, Motorcycle Dealers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "9R5omAKURw7uwvyGH8bIWg", + "name": "Yoon's Dry Cleaners", + "address": "327 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9449684, + "longitude": -75.1595886, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "gLFkBiQnPkMI-x_Q5BXWrg", + "name": "Patriot Parking", + "address": "10 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9577761, + "longitude": -75.1398243, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "ZGChyjzwb_buWTT6Wg-q7g", + "name": "Ahi Sushi", + "address": "9999 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1024605, + "longitude": -75.0287641, + "stars": 4.0, + "review_count": 122, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "c5nRKx3BfrUK-N9Qp3EehQ", + "name": "Cynergy Hair Studio", + "address": "1527 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440691044, + "longitude": -75.1680698963, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': True, u'curly': True, u'perms': False, u'extensions': False, u'straightperms': False, u'coloring': True, u'kids': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "J2fh7F5wZ9BwjfKbxqQWiw", + "name": "Philly Diner", + "address": "3901 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954081, + "longitude": -75.20037, + "stars": 2.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Diners", + "hours": { + "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" + } + }, + { + "business_id": "lGwmPQcKEGPIEWKGSoM1kw", + "name": "Hook & Reel Cajun Seafood & Bar", + "address": "1534 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.087259, + "longitude": -74.961747, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Restaurants, Cajun/Creole", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "KYRFtIEWIQ5ZY9qSA5HBVA", + "name": "Nu Cleaners", + "address": "845 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9362092502, + "longitude": -75.1465167907, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "X2HqRGkvkvagi3FMiXV27Q", + "name": "Summit Spine and Wellness", + "address": "8151 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.058346, + "longitude": -75.2368639067, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Massage Therapy, Health & Medical, Chiropractors, Weight Loss Centers, Acupuncture", + "hours": { + "Monday": "14:15-18:30", + "Tuesday": "14:15-18:30", + "Wednesday": "14:15-18:30", + "Thursday": "14:15-18:30", + "Saturday": "8:0-10:0" + } + }, + { + "business_id": "LQIoQ4ZOXFg2iCb529b_Cg", + "name": "Franklin Square", + "address": "200 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9556999, + "longitude": -75.1501373, + "stars": 4.0, + "review_count": 129, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "-aZnEYYTqwE5Hc5YKp_HjQ", + "name": "Jack B Fabrics", + "address": "748 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391011, + "longitude": -75.1498295, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Arts & Crafts, Fabric Stores", + "hours": null + }, + { + "business_id": "Tfez9ZWvwBNxeQ50AAeLXg", + "name": "China House", + "address": "616 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419275748, + "longitude": -75.1527338072, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "qDoCzQxqKBYYlijWgv2TvQ", + "name": "Papa Nick's Pizza", + "address": "199 W Godfrey Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0451589, + "longitude": -75.1233779, + "stars": 2.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "aEjrMEomGmmAe8fPCeTWog", + "name": "Tibet Healing Spa", + "address": "1012 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535368, + "longitude": -75.1569207, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Day Spas, Reflexology, Massage, Massage Therapy, Health & Medical", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "q7Ofe_Oeh5gnSqynB906_g", + "name": "Tico's Tacos Tex Mex", + "address": "1627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9443093, + "longitude": -75.1697575, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Mexican, Tex-Mex, Restaurants", + "hours": { + "Monday": "0:0-0: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-21:30" + } + }, + { + "business_id": "rASuqLwbsV25f8-BHWpRCA", + "name": "Billy G's Luncheonette", + "address": "345 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9590027, + "longitude": -75.1581895, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "6:30-15:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0" + } + }, + { + "business_id": "Yz6c08SJTUOyjM2kIk4piw", + "name": "goBrands Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950469526, + "longitude": -75.1570824442, + "stars": 2.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Food, Food Delivery Services, Convenience Stores, Couriers & Delivery Services", + "hours": { + "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" + } + }, + { + "business_id": "P-a6WMxnBncXP4ZnFXeYww", + "name": "NetCost Market", + "address": "11701 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1189414, + "longitude": -75.0167746, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False" + }, + "categories": "Fruits & Veggies, Specialty Food, Russian, Delis, Restaurants, Grocery, Food, Cheese Shops", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-23:0", + "Wednesday": "8:0-23:0", + "Thursday": "8:0-23:0", + "Friday": "8:0-19:0", + "Saturday": "12:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "oTTx4ObLjOWVCtGXU_8AUw", + "name": "K Pot South Philly", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139657135, + "longitude": -75.157051912, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Hot Pot, Barbeque, Restaurants, Korean", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "YbpNzwI5iBvsBDwdwc9Mmg", + "name": "Gordon Stein -I Love Philly Homes Team - Compass", + "address": "1624 Locust St, Floor 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486110317, + "longitude": -75.1689969905, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Restaurants, Real Estate Agents, Home Services, Cheesesteaks, Property Management", + "hours": { + "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" + } + }, + { + "business_id": "gRSMrEF92ZsC2MBlUr3iOA", + "name": "Down Dog Healing Cafe", + "address": "1001 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378786, + "longitude": -75.1595348, + "stars": 4.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Food, Coffee & Tea, Cafes, Restaurants, Gluten-Free, Juice Bars & Smoothies", + "hours": { + "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": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "0bClMPygqjmGYspg--VyIA", + "name": "Weccacoe Playground", + "address": "400 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9379296, + "longitude": -75.1507073, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Playgrounds, Tennis, Parks, Active Life", + "hours": null + }, + { + "business_id": "YFZEUO2lipPqQdWGqPWUew", + "name": "Taco Bell", + "address": "3619 Aramingo Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.993535, + "longitude": -75.096423, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Mexican, Tacos, Tex-Mex, Breakfast & Brunch, Fast Food", + "hours": { + "Monday": "8:0-1:0", + "Tuesday": "8:0-1:0", + "Wednesday": "8:0-1:0", + "Thursday": "8:0-1:0", + "Friday": "8:0-2:0", + "Saturday": "8:0-2:0", + "Sunday": "8:0-1:0" + } + }, + { + "business_id": "XoG1lIHgjWE-1-YKaa4J7g", + "name": "Azzaam's", + "address": "2617 Grays Ferry Ave, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9405350879, + "longitude": -75.1870397106, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Soul Food, Restaurants", + "hours": null + }, + { + "business_id": "gWik8tjd8Z5OGlMyZGrqEg", + "name": "Taqueria Del Norte", + "address": "2859 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571340836, + "longitude": -75.0303088501, + "stars": 3.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Tacos, Mexican, Restaurants", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "IiZNPhS7CLFI3JoTHau_fg", + "name": "Chris Pagnani MD PC", + "address": "1528 Walnut St, Ste 1415", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Nurse Practitioner, Doctors, Counseling & Mental Health, Psychiatrists, Health & Medical", + "hours": { + "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": "10:0-15:0" + } + }, + { + "business_id": "wdvScg_MH8F-PNfTNHJ1zA", + "name": "Lew Blum Towing", + "address": "1130 N 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9735816, + "longitude": -75.2045343, + "stars": 1.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Parking, Towing, Auto Repair, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "6Hxfp_5QP0BEAgBPvV0Agw", + "name": "Bridgeset Sound", + "address": "710 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421205369, + "longitude": -75.154248877, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Performing Arts, Vinyl Records, Musical Instruments & Teachers, Shopping, Home Services, Professional Services, Music Production Services, Music & DVDs, Home Theatre Installation, Art Galleries, Books, Mags, Music & Video", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-16:0", + "Saturday": "12:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "DFNZQNWuuuzvaGKSXonY3A", + "name": "Clark's Tires", + "address": "6430 N Beechwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0526511, + "longitude": -75.1570348, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Tires", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "4gVuHNcHGaRd8v6FSY5BYg", + "name": "Coeur", + "address": "132 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504874, + "longitude": -75.1692131, + "stars": 4.0, + "review_count": 66, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Adult, Shopping, Fashion, Lingerie", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "7H_CZjQgP1cPT5ozxBiujQ", + "name": "Beautyland", + "address": "1124 Gregg St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0867134333, + "longitude": -75.0467558205, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Accessories, Flowers & Gifts, Fashion, Shopping, Skin Care", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "9NBApzAJptJIg802sNiAtg", + "name": "St Chris Care", + "address": "9501 Roosevelt Blvd, Ste 305, Northeast Pediatrics", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0808266, + "longitude": -75.0268883, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Pediatricians, Health & Medical", + "hours": null + }, + { + "business_id": "fIIntSS9wcctR3755co-9A", + "name": "Woof Grooming", + "address": "133 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515880298, + "longitude": -75.1782940328, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Services", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "8:30-18:30", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:30-18:30", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "HgP3GGeQaujK18LuTCKGpA", + "name": "Barry I Brenner, DDS - Ritner Dental Group", + "address": "2340 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9202893, + "longitude": -75.1669987, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Endodontists, Dentists, Health & Medical, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0" + } + }, + { + "business_id": "mJyNbjEdlv_KHBbpim0gQg", + "name": "China House", + "address": "4653 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9559957, + "longitude": -75.2154159, + "stars": 3.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "LsEUy6GZ6hCLnKzLG-n_Og", + "name": "Cosi", + "address": "2461 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9963587, + "longitude": -75.2344057, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'" + }, + "categories": "American (New), Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "pxdliCtWkCuXW9uHYk8Y9w", + "name": "Glickโ€™s Rib Shack", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Barbeque, Food Stands, Farmers Market, Restaurants, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "I9CwI9oIr0L67KLS8UC0UA", + "name": "CURE de Repos", + "address": "8439 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0760359545, + "longitude": -75.2060843, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Massage, Waxing, Massage Therapy, Permanent Makeup, Makeup Artists, Skin Care, Reiki, Hair Removal, Health & Medical, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "bEGCD0kOEmZsesx-MAaWFQ", + "name": "EP Electric", + "address": "115 Village Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.07734, + "longitude": -74.976816, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Theatre Installation, Home Services, Electricians, Generator Installation/Repair, Local Services, Lighting Fixtures & Equipment", + "hours": { + "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" + } + }, + { + "business_id": "ZJdMr7bF__e1mmfhUHxhcA", + "name": "Restore", + "address": "3016 E Thompson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9828369, + "longitude": -75.1069818, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Home Decor, Kitchen & Bath, Antiques, Home & Garden, Shopping", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "oLSD2gqZ6_LANC85f1C3Bg", + "name": "C & R Building Supply", + "address": "1600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93806, + "longitude": -75.1703161, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Home Services, Home & Garden, Shopping, Hardware Stores, Building Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "l3mYwV8ORx0WEypNL8DNRw", + "name": "Coco Blue Nail & Spa", + "address": "1532 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97379, + "longitude": -75.13386, + "stars": 3.0, + "review_count": 84, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "DogsAllowed": "True" + }, + "categories": "Beauty & Spas, Shopping, Nail Technicians, Nail Salons, Cosmetics & Beauty Supply", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "KoNoawHBnbkHZq8Stg0gag", + "name": "Gallerie Isada", + "address": "3320 Collins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9937479, + "longitude": -75.1061919, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Art Galleries, Shopping", + "hours": null + }, + { + "business_id": "UIzaUKz90UWNHi0vLk5VwQ", + "name": "Popeyes Louisiana Kitchen", + "address": "4501 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.016768, + "longitude": -75.096429, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Southern, Fast Food, Chicken Wings, American (Traditional), Local Flavor", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "AoW3nEk-N_ltgkpuTkemZg", + "name": "Federal Donuts", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.904862, + "longitude": -75.168485, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Donuts, Food", + "hours": null + }, + { + "business_id": "BXe5B90zjH-sI-8krtLeFQ", + "name": "Doggie Style", + "address": "2015 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506807, + "longitude": -75.1743757, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "_B8Vey_acNLE_uqGfwp49Q", + "name": "BarkPark - South Philadelphia", + "address": "1715 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.926394681, + "longitude": -75.1749255008, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pet Services, Pet Boarding, Dog Walkers, Pet Groomers, Pet Sitting, Pets", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "5y1UZxEVE8QJob1XMRKp8A", + "name": "With Love Beer Garden", + "address": "One Logan Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9568924, + "longitude": -75.1695151, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Local Flavor, Breweries, Food", + "hours": null + }, + { + "business_id": "FcZxIZcFyJFDny8J83KzCw", + "name": "Andorra Ping Pong", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062785, + "longitude": -75.237447, + "stars": 4.0, + "review_count": 121, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Szechuan, Seafood", + "hours": { + "Monday": "0:0-0: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": "11:0-20:30" + } + }, + { + "business_id": "llS_DkUsyWPzOhOt2yyxmw", + "name": "H2O Nail Bar & Spa", + "address": "6135 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0345429, + "longitude": -75.2160336, + "stars": 4.0, + "review_count": 159, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Day Spas, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ebuycCvuqc3kn4wSBBOxVQ", + "name": "The Piazza", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399899, + "stars": 3.5, + "review_count": 126, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "HasTV": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Arts & Entertainment, Real Estate, Home Services, Restaurants, Art Galleries, Event Planning & Services, Local Flavor, Venues & Event Spaces, Apartments", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "6ZNPs8scX5D9i_7IVOl0Zg", + "name": "Cassava North American Grille", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0880408, + "longitude": -75.0376589, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "uizQiDP3fYaDvCxuwMaSew", + "name": "Carina Tea & Waffles", + "address": "3701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553704676, + "longitude": -75.1969019117, + "stars": 3.5, + "review_count": 74, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Desserts, Bubble Tea, Tea Rooms, Food, Coffee & Tea", + "hours": { + "Monday": "9:30-22:0", + "Tuesday": "9:30-22:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Wc41sOvcWAz4mj7JgRMqVg", + "name": "Joni R Marcus, DMD", + "address": "7215 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9137366, + "longitude": -75.2398958, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Dentists, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "2VgdPHszJdhOxzVFBbUPAA", + "name": "Down North Pizza", + "address": "2804 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9967403, + "longitude": -75.1772234, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Chicken Wings, Pizza, Restaurants, Pop-Up Restaurants", + "hours": { + "Thursday": "12:0-20:30", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "p-_uJ4UmcAeEVs_ndGXvDA", + "name": "Fetch! Pet Care", + "address": "1229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508655, + "longitude": -75.1613821, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pet Services, Dog Walkers, Pets", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "jdS7c64M1h17_I_8Hnq5fA", + "name": "Nuts To You", + "address": "10861 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.110542, + "longitude": -75.023944, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "False" + }, + "categories": "Honey, Specialty Food, Chocolatiers & Shops, Candy Stores, Bakeries, Food", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "0ibDG6ULKef2IzbRcyMzAg", + "name": "Manayunk Roxborough Community Acupuncture", + "address": "601 DuPont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0358158, + "longitude": -75.213458, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Acupuncture", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "8:30-21:30", + "Friday": "8:30-21:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "4rhH2r1lL7ujqnvTwZo--w", + "name": "Chipotle Mexican Grill", + "address": "1625 Chestnut St, Ste F6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "DriveThru": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "HasTV": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "iKt5u_Kes8STaPjJ4o_EbA", + "name": "Michael DeCarlo - State Farm Insurance Agent", + "address": "1900 Market St, Fl 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599, + "longitude": -75.172695, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Auto Insurance, Life Insurance, Insurance, Home & Rental Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "PYtMqV_xv_EAhDbnfREf7Q", + "name": "Hahnemann University Hospital Cafeteria", + "address": "230 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9571806, + "longitude": -75.1628984, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Cafeteria, Restaurants", + "hours": null + }, + { + "business_id": "yun2nAeTYhNeS7elvEetmw", + "name": "PNC Bank", + "address": "1600 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525474, + "longitude": -75.1673521, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions, Mortgage Brokers, Investing, Real Estate, Home Services", + "hours": null + }, + { + "business_id": "03Z0iTZ29-Mh02OXE7sPBQ", + "name": "Taco Bell", + "address": "7500 Bustleton Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0510400798, + "longitude": -75.0572700799, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Tacos, Breakfast & Brunch, Fast Food, Restaurants", + "hours": { + "Monday": "8:0-1:0", + "Tuesday": "8:0-1:0", + "Wednesday": "8:0-1:0", + "Thursday": "8:0-1:0", + "Friday": "8:0-1:0", + "Saturday": "8:0-1:0", + "Sunday": "8:0-1:0" + } + }, + { + "business_id": "4S60pqcbAg-BEBuTX0OXLQ", + "name": "Noble Hound Training", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Pet Services, Pet Training, Pets", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "2i6DI1RBQIaD5DxHYHot7g", + "name": "Pennsylvania Convention Center", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954904, + "longitude": -75.159982, + "stars": 3.5, + "review_count": 130, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "NoiseLevel": "'loud'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "Ahiia0mDn0VYt-t6S12exA", + "name": "NAM Vietnamese Kitchen", + "address": "3816 Chestnut St, Space 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551256, + "longitude": -75.1998158, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "sUfZtYknNx4iS1ZS9FsGoQ", + "name": "Bijoux Fine Jewelry", + "address": "8615 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770041, + "longitude": -75.2077845, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Bridal, Shopping, Watches, Local Services, Watch Repair, Jewelry Repair", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "jCJnPdOPoor62kKZPxqrIg", + "name": "La Parada 2", + "address": "1543 E Luzerne St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.007197, + "longitude": -75.09732, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'" + }, + "categories": "Caribbean, Spanish, Restaurants, Dominican, Breakfast & Brunch, Latin American", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "RGjIJd0AMKbXoFoLqaP4zA", + "name": "A.C. Moore Arts and Crafts", + "address": "9111 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0740831007, + "longitude": -75.0341628492, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Art Supplies, Framing, Arts & Crafts, Shopping", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "0zwoiosqg2_VgqtOuQGS9A", + "name": "Old City Asian Bistro", + "address": "206 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498363, + "longitude": -75.1441472, + "stars": 4.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Asian Fusion, Restaurants", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "12:30-22:0" + } + }, + { + "business_id": "pQqP5iQgJYUn4Xz0KPve5w", + "name": "New Spring Cleaners", + "address": "8006 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0709143, + "longitude": -75.2010882, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Dry Cleaning", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "7:30-17:30" + } + }, + { + "business_id": "jySVipAqMqczPzOPLMnJpw", + "name": "Scoop Deville", + "address": "1109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949043, + "longitude": -75.1596214995, + "stars": 4.0, + "review_count": 520, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "HappyHour": "True", + "DogsAllowed": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Custom Cakes, Food, Cupcakes, Desserts, Specialty Food, Chocolatiers & Shops", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "PC0z5dgURsstoS0-APO4qA", + "name": "Jiggy Coffee", + "address": "1000 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9445919, + "longitude": -75.1583573, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bagels, Food, Bakeries, Desserts, Coffee & Tea, Patisserie/Cake Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-14:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "PwWCrphbmqJQfv1HrcoNvw", + "name": "Liberty Veterinary Clinic", + "address": "8919 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0695947, + "longitude": -75.2397487, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pet Services, Pets", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "j0iQjaETQwWDvRcDznlXNg", + "name": "Rita Villecco tailoring & Alterations", + "address": "942 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9208488, + "longitude": -75.1633051, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Dry Cleaning & Laundry, Local Services", + "hours": { + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "TQXx-go3dPPqYDqDq_Q1yg", + "name": "Coren J Wise, Esquire", + "address": "100 N 18th St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955561, + "longitude": -75.1696566, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Business Law, Real Estate Law, Home Services, General Litigation, Real Estate Services, Divorce & Family Law, Professional Services, Lawyers, Criminal Defense Law, Personal Injury Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "BfQ4W2cNB2ZSd7yaAhE_BA", + "name": "PHS Pop Up Garden", + "address": "1438 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943584, + "longitude": -75.1669, + "stars": 4.5, + "review_count": 186, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "CoatCheck": "False", + "WiFi": "u'no'", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "ByAppointmentOnly": "False", + "GoodForDancing": "False", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Parks, Active Life, Beer Gardens, Mexican, Local Flavor, Restaurants, Nightlife, Bars, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "pYUA24xFCoBwk-XSJO77LA", + "name": "Seven Swords Tattoo Company", + "address": "2580 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9851931, + "longitude": -75.12438, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3", + "Smoking": "'no'", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Piercing, Beauty & Spas, Tattoo", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "yXvfvwey_hH9TBzuxrCpLg", + "name": "Relax Foot Massage spa", + "address": "13020 Bustleton Ave, Ste D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1243838, + "longitude": -75.0155805, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Massage Therapy, Health & Medical, Beauty & Spas, Massage, Reflexology", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:30", + "Wednesday": "10:30-20:30", + "Thursday": "10:30-20:30", + "Friday": "10:30-20:30", + "Saturday": "10:30-20:30", + "Sunday": "10:30-20:30" + } + }, + { + "business_id": "KTl3dH_1t4PLts01K5WQeA", + "name": "Granite Hill", + "address": "2600 Benjamin Franklin Parkway", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9657459198, + "longitude": -75.1810451801, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False" + }, + "categories": "French, Restaurants, American (New)", + "hours": { + "Tuesday": "11:30-14:30", + "Wednesday": "11:30-14:30", + "Thursday": "11:30-14:30", + "Friday": "17:0-19:30", + "Saturday": "11:30-15:30", + "Sunday": "10:30-14:30" + } + }, + { + "business_id": "9VryYAslHUSV-_Rghp3lUw", + "name": "Illuminations Hair Salon", + "address": "4240 N Broad St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0159887, + "longitude": -75.154133, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Stylists", + "hours": { + "Monday": "9:30-12:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "XylObKandNdgPcvqdbA64w", + "name": "Scanlon's Saloon", + "address": "4201 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0263844, + "longitude": -75.2154182, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Chicken Wings, Event Planning & Services, Venues & Event Spaces, Bars, Pubs, Local Flavor, Restaurants, Sports Bars, American (Traditional), Nightlife, Comfort Food", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "5ItgryJvadUrKVljjJ8l4g", + "name": "Que Chula Es Puebla", + "address": "1356 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.972369, + "longitude": -75.1391965, + "stars": 4.0, + "review_count": 256, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "C7tsqS3EHvh8TTbrDHGkYA", + "name": "Cafe Bella Vista", + "address": "764 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9399549, + "longitude": -75.1578785, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Event Planning & Services, Caterers, Internet Cafes, Breakfast & Brunch, Cafes, Restaurants, Coffee & Tea", + "hours": { + "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-15:0" + } + }, + { + "business_id": "LozA3u1TmiNFJTwwtDEMjA", + "name": "The Creperie", + "address": "1291 W Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829159318, + "longitude": -75.1543985905, + "stars": 4.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Creperies, Food, Specialty Food, Food Stands, Restaurants, Food Trucks", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "adhHsCKdHlO5TnadgL_93g", + "name": "National Watch Repairing", + "address": "740 Sansom St, Ste 207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485785, + "longitude": -75.1539429, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Watch Repair, Local Services", + "hours": null + }, + { + "business_id": "5pvm6cipS6YeaS5r6cgvcg", + "name": "Krystal Vision Eye Care", + "address": "6404 Roosevelt Blvd, Ste 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0359, + "longitude": -75.069644, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Eyewear & Opticians, Shopping, Health & Medical, Optometrists", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "oeoprMH0TwckGNCW_L-f_w", + "name": "Heyday - Rittenhouse", + "address": "1735 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518547, + "longitude": -75.1700197, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "bpwkHOQ_eMqO8SQovyK8qA", + "name": "Rothman Orthopaedics", + "address": "9501 Roosevelt Blvd, 4th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0808266, + "longitude": -75.0268883, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical, Sports Medicine, Podiatrists, Doctors, Physical Therapy, Orthopedists", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "5dLEuHEToVDB9QdeYOSNPg", + "name": "Brian Anthony's Refrigeration", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Heating & Air Conditioning/HVAC, Home Services, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "58PbdOE6CrGWL9iIsBGK9w", + "name": "AMC Delancey", + "address": "718 Arch St, Ste 400N", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952915, + "longitude": -75.1523431, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Property Management, Real Estate", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "Xj_DosaJMiWex1NFwdsFeQ", + "name": "Don Giovanni's Pizza Bar & Restaurant", + "address": "7100 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0483879, + "longitude": -75.0693051, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "UrvLeoS02KeDhgi274wJDg", + "name": "TITLE Boxing Club", + "address": "2101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954143, + "longitude": -75.1753775, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Gyms, Trainers, Active Life, Boxing", + "hours": null + }, + { + "business_id": "NpWGrKnmm44CzpZ1Wi1bLQ", + "name": "HOME Page Cafe", + "address": "1901 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9596055, + "longitude": -75.1710236, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True" + }, + "categories": "Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "D64SJopgUAeXY_l7tX8klg", + "name": "Flying Carpet Cafe & Bar", + "address": "1841 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9713119, + "longitude": -75.1673709, + "stars": 4.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Middle Eastern, Tapas/Small Plates, Mediterranean, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-1:0" + } + }, + { + "business_id": "05ev984NYfimRN0UiFrxaA", + "name": "Osteria", + "address": "640 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965015, + "longitude": -75.161076, + "stars": 4.0, + "review_count": 877, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WiFi": "u'free'", + "CoatCheck": "True", + "Caters": "True", + "ByAppointmentOnly": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "Smoking": "u'no'", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Restaurants, Italian, Bars, Wine Bars", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "92jnlw1wzrfl8ppbiegHcw", + "name": "Philly Cuts", + "address": "4409 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568352, + "longitude": -75.210096, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons, Massage", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "m_yauJ9qDf35tRxKB_L8OA", + "name": "US Post Office", + "address": "4431 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0265654, + "longitude": -75.2258972, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Shipping Centers, Local Services, Local Flavor, Post Offices", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "8:30-12:0" + } + }, + { + "business_id": "THeEPb1SgJLhwMlWrxOeSQ", + "name": "Four Points by Sheraton Philadelphia Northeast", + "address": "9461 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0783729453, + "longitude": -75.0292557658, + "stars": 2.5, + "review_count": 100, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Wedding Planning, Event Planning & Services, Venues & Event Spaces, Hotels & Travel, Caterers, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "p3oNTgsyNjceG3xOA_QXNQ", + "name": "Lash Bash", + "address": "1716 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506061, + "longitude": -75.1695519, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Hair Removal, Waxing, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "tnmwwECqbZbz7KHNI4_9Uw", + "name": "Beer Outlet", + "address": "189 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0885892, + "longitude": -74.9659343, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "X1KTKksxwFTg_t21iWPMMA", + "name": "Salento", + "address": "2216 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508361816, + "longitude": -75.1782989502, + "stars": 3.5, + "review_count": 113, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30" + } + }, + { + "business_id": "QsqhsD5d0dMxYoK-ciTgdg", + "name": "Evie's Nails and Spa", + "address": "7957 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0723018, + "longitude": -75.0761124, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "3FKIev7ZB_KE6XHL9sUJCg", + "name": "Strangelove's", + "address": "216 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948089, + "longitude": -75.1592111423, + "stars": 4.0, + "review_count": 443, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Event Planning & Services, Local Flavor, Bars, American (Traditional), Restaurants, Unofficial Yelp Events", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "A9bqf3aoiQXX9WBswewivg", + "name": "Rotisseur", + "address": "102 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519347107, + "longitude": -75.1756812127, + "stars": 3.5, + "review_count": 243, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Vietnamese, Sandwiches, Southern, Restaurants, American (New)", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "77eLvITjZT6P6KNSsw0n4g", + "name": "Espresso Cafe & Sushi Bar", + "address": "7814 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0585655, + "longitude": -75.059408, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Japanese, Sushi Bars, Restaurants, Kosher", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "10:0-21:45", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "21:30-0:0", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "LcURr5CJT0Uo0H18l31qpg", + "name": "The Lite Choice", + "address": "135 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412243904, + "longitude": -75.1454651992, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Juice Bars & Smoothies, Ice Cream & Frozen Yogurt, Food", + "hours": { + "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" + } + }, + { + "business_id": "4c2g3f516yTu4mZLbYqsmQ", + "name": "Passage Restaurant", + "address": "10783 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1093432, + "longitude": -75.024766, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'dressy'", + "Alcohol": "u'none'", + "BusinessParking": "None", + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, German, French, Modern European, Beer, Wine & Spirits, Ukrainian, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "qOgjA3ZyLo8jFDgaLIh2NQ", + "name": "Olave's Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Cleaning, Home Organization, Local Services, Carpet Cleaning, Office Cleaning, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-19:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "2z82YBsqTcf4VRkcdVCTmg", + "name": "Panda Express", + "address": "942 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515864405, + "longitude": -75.1565859872, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "DriveThru": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Food, Chinese, Fast Food, Restaurants", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "11HXgzo47w5e5pziFXpTNg", + "name": "Market 16 Noodle Bar", + "address": "34TH Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955696, + "longitude": -75.19161, + "stars": 1.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Noodles, Specialty Food, Ethnic Food, Imported Food, Sushi Bars, Restaurants", + "hours": { + "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": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "3cuWXwS_ctOh834MzMZXmQ", + "name": "Labcorp", + "address": "816 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496526531, + "longitude": -75.1541563265, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Laboratory Testing, Diagnostic Services, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:0", + "Saturday": "7:0-11:0" + } + }, + { + "business_id": "T8LAq0Hir2Fy2TcmAyKMRQ", + "name": "Murphy Ruffenach & Brian W Donnelly Funeral Homes", + "address": "2239 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9196972, + "longitude": -75.1518462, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pets, Pet Cremation Services, Local Services, Pet Services, Cremation Services, Funeral Services & Cemeteries", + "hours": { + "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" + } + }, + { + "business_id": "XuO9tZt0mEJeawrrt0R52g", + "name": "Pub Webb", + "address": "1527 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9791353607, + "longitude": -75.160534073, + "stars": 4.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "NoiseLevel": "'loud'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False" + }, + "categories": "Beer, Wine & Spirits, Food, Nightlife, Restaurants, Music Venues, Sports Bars, Bars, Arts & Entertainment, American (New)", + "hours": { + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0" + } + }, + { + "business_id": "znr5iGWOnCxgmZ8DJ-hEqQ", + "name": "Big Bang's Bar & Grill", + "address": "1433 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.954819, + "longitude": -75.164595, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True" + }, + "categories": "Restaurants, Asian Fusion, American (New), Soul Food", + "hours": { + "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": "16:30-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "aROWvF8ltWk6LLNO62haag", + "name": "Biryani Bowl Indian Cuisine", + "address": "219 E Willow Grove Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074304, + "longitude": -75.198701, + "stars": 4.0, + "review_count": 109, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "HappyHour": "False", + "RestaurantsAttire": "u'casual'", + "BYOB": "True" + }, + "categories": "Asian Fusion, Halal, Restaurants, Vegetarian, Indian, Food, Food Delivery Services", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "1gcgTI28LNjrFmMuxSkHpA", + "name": "Guie's Auto Body", + "address": "5244 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0394933, + "longitude": -75.2417003, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Ru1wQXYcrt_itF94K9yJpA", + "name": "Winner Airport Parking", + "address": "6717 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.911172, + "longitude": -75.2233841, + "stars": 3.0, + "review_count": 289, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Automotive, Car Wash, Hotels & Travel, Transportation, Airport Shuttles, Parking", + "hours": { + "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" + } + }, + { + "business_id": "yNN7L5btOFyHb3Q1Et07pw", + "name": "Chestnut Hill Hospital", + "address": "8835 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0795179, + "longitude": -75.2123224, + "stars": 2.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Hospitals, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "t0AuXEs3NV8kQ3gy76oPLA", + "name": "CVS Pharmacy", + "address": "3300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9091913, + "longitude": -75.1740095, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Pharmacy, Health & Medical, Convenience Stores, Drugstores, Food, Photography Stores & Services, Shopping", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "10:0-20:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "lAGS4ujbBQiSX_WL1GPkIg", + "name": "Pete's Clown House", + "address": "3878 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0037398, + "longitude": -75.0946608, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "Caters": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-13:30", + "Wednesday": "5:30-14:0", + "Thursday": "6:30-13:30", + "Friday": "5:30-14:0", + "Saturday": "5:30-14:0", + "Sunday": "5:30-13:30" + } + }, + { + "business_id": "Mz2ojdB5s1xW_tILMLXEDg", + "name": "Jade Harbor", + "address": "942 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552322, + "longitude": -75.155813, + "stars": 3.0, + "review_count": 174, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Alcohol": "'beer_and_wine'", + "WiFi": "u'no'", + "Caters": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese, Seafood", + "hours": { + "Monday": "16:0-2:30", + "Tuesday": "16:0-2:30", + "Wednesday": "16:0-2:30", + "Thursday": "16:0-2:30", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:30" + } + }, + { + "business_id": "c5IbgP-mYEcIErktwqLKlQ", + "name": "Skewers Bar and Grill", + "address": "1437 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94403, + "longitude": -75.1666721, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "DriveThru": "False", + "HappyHour": "True", + "Smoking": "u'outdoor'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForDancing": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Nightlife, Hookah Bars, Restaurants, Pubs, Bars, Fast Food", + "hours": null + }, + { + "business_id": "ONtMDaW8JZhPaV51gkf3CA", + "name": "Liberty Time", + "address": "1701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517287, + "longitude": -75.1689025, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Shopping, Watches, Gold Buyers, Jewelry", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "JbyHeQe-Ifn3FPpp0LATwA", + "name": "Dice's Deli & Catering", + "address": "4460 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0266665186, + "longitude": -75.2264526431, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Food, Delicatessen, Restaurants, Sandwiches, Burgers, Delis", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "CM5Dq-mKnZYdi9OlVluehA", + "name": "ERA", + "address": "2743 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9731622, + "longitude": -75.1820117, + "stars": 4.0, + "review_count": 182, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': False, u'dinner': True, u'latenight': None, u'dessert': False}", + "RestaurantsPriceRange2": "2", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Restaurants, Ethiopian, Dive Bars, Nightlife, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "P9B6PuQtlcOor4baXaaBSg", + "name": "Premier Urgent Care", + "address": ", 10050 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.095777, + "longitude": -75.0152496, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "2KGyJtkfDaLUQBwB6untGQ", + "name": "ShopRite - Philadelphia", + "address": "2946 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8870434356, + "longitude": -75.2306266772, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery, Beer, Wine & Spirits, Health & Medical, Pharmacy, Shopping", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "_5YKKrnxZ60H_VqtX3k-jw", + "name": "Philly Pub 'n Grub", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963, + "longitude": -75.172451, + "stars": 2.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'" + }, + "categories": "Cheesesteaks, American (New), Burgers, Pubs, Nightlife, Restaurants, Chicken Wings, Sports Bars, Bars", + "hours": { + "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" + } + }, + { + "business_id": "9y8RokDvXHYIzbSLJH_Ecw", + "name": "1500 Locust", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482879, + "longitude": -75.166542, + "stars": 2.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Home Services, Property Management, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "rkjrt-VYxSkJWqYTOz_KFQ", + "name": "Supercuts", + "address": "9910 Frankford Ave, Morrell Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.064829, + "longitude": -74.983655, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Cosmetics & Beauty Supply, Men's Hair Salons, Shopping, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "HQRIfDw-q1NSwwxiRJUIXA", + "name": "Karma Studios", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Yoga, Active Life", + "hours": null + }, + { + "business_id": "q1VOESxR99qJvpubnNxyJQ", + "name": "Caribou Cafe", + "address": "1126 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487531332, + "longitude": -75.1600949582, + "stars": 3.0, + "review_count": 341, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "French, Coffee & Tea, Cafes, Food, Restaurants", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "d-wsqenNiu8fkZGpdw07dQ", + "name": "Tootsie's Salad Express", + "address": "12TH And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953903, + "longitude": -75.158731, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Caterers, Event Planning & Services, Fast Food, Restaurants, American (New)", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "e4MoozYGqe_rb4_ZC1rYMQ", + "name": "Nook Bakery & Coffee Bar", + "address": "15 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952725, + "longitude": -75.1729016, + "stars": 4.5, + "review_count": 304, + "is_open": 1, + "attributes": { + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Cupcakes, Coffee Roasteries, Italian, Food, Bakeries, Coffee & Tea, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "VWCkjGczWp9b48PQN3bCyA", + "name": "Kevin's Hair Salon", + "address": "52 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530378, + "longitude": -75.1548528, + "stars": 4.0, + "review_count": 360, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Nail Salons, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "ohbpgQ7ri32vgd0NChswmQ", + "name": "Bury the Hatchet", + "address": "1890 Woodhaven Rd, Ste 2B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.111534, + "longitude": -75.0020581, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Recreation Centers, Active Life", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "TED7VFxZybEuH1CoA5wq-w", + "name": "Simon & Simon", + "address": "1818 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529111, + "longitude": -75.1710457, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Medical Law, Professional Services, Personal Injury Law, Lawyers, Social Security Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "JnPIjvC0cmooNDfsa9BmXg", + "name": "Original Liberty Bell Restaurant", + "address": "5213 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0223544, + "longitude": -75.0776092, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "znIjpTrNJoL5xoYppT-hrg", + "name": "US Post Office", + "address": "5300 W Jefferson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.980181, + "longitude": -75.228328, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Local Services, Public Services & Government, Post Offices", + "hours": { + "Monday": "8:30-16:15", + "Tuesday": "8:30-16:15", + "Wednesday": "8:30-16:15", + "Thursday": "8:30-16:15", + "Friday": "8:30-16:15", + "Saturday": "8:30-11:30" + } + }, + { + "business_id": "I1cabgmLp60mhm7UTY-vig", + "name": "BoltBus", + "address": "3101 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956407, + "longitude": -75.185266, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Buses, Hotels & Travel", + "hours": { + "Monday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "QzqBnYg6nYuJQj0hq9e2PA", + "name": "British Imperial Dry Cleaners", + "address": "2301 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502125, + "longitude": -75.1787138, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Dry Cleaning, Laundry Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "PS00H4iI51h1_yoWuvZ3Ag", + "name": "The Riverloft Apartment Homes", + "address": "2300 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951042, + "longitude": -75.17875, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "WBV26KTRir5r2FOZlLJVAQ", + "name": "Johnny's Hots", + "address": "1234 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9673162, + "longitude": -75.1293744, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': None, 'breakfast': True}", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "HasTV": "True", + "WiFi": "'no'" + }, + "categories": "Burgers, Restaurants, Hot Dogs, Sandwiches", + "hours": { + "Monday": "4:30-15:0", + "Tuesday": "4:30-15:0", + "Wednesday": "4:30-15:0", + "Thursday": "4:30-15:0", + "Friday": "4:30-15:0", + "Saturday": "4:30-14:0" + } + }, + { + "business_id": "uHtdM9fh6h4F0Ly3X3ez0Q", + "name": "Oloroso", + "address": "1121 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490799981, + "longitude": -75.1599725336, + "stars": 4.0, + "review_count": 183, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "WiFi": "'no'", + "HasTV": "False", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Restaurants, Bars, Spanish", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "wBGJ2BCHU0jGPpUKjL_bmQ", + "name": "Frankford Cleaners", + "address": "1900 Grant Ave, Ste I", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Dry Cleaning, Sewing & Alterations, Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "Y7asEgUrJc3W9vD7wxEnQg", + "name": "Rhythm and Brunch", + "address": "6517 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9219015059, + "longitude": -75.2311522532, + "stars": 4.0, + "review_count": 116, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, American (New), Breakfast & Brunch", + "hours": { + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-22:30", + "Saturday": "7:0-22:30", + "Sunday": "7:0-15:30" + } + }, + { + "business_id": "7eAV11sG1PVlbtlfyuO_dQ", + "name": "The Polish Nail Lounge", + "address": "457 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9632999, + "longitude": -75.146545, + "stars": 4.5, + "review_count": 122, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Waxing, Nail Salons, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "zD12wBN9vQHecg_-m_YXOg", + "name": "Nicholl's Seafood", + "address": "7634 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.05735, + "longitude": -75.06077, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "pry8OZlv4CFcz0qs2zdajQ", + "name": "The Daily Press'd", + "address": "2712 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9399624, + "longitude": -75.1887811, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Food Trucks, Food", + "hours": { + "Monday": "11:0-14:0", + "Tuesday": "11:0-14:0", + "Wednesday": "11:0-14:0", + "Thursday": "11:0-14:0", + "Friday": "11:0-14:0" + } + }, + { + "business_id": "POzBrXKhfXigUoHjQjW7BA", + "name": "The Flavor Spot", + "address": "5013 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0294811141, + "longitude": -75.1464830339, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:30-21:30" + } + }, + { + "business_id": "FsVo3IKsjTC-2vhuSlvz2w", + "name": "Q Lounge", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947843, + "longitude": -75.161687, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "American (Traditional), Lounges, Restaurants, Breakfast & Brunch, Nightlife, Gay Bars, Bars", + "hours": null + }, + { + "business_id": "qp-mPpFUvi2AmDAKKMGH6g", + "name": "MAC Cosmetics Macy's Center City", + "address": "1300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509137848, + "longitude": -75.162390177, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Shopping, Makeup Artists, Cosmetics & Beauty Supply, Eyelash Service", + "hours": null + }, + { + "business_id": "T18ghUpy5mO3BeUPFowNLQ", + "name": "Adams Carpet Center", + "address": "2850 Emerald St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9903937, + "longitude": -75.1193739, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Carpeting, Home & Garden, Home Services, Flooring, Contractors, Rugs, Shopping", + "hours": { + "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-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "oeUfuhyvVFNqosFrJZZzIQ", + "name": "Walgreens", + "address": "1101 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477912, + "longitude": -75.1597824, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "Caters": "False" + }, + "categories": "Cosmetics & Beauty Supply, Department Stores, Photography Stores & Services, Shopping, Drugstores, Food, Convenience Stores, Beauty & Spas, Fashion", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "bJHG34ifHUfvY1qQ1S1alw", + "name": "Sprint Store", + "address": "1760 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530089, + "longitude": -75.1699471, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Mobile Phones, Electronics, Shopping", + "hours": null + }, + { + "business_id": "PR5JX3znD2FJuXgSjDh05w", + "name": "Hair Rebels", + "address": "1636 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.969909, + "longitude": -75.164428, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Men's Hair Salons, Barbers", + "hours": { + "Monday": "14:0-20:0", + "Tuesday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0" + } + }, + { + "business_id": "-n_beuzQuajaezPD2PyQvA", + "name": "China Star", + "address": "1600-5 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977976, + "longitude": -75.158113, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "JrG4NINLspXPNhSXg7Q07Q", + "name": "Front Street Cafe", + "address": "1253 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9702007, + "longitude": -75.1356343, + "stars": 4.0, + "review_count": 716, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "CoatCheck": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WiFi": "u'free'", + "BYOB": "False", + "HasTV": "False", + "Caters": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "Smoking": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "None", + "HappyHour": "True", + "Music": "{'dj': False}", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Coffee & Tea, Restaurants, Cafes, American (New), Cocktail Bars, Breakfast & Brunch, Vegan, Bars, Nightlife, Food, Juice Bars & Smoothies, Beer Gardens", + "hours": { + "Monday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "edZOMuuz6TKNGnsE3ms1QA", + "name": "Septa", + "address": "3231 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0040298, + "longitude": -75.165723, + "stars": 1.5, + "review_count": 64, + "is_open": 1, + "attributes": null, + "categories": "Train Stations, Hotels & Travel, Public Transportation, Transportation", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-18:0" + } + }, + { + "business_id": "1cCqCwtRVMKUwBXjkXJE1w", + "name": "ING Rock N' Roll Half Marathon", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9027956, + "longitude": -75.2369674, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Races & Competitions, Active Life, Local Flavor", + "hours": null + }, + { + "business_id": "-zAfvusy7S9gRPDl6LsanQ", + "name": "Kerb", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vehicle Shipping, Home Services, Automotive, Movers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "4lazSGJOk8wv0Fc2mk7XGg", + "name": "Beauty Within Salon Spa", + "address": "7059 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0476834, + "longitude": -75.0690884, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Nail Salons, Hair Salons, Massage, Hair Removal, Beauty & Spas", + "hours": { + "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-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "a8UD5M0UXDtV1Y3JPTqwhw", + "name": "Warehouse on Watts", + "address": "923-29 N Watts St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707068, + "longitude": -75.1585055, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Smoking": "u'outdoor'", + "AgesAllowed": "u'21plus'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Arts & Entertainment, Nightlife, Dance Clubs, Music Venues, DJs, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "K0JZOvCUgYtbPjcDzys_kw", + "name": "The Cambridge", + "address": "1508 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437655, + "longitude": -75.1676029, + "stars": 3.5, + "review_count": 358, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "BYOB": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Nightlife, American (New), Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "lZqQ9ghU8Mi-YC_FXDvgXw", + "name": "Solano's Restoration", + "address": "731 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395133, + "longitude": -75.1494532, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Furniture Reupholstery", + "hours": null + }, + { + "business_id": "uSWgGrmfqopfE3bmIeD9ew", + "name": "DISH", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Television Service Providers, Internet Service Providers, Home Services, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "l1XqPExWf2QXNIt8-BQetQ", + "name": "New Father & Sons Shoe Service", + "address": "6037 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0349684, + "longitude": -75.0814128, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Fashion, Local Services, Shoe Repair, Shoe Stores, Shopping", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "kvS8SpAgEUWCnmOBt4g2cg", + "name": "Scramble Club", + "address": "5201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.96007, + "longitude": -75.224924, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "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-16:0" + } + }, + { + "business_id": "5hUMQ2qG6K3lnjK6U8NxjQ", + "name": "K B Auto Repair Center", + "address": "3379 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9917223, + "longitude": -75.103083, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Car Inspectors, Automotive, Oil Change Stations", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "UdHM_g-JbjxQvGaHKykKeA", + "name": "Heng Seng Restaurant", + "address": "2217 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9211723, + "longitude": -75.1583961, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "HappyHour": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Seafood, Vietnamese, Restaurants, Cambodian", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "RH0vy6AjSM4_AVkJNagOjw", + "name": "Alpha To Omega Termite & Pest Control", + "address": "5821 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.968893, + "longitude": -75.236193, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Pest Control, Wildlife Control, Local Services", + "hours": { + "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": "8:0-14:0" + } + }, + { + "business_id": "4DBhbIyHGi-nw7RbUhZ3Sw", + "name": "No. 1 Asian Supermarket", + "address": "2842 Saint Vincent Street S1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0414136978, + "longitude": -75.0548839197, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Butcher, Fruits & Veggies, Specialty Food, International Grocery, Food", + "hours": null + }, + { + "business_id": "wwUV-C7sNdzglMAm3RyVyw", + "name": "Contempo Cuts", + "address": "2857 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571886, + "longitude": -75.0304745, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons, Skin Care, Waxing, Hair Removal", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "pRk4_ElCW8pZU58WIZ8jMg", + "name": "Wise Guy", + "address": "706 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940376, + "longitude": -75.1496698, + "stars": 5.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Couriers & Delivery Services, Home Services, Data Recovery, Electronics Repair, IT Services & Computer Repair, Local Services, Computers, Shopping, Mobile Phone Repair, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "RcjHdCH2IT-1Qhl2s4xwaQ", + "name": "EZ Park", + "address": "211 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9564066, + "longitude": -75.1540393, + "stars": 1.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "l8x1yD2pGwFgBZUfugWing", + "name": "Nova Hair Salon", + "address": "1324 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478863, + "longitude": -75.1635217, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "8:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "7:0-17:0" + } + }, + { + "business_id": "7QVS6kcmc2vfp3TDCGX-Cw", + "name": "Colonial Pizza", + "address": "400 S 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513336, + "longitude": -75.2095376, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "014TTYpoCTRxQ4rljxMmbQ", + "name": "The Dell Music Center", + "address": "2400 Strawberry Mansion Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.996008, + "longitude": -75.1898263, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "CoatCheck": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HappyHour": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Nightlife, Music Venues, Arts & Entertainment", + "hours": null + }, + { + "business_id": "PRrUvMLjJqbmpjKD_w6RGw", + "name": "Pep Boys", + "address": "9880 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.093171, + "longitude": -75.019662, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Oil Change Stations, Auto Repair, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "Co3Ogqy6y2JgZdG0wBlrUQ", + "name": "Ten Stone Bar & Restaurant", + "address": "2063 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450458, + "longitude": -75.1769728, + "stars": 3.0, + "review_count": 300, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "HappyHour": "True", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}" + }, + "categories": "Asian Fusion, Nightlife, Restaurants, American (New), Bars, Pubs", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "OAs42PSxiaPS25sO8Vtfiw", + "name": "Lets Wok", + "address": "6258 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0494003, + "longitude": -75.143, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "MJPfK_HJwMBEqGqkrNULWA", + "name": "Urban Defense", + "address": "930 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9692363, + "longitude": -75.1504719, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Martial Arts, Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "jk3Uoq5yOqU9AdiFsjkXdw", + "name": "Wendy's", + "address": "5901 Ridge Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0301352573, + "longitude": -75.2112745157, + "stars": 2.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Burgers, Food, Fast Food", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "rQBSBF5uwB5lPx0RfnjlQA", + "name": "Brian Harak Haulouts", + "address": "4450 Carwithan St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.050573, + "longitude": -75.0066779, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Local Services", + "hours": { + "Monday": "0:0-0: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-14:30" + } + }, + { + "business_id": "m0wQ5oMPjpEFKAnQepJPOA", + "name": "Jeffrey Miller Catering", + "address": "1530 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484094, + "longitude": -75.1675345, + "stars": 4.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "H1UHnQRK63leyN6_vOfuNw", + "name": "Graciano Sewer And Drain", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Septic Services, Water Heater Installation/Repair, Contractors, Local Services, Home Services, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "CghBPM1wn14hKNpjlWiC4A", + "name": "Rosenberg Diamond Co", + "address": "738 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486305, + "longitude": -75.1538715, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "10:30-17:0" + } + }, + { + "business_id": "kPaixPxjX2qC0Z7ASbirPA", + "name": "Chef Johnny Bravo's Surf N Turf", + "address": "400 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960522, + "longitude": -75.145463, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food Trucks, Street Vendors, Sandwiches, Seafood, Restaurants, Asian Fusion, Food", + "hours": null + }, + { + "business_id": "DVAyUdKXfZT0uhX-T_i_cA", + "name": "Schmear It", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568166568, + "longitude": -75.1941706775, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Bagels, Food Trucks, Sandwiches, Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-13:0", + "Wednesday": "7:30-13:0", + "Thursday": "7:30-13:0", + "Friday": "7:30-13:0", + "Saturday": "8:0-13:30", + "Sunday": "8:0-13:30" + } + }, + { + "business_id": "jZIR4QJOswbgwYKRcJRTsQ", + "name": "JPG Photo & Video", + "address": "180 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0287844, + "longitude": -75.2247288, + "stars": 5.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Session Photography, Photographers, Event Photography, Videographers, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "VxC-ThIRmU3VcHS88INn4w", + "name": "Sophia's", + "address": "1623 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929332, + "longitude": -75.163804, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Nightlife, Bars, American (New)", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "2PX8MOkN6cPG7-gte7IpIQ", + "name": "Mimiโ€™s Cafe & Market", + "address": "184 E Evergreen Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0769274956, + "longitude": -75.2064291547, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True", + "BYOB": "True", + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Breakfast & Brunch, Coffee & Tea, Food, Cafes, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "mP9FfEht-U6G_Ka4fyEVSA", + "name": "Christopher Markus The Lion's Mane Salon", + "address": "1133 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945182, + "longitude": -75.1607742, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "gTui49AL7Of402vcwua13w", + "name": "Urban Axes - Philadelphia", + "address": "2019 E Boston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9840696, + "longitude": -75.1289367, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Entertainment, Nightlife, Axe Throwing, Venues & Event Spaces, Sports Clubs, Arcades, Active Life, Party & Event Planning, Team Building Activities, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "CCKEyg46JMgyZBF6iOfVnA", + "name": "Ceremony Tattoo Society", + "address": "2628 Martha St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9846969746, + "longitude": -75.1224704916, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Tattoo, Art Galleries, Shopping, Arts & Entertainment, Piercing, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "HLrDflJTscXg3OuuU0SYkg", + "name": "YOLO", + "address": "1201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467659, + "longitude": -75.1611269, + "stars": 2.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Food, Coffee & Tea, Restaurants, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "7XsrY2Vnk3mEpAptHHJYCA", + "name": "Bronze Anytime", + "address": "3359 Glenview St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0329113, + "longitude": -75.0498093, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'paid'" + }, + "categories": "Shopping, Tanning, Spray Tanning, Teeth Whitening, Skin Care, Tanning Beds, Cosmetics & Beauty Supply, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "twuI1VB2L8_2MrhpswM4Kw", + "name": "Pete's Famous Pizza Restaurant", + "address": "2328 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671836, + "longitude": -75.1764148, + "stars": 3.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Food Delivery Services, Pizza, Food, Restaurants", + "hours": { + "Monday": "7:0-22:30", + "Tuesday": "7:0-22:30", + "Wednesday": "7:0-22:30", + "Thursday": "7:0-22:30", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:30" + } + }, + { + "business_id": "LpSHqELVfBaACCLrkC4y-w", + "name": "Graffiti Pier", + "address": "E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.971627, + "longitude": -75.113581, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "ylz7EXVL1g8NhRnChnCrKA", + "name": "Mister Chubby's", + "address": "8312 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0340638, + "longitude": -75.0173264, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "NoiseLevel": "'quiet'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Sandwiches, Restaurants", + "hours": { + "Monday": "4:15-14:30", + "Tuesday": "4:15-14:30", + "Wednesday": "4:15-14:30", + "Thursday": "4:15-14:30", + "Friday": "4:15-14:30", + "Saturday": "4:15-11:0" + } + }, + { + "business_id": "HXosq231DQ6MlXJym_8yTA", + "name": "Scrub Residential Cleaning", + "address": "2628 Martha St, Unit SL-B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.984981, + "longitude": -75.12242, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Home Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "Gr6nYrQ_-3p4LcE4M84lTw", + "name": "Dave & Buster's", + "address": "325 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9570239499, + "longitude": -75.1374835117, + "stars": 2.5, + "review_count": 515, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Restaurants, Eatertainment, Bars, American (Traditional), Arts & Entertainment, Sports Bars, Arcades", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "10:0-23:59", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-23:59" + } + }, + { + "business_id": "ZWYup7u2YhhY2JeZNSuESg", + "name": "Good Flavor", + "address": "2439 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9192109, + "longitude": -75.1668619, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "True", + "WiFi": "u'free'", + "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': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "0:0-23:0" + } + }, + { + "business_id": "udOSF5-1UYFH2ccElXvuoQ", + "name": "Fern Rock Transportation Center", + "address": "Nedro Ave Between 10th And 11th", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0420077745, + "longitude": -75.1369596109, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government", + "hours": null + }, + { + "business_id": "8JuNAivyRLk1Hj2LWHJetA", + "name": "Laurel Hill Cemetery", + "address": "3822 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0041749, + "longitude": -75.1876883, + "stars": 5.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Funeral Services & Cemeteries, Local Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "9:30-16:30", + "Sunday": "9:30-16:30" + } + }, + { + "business_id": "u8wxP8s-jr0KCZTfGMl1UQ", + "name": "Denteek", + "address": "212 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9630155, + "longitude": -75.1417047, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Dentists, General Dentistry, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "5uSYOp50F1_lGylRy6I10w", + "name": "Popeyes Louisiana Kitchen", + "address": "800 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.940632, + "longitude": -75.166651, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "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': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Southern, Restaurants, American (Traditional), Chicken Wings", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "yH1AyWc8uPmmsZOD3JlWqg", + "name": "Patriot Harbor Lines", + "address": "211 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457958, + "longitude": -75.1405828, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Tours, Active Life, Boating, Hotels & Travel", + "hours": { + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "9:0-23:30", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "_Q-LbdtbUdP7uQuQ5CNjgg", + "name": "John Heinz National Wildlife Refuge at Tinicum", + "address": "8601 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8915607, + "longitude": -75.25734, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Landmarks & Historical Buildings, Zoos, Hiking, Public Services & Government, Parks, Education, Active Life", + "hours": null + }, + { + "business_id": "ZrkPvgCKxS_vBhYr8l-ZXw", + "name": "King Food", + "address": "2554 S American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9158557, + "longitude": -75.1524261, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "'quiet'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "American (Traditional), Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30" + } + }, + { + "business_id": "AkndFhP_KwsZ3w6gchaAXw", + "name": "Neighborhood Books", + "address": "1906 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446494, + "longitude": -75.1738184, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False" + }, + "categories": "Bookstores, Fashion, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "11:0-17:30", + "Friday": "11:0-17:30", + "Saturday": "11:0-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "OvJaO6nRLN-GA8wWecwg4w", + "name": "La Barberia", + "address": "1628 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536633, + "longitude": -75.1680817, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "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" + } + }, + { + "business_id": "Kb68faOZmCQfrzRba-vfNg", + "name": "Veda Health Professional Team", + "address": "10014 Sandmeyer Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1085021, + "longitude": -75.0359568, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Massage, Beauty & Spas, Health & Medical, Medical Spas", + "hours": null + }, + { + "business_id": "qaFizW202p1-BJzmai_Z_g", + "name": "Caliber Collision", + "address": "2052 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9390446469, + "longitude": -75.1777032735, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Body Shops, Automotive", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "8:30-15:30", + "Friday": "8:30-15:30" + } + }, + { + "business_id": "nk67HeBSnvys7foxtiANng", + "name": "Red King's BBQ", + "address": "933 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555302, + "longitude": -75.1554691, + "stars": 3.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Barbeque, Chinese, Restaurants, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "13:0-2:0", + "Tuesday": "13:0-2:0", + "Wednesday": "13:0-2:0", + "Thursday": "13:0-2:0", + "Friday": "13:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "ToXXzuswqzq1gRq1wbFdiQ", + "name": "Philadium Tavern", + "address": "1631 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9125772, + "longitude": -75.1763593, + "stars": 4.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, American (Traditional), Bars, Restaurants, Sports Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "YNl2JK7qqYyHqKc4bbKivg", + "name": "La Dominique", + "address": "3300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553587, + "longitude": -75.1896905, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Caters": "False" + }, + "categories": "Food Stands, Food, Food Trucks, Creperies, French, Polish, Restaurants", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0" + } + }, + { + "business_id": "Gh7CumEuDbHjEf97BkSWmQ", + "name": "The Record Spot", + "address": "7136 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0288977, + "longitude": -75.0379898, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video", + "hours": { + "Tuesday": "12:30-17:0", + "Wednesday": "12:30-17:0", + "Thursday": "12:30-16:0", + "Friday": "12:30-17:0", + "Saturday": "11:30-17:0" + } + }, + { + "business_id": "_8mrg8d1KWWND8fMAQVqRQ", + "name": "Sal's On 12th", + "address": "200 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484312, + "longitude": -75.1607724, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "ulfMNXHzGVleRf2U5KwiQQ", + "name": "Earth Bread + Brewery", + "address": "7136 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059176, + "longitude": -75.1904467, + "stars": 4.0, + "review_count": 380, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Pizza, Food, Breweries, American (New), Restaurants", + "hours": { + "Tuesday": "16:30-20:30", + "Wednesday": "16:30-20:30", + "Thursday": "16:30-20:30", + "Friday": "16:30-21:30", + "Saturday": "16:30-20:30" + } + }, + { + "business_id": "bX_9KbHrFxv7AsV4sq_pIQ", + "name": "Philadelphia Ronald McDonald House", + "address": "3925 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558531, + "longitude": -75.2011835, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Community Service/Non-Profit, Local Services", + "hours": null + }, + { + "business_id": "k1FcU1bwdXXcMohtrAUD5Q", + "name": "A J Appliance", + "address": "1437 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254048843, + "longitude": -75.1710749294, + "stars": 3.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Appliances & Repair, Home & Garden, Home Services, Heating & Air Conditioning/HVAC, Appliances, Shopping, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "1A9dgZTsGhuDmWvspSQQDQ", + "name": "Philadelphia Animal Welfare Society", + "address": "111 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.014263, + "longitude": -75.127516, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Pets, Animal Shelters", + "hours": null + }, + { + "business_id": "ceyJ2tQ_Q5XV7Me9ZOStog", + "name": "St Mary's Church", + "address": "252 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9455196, + "longitude": -75.1485411, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Churches", + "hours": { + "Saturday": "16:30-17:30", + "Sunday": "10:0-10:30" + } + }, + { + "business_id": "saS9fXK4BRcXOly3f3S_bg", + "name": "Robeks", + "address": "1035 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950401, + "longitude": -75.1583239, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "NoiseLevel": "'quiet'", + "RestaurantsDelivery": "False" + }, + "categories": "Vegan, Juice Bars & Smoothies, Vegetarian, Restaurants, Food", + "hours": { + "Monday": "6:30-19:30", + "Tuesday": "6:30-19:30", + "Wednesday": "6:30-19:30", + "Thursday": "6:30-19:30", + "Friday": "6:30-19:30", + "Saturday": "8:30-18:30", + "Sunday": "8:30-18:30" + } + }, + { + "business_id": "Mkr1Bm0SFo51L5-swly0bw", + "name": "The Signer's Garden", + "address": "498 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488186002, + "longitude": -75.1489040628, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Museums, Landmarks & Historical Buildings, Public Services & Government, Arts & Entertainment", + "hours": null + }, + { + "business_id": "cWieFH-wIcIsfzJ86Vm_Rg", + "name": "Big Brother Little Brother Towing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0171034644, + "longitude": -75.0930403269, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Junk Removal & Hauling, Local Services, Towing, Junkyards, Movers, Roadside Assistance, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "rdS9Uy5sDv97k6phZTceWA", + "name": "Drexel Pizza Restaurant", + "address": "107 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9579926, + "longitude": -75.1889787, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "GoodForKids": "True" + }, + "categories": "Pizza, Sandwiches, American (Traditional), Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "XfxBlYGBEe9qBKN_6AA7Uw", + "name": "Southside Zabihah Halal Eatery", + "address": "6150 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9280784, + "longitude": -75.2302899, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Cheesesteaks, Restaurants, Soul Food, Halal, American (Traditional)", + "hours": { + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0" + } + }, + { + "business_id": "4EXm70lqkCxZ-WtgNon8sw", + "name": "Gabriella's Vietnam", + "address": "1837 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926913, + "longitude": -75.166609, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Asian Fusion, Seafood, Steakhouses", + "hours": { + "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": "11:0-15:0" + } + }, + { + "business_id": "vy_rin8cRkzrUSmcVpFpJg", + "name": "2 B Groomed Barbering Studio", + "address": "270 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466368118, + "longitude": -75.1595187968, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "krCwF4raTYvBcCEwcbA88Q", + "name": "Philadelphia Mills", + "address": "1455 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0874923342, + "longitude": -74.9616227288, + "stars": 2.5, + "review_count": 159, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "HasTV": "True", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Shopping Centers, Shopping, Restaurants, Fashion, Department Stores, Food", + "hours": { + "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": "10:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "9t5e7Tfd61Lj104O3b_fPA", + "name": "Nails by Chau", + "address": "27 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525475, + "longitude": -75.1715466, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "EUwQbPPvacOk3hZLb_2pGw", + "name": "Central Tattoo Studio", + "address": "171 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9695627, + "longitude": -75.1388013, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "False", + "WheelchairAccessible": "False" + }, + "categories": "Tattoo, Piercing, Arts & Entertainment, Art Galleries, Shopping, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "sg4zySgp0Al1WNk-JhTbHQ", + "name": "McDonald's", + "address": "2211 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0558378767, + "longitude": -75.1578596234, + "stars": 1.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Food, Burgers, Coffee & Tea, Restaurants, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "ycm91tre_R4pRoV0STawSQ", + "name": "Ateethi", + "address": "9321 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0861073, + "longitude": -75.0450461, + "stars": 3.5, + "review_count": 96, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "WiFi": "'free'", + "GoodForKids": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "QC-Jvj74BAQFuGQ-Yomedw", + "name": "Wake Up Yoga Rittenhouse", + "address": "2030 Sansom St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951305, + "longitude": -75.1746805, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Fitness & Instruction, Yoga, Active Life", + "hours": { + "Monday": "7:0-20:45", + "Tuesday": "6:0-19:15", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:15", + "Friday": "9:30-19:15", + "Saturday": "8:0-11:30", + "Sunday": "10:0-19:15" + } + }, + { + "business_id": "ZpHSMgEoV3fdyYbl8d8gZg", + "name": "Popeyes Louisiana Kitchen", + "address": "6300 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9894456, + "longitude": -75.2512214, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chicken Shop, Restaurants, Food", + "hours": null + }, + { + "business_id": "APIhbh-BEr29O7JNrcTAlg", + "name": "Mingle Nail Lounge", + "address": "4237 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024465, + "longitude": -75.2208959, + "stars": 4.0, + "review_count": 128, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Nail Salons, Eyelash Service, Beauty & Spas, Day Spas", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "qR-8OYSnYucZUhPpZ6CLJg", + "name": "T & T Nail Salon", + "address": "3538 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0070631, + "longitude": -75.1502771, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "85e8Uyn8tIyEZCqBP80rqA", + "name": "Lolita", + "address": "106 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500808716, + "longitude": -75.162, + "stars": 4.0, + "review_count": 668, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "DriveThru": "None", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "_QzlIe0DdxSHBJtbPvNG2A", + "name": "Kim's Oriental Food", + "address": "37th St And Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9538821377, + "longitude": -75.1975536346, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food Stands, Chinese, Restaurants", + "hours": null + }, + { + "business_id": "uIFRFef7l43YxA8G3dU6Tg", + "name": "Mayflower Bakery & Cafe", + "address": "1008 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955259, + "longitude": -75.156314, + "stars": 4.5, + "review_count": 125, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Caters": "False" + }, + "categories": "Restaurants, Food, Bakeries, Coffee & Tea, Desserts", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "7:0-20:30", + "Sunday": "7:0-20:30" + } + }, + { + "business_id": "VH7fVdERc1KHxymP414mlg", + "name": "Extra Space Storage", + "address": "4433 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.021563649, + "longitude": -75.1591485478, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services, Home Services, Movers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "vJsTzkbgYdcLdCB4rnBv6g", + "name": "Mi Cumbia Organica", + "address": "328 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9466995, + "longitude": -75.1698852, + "stars": 4.5, + "review_count": 276, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Massage, Hair Removal, Nail Salons, Beauty & Spas, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "6VPD2WrgtD8h5UzjqaUnFA", + "name": "Delmonico's Steakhouse", + "address": "4200 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.004379, + "longitude": -75.218198, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'paid'", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': False, 'casual': None}" + }, + "categories": "Hotels & Travel, Restaurants, Event Planning & Services, Bars, Nightlife, American (Traditional), Hotels, Steakhouses, Lounges", + "hours": { + "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" + } + }, + { + "business_id": "47G1W3pBfKAvkXTNxEbhxw", + "name": "Miss Appliance", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 1.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Appliances & Repair, Local Services", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "RezSx4_q78Cchrc3JLbzgQ", + "name": "Love Park Self-Park Garage", + "address": "1501 JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.954293, + "longitude": -75.165666, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "ltaDKBb6_PMAOAXthRFKLA", + "name": "Alma Mater", + "address": "7165 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.060177, + "longitude": -75.190676, + "stars": 2.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Smoking": "u'outdoor'", + "HappyHour": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, American (Traditional), American (New), Sports Bars, Nightlife, Beer Gardens, Bars", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-2:0" + } + }, + { + "business_id": "CnL9asvqi5hwXc1sj7bqig", + "name": "Varalli", + "address": "231 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483091, + "longitude": -75.1642073, + "stars": 3.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "Corkage": "False", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Italian, Restaurants, Seafood", + "hours": { + "Monday": "16:30-23:0", + "Tuesday": "16:30-23:0", + "Wednesday": "16:30-23:0", + "Thursday": "16:30-23:0", + "Friday": "16:30-23:30", + "Saturday": "16:30-23:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "dsMznMWp-gMj1U_4yjIT6g", + "name": "Philadelphia Women's Center", + "address": "777 Appletree St, Fl 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9536361442, + "longitude": -75.1527034683, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Community Service/Non-Profit, Local Services, Internal Medicine, Medical Centers, Health & Medical, Doctors, Obstetricians & Gynecologists", + "hours": { + "Monday": "7:15-20:0", + "Tuesday": "7:15-20:0", + "Wednesday": "7:15-20:0", + "Thursday": "7:15-20:0", + "Friday": "7:15-18:0", + "Saturday": "6:15-18:0", + "Sunday": "9:30-16:30" + } + }, + { + "business_id": "RGjzDIO6HlOU3Uo4IqVAww", + "name": "A King's Cafe", + "address": "1400 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0478626, + "longitude": -75.1439805, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Restaurants, Seafood, Breakfast & Brunch", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Tqd8__DCshATdAiFNVm-2w", + "name": "Haunted Poe", + "address": "Brat Productions, 38 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.920152, + "longitude": -75.1473358, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Performing Arts, Arts & Entertainment", + "hours": null + }, + { + "business_id": "pC7MuCpWGTZjlrc7HvdF_A", + "name": "Philadelphia Tire & Service", + "address": "545 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963009, + "longitude": -75.1608768, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:30-12:30" + } + }, + { + "business_id": "pE-vlytThqVmk7y7OeoD3Q", + "name": "M & M Food Market", + "address": "458 Markle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.024849, + "longitude": -75.2102442, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "wcL88nbU3PkGlQcZPC7kAg", + "name": "The Naked Peach Waxing Boutique", + "address": "708 South 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407039, + "longitude": -75.1511292, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Skin Care, Eyelash Service, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "N11PPHgx_XABZjfEG5mspg", + "name": "Rita's Italian Ice", + "address": "161 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1289789, + "longitude": -75.0236242, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsDelivery": "None", + "Caters": "False" + }, + "categories": "Shaved Ice, Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": null + }, + { + "business_id": "pCdeDqx0bSP5yqdA7C4Caw", + "name": "ProTech - Smart Home Installers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Automation, Home Network Installation, Home Theatre Installation, Security Systems", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "LFOiOxKTB0oDELEJ0yjBhw", + "name": "Saige Cafe", + "address": "1802 Warnock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9807091313, + "longitude": -75.1514035119, + "stars": 3.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "'free'", + "RestaurantsReservations": "False" + }, + "categories": "American (Traditional), Restaurants, Coffee & Tea, Food, Bakeries", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "M6ap9LXMEZmHf6NhlNpDQA", + "name": "Thang Long Pho Restaurant", + "address": "2534-36 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.988408, + "longitude": -75.128555, + "stars": 4.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'upscale': False, 'divey': False, 'classy': False, 'trendy': False, 'hipster': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BYOB": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "Corkage": "False" + }, + "categories": "Asian Fusion, Noodles, Vietnamese, Vegan, Restaurants, Bubble Tea, Food, Soup", + "hours": { + "Monday": "9:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "9:0-20:30", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "nWazfpVUNF5lnm0yVI84Pg", + "name": "Complete Autowash Philly", + "address": "918 E Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.011347, + "longitude": -75.1092474, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive, Auto Detailing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "dUrtFfHBz15Q4GiyDFAqUw", + "name": "New Ridge Brewing", + "address": "6168 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0349311, + "longitude": -75.2170593, + "stars": 5.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "HappyHour": "True" + }, + "categories": "Restaurants, Gastropubs, Breweries, Food", + "hours": null + }, + { + "business_id": "m9IGBxZVQXLaRm9qbImzbw", + "name": "The Kowalchik Team", + "address": "4359 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257801, + "longitude": -75.223897, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Commercial Real Estate, Home Services, Property Management, Real Estate Agents, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "nWroKLF18LUHALR6dFlvZQ", + "name": "Mario's Complete Auto Repair And Collision Center", + "address": "2730 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9897804, + "longitude": -75.0902503, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Oil Change Stations, Automotive, Body Shops, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "ENOg4e6w8OabVfEZijegAg", + "name": "Knead Body Boutique", + "address": "45 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95151, + "longitude": -75.14482, + "stars": 2.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage, Beauty & Spas, Acupuncture, Health & Medical", + "hours": { + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "siPJQeI7zK2EwvwzN8KpUg", + "name": "Target", + "address": "456 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.95981, + "longitude": -75.14784, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsTableService": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'" + }, + "categories": "Electronics, Shopping, Furniture Stores, Home & Garden, Fashion, Department Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "Mz0i5rnXaUQd1dJ5_OfOKQ", + "name": "Bubbakoos Burritos", + "address": "2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BYOB": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "New Mexican Cuisine, Mexican, Tex-Mex, American (New), Vegetarian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Gyv8LxXIj3fa_hrDom26aQ", + "name": "Toviah Thrift Shop", + "address": "4211 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9564455, + "longitude": -75.2069504, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Fashion, Local Flavor, Shopping, Used, Vintage & Consignment", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "epemZhgcKNa8X2kKUpEFow", + "name": "King Food Restaurant", + "address": "7426 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0385571, + "longitude": -75.0368603, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "NoiseLevel": "'quiet'", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Soup, Chicken Shop, Chinese", + "hours": null + }, + { + "business_id": "i1SP5YzRjIc8s1O1tQZ6fA", + "name": "Stromboli House Pizza", + "address": "8004 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.060017, + "longitude": -75.0519878, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "'quiet'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "zczhm2kpHy4MKKW9fmSdFQ", + "name": "Queenie's Pets", + "address": "7174 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0597053, + "longitude": -75.1909748, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Groomers, Health & Medical, Pet Services, Pet Sitting, Nutritionists, Dog Walkers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "fMWNRaXfxForC8Xk01FmEA", + "name": "Anh Custom Tailors", + "address": "771 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383344, + "longitude": -75.1497724, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Sewing & Alterations", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "nxjY1CEz6S6iogenYhlj5w", + "name": "Matt's Gourmet Sliders", + "address": "3601 Market St, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568793203, + "longitude": -75.1940691099, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "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': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "HappyHour": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Burgers, Caterers, Food Trucks, Food, American (Traditional), Street Vendors, American (New), Fast Food, Restaurants, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-16:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "4Npws3Svn4Al4_bpvTMXZA", + "name": "PrimoHoagies", + "address": "6602 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0309657058, + "longitude": -75.0548242732, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, Delis, Restaurants, Italian", + "hours": { + "Monday": "10:0-20: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", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "KJrbJ2kl623F1HwgRgM9GA", + "name": "Bike Line", + "address": "1028 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953416, + "longitude": -75.157498, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sporting Goods, Bikes, Shopping", + "hours": null + }, + { + "business_id": "oT_lhJd7LJpTrt8vAnN5fg", + "name": "Hayashi Sushi", + "address": "814 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948249, + "longitude": -75.2169454, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Japanese, Bubble Tea, Poke, Sushi Bars, Ramen, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "dcFsFGyxx3XPi49sjP8Q5A", + "name": "Neon Lobster", + "address": "2101 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218301, + "longitude": -75.1509216, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Sandwiches, Fast Food, Restaurants, Diners, Seafood, Street Vendors", + "hours": { + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "m1t0eWIEaXL_O0jztX43gw", + "name": "Pizza Hut", + "address": "2900 Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.996512, + "longitude": -75.1550924114, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Italian, Chicken Wings, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "lblNWQhLiwQXplmAtR0Jcg", + "name": "Another Planet Barber Shop", + "address": "808 South St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422976, + "longitude": -75.1558086, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Stylists, Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:30", + "Wednesday": "12:0-18:30", + "Thursday": "12:0-18:30", + "Friday": "12:0-18:30", + "Saturday": "12:0-18:30" + } + }, + { + "business_id": "BHshhJKh0k6ovEVgAM3aPA", + "name": "Save A Lot", + "address": "2101 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9845163626, + "longitude": -75.1212746896, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "True" + }, + "categories": "Food, Grocery, Discount Store, Shopping", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "n3vzlnrl48_bZQBOMczPoQ", + "name": "Imperia Designs", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Web Design, Graphic Design, Marketing, Professional Services", + "hours": { + "Monday": "1:0-23:0", + "Tuesday": "1:0-23:0", + "Wednesday": "1:0-23:0", + "Thursday": "1:0-23:0", + "Friday": "1:0-23:0", + "Saturday": "1:0-23:0", + "Sunday": "1:0-23:0" + } + }, + { + "business_id": "JErNh8byJAEMRAoPTifV1Q", + "name": "Chelsea Lounge", + "address": "216 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498326, + "longitude": -75.1443776, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Bars, Lounges", + "hours": null + }, + { + "business_id": "9_Vc2bGwkmTD72Khzcye3w", + "name": "Core Acupuncture", + "address": "908 Arch St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532187, + "longitude": -75.1550739, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Acupuncture, Skin Care, Fertility, Sports Medicine, Medical Centers, Doctors, Health & Medical, Traditional Chinese Medicine, Pain Management, Beauty & Spas, Massage Therapy, Tui Na, Orthotics", + "hours": { + "Monday": "14:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "VXFS9fqs7Dgt4WeeBw2SYw", + "name": "Kao Tip", + "address": "3520 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0372669, + "longitude": -75.0420598, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Thai", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "13:0-22:30", + "Sunday": "13:0-21:30" + } + }, + { + "business_id": "5Z3mFDZWRPkZQS6wspkvbQ", + "name": "LL Flooring - Northeast Philadelphia", + "address": "10500 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0990486, + "longitude": -75.0108642, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Flooring, Home Services, Building Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "yz4hMPsIO7sI0heAiPj4aQ", + "name": "Jefferson University Physicians", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Health & Medical, Family Practice, Ophthalmologists, Doctors", + "hours": null + }, + { + "business_id": "rAm_joyUPB5H9P_HD4TtbA", + "name": "Ho Sai Gai", + "address": "2423 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9754776, + "longitude": -75.1206993, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "SVFQodPcA2AtWPXPxelJkA", + "name": "Odyssey Hair Studio", + "address": "218 South 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479999, + "longitude": -75.160801, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "vLVl8wvXWU1nYCair-8r6A", + "name": "Paddy Whacks Irish Sports Pub", + "address": "2711 Comly Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0872945, + "longitude": -75.0012964, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Bars, Nightlife, Sports Bars, Restaurants, Irish, American (Traditional)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "7hnr6S6FeYaO7z-8wt2NfA", + "name": "Jake & Max's Deli", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703, + "longitude": -75.1684962, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "'loud'", + "RestaurantsReservations": "False" + }, + "categories": "Delis, Food, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "yNFpJ_UuPBYIc0WoBUuS9Q", + "name": "Pac A Deli", + "address": "1200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486288, + "longitude": -75.1607856, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-1:0", + "Saturday": "7:0-0:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "pd5KaIXNt1Eoy1dahUaG_w", + "name": "Balance Studios", + "address": "2100 Chestnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521899605, + "longitude": -75.1755889791, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Martial Arts, Active Life, Yoga, Boxing", + "hours": { + "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" + } + }, + { + "business_id": "VSRx7k7IO5CuNvLH_R4Upw", + "name": "Accuracy Assured Home Inspections", + "address": "1629 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9407212, + "longitude": -75.1705327, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Services, Real Estate, Home Services, Home Inspectors", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "hSoJPBJcPT8vGuEQRs4P4Q", + "name": "Bass Thomas J Attorney", + "address": "621 Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0282967, + "longitude": -75.2058449, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Lawyers", + "hours": null + }, + { + "business_id": "U8kK8hHCR67qinrTImRUBg", + "name": "Morris' Cafe", + "address": "30 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952188, + "longitude": -75.169489, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Specialty Food", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-14:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "L17PfKnnk_sVm_e0bBgNAA", + "name": "South Street Headhouse District Spring Festival", + "address": "S Between 2nd And 8th", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415396708, + "longitude": -75.1492296159, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "cbDPotTFcIBONQH6kFFyVA", + "name": "Millie's Burgers, Steaks & Shakes", + "address": "1441 W Shunk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9185228, + "longitude": -75.1725846, + "stars": 2.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Burgers, Restaurants, Food, Pizza, American (Traditional)", + "hours": { + "Monday": "11:0-22:30", + "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": "11:0-22:30" + } + }, + { + "business_id": "2_vNU1JSrpfthcEZ7ZjvzQ", + "name": "Children's Dental & Orthodontic Associates", + "address": "607 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494023, + "longitude": -75.1512449, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Pediatric Dentists, Dentists, Health & Medical, Orthodontists", + "hours": null + }, + { + "business_id": "F1s6Ye5pYOiBYBXwys4ExQ", + "name": "Nifty Fifty's Fishtown", + "address": "2431 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9738884555, + "longitude": -75.1206322589, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Juice Bars & Smoothies, Food, American (Traditional), Restaurants, Burgers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "4TuBZkfrm8hQ5K-Xuw6Lgw", + "name": "Warwick Hair Design", + "address": "220 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493449, + "longitude": -75.1695094, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "NLBMVC4fk-Y8dQbrnSQHCw", + "name": "Tea Chat", + "address": "216 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559225, + "longitude": -75.155964, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bubble Tea, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "BdWmI-F_7ajVToqDDL5A4A", + "name": "iPho", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Vietnamese, Restaurants, Food Trucks", + "hours": { + "Monday": "12:0-16:0", + "Tuesday": "12:0-16:0", + "Wednesday": "12:0-16:0", + "Thursday": "12:0-16:0", + "Friday": "12:0-16:0" + } + }, + { + "business_id": "YC_zSOWxbHOs7rJDZzYP9Q", + "name": "Nail 100", + "address": "8330 Bustelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0626558816, + "longitude": -75.0475422683, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30" + } + }, + { + "business_id": "OgSb5-2Nj8qgniiir9tvSw", + "name": "Polish American Cultural Center", + "address": "308 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9469769, + "longitude": -75.1469221, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Rn7nEFp5Vj-Wa6SdRONIFQ", + "name": "Cafe URBA", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9531930549, + "longitude": -75.1669482379, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HappyHour": "True", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Food, Breakfast & Brunch, Juice Bars & Smoothies, Coffee & Tea, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "tyzeRPdaPXx08yaYkq9YmQ", + "name": "Penn Medicine Washington Square", + "address": "800 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482212626, + "longitude": -75.1542969793, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Medical Centers, Health & Medical, Laboratory Testing, Diagnostic Services", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "7:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "FZ3pdGpOdfOkXZoQDc1yaw", + "name": "Creep Records", + "address": "1050 N Hancock St, Ste 76", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966774, + "longitude": -75.139121, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Music & DVDs, Vinyl Records, Books, Mags, Music & Video, Tobacco Shops, Active Life, Golf Equipment, Head Shops, Sporting Goods, Vape Shops, Shopping, Disc Golf, Men's Clothing, Fashion", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "WC98L9P-mJjnqpxEVk25ag", + "name": "ACME Markets", + "address": "3200-09 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0793129079, + "longitude": -74.9933626516, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Shopping, Fashion, Drugstores, Department Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "2Sr44BJmYJ4PDMyoW0cePw", + "name": "Room 12 Lounge", + "address": "1200 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497462, + "longitude": -75.1605534, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "'no'" + }, + "categories": "Nightlife, Dance Clubs, Bars, Lounges", + "hours": { + "Monday": "21:0-2:0", + "Tuesday": "21:0-2:0", + "Wednesday": "21:0-2:0", + "Thursday": "21:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "21:0-2:0" + } + }, + { + "business_id": "sMd7MbiEjf-9kGYgCFqp5Q", + "name": "Popolino Roman Trattoria", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633805601, + "longitude": -75.1468008757, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Bj3ghHVtymOKMf_FFeu-Rw", + "name": "Hair Cuttery", + "address": "701 Cathedral Rd, Ste 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0628618876, + "longitude": -75.2375254384, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons, Hair Stylists, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "6OTy5-0NdmxgxqCLVuIJaA", + "name": "M Kee", + "address": "1002 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552318, + "longitude": -75.1561191, + "stars": 4.0, + "review_count": 232, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "P1etuKEZP-I0ojiiEEdblw", + "name": "Serpent Skin and Care", + "address": "440 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9704022, + "longitude": -75.1289753, + "stars": 5.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Aestheticians, Estheticians, Beauty & Spas, Skin Care, Day Spas, Medical Spas, Acne Treatment", + "hours": { + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "LvmGo7LIAv4Ypk99a0crrg", + "name": "Superior Services Mobile Detailing", + "address": "4335 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0259614, + "longitude": -75.222575, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Auto Detailing, Car Wash", + "hours": { + "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-13:0", + "Sunday": "7:0-13:0" + } + }, + { + "business_id": "cRoKBHS3VRVc7jZhIKQWhg", + "name": "Anns Nails", + "address": "2234 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9800928, + "longitude": -75.1720816, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "UF436Ju_UY0zuE5RNtYW5g", + "name": "Pizza Hut", + "address": "2530 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9781292824, + "longitude": -75.1195161045, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza, Italian, Chicken Wings", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "WYdNpO0xCSf4AWrMdyakrw", + "name": "Hawthorne Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19003", + "latitude": 40.0021177, + "longitude": -75.3004009, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Local Services, Home Services, Painters, Handyman, Pressure Washers", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "BzauSeRMjTiYoRRMRDblNw", + "name": "Victoria Secret", + "address": "1455 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0876473, + "longitude": -74.9610288, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Lingerie, Cosmetics & Beauty Supply, Beauty & Spas, Fashion, Shopping", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "bp3964pN-0xDftxjCgDIZg", + "name": "Planned Parenthood - Castor Avenue Health Center", + "address": "8210 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0649526, + "longitude": -75.0535855, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Medical Centers, Laboratory Testing, Obstetricians & Gynecologists, Reproductive Health Services, Doctors, Diagnostic Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "10:0-18:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "SDL247FlOnScJfuNjZESxg", + "name": "Twenty Manning", + "address": "261 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486084, + "longitude": -75.1740323, + "stars": 3.5, + "review_count": 421, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (New), Desserts, Middle Eastern, Asian Fusion, Cocktail Bars, Bars, Nightlife, Food", + "hours": { + "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" + } + }, + { + "business_id": "kj267FdmsOtnKxweQA1vhw", + "name": "Posh Nail Studio", + "address": "163 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.969659, + "longitude": -75.138548, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Hair Removal, Medical Spas, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "G7OO9Dys3_buE8uW9shKbg", + "name": "Aria FastCare", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.064544, + "longitude": -74.984814, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Health & Medical, Medical Centers", + "hours": { + "Monday": "8:30-20:30", + "Tuesday": "8:30-20:30", + "Wednesday": "8:30-20:30", + "Thursday": "8:30-20:30", + "Friday": "8:30-20:30", + "Saturday": "9:0-16:30", + "Sunday": "9:0-16:30" + } + }, + { + "business_id": "EfYKKT1ov4SYDBdrQiekvA", + "name": "Parks On Tap-Azalea Gardens", + "address": "636 Waterworks Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9683746112, + "longitude": -75.1838455246, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "True" + }, + "categories": "Local Flavor, Parks, Nightlife, Active Life, Beer Gardens", + "hours": null + }, + { + "business_id": "ClItrcjw1Im2qoUS3vICnw", + "name": "Balcony Bar @ The Kimmel Center", + "address": "300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467934402, + "longitude": -75.1652970538, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Nightlife, Beer Gardens, Pop-Up Restaurants", + "hours": null + }, + { + "business_id": "7FwfEWCE_htHxxtQ1w-Xag", + "name": "Center City Orthodontics", + "address": "1352 South St, Ste C-3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432839, + "longitude": -75.1646617, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Orthodontists, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "ZfTKaJXHHA7YAKUGeEIcYw", + "name": "Pink Rose Pastry Shop", + "address": "630 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940868, + "longitude": -75.1495149, + "stars": 2.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Bakeries, Restaurants, Food, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "YY96Jfi26j5iF4aDICyRXg", + "name": "Tastee D's", + "address": "526 S 4th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418834, + "longitude": -75.1491745, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "African, Restaurants", + "hours": null + }, + { + "business_id": "GsppfYtMMxI86N9FuXzccw", + "name": "Poppy's Cafe", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073834, + "longitude": -75.20313, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Restaurants, Food, Coffee & Tea", + "hours": { + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "W5e4UAY9PoE3ydedIcc5GA", + "name": "Dinics Pork & Beef", + "address": "1511 Kitty Hawk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8900745, + "longitude": -75.1776345, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "Alcohol": "u'none'", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': None}" + }, + "categories": "Breakfast & Brunch, Cheesesteaks, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "DQK60HvSqp7hVJ_T77bwxQ", + "name": "Tierce", + "address": "2218 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9801351, + "longitude": -75.1291919, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Donuts, Cafes, Breakfast & Brunch, Food, Restaurants", + "hours": { + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "DFewXTd0J-u-3kIzOES9zg", + "name": "Village Taverna", + "address": "769 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388690621, + "longitude": -75.1524720713, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Falafel, Restaurants, Breakfast & Brunch, Greek, Mediterranean, Salad", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "VBJenKqcBasewkS7PoLOWA", + "name": "Taco Bell", + "address": "2809 S. Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9115533508, + "longitude": -75.1501093905, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Tacos, Fast Food, Restaurants", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "WdQuggXokCWfYhGylPYhIg", + "name": "City Diner", + "address": "521 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9438210063, + "longitude": -75.1653108001, + "stars": 3.5, + "review_count": 176, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "CoatCheck": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "HappyHour": "True", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Breakfast & Brunch, Cocktail Bars, Bars, Nightlife, Restaurants, Diners", + "hours": { + "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" + } + }, + { + "business_id": "bxffbg7kCn5iHxtdYp7gJQ", + "name": "Gaetano's", + "address": "53RD Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.960337, + "longitude": -75.227589, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Cheesesteaks, Pizza", + "hours": null + }, + { + "business_id": "XVoCYNFCAG8CrLYgYSIe1A", + "name": "Hookah House", + "address": "526 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415358428, + "longitude": -75.1475872465, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "GoodForDancing": "False", + "HasTV": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "True", + "Smoking": "u'yes'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False" + }, + "categories": "Cafes, Bars, Nightlife, Food, Restaurants, Hookah Bars, Lounges, Coffee & Tea", + "hours": { + "Monday": "18:0-1:0", + "Tuesday": "18:0-1:0", + "Wednesday": "18:0-1:0", + "Thursday": "18:0-1:0", + "Friday": "18:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "18:0-1:0" + } + }, + { + "business_id": "l4cjS8wCQxqfsujYVW6xCw", + "name": "Never Too Spoiled", + "address": "108 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9522375, + "longitude": -75.1433285, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Home Decor, Home & Garden, Jewelry, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "IyIZSTVm6tTt5AhAz1sX7A", + "name": "Bruno's Pizza", + "address": "1838 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0671643, + "longitude": -75.1464967, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Cheesesteaks, Restaurants, Pizza", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "CkKmZMDbIeJ6LoDsbJf2og", + "name": "Team Dental - Philadelphia", + "address": "992 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9662806, + "longitude": -75.1404232, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Oral Surgeons, Health & Medical, Cosmetic Dentists, Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "8:0-20:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1-lPo-XrL9cWVCuAokb_zg", + "name": "Adler's Fabrics", + "address": "742 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394098, + "longitude": -75.1498637, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fabric Stores, Arts & Crafts", + "hours": null + }, + { + "business_id": "phmaKIR5wp8YBz8VhnKw1A", + "name": "Target", + "address": "2701 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.991215, + "longitude": -75.089745, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "HasTV": "False", + "CoatCheck": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Electronics, Department Stores, Shopping, Shopping Centers, Fashion, Grocery, Food, Furniture Stores, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:59", + "Wednesday": "7:0-23:59", + "Thursday": "7:0-23:59", + "Friday": "8:0-21:0", + "Saturday": "7:0-23:59", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "wROKil5dFcY24ie52nzVjg", + "name": "Raja Yoga and Meditation Center of Greater Philadelphia", + "address": "724 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9429278, + "longitude": -75.1756164, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Yoga, Local Services, Fitness & Instruction, Community Service/Non-Profit, Kids Activities", + "hours": null + }, + { + "business_id": "yycbLj75XdiB53VVv3PhCA", + "name": "Tokyo Sushi", + "address": "1200 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9536652, + "longitude": -75.1599104, + "stars": 1.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False" + }, + "categories": "Fruits & Veggies, Specialty Food, Food, Sushi Bars, Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "o5qASktfJmfQ1v6IgLN24Q", + "name": "Craytaste", + "address": "3865 N 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0108382428, + "longitude": -75.1396588236, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Caribbean, Breakfast & Brunch, Soul Food, Restaurants, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "XIKYdKWq72zUYsq8NBxcCQ", + "name": "Aksum Cafe", + "address": "4630 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485474, + "longitude": -75.2163663, + "stars": 4.0, + "review_count": 393, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Mediterranean, Vegetarian, American (New), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "s1w3w_1bwLQucJFUll6UkQ", + "name": "Crown Boiler", + "address": "3633 I St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.003621, + "longitude": -75.1084149, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Plumbing", + "hours": null + }, + { + "business_id": "_SeA5zYpueTRr8ALSv2lfw", + "name": "Maebee's Beauty Studio", + "address": "4631 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0285927, + "longitude": -75.0389726, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Massage, Estheticians, Skin Care, Makeup Artists, Eyebrow Services, Eyelash Service", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "O9c2AmdLr-6DHdywEUNxnA", + "name": "Rita's Italian Ice", + "address": "7239 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0351161691, + "longitude": -75.0444776207, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Desserts, Shaved Ice, Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "7LskDbqERsCsiPNKjmNnrA", + "name": "Mr Wings", + "address": "500 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.914561, + "longitude": -75.156783, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Chicken Wings, Sandwiches, Pizza, Restaurants", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "CHcpcv65XtaGuq4gogzpXQ", + "name": "HITEA", + "address": "1001 Market St, Ste 1022", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952006, + "longitude": -75.157237, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Food, Coffee & Tea, Bubble Tea", + "hours": null + }, + { + "business_id": "1NjKYyE9lArMil98wTklkg", + "name": "Philly Sport & Social", + "address": "3800 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0198024, + "longitude": -75.210871, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Social Clubs, Amateur Sports Teams, Arts & Entertainment, Active Life, Sports Clubs", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0" + } + }, + { + "business_id": "dwlngUMWtq-_dTxe3-8waA", + "name": "Rebecca Nail Salon", + "address": "3547 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.007256, + "longitude": -75.1498979, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:30" + } + }, + { + "business_id": "2mboTcPKaHh35wGmRoq0eg", + "name": "Tommy Gentekos Hair Salon", + "address": "2104 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506988, + "longitude": -75.1761433, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-18:30", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "Lb11i2WxB9p7r24Srv7c4w", + "name": "MotherHeart Studio", + "address": "2359 E Susquehanna St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9770571, + "longitude": -75.1272832, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Active Life, Fitness & Instruction, Yoga", + "hours": { + "Monday": "18:0-20:30", + "Tuesday": "18:0-20:30", + "Wednesday": "18:0-20:30", + "Thursday": "7:0-10:30", + "Friday": "7:0-10:30", + "Saturday": "17:0-18:15", + "Sunday": "10:0-12:0" + } + }, + { + "business_id": "786I8neZKK4VuZla1iWP2Q", + "name": "Edward Hughes & Sons", + "address": "2240 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9776281215, + "longitude": -75.1261352294, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Plumbing, Water Heater Installation/Repair", + "hours": { + "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": "8:0-14:0" + } + }, + { + "business_id": "90OqHj6ES9Npo2-ncdxurw", + "name": "Green Garden", + "address": "1556 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0801196, + "longitude": -75.1727528, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "BusinessParking": "None", + "BikeParking": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "xsyyMWSKHwnWrDygrdJ8aA", + "name": "Patriot Parking", + "address": "2102 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951297, + "longitude": -75.1758498, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "IhkMaYrHMVfV9CRjHc5ZBQ", + "name": "John's New Pizza & Restaurant", + "address": "4312 Megargee St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0483579, + "longitude": -75.0121344, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "None", + "HasTV": "True", + "Alcohol": "u'none'", + "Caters": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Af8Pue5evUMudP0ezVfROQ", + "name": "MASS-FIT", + "address": "401 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427405859, + "longitude": -75.1450839883, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Active Life, Trainers", + "hours": { + "Monday": "7:0-19:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-19:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-19:0", + "Saturday": "7:0-13:0" + } + }, + { + "business_id": "ucHTzMJXR7ys_yKOSZN_HQ", + "name": "Rothman Orthopaedics", + "address": "2 NovaCare Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9063588209, + "longitude": -75.1758965886, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Sports Medicine, Orthopedists, Physical Therapy, Doctors", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "SjOD3i2vTmPhS4Ez4dUtpw", + "name": "7-Eleven", + "address": "242-244 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498870607, + "longitude": -75.1454114914, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "wbDRmtxaKRpBOjutvV6TEA", + "name": "Barclay Prime", + "address": "237 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487096, + "longitude": -75.1708743, + "stars": 4.5, + "review_count": 789, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "HasTV": "False", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'dressy'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "Caters": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Steakhouses, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "16:0-21:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "0dzW328vFS78FjYMA62tRg", + "name": "Checkers", + "address": "5726-46 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9456163329, + "longitude": -75.2394029769, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "DriveThru": "True" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "EHOqzuLrwrU_W46sCe7axA", + "name": "Leila Cafe", + "address": "1356 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943424, + "longitude": -75.165121, + "stars": 3.5, + "review_count": 88, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForKids": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Middle Eastern", + "hours": { + "Monday": "5:0-23:30", + "Tuesday": "11:30-23:30", + "Wednesday": "11:30-23:30", + "Thursday": "11:30-23:30", + "Friday": "18:0-1:30", + "Saturday": "11:30-1:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "MSBxd6uCwCL5ayhtIPfHUg", + "name": "Silver Apple Medical Spa", + "address": "2401 Pennsylvania Ave, Ste 1A2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9668759, + "longitude": -75.1780516, + "stars": 1.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Laser Hair Removal, Beauty & Spas, Hair Removal, Medical Spas, Health & Medical", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "gcTHLDX2jcc1LiXsqyaNtg", + "name": "The Fabric Workshop and Museum", + "address": "1214 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537173, + "longitude": -75.1602156, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "None", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Museums, Art Galleries, Arts & Entertainment, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "GQ4VOEsoaHKUd8i23eCiDw", + "name": "My.Suit", + "address": "1518 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9495767314, + "longitude": -75.1668619018, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Bespoke Clothing, Fashion, Personal Shopping, Men's Clothing, Formal Wear, Shopping", + "hours": { + "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-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "eZRy9VLzfXRhe-p5lYi80w", + "name": "Stellar Movers", + "address": "1105 Greenwich St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930768, + "longitude": -75.1630659, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "XEy5AJmx2q8il0oD85ebQw", + "name": "Silver Fork Thai & Japanese Cuisine", + "address": "429 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419144, + "longitude": -75.1501856, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsTableService": "True", + "Caters": "True" + }, + "categories": "Sushi Bars, Thai, Restaurants, Japanese", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "-4zwfrKm21Rf89pTJRhG9w", + "name": "Qantas", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87438, + "longitude": -75.25136, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Airports, Airlines, Hotels & Travel", + "hours": null + }, + { + "business_id": "YdFwLmK3Ag_np1H1YVT58g", + "name": "Encima", + "address": "112 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512983694, + "longitude": -75.1706467196, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Mexican, Cocktail Bars, Restaurants, Nightlife", + "hours": null + }, + { + "business_id": "ex5Jgd9DUoMhteSFfmAdjg", + "name": "Eka Dance Academy", + "address": "1900 A Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Schools, Education, Fitness & Instruction, Active Life, Dance Studios", + "hours": { + "Monday": "18:0-22:0", + "Tuesday": "18:0-22:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-22:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "_lzdvo1_8RSiseYQOMozKw", + "name": "Dunkin'", + "address": "5753 Wayne Ave, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0330364, + "longitude": -75.1795268, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "u'free'", + "DriveThru": "None", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "4:30-22:0", + "Sunday": "4:30-22:0" + } + }, + { + "business_id": "sL6fC0P4C-gyL4E5gacUeQ", + "name": "Lazaro's Pizzeria & Grill", + "address": "1743 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944571, + "longitude": -75.171679, + "stars": 4.0, + "review_count": 368, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "BYOBCorkage": "'no'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza, Italian, Salad", + "hours": { + "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": "12:0-21:30" + } + }, + { + "business_id": "tyDEseGSr6NIsk7S63uMqA", + "name": "Petruce Et Al", + "address": "1121 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489189, + "longitude": -75.1599845, + "stars": 4.0, + "review_count": 101, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "Caters": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "5Hq4h2NBrm_C0Baii6M7wQ", + "name": "1919 Market", + "address": "1919 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539102, + "longitude": -75.1726872, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "8B-_2a4NHqpMoWDQAd1w1w", + "name": "Minnow Lane", + "address": "2029 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9790856, + "longitude": -75.129654, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Children's Clothing, Fashion, Shopping, Baby Gear & Furniture, Toy Stores", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-14:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "lYjXUWtW7Bv7R_7lmRLp_A", + "name": "La Terrasse", + "address": "3432 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535726, + "longitude": -75.1932774, + "stars": 2.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "RestaurantsReservations": "True" + }, + "categories": "Nightlife, Bars, French, Restaurants", + "hours": null + }, + { + "business_id": "KPgZ5EaJbZunG0d6ghXwFw", + "name": "Tarina's Nails", + "address": "4505 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491612, + "longitude": -75.2132871, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas, Eyelash Service, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "2_Uog4hABJRkEqwWx87vaQ", + "name": "Goubaa Grub", + "address": "2300 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0471196257, + "longitude": -75.0596994318, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "True", + "Caters": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Food Trucks, Restaurants, Mediterranean, Food, Halal, Sandwiches, Barbeque", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "Ops2BTk03uTYdGRqB9haGg", + "name": "Dunkin'", + "address": "1500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9623477, + "longitude": -75.1639321, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "6:0-16:0", + "Sunday": "6:0-16:0" + } + }, + { + "business_id": "juBH0j95bJVWs642WFCe-A", + "name": "Victoria Nails & Spa", + "address": "9475 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0807509, + "longitude": -75.0283926, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "lFwTLxdyjuMTIrkpSt2Byw", + "name": "The Home Depot", + "address": "11725 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.119392, + "longitude": -75.0150768, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Home Services, Hardware Stores, Building Supplies, Shopping, Appliances, Nurseries & Gardening, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "6:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "PxEjGVKN2FqsDI7NYYn6kg", + "name": "Digital Underground", + "address": "732 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9397004, + "longitude": -75.149693, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Books, Mags, Music & Video, Shopping, Music & DVDs", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "QUJAS_4fWsQBc7Q8Bfh0Jg", + "name": "Versa Fit Studio", + "address": "1529 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499132, + "longitude": -75.1672491, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": null + }, + { + "business_id": "svSfJCqhRqDxbIPyEMCl8w", + "name": "Danielle's Weave Salon", + "address": "5600 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.033427, + "longitude": -75.1757194, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "pSquMmdxtM5FFQYeNlcGAA", + "name": "InFusion", + "address": "7133 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059323, + "longitude": -75.1902, + "stars": 2.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "False" + }, + "categories": "Coffee & Tea, Food, Restaurants, Breakfast & Brunch", + "hours": { + "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-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "SNMgNcYenDuOJ82SVBLrog", + "name": "Cold 1 Services", + "address": "2611 E Monmouth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9817835, + "longitude": -75.1100825, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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" + } + }, + { + "business_id": "TkaYCVuCOTjj5zAHiE5Gdw", + "name": "Buckminster's", + "address": "1200 S 21 St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9375400169, + "longitude": -75.178826116, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "HasTV": "False", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'outdoor'" + }, + "categories": "Sandwiches, Breakfast & Brunch, Modern European, Fast Food, Nightlife, American (New), Restaurants, Cocktail Bars, Bars", + "hours": { + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "Z0UWSWLszjuDn3bpdGVMbw", + "name": "Quaker City Coffee", + "address": "263 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469577, + "longitude": -75.1577431, + "stars": 4.0, + "review_count": 83, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Coffee & Tea, Food, Coffee Roasteries", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "FwzuM3w43D-2fNj3m-SToA", + "name": "Nike Factory Store", + "address": "1766 Franklin Mills Cir, Space 537A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.092779, + "longitude": -74.961894, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shoe Stores, Outlet Stores, Sporting Goods, Fashion, Sports Wear, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "dXvNGmR8gGmHheK5gLHvkw", + "name": "Mexican Post", + "address": "1601 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9559919, + "longitude": -75.1673683, + "stars": 2.0, + "review_count": 93, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "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": "12:0-23:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "-tQ0lqgfY8i5avBVyUMYWw", + "name": "Chatime", + "address": "1025 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540239, + "longitude": -75.157393, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False" + }, + "categories": "Bubble Tea, Food, Coffee & Tea, Juice Bars & Smoothies", + "hours": { + "Monday": "16:0-2:30", + "Tuesday": "16:0-2:30", + "Wednesday": "16:0-2:30", + "Thursday": "16:0-2:30", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:30" + } + }, + { + "business_id": "sFmUHGkeSMoRvsDRQCCjgA", + "name": "Fairmount Bicycles", + "address": "2015 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967469, + "longitude": -75.1708249, + "stars": 4.5, + "review_count": 122, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bikes, Sporting Goods, Active Life, Shopping, Local Services, Bike Repair/Maintenance, Bike Rentals", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "13:0-18:0", + "Thursday": "13:0-18:0", + "Friday": "13:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "dhE9-buyVmegxziG0Qb6Jg", + "name": "Joe Pesce", + "address": "1113 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488649, + "longitude": -75.1597413, + "stars": 2.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "HappyHour": "True" + }, + "categories": "Seafood, Restaurants, Italian", + "hours": null + }, + { + "business_id": "rUqWq9jO9xtiRlDWItCdkg", + "name": "Bistro Juliana", + "address": "2723 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.975071, + "longitude": -75.118352, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "sEIHhcvPyDBiZAdBNBov9g", + "name": "Bombay Express", + "address": "122 South 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494894, + "longitude": -75.1605641, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Indian, Pakistani, Restaurants", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "3M69f6Cg2CAgpEcIgoKS5A", + "name": "Philip's Steaks", + "address": "2234 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9225830143, + "longitude": -75.1848140609, + "stars": 3.5, + "review_count": 307, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Corkage": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Burgers, Sandwiches, Cheesesteaks, Food, Juice Bars & Smoothies, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Gk6EoDA3Bd9LDnYhJe1WKw", + "name": "Starbucks", + "address": "101 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546753794, + "longitude": -75.1628004727, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-19:0" + } + }, + { + "business_id": "7p56URlyNtQhhkr83RtN4Q", + "name": "Pho Saigon", + "address": "6842 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04163, + "longitude": -75.06483, + "stars": 3.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "None", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Vietnamese, Soup", + "hours": { + "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" + } + }, + { + "business_id": "53ZvKaO19YS6Gt5x-va0BA", + "name": "Extended Stay America - Philadelphia - Airport - Bartram Ave.", + "address": "8880 Bartram Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8862681, + "longitude": -75.2480428, + "stars": 1.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Home Services, Hotels, Real Estate, Apartments, Event Planning & Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "71lPT9YP-t2LSAEDiPfh7w", + "name": "Sock'em Pest Control", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "FnxuenogtH3_cElc_Dp7Bw", + "name": "PhilaGorilla Movers", + "address": "155 Cecil B Moore Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9760468288, + "longitude": -75.1364214651, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "x1aPFdSi2jKPiYrNuS6yRw", + "name": "Village Laundromat", + "address": "2455 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9739942, + "longitude": -75.1208176, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "RestaurantsPriceRange2": "3", + "BikeParking": "False" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Dry Cleaning, Laundromat, Local Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "IW19SVvxiuRlSt3QQmx2OQ", + "name": "Ming River Chinese Restaurant", + "address": "108 W Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9831247, + "longitude": -75.1329434, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BikeParking": "False", + "WiFi": "u'no'", + "GoodForKids": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "12:30-0:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "mlgewa5y_a_AxVTamXGemA", + "name": "Walnut Street Theatre", + "address": "825 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948349, + "longitude": -75.155282, + "stars": 4.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Active Life, Arts & Entertainment, Cinema, Amusement Parks, Performing Arts", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "EzQpL3jNNGlUzeR6n3uevg", + "name": "Rembrandt's Restaurant & Pub", + "address": "741 N 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9685508, + "longitude": -75.1748743, + "stars": 3.5, + "review_count": 229, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'" + }, + "categories": "American (Traditional), Bars, Italian, Restaurants, Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "45QMGtW3JDeRbpZJKV42Tg", + "name": "A Dental Group at Washington Square", + "address": "604 S Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459502, + "longitude": -75.1523091, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Health & Medical, Orthodontists, Endodontists, Dentists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "jvsj7fBR3AU1DvQeC0NJ-A", + "name": "Diagno Pest Control", + "address": "21 S 11th St, Ste 508", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9593638237, + "longitude": -75.1583193, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Atg_TE1bpEP6aYcS_V1qNQ", + "name": "Chic Afrique", + "address": "3943 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.962733, + "longitude": -75.201157, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Monday": "22:0-0:0", + "Tuesday": "22:0-0:0", + "Wednesday": "22:0-0:0", + "Thursday": "22:0-0:0", + "Friday": "22:0-0:0", + "Saturday": "22:0-0:0" + } + }, + { + "business_id": "BNOvXKaLLIEtWVbePgHnKw", + "name": "USO of Phila", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.87833639, + "longitude": -75.2390733548, + "stars": 4.5, + "review_count": 80, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Community Service/Non-Profit, Public Services & Government, Community Centers", + "hours": { + "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" + } + }, + { + "business_id": "uOpUwgX4Xf6copxDjNvvUA", + "name": "Temple Star", + "address": "1412 W Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9846845, + "longitude": -75.1572059, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "4", + "Caters": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "14:30-2:30", + "Tuesday": "14:30-2:30", + "Wednesday": "14:30-2:30", + "Thursday": "14:30-3:0", + "Friday": "14:30-4:0", + "Saturday": "14:30-4:0", + "Sunday": "14:30-2:30" + } + }, + { + "business_id": "qrQV_pWhwPrti3Dlz1WVgw", + "name": "IHOP", + "address": "3 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92134, + "longitude": -75.14514, + "stars": 2.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "ByAppointmentOnly": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), American (New), Burgers, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "6:0-15:30" + } + }, + { + "business_id": "dnGCBJ4ZughipTqmuh5xQw", + "name": "Sandy's Nail", + "address": "3726 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0094886124, + "longitude": -75.1932976395, + "stars": 2.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Waxing, Beauty & Spas, Hair Removal, Nail Salons, Eyelash Service", + "hours": { + "Monday": "10:30-20:30", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:0" + } + }, + { + "business_id": "-D_3emciINpjvYXsHCf8OA", + "name": "AKA Rittenhouse Square", + "address": "135 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503652, + "longitude": -75.1704529, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Event Planning & Services, Hotels, Hotels & Travel, Apartments", + "hours": { + "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" + } + }, + { + "business_id": "E7rKpNaRd4V1cy93mD3ZtA", + "name": "Shorty's Brazilian Jiu Jitsu", + "address": "3826 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9607899, + "longitude": -75.1981631, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Brazilian Jiu-jitsu, Martial Arts, Fitness & Instruction", + "hours": null + }, + { + "business_id": "vr6wlGk_RDW6yWiQmbiiow", + "name": "Chung King Garden", + "address": "915 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535451, + "longitude": -75.15541, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "_k1CIuPkY-uLFm8lABFG8Q", + "name": "Bonchon Philadelphia", + "address": "1020 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954502, + "longitude": -75.15699, + "stars": 3.5, + "review_count": 613, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "True", + "CoatCheck": "False", + "GoodForKids": "True", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "DogsAllowed": "False", + "GoodForDancing": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Music": "{'dj': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Nightlife, Restaurants, Bars, Asian Fusion, Chicken Wings, Korean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "11:30-17:0", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "RYr5LkmPx9N1ZkiYkDe3Tw", + "name": "Distrito Taco Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.959695, + "longitude": -75.196819, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Mexican, Food Stands, Restaurants, Food", + "hours": null + }, + { + "business_id": "jSVsnc4xGx2Zg0WLmGZOhw", + "name": "New Balance Philadelphia", + "address": "1615 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500405, + "longitude": -75.1681501, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Shopping, Sporting Goods, Shoe Stores", + "hours": { + "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": "11:0-19:0" + } + }, + { + "business_id": "fGoVUonpgaeoAenfc3mVzg", + "name": "Callowhill Greens", + "address": "1800 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9602681, + "longitude": -75.1686061, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "Corkage": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "HasTV": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BYOB": "True" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Coffee Roasteries, Delis, Juice Bars & Smoothies, Cafes, Restaurants, Food", + "hours": { + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "jM-oH5U5zcnfpmcbsgMVHQ", + "name": "Chestnut Grill and Sidewalk Cafe", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741672, + "longitude": -75.2030982, + "stars": 3.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}" + }, + "categories": "Bars, Restaurants, American (New), Nightlife", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "l8VedGQFMLtTz2zRmpTlxA", + "name": "Hardena/Waroeng Surabaya Restaurant", + "address": "1754 S Hicks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9284359, + "longitude": -75.1712655, + "stars": 4.5, + "review_count": 383, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "Caters": "False", + "BYOBCorkage": "u'yes_free'", + "HasTV": "True", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False" + }, + "categories": "Indonesian, Singaporean, Restaurants, Asian Fusion, Specialty Food, Food, Ethnic Food", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "krWsMdrE_uglWwOF5BcJcQ", + "name": "Kawaii Kitty Cafe", + "address": "759 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386964456, + "longitude": -75.1496926152, + "stars": 4.5, + "review_count": 116, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Pet Adoption, Vegetarian, Restaurants, Cafes, Japanese, Pets, Coffee & Tea, Food, Vegan", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "rcvQhLs6p1srhMf731740A", + "name": "Periodontal Consultants", + "address": "1901 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9266856, + "longitude": -75.1688341, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Oral Surgeons, Cosmetic Dentists, Periodontists, Dentists", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "xdferXKwbgXAxbtmAShhAQ", + "name": "Saxbys Rittenhouse", + "address": "2000 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504381, + "longitude": -75.1741149, + "stars": 3.0, + "review_count": 124, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False" + }, + "categories": "Juice Bars & Smoothies, Breakfast & Brunch, Coffee & Tea, Food, Internet Cafes, Restaurants", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "RGbOLfkHEH2ImrJfTl2CVw", + "name": "Three Sirens Boutique", + "address": "134 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953263, + "longitude": -75.14518, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Jewelry, Fashion, Shopping, Women's Clothing", + "hours": { + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "B-XPbtnPLfqIZHTpvapQ6w", + "name": "Back-a-yard Jamaican", + "address": "308 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9542994, + "longitude": -75.226365, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "RJcGEf7pLPvWU6jPEKj_lA", + "name": "U-Haul Moving & Storage of South Philadelphia", + "address": "1015-25 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938006, + "longitude": -75.1627963826, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Trailer Rental, Propane, Automotive, Self Storage, Truck Rental, Home Services, Movers, Local Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "RRNgMxqcmO8H1KXPQNb1mg", + "name": "Photo Pop Philly", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949774, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Art Galleries, Pop-up Shops, Shopping, Museums", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "21:0-1:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "stmFa8G6ZVof0lFEh9cUdg", + "name": "Hong Kong Supermarket", + "address": "571 Adams Ave, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0355327, + "longitude": -75.1085593, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, International Grocery, Grocery", + "hours": null + }, + { + "business_id": "pWd5RRSIxllxLFnegmh1MQ", + "name": "Xu's Fu Zhou Cuisine", + "address": "6748 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.039857924, + "longitude": -75.0662259758, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "HasTV": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Cantonese, Restaurants, Chinese", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "YvAxHHI9Fkatv-NTnbmKkQ", + "name": "Jolly's Dueling Pianos & American Beer Bar", + "address": "3801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555198, + "longitude": -75.1992869, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Caters": "True" + }, + "categories": "American (New), Restaurants, Nightlife, Piano Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "eLt-dwl-xxXj9nklhs2eOw", + "name": "Sweet Cafe", + "address": "1800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951907, + "longitude": -75.1707347, + "stars": 3.0, + "review_count": 219, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "10:0-22:30", + "Tuesday": "10:0-22:30", + "Wednesday": "10:0-22:30", + "Thursday": "10:0-22:30", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "qkSW7Q-GkEKtmPsloM611g", + "name": "Active Sewer & Drain Cleaning Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Plumbing, Contractors", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "EXtab5AZyaD4S3NHj22xuQ", + "name": "John Featherman - BHHS Fox & Roach, Realtors", + "address": "210 W Rittenhouse Sq, Ste 406", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499125, + "longitude": -75.1736448, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Agents, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "XU6LMxNMSw8ICWPcySyXCg", + "name": "Old London Style Pizza", + "address": "3573 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9980182, + "longitude": -75.101238, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:0", + "Saturday": "11:0-23:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "rEpuFGVZfOcKWFcFlouFLg", + "name": "The Eye Institute", + "address": "7630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.067242, + "longitude": -75.197315, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Optometrists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "b43LDjgiQ9-JDl0hNvKTEg", + "name": "Anthony's Painting & Paperhanging", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hardware Stores, Home Services, Painters, Shopping, Home & Garden, Home Decor, Waterproofing, Wallpapering, Pressure Washers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "qBUXnQjOkpRPdJsVA3tvQQ", + "name": "Ritner Hardware Store", + "address": "1641 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9214624, + "longitude": -75.1751723, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Hardware Stores, Shopping", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "rN3tOWABU_hSBvLdADSb4Q", + "name": "Tazia Restaurant", + "address": "101 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540709, + "longitude": -75.1576818, + "stars": 3.0, + "review_count": 70, + "is_open": 0, + "attributes": { + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Chinese, Dim Sum, Asian Fusion, Vietnamese, Restaurants, Food, Indian", + "hours": null + }, + { + "business_id": "vP-qZ48IT3ceipA2vg0wNw", + "name": "Rising Tide", + "address": "937 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955515, + "longitude": -75.155586, + "stars": 3.0, + "review_count": 113, + "is_open": 0, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Seafood, Restaurants, Nightlife, Bars, Asian Fusion, Chinese", + "hours": { + "Monday": "17:0-3:0", + "Tuesday": "17:0-3:0", + "Wednesday": "17:0-3:0", + "Thursday": "17:0-3:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "17:0-3:0" + } + }, + { + "business_id": "5nqWNo7uVU1Zxm4tjnvkUw", + "name": "Hai Street Kitchen & Co", + "address": "32 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521423264, + "longitude": -75.1702871165, + "stars": 3.5, + "review_count": 447, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Caters": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Japanese, Asian Fusion, Fast Food, Restaurants", + "hours": { + "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": "11:0-19:0" + } + }, + { + "business_id": "kM0CewxK3Ize1SF92bfJYQ", + "name": "Hilton Philadelphia at Penn's Landing", + "address": "201 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9452425, + "longitude": -75.1413550139, + "stars": 3.5, + "review_count": 186, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "IaYxqtDuBJ7YhwL22X4zhA", + "name": "Global Beer Distribution", + "address": "1150 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9688338717, + "longitude": -75.1406205187, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food, Local Services", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "M1q0l_VuI6MqRYLWGVhCCw", + "name": "The Belgian Cafรฉ", + "address": "601 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9653226, + "longitude": -75.1725313, + "stars": 3.5, + "review_count": 474, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "GoodForDancing": "False", + "WiFi": "u'no'", + "CoatCheck": "False", + "HasTV": "True", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Breakfast & Brunch, Bars, Pubs, Restaurants, Nightlife, Belgian", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "UDQpXeJPCfaFs_SR_wCZTw", + "name": "Free Library of Philadelphia - Independence Branch", + "address": "18 S 7th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950283, + "longitude": -75.152341, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Public Services & Government, Libraries", + "hours": { + "Monday": "14:0-18:0", + "Tuesday": "14:0-18:0", + "Wednesday": "14:0-18:0", + "Thursday": "14:0-18:0", + "Friday": "13:0-17:0" + } + }, + { + "business_id": "erz6oUEJdx787WyOlxMARw", + "name": "Dante & Luigi's", + "address": "762 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400687845, + "longitude": -75.1594229629, + "stars": 4.0, + "review_count": 415, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BYOB": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "at8csgaR7Vg9woCNt2J8Aw", + "name": "Koresh Dance Co", + "address": "2020 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951925, + "longitude": -75.174425, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Fitness & Instruction, Dance Studios, Active Life, Performing Arts", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "HrGoblJqsV-Oi8jcH-6pAQ", + "name": "Admirals Club", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874742, + "longitude": -75.249467, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Ambience": "None", + "BusinessParking": "None", + "Music": "None" + }, + "categories": "Nightlife, Airport Lounges, Bars", + "hours": { + "Monday": "4:30-21:30", + "Tuesday": "4:30-21:30", + "Wednesday": "4:30-21:30", + "Thursday": "4:30-21:30", + "Friday": "4:30-21:30", + "Saturday": "4:30-21:30", + "Sunday": "4:30-21:30" + } + }, + { + "business_id": "AGlh4ZDv6jnoiYfz7At9mw", + "name": "Dim Sum Garden", + "address": "1020 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955399, + "longitude": -75.156727, + "stars": 4.0, + "review_count": 2672, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "BYOB": "False", + "HappyHour": "False", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Corkage": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Chinese, Restaurants, Dim Sum, Asian Fusion, Shanghainese", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "u3aN2A8Lo9odMCYjaphjLA", + "name": "A Mano", + "address": "2244 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967234393, + "longitude": -75.1753211612, + "stars": 4.5, + "review_count": 217, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Corkage": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Caters": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "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:0" + } + }, + { + "business_id": "wM_9vWMHbevos_aBcG11dw", + "name": "John's Custom Stairs", + "address": "2115 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224758, + "longitude": -75.1594404, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Contractors, Flooring, Home Services", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30" + } + }, + { + "business_id": "4rMBM8Rwgt2Gr2L1jVMHCA", + "name": "Maid Marines Cleaning Service", + "address": "318 S 56th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9506586, + "longitude": -75.1614269, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Office Cleaning, Home Cleaning, Home Services, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "rw9kvFyt-xhzRmCQc0jM1w", + "name": "U-do We-do Laundromat", + "address": "43RD And Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539740523, + "longitude": -75.2094919, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry, Laundromat", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "Wx2L1IX7pN9Nom6Lb8PqNA", + "name": "Texas Chicken & Burgers", + "address": "2226 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0484281, + "longitude": -75.0617193, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Fast Food, Chicken Wings, Restaurants, Burgers", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "KJTX_Ct2k249kDdAgNZOmw", + "name": "Bory Hair Sensation", + "address": "10105 Verree Rd, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1052761, + "longitude": -75.0318515, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "NbOWECn3ilz4gWL6dm5P6g", + "name": "Frieda", + "address": "320 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947101388, + "longitude": -75.1471829933, + "stars": 4.5, + "review_count": 193, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "WiFi": "'paid'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "None", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cafes, Restaurants, Breakfast & Brunch, Coffee & Tea, Food, Bakeries, Modern European", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "bsVSOoV-IY3jtztQs4XV2g", + "name": "Checkers", + "address": "3709-25 N. Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0104186, + "longitude": -75.1504524, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:0-5:0", + "Tuesday": "10:0-5:0", + "Wednesday": "10:0-5:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-5:0" + } + }, + { + "business_id": "27G8SzY2r40Na8bfXNwX4Q", + "name": "Emily's Cold Beer", + "address": "1600 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.930837, + "longitude": -75.1718322, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "rPvFnIN-xVz6WXIocw0Bng", + "name": "Frank's Alot", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953198, + "longitude": -75.159408, + "stars": 3.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "BYOB": "False", + "Corkage": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Barbeque, Hot Dogs, Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:30-16:30", + "Tuesday": "10:30-16:30", + "Wednesday": "10:30-16:30", + "Thursday": "10:30-16:30", + "Friday": "10:30-16:30", + "Saturday": "10:30-16:30" + } + }, + { + "business_id": "TnwGFR_5ntHByM1VMD9etg", + "name": "Panda Express", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547220185, + "longitude": -75.1684962, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True" + }, + "categories": "Restaurants, Fast Food, Chinese", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-21:30" + } + }, + { + "business_id": "E52a-tWfAVUigt1ArF711w", + "name": "Joseph Fox Bookshop", + "address": "1724 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506358, + "longitude": -75.1697803, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Bookstores, Books, Mags, Music & Video", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "TrqeK1tBgFGyrz5vzKGrlQ", + "name": "Nick's Ices and Ice Cream", + "address": "5925 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.030874, + "longitude": -75.211896, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "7:30-21:0" + } + }, + { + "business_id": "0eV_6ebzBTWcQXGji0QGkA", + "name": "Sprouts Farmers Market", + "address": "1000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938972, + "longitude": -75.167457, + "stars": 4.0, + "review_count": 83, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Organic Stores, Food, Farmers Market, Specialty Food, Health Markets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "03jQGGJ2ch0uHTtW-UUUqg", + "name": "Famous 4th Street Delicatessen", + "address": "700 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404915, + "longitude": -75.1496827, + "stars": 4.0, + "review_count": 620, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "Corkage": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "DogsAllowed": "False" + }, + "categories": "Bakeries, Breakfast & Brunch, Delis, Restaurants, Food, Sandwiches, Desserts", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "UIlrtflU_DOagc4YyrQ2Uw", + "name": "Walnut Street Supper Club", + "address": "1227 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492649, + "longitude": -75.1617799, + "stars": 3.5, + "review_count": 94, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'dressy'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "16:30-23:0", + "Tuesday": "16:30-23:0", + "Wednesday": "16:30-23:0", + "Thursday": "16:30-23:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:30-23:0" + } + }, + { + "business_id": "1MgX6qN2tghHt_UrX3CFew", + "name": "Pelicana Chicken", + "address": "719 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9623818024, + "longitude": -75.1408443239, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Shop, Chicken Wings, Korean", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ZcR-DlAbLmM5WQkNTOi0nA", + "name": "Lest We Forget Slavery Museum", + "address": "5501 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 39.9886324, + "longitude": -75.0906987, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Museums, Amusement Parks, Arts & Entertainment", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5-8iEgimW1wgAqF6w_zYJA", + "name": "Northeast Sandwich Co.", + "address": "1342 Bleigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0589830156, + "longitude": -75.0754031539, + "stars": 4.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "OutdoorSeating": "None", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "Breakfast & Brunch, Restaurants, Salad, Sandwiches", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "WVNw5jRXmaJdP1_r-gN8XA", + "name": "Asian Bamboo House", + "address": "9456 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.050018, + "longitude": -74.989493, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "Caters": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Japanese, Sushi Bars, Restaurants, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "zMLA0-Qd9_4nHvovBaAMzQ", + "name": "Hive Cafรฉ", + "address": "1444 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9318248, + "longitude": -75.1684123, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Cafes, Coffee & Tea, Food, Restaurants, Juice Bars & Smoothies", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "yPxNNSmPHKO3m_kq53D4Jg", + "name": "Capogiro Gelato", + "address": "119 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498813799, + "longitude": -75.1618090222, + "stars": 4.5, + "review_count": 846, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Gelato, Food", + "hours": { + "Monday": "7:30-22:30", + "Tuesday": "7:30-22:30", + "Wednesday": "7:30-22:30", + "Thursday": "7:30-22:30", + "Friday": "7:30-0:0", + "Saturday": "9:0-0:0", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "ibJ2fbXsuFLwNfLkeCPhrQ", + "name": "Sun Tan City", + "address": "2550 Grant Ave, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Tanning, Cosmetics & Beauty Supply, Beauty & Spas, Spray Tanning, Shopping, Tanning Beds", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "0OnGNrVVf6550018D02ntg", + "name": "Green Heating, Cooling, & Electric", + "address": "6915 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0458959, + "longitude": -75.0708222, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Professional Services, Heating & Air Conditioning/HVAC, Water Heater Installation/Repair, Electricians", + "hours": { + "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" + } + }, + { + "business_id": "Lp3WgICkIBq52Q6g7ac67Q", + "name": "Brilliant Pizza Company", + "address": "1211 Chestnut St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506585, + "longitude": -75.1606944, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Food, Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-17:0" + } + }, + { + "business_id": "NsUxAIPfG4dkSOm-6HrpZw", + "name": "Weiner Dental", + "address": "3254 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0804699, + "longitude": -74.9929449, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Cosmetic Dentists, General Dentistry, Health & Medical, Periodontists", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "Faqzugp5aAc9-XOjfOsDGA", + "name": "Hong Kong Cafe", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549304, + "longitude": -75.2001318, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Chinese, Thai", + "hours": null + }, + { + "business_id": "EM8vtb08L517q4JEg7dvjQ", + "name": "Glory Nails Salon", + "address": "4700 N Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0227412, + "longitude": -75.1328282, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Home Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "cEx97JX_bRJS5Gw67Y3Vnw", + "name": "Mรถge Tee - Philadelphia", + "address": "1025 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540272, + "longitude": -75.1573997, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Tea Rooms, Coffee & Tea, Bubble Tea, Food", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "x5afm1vBKgYji1DpTqW4VA", + "name": "IdentoGO", + "address": "1015 Chestnut St, The Jefferson Bldg Ste 307", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498897398, + "longitude": -75.1575489561, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Fingerprinting, Local Services", + "hours": { + "Monday": "13:0-16:0", + "Tuesday": "13:0-16:0", + "Wednesday": "13:0-16:0", + "Thursday": "13:0-16:0", + "Friday": "13:0-16:0" + } + }, + { + "business_id": "Vl_IM5mvKjHMohVAshA3qw", + "name": "Punk Rock Flea Market", + "address": "461 N Ninth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9604, + "longitude": -75.1528521, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Flavor, Shopping, Thrift Stores", + "hours": { + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "2qHkwqao9GyxnDXHzCv4JA", + "name": "Wedge + Fig", + "address": "160 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9538296, + "longitude": -75.1449499, + "stars": 4.0, + "review_count": 408, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "Specialty Food, Salad, American (New), Sandwiches, Food, Desserts, Breakfast & Brunch, Restaurants, Cheese Shops", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-15:30" + } + }, + { + "business_id": "KX4wcjdbHsl0HlxUOC8Y7w", + "name": "Sweat Fitness", + "address": "1509 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306213703, + "longitude": -75.162277, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Nutritionists, Health & Medical, Active Life, Gyms, Trainers", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "sTPueJEwcRDj7ZJmG7okYA", + "name": "Jim's South St", + "address": "400 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941498, + "longitude": -75.149272, + "stars": 3.5, + "review_count": 2736, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BikeParking": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Corkage": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "Caters": "True", + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None" + }, + "categories": "Bars, Restaurants, Pizza, Cheesesteaks, Italian, Beer Bar, American (Traditional), Local Flavor, Nightlife, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "PmWjC2tCN0uhUYzUnKyPqw", + "name": "Super House", + "address": "5344 Master St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9737428, + "longitude": -75.22904, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese, Seafood", + "hours": null + }, + { + "business_id": "rEi5BZ-kgk7zlS9Sc40smw", + "name": "Buttercream Cupcake Truck", + "address": "2015 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9228994, + "longitude": -75.1525198, + "stars": 3.5, + "review_count": 77, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Food Stands, Food, Desserts, Food Trucks, Restaurants", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "VPfbGIf3ieDrKuWheOjSLQ", + "name": "Soul Rebel Cocina", + "address": "8016 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0418628837, + "longitude": -75.0275125042, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, Vegetarian, Mexican, American (New), Restaurants, Burgers", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "10:0-20:0", + "Wednesday": "9:0-16:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "u8aGIXZghzY1_kg4aWJi5g", + "name": "Done Right Plumbing & Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0396537781, + "longitude": -75.0663452148, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Water Heater Installation/Repair, Plumbing, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-20:30", + "Friday": "8:0-20:30", + "Saturday": "8:0-20:15", + "Sunday": "9:30-17:45" + } + }, + { + "business_id": "RPbnYfEoQ6UEziyMD16l2Q", + "name": "The Legendary Dobbs", + "address": "304 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413871765, + "longitude": -75.1484222412, + "stars": 4.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Nightlife, Bars, Music Venues, Arts & Entertainment, Restaurants", + "hours": { + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "UG8-Q0jx3m86wQAxZ3OUXw", + "name": "Abington Aesthetic & Laser Medical Center", + "address": "15 N 2nd St, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950425, + "longitude": -75.1433405, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Tattoo Removal, Hair Removal, Laser Hair Removal, Medical Spas, Health & Medical, Doctors, Day Spas, Acne Treatment, Skin Care", + "hours": { + "Monday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "apJlifRHxx09MYubtOLydw", + "name": "Cresson Inn", + "address": "114 Gay St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0266686, + "longitude": -75.2250622, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'" + }, + "categories": "Nightlife, Beer Bar, Dive Bars, Bars", + "hours": null + }, + { + "business_id": "-1yt2mk60wWuQz9hPVKZCA", + "name": "Totem Brand", + "address": "535 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420767, + "longitude": -75.1517898, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Leather Goods, Women's Clothing, Men's Clothing, Shopping, Fashion, Shoe Stores", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "K1oIwHH0QNDOW5vTelfHgQ", + "name": "Lyft", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 2.5, + "review_count": 57, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation", + "hours": { + "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" + } + }, + { + "business_id": "1lUfhypIZhfP8UmZBh6bxg", + "name": "Spa Elysium &Fringe Salon", + "address": "55 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0783902, + "longitude": -75.2082181, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'paid'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Yoga, Active Life, Fitness & Instruction, Beauty & Spas, Skin Care, Day Spas", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "IRsSA1CAr-GFRr_80h0hBQ", + "name": "Rittenhouse Hill Apartments", + "address": "633 W Rittenhouse St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0308405, + "longitude": -75.1855453, + "stars": 3.5, + "review_count": 105, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "m_MhARWbbYZIPHfOMnnZ6A", + "name": "Liberty Vet Pets - Veterinary Hospital & Home Visit Services", + "address": "265 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484903, + "longitude": -75.1741115, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Pet Groomers, Pet Services, Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-21:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "REiAM73RkOxFqCVlEFiRWA", + "name": "Tattooed Mom", + "address": "530 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416802, + "longitude": -75.1519159, + "stars": 4.0, + "review_count": 692, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False" + }, + "categories": "Lounges, Nightlife, Bars, Restaurants, Vegan, American (New), Dive Bars, Sandwiches, Cocktail Bars, Burgers, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "JRMoW2FkG4crggjTKbNaeQ", + "name": "Wash Cycle Laundry", + "address": "230 S Broad St, Fl 17", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484155, + "longitude": -75.1650461, + "stars": 3.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Laundry Services, Couriers & Delivery Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "Qm8pSLYuVS7eIyOx5YsWBw", + "name": "Glory Beer Bar & Kitchen", + "address": "126 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481792, + "longitude": -75.1435446, + "stars": 4.5, + "review_count": 203, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "CoatCheck": "False", + "Caters": "False", + "Corkage": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BYOB": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "American (New), Local Flavor, Bars, Restaurants, Gastropubs, Nightlife, Beer Bar, Sandwiches", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "LplLIVAjf6M_lulK6y0zpA", + "name": "Anna Marchenko, D.M.D.", + "address": "10125 Verree Rd, Ste 307", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.10572, + "longitude": -75.030199, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0" + } + }, + { + "business_id": "28BYR0cvmbcaB20QfWBlqA", + "name": "Paragon Banquet Hall", + "address": "6628 Linkiln Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.055755243, + "longitude": -75.1530031487, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "10:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "RW7UkHeKpG-t7U3GEyyMDw", + "name": "Rite Aid", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962131, + "longitude": -75.171765, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Drugstores, Shopping, Convenience Stores", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "apZdYnFjjbLuSJAUOWTRsA", + "name": "Sky Zone Trampoline Park", + "address": "9490 Blue Grass Rd, Ste H", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0763209482, + "longitude": -75.0265427062, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "GoodForKids": "True" + }, + "categories": "Trampoline Parks, Amusement Parks, Active Life", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "1UKBAgYxI9Qax3AA4ULw_w", + "name": "H Mart - Philadelphia", + "address": "6201 North Front St, Ste 124", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.045022, + "longitude": -75.1175037, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Korean, Food, Restaurants, Grocery, Specialty Food, Seafood Markets, Food Court", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "z0Vlh0_EDTFpp0XbYb0bJg", + "name": "Main Street Madness", + "address": "3791 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0178722, + "longitude": -75.2132823, + "stars": 1.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sporting Goods, Shopping, Active Life, Home & Garden, Outdoor Gear", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "YEefboFNzD6hS2ORNMa1Lg", + "name": "Germantown Life Enrichment Center", + "address": "5722 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0341083, + "longitude": -75.1775899, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Community Service/Non-Profit, Gyms, Recreation Centers, Active Life, Local Services, Fitness & Instruction, Swimming Pools", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "adshtprketB4tNomrlKkVQ", + "name": "J.Crew", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514799697, + "longitude": -75.1679670943, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Women's Clothing, Shoe Stores, Shopping, Fashion, Accessories, Men's Clothing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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-18:0" + } + }, + { + "business_id": "MjVcBrJKu2hUePZuj1Q5iw", + "name": "Whitman Dental Center", + "address": "2326 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9188382417, + "longitude": -75.1524118, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Dentists, Orthodontists, General Dentistry", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "lnT7jlgdGpn-vppgToIDCg", + "name": "Wursthaus Schmitz", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531914, + "longitude": -75.1594066, + "stars": 4.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'" + }, + "categories": "Ethnic Food, Food, Meat Shops, Specialty Food, Restaurants, Imported Food, German", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "v6p8-3PmHnp5fHPTmU9hNQ", + "name": "Car Concierge", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Body Shops, Auto Detailing, Car Wash", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:45", + "Wednesday": "9:0-16:45", + "Thursday": "9:0-16:45", + "Friday": "9:0-16:45" + } + }, + { + "business_id": "zz-fcqurtm77bZ_rVvo2Lw", + "name": "Yumtown", + "address": "N 13th and Norris", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829369, + "longitude": -75.1547321, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsReservations": "False" + }, + "categories": "Food Stands, Restaurants", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "q4HVG5oZeDO2rZhpOBef1g", + "name": "AGAS Manufacturing Group", + "address": "2701 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9875407, + "longitude": -75.0950273, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Graphic Design, Screen Printing, Local Services, Signmaking, Professional Services, Marketing, Advertising", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "SllZS_zSLYn6EOtLR6uB4g", + "name": "Philly Dream Shop", + "address": "254 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412813, + "longitude": -75.1474966, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Tobacco Shops, Local Flavor, Shopping", + "hours": { + "Monday": "9:0-1:0", + "Tuesday": "9:0-1:0", + "Wednesday": "9:0-1:0", + "Thursday": "9:0-1:0", + "Friday": "9:0-1:0", + "Saturday": "9:0-3:0", + "Sunday": "9:0-3:0" + } + }, + { + "business_id": "VJpuuNZ8QXR2zTHIhB0yhw", + "name": "The Westin Philadelphia", + "address": "99 South 17th Street at Liberty Place", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951929, + "longitude": -75.168421, + "stars": 3.0, + "review_count": 250, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'paid'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Hotels & Travel, Venues & Event Spaces, Restaurants, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "jcXkAf-4BSsDNVhTHn-fmg", + "name": "McDonald's", + "address": "5601 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9659790329, + "longitude": -75.2322795242, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "DriveThru": "True" + }, + "categories": "Restaurants, Food, Burgers, Coffee & Tea, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "PuSUDzbWZMGt7m_EcpbqxA", + "name": "Wesley Enhanced Living at Stapeley", + "address": "6300 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0391553, + "longitude": -75.1858645, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Rehabilitation Center, Health & Medical, Skilled Nursing, Retirement Homes", + "hours": null + }, + { + "business_id": "Yn9hrBk1oNF-kszkMATFbw", + "name": "Beauty & Fashion City", + "address": "3985 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9999024, + "longitude": -75.2093655, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas", + "hours": null + }, + { + "business_id": "7gI3LKutnsliBXV9OCuyGw", + "name": "Dalida hookah lounge", + "address": "13032 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1246991, + "longitude": -75.0155235, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Hookah Bars, Bars", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "8yGZhBwFFLtOVLY9Do8ohQ", + "name": "Renata's Kitchen", + "address": "3940 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9496602, + "longitude": -75.2026672, + "stars": 4.0, + "review_count": 203, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HappyHour": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': None}", + "Caters": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BYOB": "False", + "RestaurantsTableService": "True" + }, + "categories": "Breakfast & Brunch, Caterers, Tapas/Small Plates, Event Planning & Services, Middle Eastern, Mediterranean, Restaurants, Greek", + "hours": { + "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": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "EQrRwkK6yv44_CEHuoZIQQ", + "name": "Kc's Pastries Northeast", + "address": "6840 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041585, + "longitude": -75.064831, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bubble Tea, Coffee & Tea, Bakeries", + "hours": null + }, + { + "business_id": "ULAfzCa_T3IeaUAhhASJMw", + "name": "A & A Steaks", + "address": "6301 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9720589, + "longitude": -75.2451829, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HasTV": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "IU7t5rJQ299EYuXNul7Klg", + "name": "Playa Bowls", + "address": "1804 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515786, + "longitude": -75.1706125, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Poke, Acai Bowls, Food, Juice Bars & Smoothies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "73bOQgdgn98bOKZgYq4R0g", + "name": "Mr. Tubs Plumbing & Heating", + "address": "6416 Hegerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.021011, + "longitude": -75.05044, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "b6nhar-0ecQpIz6mlvr-Jw", + "name": "The Book Corner", + "address": "311 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9601230836, + "longitude": -75.171594821, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bookstores, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "5H5MGKvvG-uNa-r271IP8g", + "name": "Kavei Xpress", + "address": "2223-25 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9210105, + "longitude": -75.158395, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cambodian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "DwEHeY-1Cs9GV-S97wzVhA", + "name": "Zesto Pizza & Grill", + "address": "6024 Ridge Ave, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322466, + "longitude": -75.2141304, + "stars": 4.0, + "review_count": 222, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "Caters": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Food, Restaurants, Sandwiches", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "o41hRljSdnfBrx98Qvt73g", + "name": "Troy Food Truck", + "address": "36TH St And Market St Corner", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9562348126, + "longitude": -75.1940102848, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Street Vendors, Restaurants, Kebab, Halal, Food, Food Trucks, Mediterranean", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "g7urRHqv0nAonHqfnoXvTA", + "name": "A & A Chimney Sweep", + "address": "5150 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.027644, + "longitude": -75.107154, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chimney Sweeps, Wildlife Control, Heating & Air Conditioning/HVAC, Masonry/Concrete, Home Services, Local Services, Contractors, Fireplace Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "3W30N7L0uznpHrh6KwZXGw", + "name": "Salon Oko", + "address": "1943 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609221, + "longitude": -75.1713648, + "stars": 4.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Men's Hair Salons, Hair Salons, Hair Stylists, Hair Extensions, Beauty & Spas", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "j5fufHJJWqD3jtSHIh0VlQ", + "name": "Travinia", + "address": "1000 Frankford Ave, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9647703, + "longitude": -75.1344573, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Smoking": "u'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "CoatCheck": "False", + "BikeParking": "False", + "Alcohol": "u'none'", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForDancing": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Caterers, Nightlife, Event Planning & Services, Italian, Bars, Restaurants, Wine Bars", + "hours": null + }, + { + "business_id": "VqMVXxKZecFmQ2l3fzwwUA", + "name": "Ai Ramen", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522426873, + "longitude": -75.1677984127, + "stars": 3.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Japanese, Ramen", + "hours": { + "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" + } + }, + { + "business_id": "hxc6TmLzsENk4xsjm497qg", + "name": "Porto", + "address": "1301 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9333793056, + "longitude": -75.1622158866, + "stars": 4.5, + "review_count": 238, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Portuguese, Restaurants, Food, Coffee & Tea", + "hours": { + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "LXPTcbiwQ8dkjnZfS3bqzg", + "name": "Sweat Fitness", + "address": "821 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963323, + "longitude": -75.140287, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "h7PZ7FSA-9vrSv_xUXZZZA", + "name": "Eugene's Tailor Shop", + "address": "242 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485306, + "longitude": -75.1695178, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bespoke Clothing, Advertising, Shopping, Professional Services, Local Services, Sewing & Alterations", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "LfrkgT9GM1A0WIdNNT1YpA", + "name": "The Puma Store", + "address": "1505 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9496622956, + "longitude": -75.166264722, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Sporting Goods, Shoe Stores, Shopping", + "hours": null + }, + { + "business_id": "u-xGrOvBv1bxtpAHk-SZ5w", + "name": "Vegan Commissary", + "address": "1429 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9221978, + "longitude": -75.1714459, + "stars": 4.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'no'", + "HasTV": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Corkage": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "BYOB": "True", + "DogsAllowed": "True" + }, + "categories": "Desserts, Restaurants, Caterers, Event Planning & Services, Salad, Sandwiches, American (Traditional), Vegan, Soul Food, Food, American (New), Bakeries", + "hours": { + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "AqKWl6spTCjmIogvCSf8rQ", + "name": "Miles Table", + "address": "821 Dudley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9249137, + "longitude": -75.1601514, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "Caters": "True" + }, + "categories": "American (Traditional), Restaurants, Breakfast & Brunch, Caterers, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "YnKBXCCp2bORMz3pKqqMkQ", + "name": "Chef Big Rube's Kitchen", + "address": "1308 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.970671, + "longitude": -75.1578547, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food Delivery Services, Soul Food, Burgers, Chicken Wings, Restaurants, Food, Chicken Shop", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "H3EK1Q8tqRGqPBps05Uahw", + "name": "Tashan", + "address": "777 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941204, + "longitude": -75.165127, + "stars": 4.0, + "review_count": 395, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Asian Fusion, Indian, Modern European, Restaurants, Vegetarian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ofjC1sFI2_r-pAvejek0JA", + "name": "Dad's Stuffings", + "address": "1615 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9212542, + "longitude": -75.1744011, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Comfort Food, Food, Meat Shops, Specialty Food, Restaurants, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "Jwp0yYMeQHdPaZZA4DQ7qQ", + "name": "Chuan Kee Skewer", + "address": "927 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554945, + "longitude": -75.1552563, + "stars": 4.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Hot Pot, Chinese, Barbeque, Restaurants", + "hours": { + "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": "11:30-21:0" + } + }, + { + "business_id": "MQx5FybfhdY8T989WhTl_g", + "name": "Sbarro", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895192, + "longitude": -75.227973, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "6:30-21:0", + "Sunday": "6:30-21:0" + } + }, + { + "business_id": "8qr1cXhqYGOXFNStgcMvhw", + "name": "HomeGrown Coffee and Creations", + "address": "1515 Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9198430936, + "longitude": -75.173402, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Coffee & Tea, Restaurants, Sandwiches, Breakfast & Brunch, Food", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "11RhBs31p7Hv6RAFXs8YaQ", + "name": "Elites Go Free: Jurassic Quest", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553197, + "longitude": -75.1600104, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Local Flavor, Yelp Events", + "hours": null + }, + { + "business_id": "DGY_XF6q0_-I_zQoeewlMQ", + "name": "FlixBus", + "address": "616 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505679, + "longitude": -75.151104, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Bus Tours, Transportation, Hotels & Travel, Tours, Buses", + "hours": null + }, + { + "business_id": "v1CeHx_WcjpKK6kAV2pDQA", + "name": "Crown Fried Chicken", + "address": "1101 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528973, + "longitude": -75.1582844, + "stars": 2.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": null + }, + { + "business_id": "gsG7nNnePxIed34lU7tgLw", + "name": "CVS Pharmacy", + "address": "1500 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9471456207, + "longitude": -75.1666266131, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Health & Medical, Drugstores, Shopping, Food, Pharmacy, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "_3j8rQHUviV55AqsSSzK2w", + "name": "Robola Pizza & Grill", + "address": "1999 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.988611, + "longitude": -75.227645, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Caters": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Corkage": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, American (Traditional), Pizza, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-11:15", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "CwOKlv6SkDRfRbVOS1o38A", + "name": "Dom's Shoe Repair", + "address": "1325 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9304544005, + "longitude": -75.1674754941, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "OyQZHHPyfawLiZ4PQxCNog", + "name": "Big Dan's Oregon Ave Deli", + "address": "820 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9153815209, + "longitude": -75.1623737812, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Specialty Food, Delis, Restaurants, Food, Meat Shops", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "fWC32tPTgMxQFujoCy4UGg", + "name": "Nail Boutique", + "address": "2013 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951548, + "longitude": -75.174133, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Waxing, Hair Removal, Eyebrow Services", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "YDisPepPeWeELiVGycxOlw", + "name": "Gojjo Bar & Restaurant", + "address": "4540 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487068, + "longitude": -75.2140963, + "stars": 3.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BYOB": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "Smoking": "u'outdoor'" + }, + "categories": "Restaurants, Ethiopian, Bars, African, American (New), Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "wVgo5MaohDWNuudZWWwfJg", + "name": "Starbucks", + "address": "10000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.095366, + "longitude": -75.015671, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-20:30" + } + }, + { + "business_id": "yCUQ6csyVOR9krwQH9RIbQ", + "name": "Haveli Virasat", + "address": "4051 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9576241, + "longitude": -75.2037949, + "stars": 4.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Caters": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Gluten-Free, Halal, Restaurants, Indian, Pakistani", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "8WI5BBQFWMc-PBa0yQfp1w", + "name": "Jollies Live", + "address": "822 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687861, + "longitude": -75.1604323, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Sports Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "nYLUaaw-cYUrqxmID0QzsQ", + "name": "I Spy You Buy Philly's Thrift", + "address": "7151 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059846, + "longitude": -75.1905899, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Thrift Stores, Shopping", + "hours": { + "Monday": "13:0-17:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "7yq3QuO6O00tcPbOzecBdQ", + "name": "Shef's Pizza", + "address": "4330 Sheffield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0365969, + "longitude": -75.0317945, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': True, u'dessert': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-23:30", + "Tuesday": "10:0-23:30", + "Wednesday": "10:0-23:30", + "Thursday": "10:0-23:30", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-23:30" + } + }, + { + "business_id": "UfRRh5KyG2g1RKZIX5pN_A", + "name": "QQ Cafe", + "address": "51 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532643, + "longitude": -75.1578911, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food", + "hours": null + }, + { + "business_id": "9sHmUsOCCkjgv5PvlsszXQ", + "name": "Orewa Deli", + "address": "1615 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539466, + "longitude": -75.1676206, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'" + }, + "categories": "Sandwiches, Restaurants, Delis", + "hours": null + }, + { + "business_id": "PllOAyFe5h-HX3Go6fyimw", + "name": "General Practice Associates DO", + "address": "7131 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0451355, + "longitude": -75.2307913, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Family Practice, Doctors", + "hours": null + }, + { + "business_id": "HflF4zXqD6jNqekOvtsvww", + "name": "Thanh Pham - State Farm Insurance Agent", + "address": "258 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465684, + "longitude": -75.1579746, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Home & Rental Insurance, Auto Insurance, Life Insurance, Insurance", + "hours": { + "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" + } + }, + { + "business_id": "a7__VvDjHpgpncosFsYArA", + "name": "Tony's Famous Tomato Pie", + "address": "6300 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0284115716, + "longitude": -75.0590577797, + "stars": 4.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, '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}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BYOB": "False" + }, + "categories": "Nightlife, Restaurants, Pizza, Bars, Steakhouses, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "DLM7E6lrW-zpM10RJ4fAeg", + "name": "Urban Front Pilates", + "address": "1700 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506387, + "longitude": -75.1691989, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Pilates, Active Life", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-19:30", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "gziMakTc9EnZszDdTn9f8Q", + "name": "Flowers, Etcetera By Denise", + "address": "637 N Second St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961757, + "longitude": -75.1409363, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "5WfgsVFhnBbkhZ8fDcbgwA", + "name": "El Pueblo", + "address": "1142 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351741, + "longitude": -75.158841, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "D5jAy5ev1lW6mVlOpiyO3g", + "name": "RUMI Tattoo", + "address": "4371 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0267201, + "longitude": -75.2241147, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Tattoo, Beauty & Spas, Piercing", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "Qpytx9DmPTtqiWUuTZKtdw", + "name": "PhotoLounge", + "address": "130 South 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505231289, + "longitude": -75.1691375, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Cards & Stationery, Arts & Crafts, Flowers & Gifts, Framing, Event Planning & Services, Local Services, Printing Services, Photography Stores & Services, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "q6UEmfjz-Q_q7LqLGkcv6w", + "name": "ALDI", + "address": "7900 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0552886942, + "longitude": -75.0498256087, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer, Wine & Spirits, Food, Shopping, Grocery, Organic Stores, Discount Store, Meat Shops, Fruits & Veggies, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "gDTEshDonGYQ6pWGNFUyKw", + "name": "Flying Monkey Deuce", + "address": "1112 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9476511, + "longitude": -75.1601156, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "Vqcqu-LM2yqN3pvW5ZiX9Q", + "name": "La Nail Salon", + "address": "9831 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.090605, + "longitude": -75.0323764, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "O-7NsPu5FCOzUqNovGzskg", + "name": "Artesano Gallery & Iron Works", + "address": "4457 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026896, + "longitude": -75.226715, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "gsiurmoX2jYAFzw27NGddg", + "name": "Estilo Dance Studio", + "address": "2036 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 39.9795583, + "longitude": -75.1298171, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dance Schools, Arts & Entertainment, Education, Performing Arts, Fitness & Instruction, Active Life, Specialty Schools, Dance Studios", + "hours": { + "Monday": "18:0-21:0", + "Tuesday": "18:30-22:30", + "Wednesday": "6:0-21:30", + "Thursday": "18:30-21:30", + "Saturday": "10:30-16:30", + "Sunday": "11:0-12:0" + } + }, + { + "business_id": "JbMhrL1yJdYRBKQowj9g4g", + "name": "Academy Dental Associates PC", + "address": "10101 Academy Rd, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0789674, + "longitude": -74.9975555, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Health & Medical, Dentists", + "hours": null + }, + { + "business_id": "mNWHsi3VipOX9voWrSC5ew", + "name": "The Havana Room", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664073, + "longitude": -75.1386733, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cuban, Restaurants", + "hours": null + }, + { + "business_id": "vpNJJNVgVmf2u1lfdFh81w", + "name": "Matyson", + "address": "37 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952304, + "longitude": -75.1715399, + "stars": 4.0, + "review_count": 402, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "bENW5-F2aplQsTdPI8wDBA", + "name": "Skybox Movers", + "address": "1815 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544408, + "longitude": -75.1704266, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Home Services, Automotive, Vehicle Shipping, Furniture Assembly, Packing Services, Local Services, Movers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "os6YnpbiaQQ7XfXw_cDGGQ", + "name": "Glam", + "address": "52 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486937, + "longitude": -75.144032, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Bars, Dance Clubs, Nightlife, Lounges", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "21:0-2:0" + } + }, + { + "business_id": "-40qQXB8JsneSiDqXMjoeg", + "name": "Grill Fish Cafรฉ", + "address": "814 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9482317, + "longitude": -75.2169427, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Asian Fusion, Vietnamese, Seafood, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "tmfxrHmSxg-fG0bMVmpvhQ", + "name": "Amigos Bakery", + "address": "1155 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9348189, + "longitude": -75.1586195, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bakeries, Cupcakes, Custom Cakes, Desserts", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "dXYmCOVFSsKBkRq_0-tIaw", + "name": "Audabon Bakeshop", + "address": "145 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548827769, + "longitude": -75.1574696681, + "stars": 4.0, + "review_count": 127, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Desserts, Bakeries, Food, Caterers, Event Planning & Services", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Ssj88-Vrw7z9HRhIi96RtA", + "name": "Little Baby's", + "address": "1199 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9512786, + "longitude": -75.1598106, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "b1pdnbYvBdtTxJOOom5WmA", + "name": "Andy's Chicken", + "address": "2108 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450462386, + "longitude": -75.1774439566, + "stars": 4.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chicken Shop, Restaurants, Korean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "yynMH4WLLEj-CGR1BtVAew", + "name": "Chloe Madeleine Salon", + "address": "4360 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.025583, + "longitude": -75.224098, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Eyelash Service", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "NXq1TC8CjIQ_2HWMSoN2Mg", + "name": "Tweed", + "address": "114 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498766, + "longitude": -75.1603841, + "stars": 3.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Caters": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0" + } + }, + { + "business_id": "prUde8GQ1RFv4ShtiewzfQ", + "name": "Styles Inspired By MARC", + "address": "3854 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9614650484, + "longitude": -75.199213922, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True" + }, + "categories": "Skin Care, Hair Salons, Barbers, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "hFOD9Zf6MFhm-0FT3jNY2g", + "name": "F45 Training Center City, Philadelphia", + "address": "1900 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9543129, + "longitude": -75.1722291, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Trainers, Interval Training Gyms, Gyms, Active Life, Circuit Training Gyms, Fitness & Instruction", + "hours": null + }, + { + "business_id": "8ohaL9a02bWZDxOxfZCTxw", + "name": "Four Seasons Food Court", + "address": "1614 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512651, + "longitude": -75.1678954, + "stars": 4.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'" + }, + "categories": "Buffets, Sandwiches, Beer, Wine & Spirits, Grocery, Restaurants, Food, Breakfast & Brunch", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "uPpubOh_6AEJ84VCl5OXtQ", + "name": "Top Nails", + "address": "540 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710835, + "longitude": -75.1271998, + "stars": 4.0, + "review_count": 176, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "qOV8y_XNg9qLdPMsj9xUCA", + "name": "A & L Appliance Service", + "address": "4156 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.026039, + "longitude": -75.215688, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Appliances & Repair", + "hours": null + }, + { + "business_id": "1wJ6d3C8RnbZuNNBDCNHJA", + "name": "Liberty Collision Center", + "address": "117-33 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9665921, + "longitude": -75.1336047, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Body Shops, Automotive, Auto Repair, Towing, Auto Glass Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "kiuMZLlXjcV33oLMD1c4_A", + "name": "Center City Barber Shop", + "address": "215 S 16th St, Fl 3, The Racquet Club of Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9490862455, + "longitude": -75.167587008, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:30", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30" + } + }, + { + "business_id": "JPfe9B-RLrE5Nz75kcKImQ", + "name": "Govinda's Vegetarian", + "address": "1408 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943571, + "longitude": -75.1659929, + "stars": 3.5, + "review_count": 476, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "Corkage": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Vegan, Cheesesteaks, Restaurants, Vegetarian, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "hCMqbFJyLczPk_qU3Ym2Cw", + "name": "Matt & Marie's", + "address": "118 S18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951157, + "longitude": -75.170714, + "stars": 4.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "Alcohol": "'none'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Italian, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "AY4SSxu-7OumzF2LA71UQw", + "name": "Saffron Indian Cuisine", + "address": "1214 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488790143, + "longitude": -75.1612458685, + "stars": 3.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Indian, Restaurants, Buffets", + "hours": { + "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" + } + }, + { + "business_id": "YiEBSn8VWhnj79igNkShQw", + "name": "Second Bank of the United States Portrait Gallery", + "address": "420 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486633342, + "longitude": -75.1483974972, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Art Galleries, Banks & Credit Unions, Financial Services, Shopping, Arts & Entertainment", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "cdrMvOVFFBSwYHb3s06U9w", + "name": "Septa 5th Street Station", + "address": "1234 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95068409, + "longitude": -75.1491018757, + "stars": 2.0, + "review_count": 250, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Public Transportation", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0" + } + }, + { + "business_id": "lMRBJZ5dt0c51GizF5EHig", + "name": "Tokio HeadHouse Restaurant, Bar, and Sushi Catering", + "address": "122 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419336, + "longitude": -75.1447558, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Cafes, Breakfast & Brunch, Restaurants, Sushi Bars", + "hours": { + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "ORmx8v2fWefT1Ka54Up0MQ", + "name": "Middle Child Clubhouse", + "address": "1232 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.969978035, + "longitude": -75.1359988205, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Cocktail Bars, Breakfast & Brunch, American (New), Restaurants, Nightlife, Sandwiches, Bars", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "_mgr2f0VNdu6tGT1DghV_Q", + "name": "Hertz Rent A Car", + "address": "1700 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9558761, + "longitude": -75.1678363, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "yN_do1qUNXTk7asQwC5-kw", + "name": "CVS Pharmacy", + "address": "1901 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9183081143, + "longitude": -75.1807029706, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Drugstores, Shopping, Convenience Stores, Pharmacy, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "mFOoIm1CKpQGEVCB4nQGjQ", + "name": "Stacy's Pizza", + "address": "7404 Drexel Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9765438, + "longitude": -75.2648025, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "5aNuUKLvoKHZk4EULvibCg", + "name": "Rose Locksmiths", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "bTYddYIt-e1ls4Hlv5areA", + "name": "Pizza Hut", + "address": "1505 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9790467328, + "longitude": -75.1600117609, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "ei3mGLJt99yfQJThqbRbag", + "name": "Black and Nobel", + "address": "411 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418026387, + "longitude": -75.1495444402, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Food, Herbal Shops, Health Markets, Cosmetics & Beauty Supply, Naturopathic/Holistic, Beauty & Spas, Specialty Food, Health & Medical, Books, Mags, Music & Video, Bookstores, Music & DVDs, Doctors", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "66dQCivhY3mFhjPdKYyVGw", + "name": "Smart Street Healthy Kitchen & Juice Bar", + "address": "38 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523066, + "longitude": -75.1719804, + "stars": 4.5, + "review_count": 65, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Specialty Food, Food, American (Traditional), Acai Bowls, Salad, Restaurants, Juice Bars & Smoothies, Wraps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "vgJDi6bYu02k6h9_ZodulA", + "name": "Saxbys", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553943794, + "longitude": -75.1690906028, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:30-18:30", + "Tuesday": "6:30-18:30", + "Wednesday": "6:30-18:30", + "Thursday": "6:30-18:30", + "Friday": "6:30-18:30" + } + }, + { + "business_id": "hazgheutNivLCKWRGDzVWg", + "name": "Aloosh Hookah Bar Restaurant", + "address": "3600 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.958614, + "longitude": -75.194315, + "stars": 4.0, + "review_count": 104, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForKids": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Hookah Bars, Burgers, Restaurants, Nightlife, Middle Eastern, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "8-Ntrt-Gg8iidOB14QzqIw", + "name": "Adam W Ellis", + "address": "2601 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9175609, + "longitude": -75.1672381, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'" + }, + "categories": "Family Practice, Health & Medical, Doctors, Internal Medicine", + "hours": null + }, + { + "business_id": "ist795rpy3gzWVbfrvU-Yg", + "name": "Salon K", + "address": "1216 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947639, + "longitude": -75.161433, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Barbers", + "hours": { + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "AT-b59vVPAHdLhNzZfUw7Q", + "name": "Wine School of Philadelphia", + "address": "109 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952073, + "longitude": -75.176908, + "stars": 4.5, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "False" + }, + "categories": "Specialty Schools, Event Planning & Services, Bars, Wineries, Nightlife, Adult Education, Party & Event Planning, Venues & Event Spaces, Tasting Classes, Cooking Schools, Arts & Entertainment, Wine Tasting Classes, Education, Wine Bars, Local Flavor, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "GpYDs9W3cM5D1mjNx6pxug", + "name": "World Bean", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8743959, + "longitude": -75.2424229, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "4HHMx7GSl8-C4XSuflVv0Q", + "name": "Cooperman's Deli", + "address": "7060 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0581766074, + "longitude": -75.18947705, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "229pgAfC3CBMmIWNngwKsA", + "name": "Taqueria Morales", + "address": "191450000 Jackson St Phila", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9234648, + "longitude": -75.171171, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "None", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "BYOB": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Comfort Food, Mexican, Restaurants, Tacos, New Mexican Cuisine, Breakfast & Brunch, Salad", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "RZXsBARYg3x_XoXh0nXPzQ", + "name": "Handcraft Auto Body", + "address": "3800 Jasper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0040941, + "longitude": -75.0978873, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "xcd6i8D-4k3J-Xw9nuTc0g", + "name": "Walter Pine", + "address": "729 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395942, + "longitude": -75.1493962, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Home & Garden, Shopping, Home Decor, Event Planning & Services, Floral Designers, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "0jfIDaLE1TlsTvVMEkA3dg", + "name": "Chucks Homemade Waterice", + "address": "1835 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9253435, + "longitude": -75.1770914, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Pretzels, Food, Ice Cream & Frozen Yogurt, Restaurants, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "hhjIp2gGFR2XtoRsScEv3Q", + "name": "Old English Style Pizza", + "address": "4163 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.015633, + "longitude": -75.1408907, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "ZVkrLNK2Z6zSeCn4U9A7rg", + "name": "Dunkin'", + "address": "5100 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9981951, + "longitude": -75.2321206, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DriveThru": "None", + "WiFi": "'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Sandwiches, Breakfast & Brunch, Restaurants, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "nGwaubljBpHFASIiMQ_8-w", + "name": "Makin Vapor", + "address": "3353 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0680168, + "longitude": -75.0049603, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Vape Shops", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "9BRogQ1ZU-agQCPG-a4zIg", + "name": "Groom", + "address": "1324 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948061518, + "longitude": -75.1636534558, + "stars": 4.5, + "review_count": 172, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "VLVUUn_m6QPyblPiwAT5tw", + "name": "Pikkles Plus", + "address": "1801 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9534093, + "longitude": -75.1702746, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "11:0-15:30", + "Tuesday": "11:0-15:30", + "Wednesday": "11:0-15:30", + "Thursday": "11:0-15:30", + "Friday": "11:0-15:30" + } + }, + { + "business_id": "uwEN1AD7lyGGxyODTrB3Tg", + "name": "Derrick Joseph Psychic Medium", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Hypnosis/Hypnotherapy, Health & Medical, Life Coach, Reiki, Event Planning & Services, Party & Event Planning, Arts & Entertainment, Psychics, Psychic Mediums, Supernatural Readings, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "f8Byv8pegvus-Wud_mf0_Q", + "name": "Dmitri's", + "address": "944 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9653211686, + "longitude": -75.1406087431, + "stars": 3.5, + "review_count": 237, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Caters": "False" + }, + "categories": "Seafood, Mediterranean, Restaurants, Greek", + "hours": { + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "FRbkFjoF4xHhJAzC_ftx5g", + "name": "Sylvia Berkow's Resale Shop", + "address": "7594 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.97941, + "longitude": -75.26883, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Thrift Stores, Shopping, Used, Vintage & Consignment, Fashion, Women's Clothing", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "uvj_tGQrGDSVXjNU4pHjCA", + "name": "Sitar India", + "address": "60 S 38th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9556956061, + "longitude": -75.1985801108, + "stars": 4.0, + "review_count": 387, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "True", + "BYOB": "True", + "Corkage": "False" + }, + "categories": "Restaurants, Food, Indian, Ethnic Food, Specialty Food", + "hours": { + "Monday": "11:30-16:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "sk8_333tO0fBXupNjVZ8Pg", + "name": "New South China", + "address": "1640 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440575, + "longitude": -75.1701088, + "stars": 3.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "zyghhZzPgb1bRAIYB-oi1w", + "name": "Vince's Gulf", + "address": "5430 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0226912, + "longitude": -75.2089563, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "xUWjJzplLy6SiYL413VUaQ", + "name": "Pet Vet Clinic", + "address": "1602 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9297436, + "longitude": -75.1638862, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Tuesday": "15:0-17:0", + "Thursday": "15:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "hdEVAxDZD6VmjEhuEynO6Q", + "name": "Deep Six Tattoo", + "address": "2483 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0782695, + "longitude": -75.0238659, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": null + }, + { + "business_id": "H_yVbOCHTEocWeXl6UXkIQ", + "name": "Toto's Pizzeria", + "address": "6555 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.043998, + "longitude": -75.190724, + "stars": 3.0, + "review_count": 136, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BikeParking": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Pizza, Restaurants, Sandwiches, Italian", + "hours": { + "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" + } + }, + { + "business_id": "64B7UIqpNy9zQu82oYJMgg", + "name": "7-Eleven", + "address": "1201 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505357883, + "longitude": -75.160329, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Convenience Stores, Food, Coffee & Tea, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "rj8IQHt0PkVkxrtqVjS9AQ", + "name": "US Post Office", + "address": "3000 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9532093384, + "longitude": -75.1845923839, + "stars": 2.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Post Offices, Public Services & Government, Local Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "HVOHC7EyUMYdgV7S6kd0uQ", + "name": "Delta Hotels Philadelphia Airport", + "address": "500 Stevens Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8730999989, + "longitude": -75.2747963729, + "stars": 2.0, + "review_count": 207, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True" + }, + "categories": "Event Planning & Services, Hotels, Venues & Event Spaces, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "tYn8hGpZiRgJ8cP2FcI_YQ", + "name": "City Tap House", + "address": "100 N18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557454576, + "longitude": -75.1698437, + "stars": 4.0, + "review_count": 497, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'loud'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Food, Restaurants, Bars, Nightlife, American (New), Beer, Wine & Spirits, Gastropubs", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "BNqtMJ-zXdHn49eaegGumg", + "name": "Wingstop", + "address": "2118 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0489636, + "longitude": -75.0633962, + "stars": 2.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Chicken Wings, Restaurants, Food, Fast Food", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "IjMs1n7UelI7ev_5IDl5kA", + "name": "Pho Saigon", + "address": "1100 S Christopher Columbus Blvd, Unit 22", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932705, + "longitude": -75.14438, + "stars": 4.0, + "review_count": 419, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "True", + "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': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Coffee & Tea, Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Arts & Crafts, Costumes, Restaurants, Vietnamese, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "ZwQOSw8V0Xp8r0FjNdU78Q", + "name": "Top Chef Quickfire", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547249121, + "longitude": -75.1689532, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "8kUh6TROemLfbVR_ewVVLg", + "name": "Nam Phuong", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9364886, + "longitude": -75.1622139, + "stars": 4.0, + "review_count": 738, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Corkage": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Seafood, Vietnamese", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "yfviYdnPmJ4x4QDmqkD1SQ", + "name": "US Post Office", + "address": "10380 Drummond Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0831331583, + "longitude": -74.9962381569, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Post Offices, Local Services, Shipping Centers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-12:0" + } + }, + { + "business_id": "LmznAuunJMclWtfN0U4mgA", + "name": "Liberty Auto Body", + "address": "1616 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925974, + "longitude": -75.173622, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops, Oil Change Stations", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "eEKl9ZI-QB_p4XcNPXToHQ", + "name": "Fratelli's Italian Bistro", + "address": "1339 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509564, + "longitude": -75.1631382, + "stars": 3.0, + "review_count": 172, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "HappyHour": "True", + "Caters": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "11:0-21:30", + "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": "12:0-20:0" + } + }, + { + "business_id": "0n6rbrYy_zlr9N1WnEmr9Q", + "name": "Pier Bar", + "address": "2025 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674703, + "longitude": -75.1711596, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Seafood, Breakfast & Brunch, Nightlife, Beer Gardens, Bars", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "JTE5cXgwmTnoC7p2dfHjhA", + "name": "Gardenia Nail Spa", + "address": "9456 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.049891, + "longitude": -74.989646, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Waxing, Massage, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "2g6XFQ6XD1iuNtl9ZES6cw", + "name": "Saladworks", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494383502, + "longitude": -75.1645197101, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "WiFi": "'no'" + }, + "categories": "Salad, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "2-oXhioK5KFCSUVNjv2GCg", + "name": "Baskin-Robbins", + "address": "1630 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0809875, + "longitude": -75.1720777, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "wH8fxWLGeByU8W3nABHFrg", + "name": "Buckets Bar & Grill", + "address": "3749 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0093072, + "longitude": -75.1937996, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False" + }, + "categories": "Bars, Restaurants, Nightlife, Gastropubs, American (Traditional)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "PVUFx6iPmpv5Arq4i62i-g", + "name": "Montgomery County Medical Associates", + "address": "8014 Burholme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0788124, + "longitude": -75.0861865, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Optometrists, Health & Medical, Medical Centers", + "hours": null + }, + { + "business_id": "7pwZZVVlYCxQvVdd8Q03wg", + "name": "La Rosa Pizzeria", + "address": "2106 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9241471, + "longitude": -75.1700767, + "stars": 4.0, + "review_count": 152, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "itv5mVA2lkp_ivhSdmKGgw", + "name": "Seorabol Korean Restaurant", + "address": "5734 Old 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0385555068, + "longitude": -75.1242795983, + "stars": 4.0, + "review_count": 531, + "is_open": 1, + "attributes": { + "Caters": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Corkage": "False", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "None", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Korean, Restaurants, Japanese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Q81Xj-eCVxi8mttVMn2UiQ", + "name": "Jimmy John's", + "address": "3925 Walnut St, Ste 136", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542356, + "longitude": -75.2011919, + "stars": 3.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "HasTV": "True", + "HappyHour": "False", + "DriveThru": "True" + }, + "categories": "Sandwiches, Food Delivery Services, Food, Fast Food, Delis, Restaurants", + "hours": { + "Monday": "10:30-3:0", + "Tuesday": "10:30-3:0", + "Wednesday": "10:30-4:0", + "Thursday": "10:30-4:0", + "Friday": "10:30-4:0", + "Saturday": "10:30-4:0", + "Sunday": "10:30-3:0" + } + }, + { + "business_id": "q2YrgDuxmRuCwk4kptdjJA", + "name": "Comcast", + "address": "11400 Northeast Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1097503, + "longitude": -75.0170649, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Internet Service Providers, Television Service Providers, Home Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:30-17:0", + "Sunday": "12:0-16:30" + } + }, + { + "business_id": "AMWElAiyJGf5WpikeoLpLA", + "name": "Mueller Chocolate Co", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9529694898, + "longitude": -75.159198381, + "stars": 4.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Food, Specialty Food, Candy Stores, Chocolatiers & Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "qFtso88yh_Ajcto1eyEx2w", + "name": "Tilerama", + "address": "5755 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0334143, + "longitude": -75.0848178, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tiling, Home Services", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-14:0" + } + }, + { + "business_id": "jz5IzOqaAOXx44eBv_eOwQ", + "name": "James Blake, DO", + "address": "6827-31 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0551733, + "longitude": -75.1867992, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Health & Medical, Gastroenterologist, Colonics", + "hours": { + "Monday": "7:30-16:30", + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30" + } + }, + { + "business_id": "pzZpptEBG6Yc4eI6GeScow", + "name": "Isla Verde Cafe", + "address": "2725 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.992299, + "longitude": -75.135783, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Restaurants, Spanish, Tapas Bars, Dance Clubs", + "hours": { + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "XQ4Cfzi1TXqoJ6RSkpr-Ow", + "name": "Norio of Tokyo Hair Salon", + "address": "8131 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0730404, + "longitude": -75.2023053, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "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" + } + }, + { + "business_id": "beEcI7G4luNdMYZz3XSs4g", + "name": "Alper Automotive", + "address": "7384 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0275096, + "longitude": -75.0293072, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "5HeO2Q_tKt8V9jgthPOnFw", + "name": "Dave's Best Limousine Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 1.5, + "review_count": 158, + "is_open": 0, + "attributes": null, + "categories": "Limos, Hotels & Travel, Airport Shuttles, Transportation", + "hours": { + "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" + } + }, + { + "business_id": "Wfpwcx878E1Vg2E82DPGGg", + "name": "Awa's Beautiful Hair Bar", + "address": "6330 Battersby St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.030622, + "longitude": -75.06195, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons, Blow Dry/Out Services", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-18:0", + "Saturday": "8:30-19:0" + } + }, + { + "business_id": "YA324HC-Utf4avnAD1UYAQ", + "name": "The Racquet Club of Philadelphia", + "address": "215 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491376, + "longitude": -75.1673977, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Tennis", + "hours": { + "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" + } + }, + { + "business_id": "kB5uFZ9X0HEku96FRt493A", + "name": "Kin Boutique", + "address": "1010 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446085, + "longitude": -75.1587107, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Women's Clothing, Accessories, Shopping, Fashion, Shoe Stores, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "kqztYYLbRz_PkS8SMrkLyw", + "name": "Olney Nails", + "address": "101 E Olney Ave, Ste B10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.03676, + "longitude": -75.118865, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0" + } + }, + { + "business_id": "TMHhUJuWZk45JqHYuE3fww", + "name": "A-1 Handyman & Home Plumbing Service", + "address": "6953 Pawling St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0404347, + "longitude": -75.232341, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Plumbing, Home Services, Handyman", + "hours": { + "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" + } + }, + { + "business_id": "qPsx07yvXAP9S9EJT5ghZg", + "name": "Circle Of Hope", + "address": "2007 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978677, + "longitude": -75.129973, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Sunday": "19:0-20:45" + } + }, + { + "business_id": "lbjJ2ACmmYvhCXcWav-E0Q", + "name": "City Hall Coffee House", + "address": "1 South Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951669, + "longitude": -75.163983, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "aKAHBouevIl0phRmGVUehA", + "name": "Center City KinderCare", + "address": "1700 Market St, Ste LL40", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9527033, + "longitude": -75.1692579, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Education, Elementary Schools, Preschools, Child Care & Day Care, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "gEX_kEhYgvLKGJtlY45BmQ", + "name": "Rangoon Burmese Restaurant", + "address": "112 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953909, + "longitude": -75.1547889, + "stars": 4.0, + "review_count": 612, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "HappyHour": "False", + "RestaurantsDelivery": "None", + "HasTV": "True" + }, + "categories": "Burmese, Restaurants", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "36tBU4T61w-O9znMq2z-Xg", + "name": "Free Library of Philadelphia - Fishtown Community Branch", + "address": "1217 E Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.972026, + "longitude": -75.127279, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Public Services & Government, Libraries", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "1myzUtTeh1D9HaJzRMu9Zw", + "name": "L 2 Restaurant", + "address": "2201 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945475, + "longitude": -75.178674, + "stars": 3.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-14:0", + "Saturday": "17:30-14:0" + } + }, + { + "business_id": "IWbAT_jOGwJuDE-BAZ1Riw", + "name": "Chop Shop", + "address": "513 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420538, + "longitude": -75.1512432, + "stars": 3.5, + "review_count": 108, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-18:30", + "Sunday": "12:0-17:30" + } + }, + { + "business_id": "0v5gedzRunqlbgtj3u1QCQ", + "name": "QDOBA Mexican Eats", + "address": "230 S 40th St, Ste 140", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531868891, + "longitude": -75.2029737085, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Fast Food, Event Planning & Services, Mexican, Caterers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "XZRcvUnWgIGkKm7iCOJgjA", + "name": "Hikaru", + "address": "4348 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 40.0253254, + "longitude": -75.2235922, + "stars": 2.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": null + }, + { + "business_id": "AEe34lPAGLLZ2rNj5gYLhw", + "name": "Cosmopolitan Apartments", + "address": "12th & Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9477507, + "longitude": -75.1607726, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "Euhys90AAREbdds8KWSoBQ", + "name": "Premier Access Property Management", + "address": "615 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940704, + "longitude": -75.1455653, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "410SzJMr27T3wUusKW890A", + "name": "Jason Matthew Salon", + "address": "1735 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518768, + "longitude": -75.170012, + "stars": 4.5, + "review_count": 122, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Hair Salons, Beauty & Spas, Massage, Hair Stylists, Hair Extensions", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "5KUA6K1L8CnuQAaenkvhZQ", + "name": "Angelo's Pizza", + "address": "The Bellevue, 224 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948616, + "longitude": -75.1645213, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Sandwiches, Pizza", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "MdAO6bEVCYmAjw2IaGJ5RA", + "name": "Fork: etc.", + "address": "308 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498, + "longitude": -75.146232, + "stars": 4.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "American (New), Sandwiches, Cafes, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "a8Dd8uNFxfQjCSKpkP34HQ", + "name": "Queen Village Animal Hospital", + "address": "323 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407799, + "longitude": -75.1485494, + "stars": 4.0, + "review_count": 124, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "KrKQChZ1hwHHVaUK9Zc-Ag", + "name": "Iron Hill Brewery & Restaurant", + "address": "1150 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515764639, + "longitude": -75.1596684381, + "stars": 4.0, + "review_count": 324, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Breweries, Restaurants, American (Traditional), Brewpubs", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "5eNyHwCbXI79gpmwlI67dA", + "name": "Giant Heirloom Market", + "address": "1002 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9667920632, + "longitude": -75.1403843611, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "xM-HnG-yurTNI38ui0Akzw", + "name": "Dunkin'", + "address": "8000 Pine Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0776079, + "longitude": -75.0853653, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Restaurants, Food, Donuts", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "1aGgKz-sYfWrSYE6zbu7-g", + "name": "ONE at Rittenhouse", + "address": "121 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.951147, + "longitude": -75.171809, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "HappyHour": "True" + }, + "categories": "Bars, Dance Clubs, Nightlife, Lounges", + "hours": null + }, + { + "business_id": "hDWqLN7cqVoJmJXCQTU14g", + "name": "Jefferson Medical", + "address": "2100 Spring Garden St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9636733, + "longitude": -75.1732073, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Internal Medicine, Doctors, Urgent Care, Medical Centers", + "hours": null + }, + { + "business_id": "XPOdKREKlB8uvsMMKNY_7w", + "name": "CVS Pharmacy", + "address": "2320 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.966929, + "longitude": -75.1762, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Shopping, Drugstores, Convenience Stores, Pharmacy, Health & Medical", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "10:0-20:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "Z0U0sPwogMRdbhNZzx2wgw", + "name": "The Boiling Pot", + "address": "319 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95039, + "longitude": -75.1463381, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True" + }, + "categories": "Seafood, Asian Fusion, Restaurants, Cajun/Creole", + "hours": { + "Monday": "14:0-20:0", + "Tuesday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0", + "Saturday": "14:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "jEasa4Sbzy4NdLyzPPgQyg", + "name": "2nd Story Brewing", + "address": "117 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484739, + "longitude": -75.1435556, + "stars": 4.0, + "review_count": 561, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'free'", + "BikeParking": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "Music": "{'dj': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForDancing": "False", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Breweries, Bars, Restaurants, Food, Nightlife, American (New), Pubs, Gastropubs", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "5siwhfaZ36dB13LrqRuoUg", + "name": "Purr-fect Pets", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Pets, Dog Walkers, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "HPqTJ_yF2ZJw87yHWnSzSg", + "name": "City Tavern Restaurant", + "address": "138 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9471427567, + "longitude": -75.1445095605, + "stars": 4.0, + "review_count": 841, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Smoking": "u'no'", + "RestaurantsTakeOut": "None", + "HappyHour": "False", + "HasTV": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForDancing": "False", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "BikeParking": "True" + }, + "categories": "Pubs, Restaurants, Event Planning & Services, Desserts, Food, Comfort Food, American (Traditional), Nightlife, Bars, Venues & Event Spaces, Italian, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "Hd6U8p2-9k5CWY1ScrYong", + "name": "Taco Bell", + "address": "6417 Harbison Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.03262, + "longitude": -75.06324, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "HasTV": "True", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Mexican, Restaurants, Fast Food, Tex-Mex", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "UkBmK4Icaximp2DY2Zf_iw", + "name": "Crabby Cafe and Sports Bar", + "address": "1050 N Hancock St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664438, + "longitude": -75.139576, + "stars": 3.0, + "review_count": 151, + "is_open": 0, + "attributes": { + "Music": "{}", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'outdoor'", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForKids": "True", + "CoatCheck": "False", + "Caters": "True", + "WheelchairAccessible": "True" + }, + "categories": "Beer Gardens, Restaurants, Bars, Vietnamese, Sandwiches, Cajun/Creole, Sports Bars, Seafood, Nightlife", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "NimI2u6uSS-DwsouQUO-Mg", + "name": "Bobs Crab House", + "address": "301 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9996888016, + "longitude": -75.1358152626, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cajun/Creole, Specialty Food, Seafood, Seafood Markets, Food", + "hours": null + }, + { + "business_id": "oY2Yk2nuVm4PaE-eWTTGUg", + "name": "Sophisticative Nail Salon", + "address": "1727 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927929, + "longitude": -75.165514, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "KpapS4o3byLjgyN3S9KPCg", + "name": "Roxborough Memorial Hospital", + "address": "5800 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0289234, + "longitude": -75.2093574, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Hospitals", + "hours": { + "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" + } + }, + { + "business_id": "gr5EVvwHgss4__ZDoixUqQ", + "name": "Bala Apartments", + "address": "4920 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.00029, + "longitude": -75.227743, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "CBygzH3_5D_W23q9M7FaNg", + "name": "Independence National Historical Park", + "address": "143 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9472668, + "longitude": -75.14594, + "stars": 4.5, + "review_count": 148, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "8:30-18:0" + } + }, + { + "business_id": "ocrm9vLhGCn4Z8hgadyWHQ", + "name": "Pierre & Carlo", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949028, + "longitude": -75.164482, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Hair Salons, Day Spas", + "hours": null + }, + { + "business_id": "IxxLhFQ0NOdPY8lumTtisA", + "name": "Joltin Jabs", + "address": "201 South Camac St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 40.024894, + "longitude": -75.221757, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Boxing, Trainers", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "8:0-15:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "nLwR3xBsliqeuy7uyYOkkA", + "name": "Crimson Hair Studio", + "address": "336 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9464983, + "longitude": -75.1684598, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Hair Extensions, Barbers, Makeup Artists, Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:30", + "Friday": "9:30-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "kL98j83h3QFUoSBBevCHOw", + "name": "Tap Room On 19th", + "address": "2400 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.921596, + "longitude": -75.178679, + "stars": 4.0, + "review_count": 183, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "BYOB": "False" + }, + "categories": "Restaurants, Gastropubs, American (New)", + "hours": { + "Monday": "0:0-0:0", + "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" + } + }, + { + "business_id": "9uU6AGSXncM-hu6lIvgv3w", + "name": "Mรฉmรฉ", + "address": "2201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487748, + "longitude": -75.1780354, + "stars": 4.0, + "review_count": 119, + "is_open": 0, + "attributes": { + "Caters": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "UaW6eOyzxFrUmc1_TK34gA", + "name": "Saia's Cleaners", + "address": "4100 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951836, + "longitude": -75.205825, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "2yLeUev-KhtxTPOEmTLaYQ", + "name": "The Yo, Philly! Rocky Film Tour LLC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Bus Tours, Tours", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "tpzUj0tZ7AjufGG2He3ePQ", + "name": "The Wine Garden", + "address": "5019 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948052393, + "longitude": -75.2242355794, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "Smoking": "u'no'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "Music": "{u'dj': False, u'live': True, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Wine Bars, Bars, Nightlife", + "hours": { + "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": "15:0-20:0" + } + }, + { + "business_id": "H3YlpHJb_nbr28eNnVgQqw", + "name": "St. Paul's Catholic Church", + "address": "808 S Hutchinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394146, + "longitude": -75.1587791, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations", + "hours": null + }, + { + "business_id": "XAVsvqv1HWUiiqgJM6zubg", + "name": "Mood Cafe", + "address": "126 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558869445, + "longitude": -75.2116457695, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'" + }, + "categories": "Cafes, Restaurants, Food, Halal, Pakistani, Desserts", + "hours": null + }, + { + "business_id": "vlOI4udD95JUGlmA7a6iqA", + "name": "Tokyo Sushi & Catering", + "address": "1701 John F Kennedy Blvd, Ste C120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547208, + "longitude": -75.1689532, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "BikeParking": "False", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "HasTV": "True", + "WheelchairAccessible": "True" + }, + "categories": "Event Planning & Services, Chinese, Sushi Bars, Restaurants, Caterers, Japanese", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "I1JIxBbo1iDCqn7NUnE1UA", + "name": "Crown Movers", + "address": "5213 Greenway Ave, Ste 230", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9392243, + "longitude": -75.2180394, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Movers, Home Services", + "hours": null + }, + { + "business_id": "noys-g78gVcXDCWv7EaBTw", + "name": "Arthur's Pro Auto Care", + "address": "117 N 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957172, + "longitude": -75.176979, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Auto Detailing, Car Wash", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "AU5C7IX0mogLK32u2EEOBQ", + "name": "Gia Pronto", + "address": "3736 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951084296, + "longitude": -75.1987624411, + "stars": 3.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Caters": "True" + }, + "categories": "Fruits & Veggies, Specialty Food, Food, Sandwiches, Italian, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0" + } + }, + { + "business_id": "4lJRJ86Welod5qO4DfGWgQ", + "name": "Happy Drycleaning & Laundry", + "address": "1101 E Mount Airy Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.072522, + "longitude": -75.1785154, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "7:0-18:30" + } + }, + { + "business_id": "AGR4G6RCCjzmtVk0xjLTrg", + "name": "76 Carriage Company", + "address": "1350 Schuylkill Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9375741, + "longitude": -75.2037673, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tours, Hotels & Travel, Party Bus Rentals, Wedding Planning, Public Transportation, Transportation, Event Planning & Services, Local Flavor", + "hours": null + }, + { + "business_id": "GJWd5E-3vX9Z3C2j7IUrcw", + "name": "Couch Tomato Catering", + "address": "102 Rector St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0246569593, + "longitude": -75.2213430529, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Food Delivery Services, Pizza, Food, Wedding Planning, Caterers, Restaurants, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0", + "Sunday": "8:30-21:0" + } + }, + { + "business_id": "z3JIp32V1eTem1NNVCjsnQ", + "name": "Fresco Cafe", + "address": "1880 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541222, + "longitude": -75.1710001, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Delis, Fast Food, Restaurants, Cafes, Sandwiches", + "hours": { + "Monday": "8:0-15:30", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-15:30", + "Thursday": "8:0-15:30", + "Friday": "8:0-15:30" + } + }, + { + "business_id": "J5hBRIiXk4tLu95irojFkQ", + "name": "Empire Motors Auto Sales", + "address": "4213 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0089635, + "longitude": -75.0892666, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Car Dealers, Motorcycle Dealers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "w7kKNELhnc00MwPOQhaZpQ", + "name": "Naf Naf Grill", + "address": "1919 Market St, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538173712, + "longitude": -75.1727485657, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Caters": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "'none'" + }, + "categories": "Salad, Restaurants, Fast Food, Mediterranean, Middle Eastern, Falafel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0" + } + }, + { + "business_id": "xy0a_zLyI9zjDi9Yel734w", + "name": "Foxchase Laundromat", + "address": "418 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0765679, + "longitude": -75.0841563, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services, Laundromat", + "hours": null + }, + { + "business_id": "8HAs-c3bh_tr4ggiYAlZng", + "name": "sweetgreen", + "address": "924 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483207617, + "longitude": -75.1570180649, + "stars": 3.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Soup, Salad, Vegan, Restaurants, Vegetarian", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "viTvepI8TEHvl8nwiewX6Q", + "name": "Neighborhood Bike Works", + "address": "3939 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9626254, + "longitude": -75.2010879, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Bike Repair/Maintenance, Local Services, Shopping, Sporting Goods, Bikes", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "gJpie45pHq5UFHH7CBSPqw", + "name": "Living Arts Dance Fitness Studios", + "address": "624 N Front St, Fl 2nd and 3rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611401, + "longitude": -75.1388155, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Martial Arts, Dance Studios, Arts & Entertainment, Fitness & Instruction, Summer Camps, Performing Arts, Active Life", + "hours": null + }, + { + "business_id": "O5Ubf7QHTFCQQIFWkL_E8Q", + "name": "Mr. Tire Auto Service Centers", + "address": "6740 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.032503887, + "longitude": -75.0517121405, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Automotive, Tires, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "XPiujqYlO9ldyt_hjDjYPw", + "name": "Pyramid Club", + "address": "1735 Market St, Fl 52", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535408, + "longitude": -75.1694793, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "GoodForKids": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Nightlife, Caterers, Event Planning & Services, Restaurants, Venues & Event Spaces, Arts & Entertainment, Social Clubs", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "puv6W7v6hEZMwD6JChw8FQ", + "name": "Lantern Theater Company", + "address": "923 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509431, + "longitude": -75.1562158, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Arts & Entertainment, Cinema", + "hours": null + }, + { + "business_id": "Su-1UrohvWuqV-b_nQCR7Q", + "name": "Adelphia Plumbing and Heating", + "address": "4955 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9751122, + "longitude": -75.2214468, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Plumbing", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "KDplhtRYnHOCnuIjIGR8fA", + "name": "The Goat's Beard", + "address": "4201 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0238229063, + "longitude": -75.2201271057, + "stars": 4.0, + "review_count": 477, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Corkage": "True", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTableService": "True", + "HappyHour": "True", + "Smoking": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Comfort Food, American (New), Event Planning & Services, Beer Bar, Venues & Event Spaces, Restaurants, Bars, Cocktail Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "wAuDCL64a2D1C7CEPzsZhA", + "name": "Beautiful World Syndicate", + "address": "4801 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.952806, + "longitude": -75.218563, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Books, Mags, Music & Video, Shopping", + "hours": null + }, + { + "business_id": "4IwFJ0zRRxNZ0Zxm9FJFFg", + "name": "Excel Physical Therapy - Queens Village", + "address": "517 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420275, + "longitude": -75.1488603, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Active Life, Physical Therapy, Health & Medical, Gyms", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0", + "Saturday": "7:0-12:0" + } + }, + { + "business_id": "0ZFqCbsfVqbSRHrcwF5x_g", + "name": "Pak Auto Tags, Insurance & Income Tax Services", + "address": "2222 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9868448, + "longitude": -75.1563964, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Departments of Motor Vehicles, Financial Services, Automotive, Public Services & Government, Insurance, Tax Services, Registration Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "02nb6CI8w-2EoSEkQdk2Wg", + "name": "Philadelphia Java Company", + "address": "852 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9361704128, + "longitude": -75.1469422175, + "stars": 4.0, + "review_count": 101, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Bagels, Restaurants, Cafes, Food, Coffee & Tea", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "u8pZiCYXTj9WRcK19b2koQ", + "name": "Fortaleza Rehabilitation Centers", + "address": "133 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.014875, + "longitude": -75.128083, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Gyms, Trainers, Dance Studios, Active Life, Fitness & Instruction, Physical Therapy, Health & Medical", + "hours": null + }, + { + "business_id": "jcJAFarKwZCrDMomXdcz-Q", + "name": "Al Sham Restaurant", + "address": "337 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961332, + "longitude": -75.144573, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pakistani, Mediterranean, Kebab, Restaurants, Halal, Middle Eastern", + "hours": null + }, + { + "business_id": "_FUE9ZOqNTiDmgP2LGPGdw", + "name": "Dolores", + "address": "1841 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9244316, + "longitude": -75.1498684, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Restaurants", + "hours": { + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30", + "Saturday": "7:30-16:30", + "Sunday": "9:0-16:30" + } + }, + { + "business_id": "gj0EbxvhqkgtOirPfVcfIw", + "name": "Old Philadelphia Bar", + "address": "2118 E Dauphin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9812924, + "longitude": -75.1294314, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": null + }, + { + "business_id": "7wzU75S05xSPVIk5Bht9-Q", + "name": "New Image Art & Framing Inc", + "address": "601 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9425338, + "longitude": -75.1569468, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True" + }, + "categories": "Framing, Arts & Crafts, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "riUK6fmBtiMK5hSzG_5ZUg", + "name": "The Snack Shop", + "address": "2601 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9750583, + "longitude": -75.1241189, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsReservations": "None", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'quiet'", + "WiFi": "'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "DriveThru": "False", + "HasTV": "False" + }, + "categories": "Grocery, Fast Food, Food, Restaurants, Shopping, Sandwiches", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "z9ipWqd6asWSn1vwcBvUcg", + "name": "Omni Vision Opticians", + "address": "1230 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95036, + "longitude": -75.161647, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Eyewear & Opticians, Optometrists, Health & Medical, Shopping, Doctors", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "OXnDPFo9SVQ1G4rOXQYJ5A", + "name": "Fearless Athletics | South Philly", + "address": "744 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409577, + "longitude": -75.1609776, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Boot Camps, Fitness & Instruction, Trainers, Active Life, Interval Training Gyms, Gyms", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-12:0", + "Sunday": "9:0-11:0" + } + }, + { + "business_id": "7WMz_x6iPld6lo0x4rQ7kQ", + "name": "Harris Automotive", + "address": "13440 Damar Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1215163, + "longitude": -75.0005974, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "wJvkxHX_KSUwvsoEjrRe-g", + "name": "Practice Yoga Studio", + "address": "804 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9380988, + "longitude": -75.1502171, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Yoga, Active Life, Fitness & Instruction", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "9:30-14:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "xd9iZqFLnZe2jsUStQhYBQ", + "name": "Dunphy Motors", + "address": "7700 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0401116, + "longitude": -75.0322965, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Auto Repair, Automotive", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "O17dm8a_hU8zc3gAYkAK-A", + "name": "Ken Love's BYOB", + "address": "701 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624259, + "longitude": -75.1429291, + "stars": 4.5, + "review_count": 172, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "False", + "OutdoorSeating": "True" + }, + "categories": "Vegetarian, Mediterranean, Desserts, Food, American (New), Restaurants, Steakhouses", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "jEiywYWwHnHnF4sm3BYKJw", + "name": "La Bourse at Hotel Sofitel", + "address": "120 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509482, + "longitude": -75.1695409, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'dressy'", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Nightlife, Bars, Lounges, Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "L7JyruCnXOSHTNAJ-oIIxQ", + "name": "Olive on 3rd", + "address": "516 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420166, + "longitude": -75.1475905, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Italian, Mediterranean, American (New), Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "efxiiiwXpF2pEsCfgeQc8g", + "name": "Juno", + "address": "1033 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619437, + "longitude": -75.155644, + "stars": 4.0, + "review_count": 186, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "HappyHour": "True", + "BYOB": "False", + "Corkage": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BikeParking": "False", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "Smoking": "u'no'" + }, + "categories": "Nightlife, Cocktail Bars, Restaurants, Mexican, Bars, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Vj0HxkVVQMgM9n1QKGvThw", + "name": "Wendy's", + "address": "3600 Aramingo Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.994124, + "longitude": -75.096964, + "stars": 1.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "DriveThru": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Hot Dogs, Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "RC0qqWd74MzIgQvVwhX8Vg", + "name": "Spring Garden Nails & Spa", + "address": "533 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616584, + "longitude": -75.1477614, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Waxing, Eyelash Service, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30" + } + }, + { + "business_id": "Xd5Ev-U6n8mvx7TI6PPSyQ", + "name": "Edward J Blackburn", + "address": "444 N 4th St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590445, + "longitude": -75.1458276, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Services, Real Estate Agents", + "hours": null + }, + { + "business_id": "mkMFBgmA2oECdpxwXi9ZwA", + "name": "Sophie's Bridal", + "address": "6819 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0253802, + "longitude": -75.0438777, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Bridal", + "hours": null + }, + { + "business_id": "9nBqiimE6bGE1TSxlnDJ-A", + "name": "Dr Coffee", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.94763, + "longitude": -75.1926, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:0-19:30", + "Tuesday": "6:0-19:30", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "6:0-19:30", + "Saturday": "6:0-19:30", + "Sunday": "6:0-19:30" + } + }, + { + "business_id": "ppAG_3wy1mVtRVGOvLBOig", + "name": "Threshold Wellness", + "address": "440 East Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9704022, + "longitude": -75.128969, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Reflexology, Education, Massage Therapy, Medical Centers, Health & Medical, Reiki, Adult Education", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "14:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "b66R96v0N-Mmu0jb4cVhiQ", + "name": "Starbucks", + "address": "4600 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002679, + "longitude": -75.222682, + "stars": 2.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': True, u'validated': False}", + "DriveThru": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "zS9gD9dfc6TmM44np17hAg", + "name": "City Wide Roofing", + "address": "7337 Wissinoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0251515, + "longitude": -75.0298548, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Roofing", + "hours": null + }, + { + "business_id": "JY_MjUV4KNNkixkOTJ96SA", + "name": "Elfant Pontz Properties", + "address": "7112 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.058442, + "longitude": -75.190279, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Apartments, Real Estate, Property Management, University Housing, Home Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "zfn7V7FVH5_J5A9dInfbnA", + "name": "Pinefish", + "address": "1138 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94499, + "longitude": -75.161245, + "stars": 3.5, + "review_count": 318, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'free'", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "BYOB": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Cocktail Bars, Seafood, Salad, Bars, Nightlife", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "qpdJ_lw-BTw1HaXWIomPGQ", + "name": "Sweetie's Take Out & Catering", + "address": "8756 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0502726811, + "longitude": -75.0123044444, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "African, Restaurants, Caterers, Event Planning & Services, South African", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "6zZEEdDbSxKWwbHuzdGvJQ", + "name": "Nurses Uniform Place", + "address": "1104 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498781, + "longitude": -75.1590756, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Uniforms, Shopping", + "hours": null + }, + { + "business_id": "r6gFO9a67llZRUf_jagDjA", + "name": "Panther Pro Audio", + "address": "3475 Collins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.995002, + "longitude": -75.102785, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Audio/Visual Equipment Rental, Professional Services, Party Equipment Rentals, Music Production Services, Local Services, Recording & Rehearsal Studios, Event Planning & Services", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "ytJqPKLH6l4mpAb5x0XxVA", + "name": "ShopRite of Roosevelt Blvd", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.102216, + "longitude": -75.00815, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Grocery, Fashion, Department Stores, Shopping, Caterers, Food, Event Planning & Services, Restaurants, Delis, Bakeries", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "GTaTcGEZSd71YHLlGR6k1g", + "name": "Spotwalk", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 41, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Dog Walkers, Pets", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "hh6t95hiS-RqRt6bEz1SPw", + "name": "Union League of Philadelphia", + "address": "140 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949988, + "longitude": -75.1645963, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "4", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'formal'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "HasTV": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "False", + "NoiseLevel": "'quiet'", + "BikeParking": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True" + }, + "categories": "Hotels & Travel, Restaurants, Arts & Entertainment, American (Traditional), Hotels, American (New), Venues & Event Spaces, Social Clubs, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "CqpbkSMqjeJrtc_3uC-z0A", + "name": "Ursula's About PHace Rittenhouse", + "address": "1700 Sansom St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507127, + "longitude": -75.168958, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Skin Care, Beauty & Spas, Hair Removal, Nail Salons, Makeup Artists, Eyelash Service, Massage, Cosmetics & Beauty Supply", + "hours": { + "Tuesday": "10:30-16:0", + "Wednesday": "10:30-16:0", + "Thursday": "10:30-16:0", + "Friday": "10:30-16:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "oDoXbLcvnu7qRqwmgI0_sA", + "name": "Penn Park", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950642, + "longitude": -75.18627, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "6XMZkKUrDOiW9aXW4oD8fA", + "name": "Fat Daddy's Pizza", + "address": "125 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296963, + "longitude": -75.2286022, + "stars": 3.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants, Burgers, Italian", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-3:0", + "Saturday": "10:30-3:0", + "Sunday": "12:30-22:0" + } + }, + { + "business_id": "MRtKINPRZK2QTjsXANYLSg", + "name": "Journey Hair Salon", + "address": "7041 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0472565, + "longitude": -75.0695674, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-14:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "t-siznLJ3Mj6Ols8SAWz-Q", + "name": "Opheliya's Coffee and Pizza", + "address": "2421 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9198426, + "longitude": -75.1706107, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Coffee & Tea, Cheesesteaks, Salad, Pizza, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "8JqmGIIQcQKdonuHZS_aYw", + "name": "Couture Cleaning", + "address": "6347 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0448691, + "longitude": -75.1814988, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Home Organization, Home Services, Office Cleaning, Local Services, Home Cleaning, Carpet Cleaning", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "fmX6zDAFVOsFWxGJx1XKrw", + "name": "Buyer's Tires & Autocure", + "address": "6851 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0550964, + "longitude": -75.0900371, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Auto Parts & Supplies, Auto Repair, Automotive", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "Sq-iBwqEfCzr9nXVLeuJgw", + "name": "Asia Crafts", + "address": "124 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954249, + "longitude": -75.1562448487, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hobby Shops, Bookstores, Accessories, Toy Stores, Fashion, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "11:30-19:0", + "Wednesday": "11:30-19:0", + "Thursday": "11:30-19:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-19:0" + } + }, + { + "business_id": "U6Qe7jUl4p1RMm4DaVLWQg", + "name": "Innervision Eyewear", + "address": "131 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506626932, + "longitude": -75.1704321062, + "stars": 4.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "True", + "WheelchairAccessible": "True" + }, + "categories": "Health & Medical, Eyewear & Opticians, Optometrists, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "kKYHro0hTs6wSAZmUmzjPw", + "name": "Nostalgic Eye Care", + "address": "6656 Germantown Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0519783, + "longitude": -75.1857049, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Shopping, Optometrists, Eyewear & Opticians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "XQxaNufoSOaxuLMVgx9ieA", + "name": "The Legendary Blue Horizon", + "address": "1314 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9737989, + "longitude": -75.1591699, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Arts & Entertainment, Stadiums & Arenas, Active Life, Amateur Sports Teams", + "hours": null + }, + { + "business_id": "NRPOcKaY5e-Oq0iQnDWvbA", + "name": "Philadelphia Hair Studio", + "address": "744 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400736, + "longitude": -75.1527649, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "9:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "6OrsqRFZea5CEwc3TeKbfA", + "name": "Village Restaurant", + "address": "9226A Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0646691, + "longitude": -75.0210396, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "None", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTableService": "True", + "HasTV": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "BQ_LtKMybMelvIePEbUTkQ", + "name": "Bonobos", + "address": "1519 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498741, + "longitude": -75.1668733, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Fashion, Formal Wear, Shopping, Accessories", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "mGpX6RCSA-7_EkE2zxl-KQ", + "name": "The Melting Pot", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073834, + "longitude": -75.20313, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Fondue, Restaurants", + "hours": null + }, + { + "business_id": "ClJOFxt_rpMjc-ZliFUKqA", + "name": "Target", + "address": "1900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516748, + "longitude": -75.172254, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Furniture Stores, Home & Garden, Shopping, Electronics, Fashion, Department Stores", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "5MJFhSLlY4THFDdAe1o2uQ", + "name": "Reddy's", + "address": "2415 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9962365651, + "longitude": -75.1714396477, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "Caters": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Sandwiches, Burgers, Restaurants, Breakfast & Brunch, American (New)", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0" + } + }, + { + "business_id": "Qy50OzqZtrtq2l90tLj7Jw", + "name": "Natalie's Flowers", + "address": "13023 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1239074, + "longitude": -75.014565, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Floral Designers, Flowers & Gifts, Event Planning & Services, Shopping, Florists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0" + } + }, + { + "business_id": "5lyF_I3SNJ1fKoBpkuSMjw", + "name": "Wawa", + "address": "9456 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.049331, + "longitude": -74.989474, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Convenience Stores, Delis, Coffee & Tea, Sandwiches, Food", + "hours": { + "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" + } + }, + { + "business_id": "p1257iwsyKj00D_145O03w", + "name": "JG Domestic", + "address": "2929 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570730969, + "longitude": -75.182082653, + "stars": 3.5, + "review_count": 171, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Caters": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Burgers, American (New), American (Traditional), Restaurants", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "17:0-21:0" + } + }, + { + "business_id": "Bze5Vj4MmcE0KHGy346xqw", + "name": "Gyro Express", + "address": "2101 S 3rd St, Floor 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218264, + "longitude": -75.150924, + "stars": 5.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Mediterranean, Restaurants, Pakistani, Halal", + "hours": { + "Monday": "0:0-0:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "bdqfARL8x5EGK6IKPEdVQQ", + "name": "Oteri's Italian Bakery | Woodland Ave", + "address": "6323 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9271559, + "longitude": -75.232563, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Food, Caterers, Desserts, Bakeries", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "7:0-18:30", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "YDFRwEUdvZNMBlXukCQGDg", + "name": "Golden Bowl", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95372, + "longitude": -75.159197, + "stars": 2.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "ZCzLoEwGR7M1sNxgHmlP0w", + "name": "Mexico At the Bourse", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484284, + "longitude": -75.1493096, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "j2m_DDgHRAjB0Vx3j8wepw", + "name": "Gogi BBQ", + "address": "6783 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0548744, + "longitude": -75.1259649, + "stars": 4.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "None", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}" + }, + "categories": "Hot Pot, Korean, Restaurants, Barbeque", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "SDJlLqpj6c-OZW4EWjhAQQ", + "name": "Jini Beauty Supply", + "address": "1319 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.085673, + "longitude": -74.96202, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": null + }, + { + "business_id": "IsmxvaMe2i-eWnHDyC0WJQ", + "name": "Rice & Mix", + "address": "128 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949329, + "longitude": -75.160724, + "stars": 3.5, + "review_count": 188, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BYOBCorkage": "u'yes_corkage'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Korean", + "hours": { + "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": "16:0-21:0" + } + }, + { + "business_id": "7PIV8qWkJFs-jXCUoyzxIw", + "name": "Roosevelt Mall Shopping Center", + "address": "2329 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0482098987, + "longitude": -75.0559924563, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Shopping Centers", + "hours": null + }, + { + "business_id": "JsXm65ov0pJEFI2FmGiBQA", + "name": "Herb Scott Catering", + "address": "6531 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.049827, + "longitude": -75.183579, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "AgS-M-I0RGmiPtBrvhWReQ", + "name": "Olde City Hardware", + "address": "41 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490679, + "longitude": -75.145735, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": null + }, + { + "business_id": "REwgEu9RzAoZJX7Bqtg8HQ", + "name": "City Barber", + "address": "136 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483919, + "longitude": -75.154374, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons, Men's Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-16:30" + } + }, + { + "business_id": "uX2TOURTQP1RshDcGyiIPA", + "name": "A Love Letter for You", + "address": "Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9606855, + "longitude": -75.2308108, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Art Galleries, Shopping, Arts & Entertainment, Local Flavor, Public Art", + "hours": null + }, + { + "business_id": "31O5f7f3piqeoYGN86B1Cg", + "name": "Urban Outfitters", + "address": "5000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8893908731, + "longitude": -75.1761251664, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Newspapers & Magazines, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "hpFdLZ0KE0ICdMeG4hLjDg", + "name": "Brick House Bar and Grill", + "address": "326 Roxborough Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.028231, + "longitude": -75.215917, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "False", + "HappyHour": "True" + }, + "categories": "Bars, Local Flavor, American (Traditional), Restaurants, Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "CseAWVbUataNvubmxtyaHQ", + "name": "Chocodiem Philadelphia", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Candy Stores, Food, Specialty Food, Desserts, Chocolatiers & Shops", + "hours": null + }, + { + "business_id": "NTjlhgBHt9tWKOMzqPAnyg", + "name": "Quick & Clean Coin Laundry", + "address": "320 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9449227, + "longitude": -75.1583345, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Laundry Services, Laundromat, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "sJUe1pYicJ54xOXPDNT6hA", + "name": "Stadium Pizza", + "address": "2400 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919571, + "longitude": -75.163901, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Ethnic Food, Pizza, Restaurants, Food, Specialty Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "3lsE-1hRI526KHKbeytPcg", + "name": "Tower Style Pizza", + "address": "132 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508923, + "longitude": -75.1739047, + "stars": 2.0, + "review_count": 144, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-5:0", + "Saturday": "11:0-5:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "cQ1hUeyI3LsUniWvviMeZw", + "name": "Five Below", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Fashion, Shopping, Department Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Friday": "5:0-20:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "e_GHaJxhgEz-OMn_PEV_Ow", + "name": "Sweetwater Portraits", + "address": "755 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391464, + "longitude": -75.1480841, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Boudoir Photography, Event Planning & Services, Event Photography, Photographers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "EdA-bHKP3JKTDDTsZn3TUQ", + "name": "Tanworld", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322069, + "longitude": -75.2142546, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply, Tanning, Permanent Makeup", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "43-v-OqKG16a2TbwdkXNTQ", + "name": "Vivaldi Restaurant", + "address": "2920 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9957429, + "longitude": -75.1396593, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "WheelchairAccessible": "True" + }, + "categories": "Spanish, Restaurants", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "qaEqiGzQ67ief_yoKP97Hw", + "name": "McDonald's", + "address": "29 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0366775201, + "longitude": -75.1742986, + "stars": 1.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food, Burgers, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "oq8DOqkwLhVCziSjJTFSxg", + "name": "Allergy & Asthma Specialists - Philadelphia", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953622, + "longitude": -75.1650781, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Doctors, Health & Medical, Internal Medicine, Allergists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "QMHd6Z2djm_SBLzGhLvFqw", + "name": "Courtyard by Marriott Philadelphia South at The Navy Yard", + "address": "1001 Intrepid Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.895454514, + "longitude": -75.1717264504, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "oziGQYLaEWOpNmPKrZP86g", + "name": "Isgro Pastries", + "address": "1009 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393373391, + "longitude": -75.1597427314, + "stars": 4.5, + "review_count": 472, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "DriveThru": "False", + "DogsAllowed": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Desserts, Bakeries", + "hours": { + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "XJvOamdhTQI65jmzTfreDQ", + "name": "Fante's Kitchen Shop", + "address": "1006 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373725, + "longitude": -75.1583456, + "stars": 4.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Local Flavor, Kitchen & Bath, Shopping, Specialty Food, Food, Home & Garden, Kitchen Supplies, Appliances, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "FwwbaUc7u5nSiLmkF_Z1Tg", + "name": "La Citadelle", + "address": "1600 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9459061, + "longitude": -75.1684578, + "stars": 3.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "HasTV": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Bakeries, Food, Sandwiches, Coffee & Tea, Restaurants", + "hours": { + "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": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "G4TSX0FPMYsPpMPoAjWXSg", + "name": "J & J Automotive", + "address": "4941 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0247869, + "longitude": -75.0357261, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Home Services, Auto Detailing, Vehicle Wraps, Auto Glass Services, Automotive, Car Stereo Installation", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "JTgckf2Va1qeHA-4iEwSQw", + "name": "Plenty Cafe", + "address": "705 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400462, + "longitude": -75.1509542, + "stars": 3.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Food, American (New), Restaurants, Bars, Sandwiches, Nightlife, Coffee & Tea", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "z3Yma_8zyTlI2YkI42fFig", + "name": "Centennial Pharmacy", + "address": "2660 Lefevre St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0005572, + "longitude": -75.0725785, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Doctors, Shopping, Health & Medical, Drugstores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "akNpPdFsHk0mvbqkmPrXWg", + "name": "SK Heating and Air Conditioning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 148, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "6:0-5:0", + "Tuesday": "6:0-5:0", + "Wednesday": "6:0-5:0", + "Thursday": "6:0-5:0", + "Friday": "6:0-5:0", + "Saturday": "6:0-5:0", + "Sunday": "6:0-5:0" + } + }, + { + "business_id": "cF190DWwzmnm8MULqXucZw", + "name": "Twin Jewelry", + "address": "5632 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0373428, + "longitude": -75.1305437, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Jewelry", + "hours": null + }, + { + "business_id": "ZKPrXH_GNW_AtZ31tP3NmA", + "name": "White Dog Cafe", + "address": "3420 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535582, + "longitude": -75.1929054, + "stars": 4.0, + "review_count": 1301, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Corkage": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "Caters": "True", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "Smoking": "u'no'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "BYOB": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Cocktail Bars, Gluten-Free, Bars, Diners, Vegetarian, Nightlife, Restaurants, American (New), Breakfast & Brunch, American (Traditional), Pubs", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "sGhnk9ndDbl0Pb2vRYPSKw", + "name": "Hoover Heating and Cooling", + "address": "217 Rector St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0260274, + "longitude": -75.217481, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Water Heater Installation/Repair, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Cscank-XKITnfKP5DRylrg", + "name": "Rinse", + "address": "419 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.946166, + "longitude": -75.1746211, + "stars": 4.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "eUGE_8Y4TU5vVQVRza0Pig", + "name": "U-Haul Moving & Storage of Riverview", + "address": "8 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9131612201, + "longitude": -75.1440254822, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Trailer Rental, Self Storage, Local Services, Propane, Truck Rental, Automotive", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "cXwuokJlPSZsZ3SRKKnGJQ", + "name": "Lo Chinese Restaurant", + "address": "1613 Pratt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.022163, + "longitude": -75.0774951, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'quiet'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "ylnXCamZxv1Azb1GTVuZ3g", + "name": "Elizabeth Terenchin Makeup Artist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Professional Services, Hair Salons, Makeup Artists, Beauty & Spas, Hair Stylists", + "hours": null + }, + { + "business_id": "HTOGECTmHHrlMYqnU40jIA", + "name": "Supercuts", + "address": "2115 B Cottman Ave, Cottman Bustleton Shopping Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.050038, + "longitude": -75.063187, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "gej4hNRxblKfQcibyt789A", + "name": "AFC Urgent Care Northern Liberties", + "address": "180 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9684394, + "longitude": -75.1390321, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Urgent Care, Walk-in Clinics, Medical Centers", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "E9kAJ17gVMvFCmsl6nJzGA", + "name": "FlynnO'Hara Uniforms", + "address": "6801 Frankford Ave, Unit G", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0320816, + "longitude": -75.0497905752, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Uniforms, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "6GXMHrB8u-3nq87zE1Av0w", + "name": "Baby Blues BBQ Philly", + "address": "3432 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953630921, + "longitude": -75.1929846337, + "stars": 3.5, + "review_count": 466, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Soul Food, Barbeque, Sandwiches, Burgers, Caterers, Event Planning & Services", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "MtxqtQqnNmvCNT7K9JVQQA", + "name": "Burger King", + "address": "6100 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.027464, + "longitude": -75.064389, + "stars": 2.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "BikeParking": "False" + }, + "categories": "Restaurants, Hot Dogs, Burgers, Fast Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "Kn2bokx_yH8F05n3s6dFBQ", + "name": "Palace Royal Restaurant", + "address": "9859 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0919268, + "longitude": -75.0313381, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'formal'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Kosher", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-15:0", + "Saturday": "20:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "4aPZ150mPkrg7uWFz4E_cg", + "name": "Patriot Parking", + "address": "1815 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545576, + "longitude": -75.1707265, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "gbcWVIt0cSJ2iDYXx9lEOQ", + "name": "St. Stephen's Green", + "address": "1701 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9646285, + "longitude": -75.166045, + "stars": 3.5, + "review_count": 226, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Restaurants, Irish, Bars, Breakfast & Brunch, Nightlife, Irish Pub, Pubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-23:0", + "Thursday": "15:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Zwbhs3QWQWrpnkHW4TS-LA", + "name": "The Navy Yard", + "address": "4747 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8931518, + "longitude": -75.1745567, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "-vB-ZzO1wuPaNhUExK56qQ", + "name": "Extra Space Storage", + "address": "2300 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939424, + "longitude": -75.1819831, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "WJkoT-Q9yr__7YcJLHa_RQ", + "name": "Cityspace", + "address": "2200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507727, + "longitude": -75.1775625, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Real Estate Agents", + "hours": null + }, + { + "business_id": "5dMR5LumXTsqXenuQ_GTIw", + "name": "Sleepy's", + "address": "1422 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509873, + "longitude": -75.1651228, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Mattresses, Home & Garden, Home Decor, Furniture Stores, Home Services, Shades & Blinds", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "BsR5RIMJB5P9f0-SDMZHYg", + "name": "Burger Tank", + "address": "1225-1299 W Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9828233, + "longitude": -75.1539435, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Burgers, Restaurants, Food, Food Trucks", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "11:0-19:0" + } + }, + { + "business_id": "mvtSgYoGhAG9HTz-PF8fzQ", + "name": "Towne & Country Pest Control", + "address": "813 Greenwich St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930175, + "longitude": -75.158817, + "stars": 5.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pest Control", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "28W1WtQCD5X9GxR6A7q8gA", + "name": "Beijing Chinese Restaurant", + "address": "3200 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.079859, + "longitude": -74.993755, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-21:45", + "Tuesday": "11:0-21:45", + "Wednesday": "11:0-21:45", + "Thursday": "10:0-21:45", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "Vk9oru45NVYBSO9yW82TZQ", + "name": "Velo Car Wash", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062807, + "longitude": -75.2352982, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Pj3hJfjgMYCkbfHroNc8aA", + "name": "Mastertech Environmental", + "address": "1532 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302937, + "longitude": -75.1631274, + "stars": 5.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Junk Removal & Hauling, Air Duct Cleaning, Damage Restoration, Home Cleaning, Environmental Testing, Home Inspectors, Environmental Abatement, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "UYk0-_vE6GheSGKJlRBt4w", + "name": "Pisticci Pizza", + "address": "10849 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1108991567, + "longitude": -75.0243157893, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "oHR6VtJaFg2rBSFvoEWqrg", + "name": "Falafel Hummus & Juice Bar", + "address": "402 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9700114, + "longitude": -75.1301781, + "stars": 4.0, + "review_count": 118, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "HasTV": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'" + }, + "categories": "Food, Falafel, Mediterranean, Juice Bars & Smoothies, Restaurants, Vegetarian, Grocery", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "_OgwyI_0mGs620_ZfKgzbg", + "name": "Tierra Colombiana Restaurant", + "address": "4535 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0205736, + "longitude": -75.1337987, + "stars": 4.0, + "review_count": 402, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "False" + }, + "categories": "Latin American, American (New), Caribbean, Dance Clubs, Bars, Restaurants, Cuban, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "eZMqURgJZwhwlEb5rVNG8g", + "name": "Kink Shoppe", + "address": "126 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496414, + "longitude": -75.1432736, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Adult Education, Education, Adult", + "hours": { + "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" + } + }, + { + "business_id": "YTQGRkfsuejgq8zRWY4-oQ", + "name": "Budget Rent a Car", + "address": "30 Street Station", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955811, + "longitude": -75.181977, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": null + }, + { + "business_id": "6g_GudMbZB_OTJLtQ3Fc9Q", + "name": "Keystone Sewing Machine Company, Inc.", + "address": "833 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9637739, + "longitude": -75.1404232, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Home & Garden, Shopping, Appliances", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "MzFhaFNbE03zF84BPkN7yQ", + "name": "Sang Kee Noodle House", + "address": "3549 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548759225, + "longitude": -75.1939325212, + "stars": 3.0, + "review_count": 417, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Ethnic Food, Noodles, Food, Dim Sum, Specialty Food, Chinese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "9PCiyXCG25bOycCR7nXIDw", + "name": "Santucci's Original Square Pizza", + "address": "655 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96531, + "longitude": -75.16039, + "stars": 3.0, + "review_count": 162, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BikeParking": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Italian, Bars, Nightlife, Pizza, Breakfast & Brunch, Restaurants", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "Z1ejnGgj_TAg0qUSSMEMQQ", + "name": "City Plumbing", + "address": "3383 Miller St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9887671, + "longitude": -75.1004367, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "pBikZbHYBCDN-ikjc9n90g", + "name": "Rittenhouse Sports Specialties", + "address": "1717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951793, + "longitude": -75.169394, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sporting Goods, Shopping, Men's Clothing, Shoe Stores, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "gbw5wqRVjeyCEExrM0RPmA", + "name": "Monde Market", + "address": "100 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520342258, + "longitude": -75.1756320413, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "u'beer_and_wine'", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Beer, Wine & Spirits, Food, Delis, Convenience Stores, Restaurants", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "8TcktDUHGOQntArFkb9TXg", + "name": "John A. Tallarida Glass & Mirror", + "address": "2124 South 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9223874, + "longitude": -75.1616085, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Glass & Mirrors, Home Services", + "hours": null + }, + { + "business_id": "WClMLXrJbxgkKbqFuPHcWA", + "name": "Kenneth D'Ortone, DPM", + "address": "2429 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9702155044, + "longitude": -75.1775487881, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Doctors, Sports Medicine, Health & Medical, Podiatrists", + "hours": { + "Monday": "7:30-13:0", + "Tuesday": "11:0-18:0", + "Wednesday": "7:0-12:0", + "Thursday": "9:0-12:0", + "Friday": "7:0-11:0" + } + }, + { + "business_id": "WTWhKHqkK_uwwSIFJK392g", + "name": "The Latham Hotel Philadelphia", + "address": "135 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500916, + "longitude": -75.1689513, + "stars": 4.0, + "review_count": 93, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Hotels & Travel, Beer, Wine & Spirits, Hotels, Food", + "hours": null + }, + { + "business_id": "sTpVyQuTsNtegVGo4Mvw3g", + "name": "Pizza Point", + "address": "400 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0205811, + "longitude": -75.1181537, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Caters": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Chicken Wings, Restaurants, Cheesesteaks, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "MdsVuBBATS0-TZhPAdzMHA", + "name": "Neli's Deli", + "address": "15000 Endicott St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1201684, + "longitude": -74.9952794, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Delis, Restaurants", + "hours": null + }, + { + "business_id": "BH9mTxgmNCdzoeTDGwcMJA", + "name": "Scotty's Bar", + "address": "1420 Ellsworth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.936831, + "longitude": -75.168614, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, American (Traditional), Bars, Restaurants", + "hours": null + }, + { + "business_id": "ngg445E-3otfqSqznafmxQ", + "name": "Crack Crab", + "address": "2461 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0801467016, + "longitude": -75.0258657787, + "stars": 4.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "Corkage": "False", + "BYOB": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Japanese, Teppanyaki, Seafood, Asian Fusion, Restaurants, Cajun/Creole", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "MWiVkwVSqXFDu-P9t_Uhvg", + "name": "Spruce Hill Cleaners", + "address": "401 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9515824, + "longitude": -75.2122422, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sewing & Alterations, Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "2T2TkybEBnJF5wuBc8U1Tw", + "name": "215 Pet Care", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pet Boarding, Pets, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "Cvd57Nek1j5Qm-ZJn2DSVw", + "name": "Karina's", + "address": "617 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940886, + "longitude": -75.1474379, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Spanish, Italian, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "q_qyyit3Ffz0spmmH28u9w", + "name": "myDoc Urgent Care", + "address": "1008 Arch St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534173, + "longitude": -75.1568482, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Urgent Care, Emergency Rooms, Doctors, Health & Medical, Diagnostic Services, Laboratory Testing", + "hours": { + "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": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "1vPcNHJZx597rKQKbiPaAQ", + "name": "U-Haul Moving & Storage of Fairhill", + "address": "747 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 40.0010631, + "longitude": -75.1433462, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Truck Rental, Self Storage, Movers, Home Services, Local Services, Propane", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "5Yuy8Ygct5QpoMLLM5isMg", + "name": "Bridge Cafe", + "address": "3641 Locust Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952606633, + "longitude": -75.198526374, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'" + }, + "categories": "Cafes, Food, Restaurants", + "hours": null + }, + { + "business_id": "f6_NdhJ5hTopo3r-tflgfg", + "name": "Drexel University - Center City Hahnemann Campus Bookstore", + "address": "1505 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9567079, + "longitude": -75.1648054, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video, Bookstores", + "hours": null + }, + { + "business_id": "pn9hOl3QxvBCQWt0Sh1rrQ", + "name": "Artisserie Chocolate Cafe", + "address": "Rittenhouse Square, 31 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521366, + "longitude": -75.170218, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Desserts", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "VtQTRhL1KMJASyZrs9jQzw", + "name": "Natural Nail", + "address": "497 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0453508, + "longitude": -75.2327512, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "10:0-17:0" + } + }, + { + "business_id": "5TZhLeZKfuSqrz3rnVIUxg", + "name": "Maison 208", + "address": "208 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484621003, + "longitude": -75.1625259966, + "stars": 3.5, + "review_count": 184, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True", + "GoodForDancing": "False", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': True, 'classy': True, 'casual': False}", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Nightlife, French, American (New), Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "ACeq5Ac0QzhD7hLVTqvPZg", + "name": "Enterprise Exterminating", + "address": "4943 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0253875, + "longitude": -75.1672495, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "7NgaNtZq3yMhH-7PZ_rrMQ", + "name": "Variedades Veracruzana", + "address": "920 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9363552, + "longitude": -75.159258, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "tYJBFNJckCFiflhRLJnLjw", + "name": "Old City Hall", + "address": "33-99 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949042, + "longitude": -75.149198, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "La1QttPPJr0CjPgJvKE1Ww", + "name": "Henry on the Park Apartment Homes", + "address": "7901 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0581748252, + "longitude": -75.2292691, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "D29nnEUAZgPPM9PF1h_0JA", + "name": "Photo License Center", + "address": "919 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0451771, + "longitude": -75.0866428, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Departments of Motor Vehicles", + "hours": null + }, + { + "business_id": "OsgXjwxWuO6BKz4Lkdv1uQ", + "name": "Hibachi Grill & Supreme Buffet", + "address": "2051 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0506428, + "longitude": -75.0650664, + "stars": 2.5, + "review_count": 97, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, American (New), Buffets, Asian Fusion", + "hours": { + "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" + } + }, + { + "business_id": "MQvV1QE8Rc4fMNMZsdSIhA", + "name": "Dairy Land", + "address": "4409 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261935, + "longitude": -75.2249475, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "z0V0wZ4Nebah9WFHFGXrHA", + "name": "Silver Legends", + "address": "2008 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503383, + "longitude": -75.1743515, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Fashion, Shopping, Jewelry", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "XjccdII27EzaSkmGMUtOLA", + "name": "Tony's Restaurant", + "address": "17 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952942, + "longitude": -75.175146, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Food, Restaurants, Chicken Wings", + "hours": { + "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:30-14:30" + } + }, + { + "business_id": "Xxz8IhhHqrgwrty7ww4jDQ", + "name": "Raw Cafe", + "address": "1818 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95137, + "longitude": -75.171244, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, Japanese", + "hours": { + "Monday": "11:30-15:30", + "Tuesday": "11:30-15:30", + "Wednesday": "11:30-15:30", + "Thursday": "11:30-15:30", + "Friday": "11:30-15:30", + "Saturday": "11:30-15:30" + } + }, + { + "business_id": "B5-siB1O9FV2qELh8agkRA", + "name": "Liberty Cab", + "address": "842 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936543, + "longitude": -75.147146, + "stars": 2.0, + "review_count": 48, + "is_open": 0, + "attributes": null, + "categories": "Car Rental, Taxis, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "NAfITNb2HzObDVktNs3DmA", + "name": "Kay Kay's", + "address": "1850 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9216486848, + "longitude": -75.1783660455, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Pizza, Cupcakes, Food, Cafes, Restaurants, Bakeries, Custom Cakes", + "hours": { + "Monday": "8:30-15:0", + "Tuesday": "8:30-15:0", + "Wednesday": "8:30-15:0", + "Thursday": "8:30-15:0", + "Friday": "8:30-15:0", + "Saturday": "8:30-15:0", + "Sunday": "8:30-15:0" + } + }, + { + "business_id": "IkY2ticzHEn4QFn8hQLSWg", + "name": "Geno's Steaks", + "address": "1219 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933836785, + "longitude": -75.1588137524, + "stars": 2.5, + "review_count": 3401, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'none'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Cheesesteaks, Steakhouses, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "lbxpiyxwEKG2h-rQ0tKZKA", + "name": "Preferred Automotive Specialists", + "address": "6300 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.044929, + "longitude": -75.0890836, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Repair, Commercial Truck Repair, Oil Change Stations", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "hO3VKtvRYQgepQqPX9s0xg", + "name": "Thrifty Car Rental", + "address": "7500 Holstein Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.878246, + "longitude": -75.24591, + "stars": 1.5, + "review_count": 210, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Car Rental, Truck Rental, Parking, Hotels & Travel", + "hours": null + }, + { + "business_id": "5qVt5XufPXTztxneUzUriw", + "name": "Tavern on Ridge", + "address": "6080 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0333042486, + "longitude": -75.2151725674, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': True, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'full_bar'" + }, + "categories": "Pubs, American (New), Restaurants, Nightlife, Bars", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "BhkuEhNPXGJV4jpJqO2cuA", + "name": "Beautiful Image Dominican", + "address": "6705 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9237974, + "longitude": -75.2372423, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-14:30" + } + }, + { + "business_id": "2l2znqydic45GQfgCblQLg", + "name": "HotelBar", + "address": "301 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948802, + "longitude": -75.146103, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Bars, Restaurants, Nightlife, American (Traditional)", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "BnX1xUs3ebepysPmKDFChQ", + "name": "Checkers", + "address": "8001 Roosevelt Blvd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0562998, + "longitude": -75.0453189, + "stars": 2.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTableService": "False", + "DriveThru": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-4:0", + "Friday": "10:0-5:0", + "Saturday": "10:0-5:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "2lzcB7p5YlBimh4vfr6Fpw", + "name": "Chaucer's Tabard Inn", + "address": "1946 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9456566, + "longitude": -75.1747555, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BYOBCorkage": "'no'" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "NenblWjnfr4X0M_zKhVxOQ", + "name": "Modell's Sporting Goods", + "address": "15 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9220417, + "longitude": -75.1448242, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Sporting Goods, Shopping", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "HHIyL68LhYkX4RDu8rLNZg", + "name": "Shawe's Paws", + "address": "1222 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9364014, + "longitude": -75.1770874, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pets, Pet Sitting", + "hours": null + }, + { + "business_id": "jztTAvxtscotr6UvBqNQkg", + "name": "Julian's Soul Food", + "address": "1320 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0386066, + "longitude": -75.14335, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "False" + }, + "categories": "Soul Food, Restaurants, Diners, Seafood", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "wie4Jr_xNJ220AXUfB6z0g", + "name": "U-Pack Moving", + "address": "4000 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.99314365, + "longitude": -75.0828618843, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "5BCGpD7VzyhqyMH6TND3sw", + "name": "Stacy's Pizza", + "address": "7856 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9801719, + "longitude": -75.2692932, + "stars": 2.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Chicken Wings, Seafood, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "WNFxt2TyMDEuNNNZ9Z9zRQ", + "name": "Lowe's Home Improvement", + "address": "2106 S Christopher Columbus Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9197958921, + "longitude": -75.1431640854, + "stars": 2.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BikeParking": "True" + }, + "categories": "Hardware Stores, Home Services, Home & Garden, Nurseries & Gardening, Home Decor, Appliances, Building Supplies, Shopping", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "Q_pHfuSpVEIVfjJLUSTu3g", + "name": "Faragalli's Bakery", + "address": "1400 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9325892, + "longitude": -75.1659613, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Food, Restaurants", + "hours": { + "Tuesday": "10:0-15:30", + "Wednesday": "10:0-15:30", + "Thursday": "10:0-15:30", + "Friday": "10:0-15:30", + "Saturday": "7:0-15:30" + } + }, + { + "business_id": "Oh02ccaZ1u9nymw8PZUUaQ", + "name": "Brother's Pizza House II", + "address": "4948 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0265269, + "longitude": -75.1218358, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "luNHLUH6ybQS19VO0s0ZYA", + "name": "Meineke Car Care Center", + "address": "9909 Northeast Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1004676867, + "longitude": -75.028251416, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Tires, Auto Repair, Automotive, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "_5j1jqZfayk8QiOdpclF1Q", + "name": "Bravo's Pizza Seafood House", + "address": "5734 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.03851, + "longitude": -75.1249, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Seafood, Pizza", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-23:30" + } + }, + { + "business_id": "F7pG70kxLYt_HR6OnylgMQ", + "name": "Nunez Grocery", + "address": "1544 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9402395, + "longitude": -75.169471, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "3PK1vJLwNl2ZcnfmsA-ypQ", + "name": "Planet Fitness", + "address": "1575 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9795824, + "longitude": -75.2248884, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Gyms, Fitness & Instruction, Tanning, Active Life, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "qtg5d6UmDVFeUw5ZKVBl4Q", + "name": "Coffee House Too", + "address": "2514 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9767276, + "longitude": -75.1237185, + "stars": 4.5, + "review_count": 246, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "DriveThru": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BYOB": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "DogsAllowed": "True", + "HappyHour": "False" + }, + "categories": "Food, Coffee & Tea, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "TUCm1lCkh-usRYRl3U0S8w", + "name": "Le Mandingue African Restaurant", + "address": "6620 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9239698, + "longitude": -75.2361713, + "stars": 3.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "OutdoorSeating": "False", + "WiFi": "u'free'" + }, + "categories": "African, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "JbVtIpb0iKnSzlPT83KMOA", + "name": "Liberty Choice", + "address": "1939 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9796255603, + "longitude": -75.1333117113, + "stars": 4.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "RestaurantsAttire": "'casual'" + }, + "categories": "Mediterranean, Specialty Food, Pizza, Food, Convenience Stores, Falafel, Restaurants, Ethnic Food", + "hours": { + "Monday": "7:0-23:45", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-23:45", + "Friday": "7:0-23:45", + "Saturday": "7:0-23:45", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "_fCpxyDgYNULXAUEbLCDHQ", + "name": "Ultimo Coffee Bar", + "address": "1900 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9269992862, + "longitude": -75.1709841544, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "Caters": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "'free'" + }, + "categories": "Nightlife, Coffee & Tea, Food, Bars, Beer Bar", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "KMBkUpq_7uGF20EmXQS1bQ", + "name": "The Galley Cafe", + "address": "1200 Constitution Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8911494, + "longitude": -75.1724592, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cafes, Coffee & Tea, Food, Specialty Food, Health Markets, Restaurants, Juice Bars & Smoothies", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:30", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30" + } + }, + { + "business_id": "vEeUKQu1R6TgMJb9preNGw", + "name": "Logan Construction", + "address": "1330 E Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9734119, + "longitude": -75.128485, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Windows Installation, Roofing, Electricians, Drywall Installation & Repair, Plumbing, Painters, Carpenters, Carpet Installation, Shopping, Home & Garden, Contractors, Kitchen & Bath, Cabinetry, Damage Restoration", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "799eRxVni0-aZ_W628moDQ", + "name": "Coyle's Cafe", + "address": "6080 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.033236, + "longitude": -75.215314, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Nightlife, Bars, Dive Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "RfT7aELs78xk6GhXKhyGnQ", + "name": "Green Farm", + "address": "10690 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.109900911, + "longitude": -75.0252331048, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Farmers Market, Food, Local Flavor", + "hours": null + }, + { + "business_id": "VQaIkoE4CslcvNC-4qxLiA", + "name": "Sunrise Breakfast", + "address": "1916 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0661399, + "longitude": -75.1587885, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "HasTV": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "gy0NuW7nzIuZNq3lLLlgzA", + "name": "Serafina Philadelphia", + "address": "130 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508490197, + "longitude": -75.1706499186, + "stars": 2.5, + "review_count": 292, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "2FFixzxLHcG3BspXQeNcXg", + "name": "Prove It!", + "address": "340 N 12th St, Ste 309, The Wolf Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9589626, + "longitude": -75.1585452, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Business Consulting, Professional Services", + "hours": null + }, + { + "business_id": "Vw2pD0OUL2AMHL_t_D_U6A", + "name": "Enigma Medi Spa & Laser Center", + "address": "10767 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1091247, + "longitude": -75.0249672, + "stars": 3.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Day Spas, Skin Care, Health & Medical, Medical Spas, Laser Hair Removal, Beauty & Spas, Hair Removal", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "oaieYe0A68uNiN_HTpwWJg", + "name": "Mr Hook Fish & Chicken", + "address": "6000 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9286791, + "longitude": -75.2282141, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": null + }, + { + "business_id": "hQY2yKi9OUGLgVApsK4h1Q", + "name": "Cacia's Bakery", + "address": "1526 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9209373, + "longitude": -75.1731796, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants, Bakeries, Italian, Food", + "hours": { + "Monday": "6:0-18:30", + "Tuesday": "6:0-18:30", + "Wednesday": "6:0-18:30", + "Thursday": "6:0-18:30", + "Friday": "6:0-19:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-16:0" + } + }, + { + "business_id": "gVWf1FBV59G8ltzQ0Nmchw", + "name": "Lennie's Hoagies", + "address": "6141 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0348478, + "longitude": -75.2163983, + "stars": 4.0, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:30", + "Saturday": "9:0-16:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "DXNKGOCVmFP5iU8owhK2Fw", + "name": "Nigro's Auto Body", + "address": "939 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368308, + "longitude": -75.1594985, + "stars": 4.5, + "review_count": 133, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Auto Glass Services, Body Shops, Auto Repair, Auto Detailing, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "yzmfVvTu7_zxcB9vBv7dDg", + "name": "GSpa", + "address": "817 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634533, + "longitude": -75.140699, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Day Spas, Nail Salons, Skin Care, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "oqoQ9fD90ORIUGBWqSHngA", + "name": "East Falls Nailery", + "address": "4219 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0092306, + "longitude": -75.1943436, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Nail Technicians, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "JFKaix06XWdtt7cvSeWUZA", + "name": "No Ka Oi Tiki Tattoo", + "address": "610 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941316, + "longitude": -75.1493506, + "stars": 4.5, + "review_count": 243, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Piercing, Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "2J_t4nfdQTSCqxrFCJxoig", + "name": "Verdi's Pizza & Grill", + "address": "2151 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9248995, + "longitude": -75.1828723, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "None" + }, + "categories": "Diners, Steakhouses, Restaurants, Food, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "0kUdO-fSYai9pVaRFrFCeQ", + "name": "Bee's Flowers Art & Crafts", + "address": "919 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555909, + "longitude": -75.1550169, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Shopping, Flowers & Gifts", + "hours": null + }, + { + "business_id": "0z6wOy39zBALHmj-aFxB7g", + "name": "Andale Andale", + "address": "3632 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9595568, + "longitude": -75.1950971, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "IWqQjclp1fxK3vuqs5nNzA", + "name": "Bread Top House", + "address": "1041 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9556558545, + "longitude": -75.1573111567, + "stars": 4.5, + "review_count": 152, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "-k1iNvlyQZkZ14Hcqzlk4Q", + "name": "The Pharmacy", + "address": "1300 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9348882, + "longitude": -75.1742147, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "GoodForKids": "False", + "HasTV": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Shopping, Coffee & Tea, Food, Restaurants, Art Galleries, Cafes, Arts & Entertainment, Breakfast & Brunch", + "hours": { + "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": "11:0-15:0" + } + }, + { + "business_id": "m82r1MXvzm7dI0DF0kWURA", + "name": "PrimoHoagies", + "address": "1501 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9759849699, + "longitude": -75.1267718478, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "True", + "RestaurantsTableService": "False" + }, + "categories": "Food, Grocery, Sandwiches, Italian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "aW2o7CknoGE-PGQlky8LiQ", + "name": "The Marvel Experience", + "address": "1 Lincoln Financial Field Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.903074, + "longitude": -75.1665428, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Amusement Parks, Active Life, Arts & Entertainment, Performing Arts, Arcades", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "f1oDIZxQ7V44PvzPCQ-tEQ", + "name": "The Union Tap", + "address": "2711 Comly Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.104417, + "longitude": -75.0004897706, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Smoking": "u'outdoor'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BYOB": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}", + "Corkage": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pubs, Nightlife, Cocktail Bars, Beer Bar, Sports Bars, Gastropubs, Restaurants, Sandwiches, Bars", + "hours": { + "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" + } + }, + { + "business_id": "lxxeRC2IMMSD5tFWYBymtg", + "name": "BEL Jewelers", + "address": "10101 Verree Rd, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.105194, + "longitude": -75.0320451, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Jewelry Repair, Gold Buyers, Watches, Jewelry, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-17:30", + "Sunday": "11:0-16:30" + } + }, + { + "business_id": "3jpDBv6A6cc58BBGMcXTzQ", + "name": "lawncrest nails", + "address": "6019 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0453184, + "longitude": -75.1002338, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Technicians, Eyebrow Services, Beauty & Spas, Nail Salons, Eyelash Service", + "hours": null + }, + { + "business_id": "tEUKyuUQ7a5HujyXri8Nkg", + "name": "Swiftlessons", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.12, + "longitude": -75.01, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Arts & Entertainment, Shopping, Performing Arts, Adult Education, Recording & Rehearsal Studios, Musical Instruments & Teachers, Local Services, Education", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "jtdnrAuOOdS-QJ16k1itHQ", + "name": "Fox Chase Family Eye Care", + "address": "7834 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0725481, + "longitude": -75.0847266, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Health & Medical, Optometrists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "12:0-20:0", + "Thursday": "9:0-12:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "fsBDLKTdOQfI7s3MFys_5w", + "name": "Salon ShawnKrys", + "address": "1517 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.972087, + "longitude": -75.1617661, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Hair Removal, Blow Dry/Out Services, Hair Salons", + "hours": { + "Tuesday": "9:0-13:0", + "Wednesday": "9:0-13:0", + "Thursday": "9:0-13:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "uOYZJEcP9DyH2LI04CL6cw", + "name": "Bridals By Danielle", + "address": "203 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485762, + "longitude": -75.1619236, + "stars": 3.5, + "review_count": 62, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Bridal, Formal Wear, Shopping, Fashion, Women's Clothing", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "3cLnczhB6aafUPnhOyEN0A", + "name": "SerenaFit", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Gyms, Fitness & Instruction, Professional Services, Life Coach, Trainers, Boot Camps, Active Life", + "hours": { + "Monday": "9:0-13:0", + "Tuesday": "6:0-10:45", + "Thursday": "6:0-10:45", + "Friday": "10:0-13:30" + } + }, + { + "business_id": "QkWOGeCYqTBUN8UEduOjmw", + "name": "Fireball Printing", + "address": "2644-48 Coral St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9867361, + "longitude": -75.1234697, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Printing Services, Bookbinding, Graphic Design, Signmaking, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "sEf8VsIbhGwSnKte1IBm-Q", + "name": "Cafรฉ Estelle", + "address": "444 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9591384, + "longitude": -75.145391, + "stars": 4.0, + "review_count": 205, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "Caters": "False" + }, + "categories": "American (New), Breakfast & Brunch, Sandwiches, Restaurants", + "hours": { + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "98F_Qk3jCBLeuul4LrbCgQ", + "name": "Bundy Typewriter & Computer", + "address": "1809 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520557, + "longitude": -75.1706581, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "IT Services & Computer Repair, Local Services, Shopping, Computers, Office Equipment", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "10:30-16:30" + } + }, + { + "business_id": "VVlPhHtkwEA6zjC4vABQPQ", + "name": "CGFNS International", + "address": "3600 Market St, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95581, + "longitude": -75.1945728, + "stars": 1.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Community Service/Non-Profit, Local Services, Professional Services", + "hours": { + "Monday": "9:30-15:0", + "Tuesday": "9:30-15:0", + "Wednesday": "9:30-15:0", + "Thursday": "9:30-15:0", + "Friday": "9:30-15:0" + } + }, + { + "business_id": "ZI8RohniCgda_lLBemR5gA", + "name": "Kennedy Food Garden", + "address": "1901 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547003, + "longitude": -75.1718208, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Delis, Food, Grocery, Restaurants", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "V2yL1kYLixhHtHtuAcnm6A", + "name": "Ryan Offer, MD", + "address": "255 S 17th St, Fl 9, Drexel OBGYN Associates", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Obstetricians & Gynecologists", + "hours": null + }, + { + "business_id": "0qcm4F3ejr-Q1B5M39rgUA", + "name": "AT&T Store", + "address": "2107B Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.050301, + "longitude": -75.0632593, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mobile Phones, Mobile Phone Accessories, Local Services, IT Services & Computer Repair, Telecommunications, Shopping, Electronics", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "xKHMrTJDB5IInNjnkl3mQg", + "name": "The Little Apple", + "address": "4361 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025801, + "longitude": -75.2239586, + "stars": 5.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Shopping, Gift Shops, Cards & Stationery, Home & Garden, Flowers & Gifts, Home Decor, Arts & Crafts, Jewelry", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "11:30-18:0", + "Sunday": "11:30-17:0" + } + }, + { + "business_id": "U_2SVhHWL3yp5SnV3yD6Hw", + "name": "Five Spot", + "address": "1 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496538, + "longitude": -75.1448315, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'dressy'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Dance Clubs, Music Venues, Lounges, Restaurants, Arts & Entertainment, Bars", + "hours": null + }, + { + "business_id": "AfiqPANTA_26yy3Y-RHIeg", + "name": "Pizza Hub", + "address": "221 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694787, + "longitude": -75.1332487, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "None", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "MOqxUxYiMXCdwhO6Oe-8Ow", + "name": "Separatist South Philly", + "address": "1646 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9289360744, + "longitude": -75.1650834829, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True" + }, + "categories": "Brewpubs, Food, Breweries", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "aouMSx4NBmdOS30QOYF4Ww", + "name": "Cafe Thanh Truc", + "address": "1037 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936085, + "longitude": -75.15667, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "7:0-16:30", + "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" + } + }, + { + "business_id": "DRrbFtfJLyl7d3r6_MaMZg", + "name": "Absolute Pop", + "address": "137 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494082, + "longitude": -75.1618172, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Art Galleries, Arts & Entertainment, Shopping", + "hours": null + }, + { + "business_id": "_QqLPONYQiUu3u7VsbYhQg", + "name": "Wadsworth Pizzeria", + "address": "1523 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0798783, + "longitude": -75.1735391, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "M_EpyAH1CZZVlhxfYBLOqg", + "name": "Nomad Pizza Company", + "address": "611 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418368, + "longitude": -75.153837, + "stars": 4.5, + "review_count": 566, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Pizza, Italian, Salad, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "gj-mUpQbqBTmZEglSRlvZw", + "name": "Halal Gyro King", + "address": "36th & Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956188, + "longitude": -75.1941485, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "NoiseLevel": "'very_loud'", + "WiFi": "u'no'", + "Alcohol": "'none'" + }, + "categories": "Street Vendors, Halal, Restaurants, Food, Food Stands", + "hours": null + }, + { + "business_id": "lYh0h3Oti06b0LV-dGaFJA", + "name": "Rosenfeld Andrew ,DMD", + "address": "7300 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.980061, + "longitude": -75.26763, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Cosmetic Dentists, Health & Medical, General Dentistry, Endodontists", + "hours": null + }, + { + "business_id": "zsdUQOWWOY8IKQPCmZtG3Q", + "name": "East Falls Glassworks", + "address": "3510 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0075084, + "longitude": -75.1852718, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gift Shops, Flowers & Gifts, Shopping, Art Classes, Arts & Crafts, Education, Art Galleries, Arts & Entertainment", + "hours": { + "Wednesday": "10:0-16:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "2jkzK3hbitfnff8iVJjmqw", + "name": "Root", + "address": "1033 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618784, + "longitude": -75.1556432, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "ryX7m8H7_nnF3C8gWWQEiQ", + "name": "World Wide Aquarium & Pets", + "address": "7043 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.044624, + "longitude": -75.229913, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Pets, Pet Stores, Local Fish Stores, Active Life, Pet Services, Aquariums, Reptile Shops, Pet Sitting", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "S23U0EGZLovtP3GomRDBrg", + "name": "Michael's Decorators Draperies & Upholstery", + "address": "2210 Frankford Ave, Ste 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9799698, + "longitude": -75.1293128, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Furniture Reupholstery, Local Services", + "hours": null + }, + { + "business_id": "J15SxNowo_p87Gq4LWQTNQ", + "name": "The Mattress Factory", + "address": "4929 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0265636, + "longitude": -75.0322589, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mattresses, Home & Garden, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "_bNC8MgB6KtHOyB4gXnwDg", + "name": "Border Springs Farm LAMB", + "address": "Reading Terminal Market, 51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531092, + "longitude": -75.159589, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Farmers Market, Meat Shops, Specialty Food, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "VH-ctR1v5d1sJy2Yk8yrjA", + "name": "Great Deal Deli", + "address": "7950 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0758304, + "longitude": -75.0851789, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Delis, Restaurants, Food, Caterers, Grocery, Mediterranean, Event Planning & Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "XHKo5ix8fn3gg-OmuunNsg", + "name": "Quick Stop Deli", + "address": "4832 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9535638, + "longitude": -75.219301, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "B5dF5x8Qj_YERMmFCgfn-w", + "name": "Blink Optical", + "address": "415 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419167, + "longitude": -75.1496752, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Fashion, Sunglasses, Eyewear & Opticians", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "ViO6ziYwKwdVTNrFZz0gDQ", + "name": "Follicles Hair Salon & Design Center", + "address": "8233 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741839, + "longitude": -75.2030814, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Massage, Hair Salons, Skin Care", + "hours": { + "Tuesday": "10:0-14:0", + "Wednesday": "11:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "Cmfs_i-FtaR6O1C07OEcOg", + "name": "Dock Street Brewery South", + "address": "2118 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391831963, + "longitude": -75.1792988554, + "stars": 3.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, American (Traditional), Restaurants, Breweries, Brewpubs, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "14:0-20:0", + "Friday": "15:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "72DaUkdcxowKsAMFcWxvhg", + "name": "Rising Sun Beauty Outlet", + "address": "501B Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0391044, + "longitude": -75.107742, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Extensions, Shopping, Wigs, Beauty & Spas, Cosmetics & Beauty Supply, Hair Salons, Jewelry", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "hG9v2-_ygQazAvthakGuIg", + "name": "Alyssa Garin, DMD", + "address": "1620 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9170358, + "longitude": -75.1753433, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Cosmetic Dentists, Health & Medical, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Thursday": "9:0-18:0" + } + }, + { + "business_id": "otm8R7rkCtCNM0g0TC55-Q", + "name": "The Gables Cafe", + "address": "4600 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9441938, + "longitude": -75.2097087, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "OutdoorSeating": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "Corkage": "False", + "HasTV": "False" + }, + "categories": "Food, Coffee & Tea, Restaurants, Italian, Desserts, Breakfast & Brunch, Sandwiches, Bakeries", + "hours": null + }, + { + "business_id": "oZxSL3PFX15Lzr8cjszmgQ", + "name": "AKA University City", + "address": "2929 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951936, + "longitude": -75.183911, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Real Estate, Apartments, Home Services, Venues & Event Spaces, Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "Rcq6pvbBnlQtM-wj4bF9Ug", + "name": "George's Lunchette", + "address": "6000 Tabor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.042773, + "longitude": -75.096731, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches, Delis", + "hours": null + }, + { + "business_id": "HQymRoSeLWncDt2vZrSW2w", + "name": "TownHome", + "address": "1616 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496553, + "longitude": -75.1684693, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Jewelry, Fashion, Home & Garden, Accessories", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "ZQc59L8dyfBi4vZqodBKGA", + "name": "Kokopelli Restaurant & Tequila Bar", + "address": "1904 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517967, + "longitude": -75.1722608, + "stars": 3.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Tapas/Small Plates, Event Planning & Services, Venues & Event Spaces, American (New)", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "HYNJFIp1x-8GjkxGcVetZg", + "name": "Hilltown Tavern", + "address": "326 Roxborough Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0280368007, + "longitude": -75.2158295149, + "stars": 4.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "CoatCheck": "False", + "HappyHour": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "False", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "Alcohol": "u'full_bar'", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Smoking": "u'outdoor'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "Caters": "False" + }, + "categories": "Bars, Dive Bars, Sports Bars, Beer, Wine & Spirits, Food, Restaurants, Irish Pub, Nightlife, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "12:0-19:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "RG0j0euUZJobcEBoHPhPJA", + "name": "Savoy Cleaners", + "address": "266 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94795631, + "longitude": -75.171342, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "YcpaOS-DMjhezJodA0rf-A", + "name": "Thoreau Restaurant", + "address": "1033 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961969, + "longitude": -75.155642, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Vegetarian", + "hours": null + }, + { + "business_id": "1UNJeHTsS7WS9RxRzHw06g", + "name": "Varga Bar", + "address": "941 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9462043942, + "longitude": -75.1577992928, + "stars": 3.5, + "review_count": 597, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "GoodForKids": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Bars, American (New), Gastropubs, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Nf-rUXQXT8EycSA_TkQsXg", + "name": "Harold Farber, MD", + "address": "9892 Bustleton Ave, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0977259, + "longitude": -75.031224, + "stars": 2.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dermatologists, Cosmetic Surgeons, Health & Medical, Doctors", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-13:0" + } + }, + { + "business_id": "6gdAMPGsK0D_3u8h3A8H2A", + "name": "The Warwick Hotel Rittenhouse Square", + "address": "220 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486999512, + "longitude": -75.1694030762, + "stars": 3.0, + "review_count": 350, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services, Caterers", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "Hgow38h-HeIeDYNnitMWGg", + "name": "Wing Stop", + "address": "1600 N Broad St, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.980514, + "longitude": -75.173123, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Chicken Wings, Restaurants", + "hours": null + }, + { + "business_id": "aKNrCfmR0bgdXzYcviL1ZA", + "name": "Burger King", + "address": "1521 Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9279295067, + "longitude": -75.145386681, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "fKiMbhYolNllUn7a9DVYKw", + "name": "Confident Parenting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Parenting Classes, Health & Medical, Sleep Specialists, Education, Specialty Schools", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "rAwVC-c9Ei_XQknEpYRYHQ", + "name": "Munchies", + "address": "250 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941277, + "longitude": -75.147389, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Tobacco Shops", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "aEbyw7vPTjR86TIKB4SiBw", + "name": "Matthew Bender Wedding", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Event Photography, Session Photography, Event Planning & Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "uz4JuT6ES7nsq1v_4_Ozwg", + "name": "Old Navy Outlet", + "address": "1207 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0846156, + "longitude": -74.9618837, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Children's Clothing, Shopping, Fashion, Men's Clothing, Women's Clothing", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "UtibXZzwJekiDzwys4I19A", + "name": "Naked Lunch", + "address": "34 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508908, + "longitude": -75.1587593, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "'beer_and_wine'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Organic Stores, Food, Vegan, Grocery, Juice Bars & Smoothies, Vegetarian, Salad, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VFI97zWd0bmO5uf-k-K5IQ", + "name": "Famous Daves", + "address": "1725 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518259, + "longitude": -75.169687, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Caterers, Barbeque, Event Planning & Services", + "hours": null + }, + { + "business_id": "Cmi007nvusvrE-ary4Xg_A", + "name": "Nicholas Cosmetic Dental Center", + "address": "1128 Walnut St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948663, + "longitude": -75.160427, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Cosmetic Dentists, General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "MJL8eYCOYhvYV1QPmgFa1w", + "name": "Raw Lab Spa", + "address": "264 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464568, + "longitude": -75.1580407, + "stars": 4.5, + "review_count": 132, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': True}", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Day Spas, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "Wpw-cUHTjQ65LV6e4bME5g", + "name": "Philly Food Factory", + "address": "1305 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9715909, + "longitude": -75.144495, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Comedy Clubs, Karaoke, Restaurants, Nightlife, Cafes, American (New), Burgers, Chicken Wings", + "hours": { + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30" + } + }, + { + "business_id": "qsAZNQ-6P4I9r7onkBZJ_g", + "name": "Percy Street Barbecue", + "address": "900 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9425847, + "longitude": -75.1570964, + "stars": 4.0, + "review_count": 794, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "WiFi": "u'free'" + }, + "categories": "Barbeque, Restaurants", + "hours": null + }, + { + "business_id": "pWs4GHia64vlaqZADDUXOA", + "name": "Philly Bride", + "address": "16 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497519, + "longitude": -75.1459986, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Bridal, Women's Clothing, Fashion", + "hours": { + "Tuesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "v7ylWX_eN1onfskDYmdQxQ", + "name": "T-Mobile", + "address": "6501 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0352572335, + "longitude": -75.0670605245, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Mobile Phones, Telecommunications, IT Services & Computer Repair, Electronics, Local Services, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0: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": "11:0-18:0" + } + }, + { + "business_id": "8_O6LXLyMgpq1g9CIwcW4w", + "name": "National Constitution Center", + "address": "525 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953893, + "longitude": -75.149068, + "stars": 4.0, + "review_count": 180, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "DogsAllowed": "False" + }, + "categories": "Museums, Hotels & Travel, Arts & Entertainment, Tours, Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "DKGZTo3sL5HTj1JnP3bxRQ", + "name": "Doggie Style", + "address": "604 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409599, + "longitude": -75.1458808, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": null, + "categories": "Pet Adoption, Pet Stores, Pet Groomers, Pets, Pet Services", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "vLo4nFhbaIq46-Sg01XOHQ", + "name": "The Phone Plugz", + "address": "7331 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0370208, + "longitude": -75.0393999, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mobile Phones, Electronics, Shopping, Local Services, Mobile Phone Repair, IT Services & Computer Repair, Mobile Phone Accessories, Electronics Repair, Watch Repair", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-19:0" + } + }, + { + "business_id": "_kaXQwnlsnfpUsKr3otCBg", + "name": "Nam Son Bakery", + "address": "1600 Carpenter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9392139, + "longitude": -75.1702777, + "stars": 4.5, + "review_count": 104, + "is_open": 0, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries, Vietnamese, Restaurants, Bubble Tea", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "uaR2XVsIJnrpPyMSLyhRQQ", + "name": "The Roof Doctor", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Decks & Railing, Roofing, Home Services, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "XSYI71iqX7P7erVM0i8F5Q", + "name": "McKenna's Pub", + "address": "153 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9220034, + "longitude": -75.1497437, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nightlife, Bars, Pubs", + "hours": null + }, + { + "business_id": "VFHtIupt28TC5IX5vK3siA", + "name": "Boutique Nail Cafe", + "address": "600 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426088, + "longitude": -75.1570554, + "stars": 4.0, + "review_count": 197, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WheelchairAccessible": "True" + }, + "categories": "Waxing, Hair Salons, Hair Removal, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-20:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "esz-9OfoHkL6gtMUMmHGiQ", + "name": "Blueprint LSAT Preparation", + "address": "3417 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950941, + "longitude": -75.1939165, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Tutoring Centers, Test Preparation, Educational Services, Education", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "8kvrq98-vEojtSETUsDamA", + "name": "Lale Gourmet Kebab", + "address": "2 Penn Center Concourse", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Mediterranean, Restaurants", + "hours": null + }, + { + "business_id": "fdNvkw1Z9L6TkLnfX2LtEg", + "name": "Pad Thai Restaurant", + "address": "604-606 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410176, + "longitude": -75.145797, + "stars": 3.5, + "review_count": 88, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Food, Thai", + "hours": { + "Monday": "16:0-22:30", + "Wednesday": "16:0-22:30", + "Thursday": "16:0-22:30", + "Friday": "16:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "pfNn4gfZXeH9pKuFjDvQ4w", + "name": "US Post Office", + "address": "900 N 19Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9713943, + "longitude": -75.1679905, + "stars": 1.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Post Offices, Shipping Centers, Public Services & Government, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "56p17O_bHVEPBh4m41JAsA", + "name": "Smak Parlour", + "address": "219 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950156, + "longitude": -75.1444331, + "stars": 4.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Women's Clothing, Shopping, Shoe Stores, Jewelry, Accessories", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "sfBx87qlgkHZZxMaPktiCg", + "name": "Cold Beer: Steaks, Hoagies, Seafood", + "address": "1501 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9361371, + "longitude": -75.1689972, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "Oe_zI9oIOerxvoJnZizh1A", + "name": "Bala Golf Club", + "address": "2200 Belmont Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.996938, + "longitude": -75.2246605, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Golf, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "3j08Cje2YWUuRxV60BiVFw", + "name": "Hatch & Coop", + "address": "122 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494667, + "longitude": -75.1605248, + "stars": 4.0, + "review_count": 108, + "is_open": 1, + "attributes": { + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "HasTV": "False", + "GoodForKids": "True", + "BYOB": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "Corkage": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Breakfast & Brunch, Chicken Shop, Restaurants, American (New)", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-2:0", + "Saturday": "8:0-2:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "NMqPm8hpKV5eXTap1kpsZA", + "name": "Gianfranco Pizza Rustica", + "address": "2124 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923765, + "longitude": -75.170178, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Caters": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Mtm17-DsIO6TH-eT14raCQ", + "name": "Old City Art and Framing", + "address": "10 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950524, + "longitude": -75.145811, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Framing, Arts & Crafts, Shopping, Art Galleries, Arts & Entertainment", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "vUkiYPpbkMXA99WneLSGkQ", + "name": "Banana Leaf", + "address": "1009 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537784576, + "longitude": -75.157045316, + "stars": 3.5, + "review_count": 706, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False" + }, + "categories": "Singaporean, Malaysian, Restaurants, Sushi Bars, Thai, Asian Fusion", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "8o9KxwimkPdmXX3oDc0wtQ", + "name": "Fairprice Movers", + "address": "2005 S Avondale St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9276333, + "longitude": -75.23511, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Packing Services, Movers, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "xGdwgy-DM98Tpy-S-GCegA", + "name": "El Sabor Catracho", + "address": "2201 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9215268, + "longitude": -75.1582889, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Honduran, Mexican, American (New), Restaurants", + "hours": { + "Monday": "10:0-22:30", + "Tuesday": "10:0-22:30", + "Wednesday": "10:0-22:30", + "Thursday": "10:0-22:30", + "Friday": "10:0-22:30", + "Saturday": "10:0-22:30", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "ZQlHbQTrDTTEZdWjf6nsNg", + "name": "Tony Luke's", + "address": "Citizens Bank Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9068506337, + "longitude": -75.1667226823, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Caters": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "ktMvtPI3TBkTOpSf1sTXWw", + "name": "Heffe", + "address": "1431 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9731157, + "longitude": -75.1339186, + "stars": 3.0, + "review_count": 229, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Tex-Mex, Italian, Food Stands, Latin American, Mexican", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-12:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Abju5IKLFj-E8bnEt9o3Gg", + "name": "Miscellanea Libri", + "address": "12th St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9539376, + "longitude": -75.159431, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": null + }, + { + "business_id": "Gf_kRGQ3nyv3gsY_dH3Vgg", + "name": "Philadelphia Hair Design", + "address": "1624 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9459212, + "longitude": -75.169268, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Blow Dry/Out Services, Hair Salons, Hair Extensions", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "bq0n3CQy1CkE_WUe76zQvg", + "name": "Shiao Lan Kung", + "address": "930 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552470769, + "longitude": -75.1554087019, + "stars": 3.5, + "review_count": 254, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Noodles, Seafood, Restaurants, Chinese", + "hours": { + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-3:0", + "Saturday": "15:0-3:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "fDuiDOqv4Ay6LulDTjXtdw", + "name": "Orange Tech Center", + "address": "428 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416281, + "longitude": -75.1502079, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "IT Services & Computer Repair, Mobile Phone Repair, Electronics Repair, Data Recovery, Local Services", + "hours": { + "Monday": "12:30-23:30", + "Tuesday": "12:30-23:30", + "Wednesday": "12:30-23:30", + "Thursday": "12:30-23:30", + "Friday": "12:30-23:30", + "Saturday": "12:30-23:30", + "Sunday": "12:30-23:30" + } + }, + { + "business_id": "rmISjUzhZidf5MlqwmOqvA", + "name": "Makeup By Emily Dimant", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Makeup Artists, Bridal", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "Vpoe32sBrrimg4Bs6xexcQ", + "name": "Reliable Floor Covering", + "address": "1600 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9297902, + "longitude": -75.1637349, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Carpeting", + "hours": null + }, + { + "business_id": "wCiDByT7h9zSFvWzBJwJog", + "name": "Philly Pretzel Factory", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95244, + "longitude": -75.157095, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Pretzels, Food, Bakeries, Restaurants, Hot Dogs", + "hours": null + }, + { + "business_id": "gY_2pwd9yKPcjpk0ls4swg", + "name": "McKenna's Bar", + "address": "7322 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0372312758, + "longitude": -75.0399633851, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "1", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'loud'", + "BikeParking": "True" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "svqHsPiOz2aFvgQxBciLXg", + "name": "Rum Bar", + "address": "2005 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950795, + "longitude": -75.17399, + "stars": 3.5, + "review_count": 174, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "Caters": "False", + "HappyHour": "True" + }, + "categories": "Bars, Caribbean, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "j6Jgqto7KvHjmeJiLo5fSg", + "name": "Philadelphia Management", + "address": "2100 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505003, + "longitude": -75.1760294, + "stars": 1.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": null + }, + { + "business_id": "Fu6fvUUeBsQtQLsXbynoBQ", + "name": "Jiffy Lube", + "address": "6722 Ridge Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0405981, + "longitude": -75.2251391, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Oil Change Stations, Automotive, Auto Repair, Windshield Installation & Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "2M3LwGZ2oIj_I1jeWkk6DA", + "name": "Bob's Hardwood Floor", + "address": "4249 K St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0122194, + "longitude": -75.1035566, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Flooring, Refinishing Services, Home Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "nFiobSfZqWmoA8LyuVK3vw", + "name": "The Lounge", + "address": "Four Seasons Hotel, 1 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9567043, + "longitude": -75.1697047, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Lounges, Food, Breakfast & Brunch, Bars, American (New), Nightlife", + "hours": { + "Monday": "15:0-1:0", + "Tuesday": "15:0-1:0", + "Wednesday": "15:0-1:0", + "Thursday": "15:0-1:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "e_PZdm94yiKVFIZidSD0Kw", + "name": "Pearle Vision", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516896759, + "longitude": -75.1549253652, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Eyewear & Opticians, Optometrists, Health & Medical, Shopping", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-18:30" + } + }, + { + "business_id": "6fVoflxwwJKhZCaauww77A", + "name": "Vault Ultra Lounge", + "address": "460 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959077, + "longitude": -75.1418801, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "True" + }, + "categories": "Dance Clubs, Nightlife", + "hours": null + }, + { + "business_id": "KeciMW8XlB8CY2OZfQKhFw", + "name": "Apetek Computers", + "address": "6263 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.033785, + "longitude": -75.071212, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "False" + }, + "categories": "Electronics Repair, Education, Mobile Phone Repair, Computers, Shopping, Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "yWXs_dc1xdrzWws2B_kRyg", + "name": "Airport Transportation and Car Service", + "address": "10 Avenue Of Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513242394, + "longitude": -75.163885206, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Airport Shuttles, Limos, Hotels & Travel, Transportation, Taxis", + "hours": { + "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" + } + }, + { + "business_id": "7e0dS2NYohTbDPbY8tq8Hg", + "name": "Allegiance Real Estate", + "address": "2220 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671020508, + "longitude": -75.1745834351, + "stars": 1.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Real Estate, Home Services", + "hours": null + }, + { + "business_id": "iIE1QV6JPA1yJ_hM_G725Q", + "name": "Lucia Lash", + "address": "1528 Walnut St, Ste 522", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494912, + "longitude": -75.1673521, + "stars": 4.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Permanent Makeup, Eyelash Service, Beauty & Spas, Eyebrow Services, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "dqvIsA9URHqQcHlR9qsIfw", + "name": "Golden Violins", + "address": "7801 Winston Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.069996, + "longitude": -75.197694, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "iUnM1rwJUWaDkRQvSdGxAw", + "name": "Ambrozy Accounting", + "address": "1500 Walnut St, Ste 800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492927, + "longitude": -75.1661668, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Tax Services, Professional Services, Investing, Accountants", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "irXywqvfXj9maLLOBQMYvg", + "name": "Manakeesh Cafe Bakery & Grill", + "address": "4420 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549844, + "longitude": -75.2115232, + "stars": 4.0, + "review_count": 646, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "Corkage": "False", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BYOB": "False" + }, + "categories": "Bakeries, Food, Mediterranean, Breakfast & Brunch, Middle Eastern, Restaurants, Lebanese, Coffee & Tea, Halal", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "14:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "F9tynmqLJmopf7AofTgLWw", + "name": "Pleasant Hill Park", + "address": "Linden Ave & Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0425577, + "longitude": -74.9909737, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "9Jhs4P1y0ZQ4Uv0sSPo7Cw", + "name": "Scratch Weddings", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9534064, + "longitude": -75.1697608, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, DJs", + "hours": null + }, + { + "business_id": "uCBEcUgXHrKH72fB8TwKAg", + "name": "Wawa", + "address": "150 S Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489252671, + "longitude": -75.151354596, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Food, Coffee & Tea, Restaurants, Sandwiches, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "MV4faISoqq267RdoeWWsEA", + "name": "Devon & Blakely", + "address": "110 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497034, + "longitude": -75.1589097, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "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': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, Sandwiches, Breakfast & Brunch, Salad", + "hours": { + "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" + } + }, + { + "business_id": "m7Eh9Ja-COnx0SpWLOEheg", + "name": "Kreationz By Hand Unisex Hair Studio", + "address": "706 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942093, + "longitude": -75.15423, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Salons, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "7:0-21:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "4neE9YMUprmQvsTzEvWoZA", + "name": "US Post Office", + "address": "2601 N 16Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.993125, + "longitude": -75.157682, + "stars": 1.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Post Offices, Public Services & Government, Local Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "hqGYH5oZirUFeM3uzL4VuQ", + "name": "Rowhome Coffee", + "address": "2536 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9476386, + "longitude": -75.1826387, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Food, Coffee & Tea, Restaurants", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "LG9ZXJlsedUyYR9SBuq-rg", + "name": "Alexander Ehrlich , MD", + "address": "1900 Rittenhouse Sq, Apt 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485491, + "longitude": -75.172824, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Dermatologists", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "gS2Ht0IxtI3_W48C8Cm3Dw", + "name": "Sunoco A plus", + "address": "801 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940551, + "longitude": -75.165775, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "awiWJQVgs-Obsd7lB-m01w", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "1940 S Christopher Col Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921861, + "longitude": -75.144135, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "Pxrs5aY7xORQKTzT-Z6nww", + "name": "Philly Electric Wheels", + "address": "7153 Sprague St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0638543, + "longitude": -75.1866036, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Bikes, Sporting Goods", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "oq_5iHOmMuJliQ2cEh2c7A", + "name": "Sunflower Creations", + "address": "3670 G St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0056198, + "longitude": -75.1137229, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Real Estate Services, Interior Design, Home Services, Home Staging", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "6R4McGGLgUbm1ChZCKis-A", + "name": "Krupa's Tavern", + "address": "2701 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9706725, + "longitude": -75.181354, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Bars, Dive Bars", + "hours": { + "Monday": "15:0-0:0", + "Tuesday": "15:0-0:0", + "Wednesday": "15:0-0:0", + "Thursday": "15:0-0:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "F7Z4T1VO9hlrnSdZU1L80A", + "name": "Old Navy", + "address": "1001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9519835, + "longitude": -75.1571648, + "stars": 2.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Men's Clothing, Shopping, Women's Clothing, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "tN6Mhhr_sDyk_xawdxnUyQ", + "name": "PHS Pop Up Garden - Viaduct Rail Park", + "address": "Hamilton 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960184, + "longitude": -75.154843, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Beer Gardens, Parks, Active Life, Nightlife, Community Service/Non-Profit", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Z42S0SAx2WJ43qD7hhvzsA", + "name": "Jess's Place Restaurant", + "address": "4583 Tacony St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0071915, + "longitude": -75.0782935, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "True", + "DogsAllowed": "False" + }, + "categories": "Latin American, Caribbean, Restaurants, Puerto Rican, Pizza", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0" + } + }, + { + "business_id": "hrroi6mOWjIZb0qaMMh0yg", + "name": "Dos Rosas Taqueria", + "address": "7 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505731, + "longitude": -75.1454109, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'" + }, + "categories": "Tacos, Restaurants, Mexican", + "hours": { + "Monday": "11:30-14:30", + "Tuesday": "17:30-21:30", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-21:30", + "Friday": "17:30-21:30", + "Saturday": "17:30-21:30" + } + }, + { + "business_id": "mQL9OWg0gVwVEWBIkRLa5Q", + "name": "Nangellini Gallery", + "address": "832 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423385, + "longitude": -75.1565563, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Crafts, Arts & Entertainment, Art Galleries, Shopping, Art Supplies", + "hours": { + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "akt1rURvNVAI9sfQfr-5lg", + "name": "Giovanni's Room", + "address": "345 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9451733, + "longitude": -75.1611946, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Bookstores, Thrift Stores, Shopping, Books, Mags, Music & Video", + "hours": { + "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-19:0" + } + }, + { + "business_id": "eQwNIQyZg9MP0Ute5q-1Ug", + "name": "Primrose School of Center City Philadelphia", + "address": "1635 Market St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532920406, + "longitude": -75.1680600643, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'paid'" + }, + "categories": "Local Services, Child Care & Day Care, Education, Preschools", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-18:0" + } + }, + { + "business_id": "luv3Y2AjoOhxYRY_u5tRJA", + "name": "The Couch Tomato Cafe", + "address": "102 Rector St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0247731, + "longitude": -75.2213162, + "stars": 4.0, + "review_count": 604, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False" + }, + "categories": "Italian, Restaurants, Sandwiches, Food Delivery Services, Salad, Food, Pizza, Gluten-Free", + "hours": { + "Monday": "0:0-0: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": "11:0-21:0" + } + }, + { + "business_id": "xqZEtPWPfaGQva5mW5ADBQ", + "name": "Dent Tekniks", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'" + }, + "categories": "Automotive, Auto Repair, Body Shops, Mobile Dent Repair, Auto Detailing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "NoqThxLAgdg8-Nk5QrBeqg", + "name": "Domenico's Formal Wear", + "address": "7153 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0356818, + "longitude": -75.0426239, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "P-QvMKqDoxjLaWW_yiy8YQ", + "name": "Supreme Auto Glass", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Auto Glass Services, Windshield Installation & Repair, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "4gvAsj8NRTla82aSBzGytw", + "name": "Steve's Prince of Steaks", + "address": "2711 Comly Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1039201046, + "longitude": -75.0019361079, + "stars": 3.5, + "review_count": 176, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Steakhouses, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "Zwyimxd54QZ_2cykFDJ_VA", + "name": "Passyunk Avenue Philly Bagels", + "address": "1742 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9278995, + "longitude": -75.1660183, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Bagels, Food, Sandwiches, Coffee & Tea, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "bZ2qzaxhcvanYFodvyzkCQ", + "name": "18th Street Apothecary", + "address": "113 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951281, + "longitude": -75.170337, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Drugstores, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "9inZjwjSunLvSyybt11GWA", + "name": "Slutsky Harold DMD", + "address": "7100 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0348899, + "longitude": -75.0450292, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, Orthodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "9:0-19:0", + "Wednesday": "8:0-18:20", + "Thursday": "9:0-19:30", + "Friday": "9:0-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "Pk8wDjFerE25edYymxRDPg", + "name": "Stenton Pizza", + "address": "7171 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0594832, + "longitude": -75.1647422, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "5UN1B7XqZohGuULLNlWL1A", + "name": "Paris Bistro and Jazz Cafe", + "address": "8235 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741872, + "longitude": -75.2030839, + "stars": 3.5, + "review_count": 274, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "GoodForDancing": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Caters": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bars, French, Restaurants, Jazz & Blues, Arts & Entertainment, Wine Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "_woUO4WVK1istX3jwBMyvg", + "name": "Breakfast Boutique Mount Airy", + "address": "6833 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0550327831, + "longitude": -75.1869688298, + "stars": 3.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': False, u'classy': None, u'upscale': False}", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:30-14:30", + "Tuesday": "7:30-14:30", + "Wednesday": "7:30-14:30", + "Thursday": "7:30-14:30", + "Friday": "7:30-16:0", + "Saturday": "7:30-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "Zo4JTq141zH5ggZqX7A7bA", + "name": "Dunkin' - Philadelphia", + "address": "7601 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9049046, + "longitude": -75.2383803, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Coffee & Tea, Food, Breakfast & Brunch, Donuts, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "FRprVZYNDk6AugNlWkh-Vw", + "name": "Lucas Pfaff - Fresh Places", + "address": "1619 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Commercial Real Estate, Real Estate Services, Real Estate, Real Estate Agents", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "mWUiqvz5aLi6dlP7bdkrKA", + "name": "Hire My Team", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599, + "longitude": -75.172695, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Marketing, Professional Services, Web Design, Digitizing Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "fN12ywQpLXQ93bpwe1N_Ww", + "name": "Pietro's Coal Oven Pizzeria", + "address": "1714 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497512, + "longitude": -75.1699969, + "stars": 3.5, + "review_count": 751, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Breakfast & Brunch, Italian, Restaurants, Pizza", + "hours": { + "Monday": "12:0-19:30", + "Tuesday": "12:0-19:30", + "Wednesday": "12:0-19:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-20:30", + "Saturday": "12:0-20:30", + "Sunday": "12:0-19:30" + } + }, + { + "business_id": "dJ8AAGs-Hodc3dC9YFj-uA", + "name": "PLCB Wine & Spirits Store", + "address": "1628 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539808294, + "longitude": -75.1681244373, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "pzI9Qj8T5ZSb-wkpe6f8Lw", + "name": "Salon Ba Si", + "address": "116 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513066, + "longitude": -75.1722449, + "stars": 4.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Izde7Mq_4bPFyx13AQ0U4Q", + "name": "Philadelphia Catering", + "address": "2019 S 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9274469349, + "longitude": -75.1891701, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "vGxsKbiWAYOpV-JixIggEQ", + "name": "257 South 16th Street", + "address": "257 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9475254, + "longitude": -75.1678355, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "EEWjIIs6N-34yaAXI7lHJQ", + "name": "Choy Wong Kitchen", + "address": "708 S 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9474855, + "longitude": -75.2229853, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Alcohol": "'none'", + "NoiseLevel": "'quiet'", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "ys5hVkJiGDLAVzyPbk_tTw", + "name": "Chops", + "address": "700 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9479162963, + "longitude": -75.1534261288, + "stars": 2.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Steakhouses", + "hours": null + }, + { + "business_id": "rjYVuidceTNQGUmjZ61KQg", + "name": "Mexico on the Square", + "address": "1511 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9459585, + "longitude": -75.1672081, + "stars": 3.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Mexican, Restaurants, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "wYiBubWapdyJnJTZhkzhQg", + "name": "Upstairs at Risque", + "address": "1700 S Columbus Blvd, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9253969, + "longitude": -75.144875, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": { + "Saturday": "20:30-2:0" + } + }, + { + "business_id": "nv6dIrBrVuJPi5dliXDw_A", + "name": "Joyce Custom Cleaners", + "address": "1306 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497573, + "longitude": -75.1624882, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Shoe Repair, Dry Cleaning, Laundry Services, Sewing & Alterations", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "11:30-16:0" + } + }, + { + "business_id": "oeyfCPVjK9dv8pgLMQIRZQ", + "name": "The Goddard School", + "address": "2201 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9474057811, + "longitude": -75.1783869, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Education, Child Care & Day Care, Local Services, Preschools", + "hours": { + "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" + } + }, + { + "business_id": "PJxSkbVbsYKhBqEnIq9K6w", + "name": "Kim's Cleaners", + "address": "414 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9462988, + "longitude": -75.1749899, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "ja6B6Da089mMFJVc6_3_aA", + "name": "Washington Square Pharmacy", + "address": "241 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.945908, + "longitude": -75.151309, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Health & Medical, Shopping, Drugstores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "tjV-B9myQd7L5ZznDxC3Wg", + "name": "House of Beauty", + "address": "1212 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500541, + "longitude": -75.1608768, + "stars": 2.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'no'" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping, Hair Extensions, Wigs, Perfume, Hair Salons", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "tcvNBC65Gsa4cH1_gyucpQ", + "name": "Noord", + "address": "1046 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92966, + "longitude": -75.163003, + "stars": 4.5, + "review_count": 396, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Scandinavian, Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "17:0-20:0" + } + }, + { + "business_id": "MMs3kznm5GqTlie0vTnYzg", + "name": "Antney's Grub", + "address": "2655 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9168348, + "longitude": -75.1701028491, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian, Sandwiches, American (New)", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-1:0", + "Saturday": "7:0-1:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "j_zbUBaNqsWLMoNNCEqMRA", + "name": "John Robert Powers", + "address": "1435 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94966, + "longitude": -75.165699, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Talent Agencies, Vocational & Technical School, Arts & Entertainment, Art Schools, Education, Specialty Schools, Professional Services", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "UPD4qX0t1lm7G86mrj889w", + "name": "Dim Sum & Noodle", + "address": "2000 Hamilton St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 4.0, + "review_count": 257, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "None", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "BikeParking": "True", + "BYOB": "True", + "DogsAllowed": "False", + "HappyHour": "False" + }, + "categories": "Dim Sum, Restaurants, Chinese, Noodles, Cantonese", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "CWXgDLJSN5ZMhrm6YjKXNg", + "name": "Love Run Half Marathon", + "address": "2600 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9659336, + "longitude": -75.1814091, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Sports Clubs, Active Life, Races & Competitions", + "hours": null + }, + { + "business_id": "x4RNE1fteTY75XJCr9phnQ", + "name": "Southeast Health Center", + "address": "800 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9357567, + "longitude": -75.1572287, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Medical Centers", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "xsjUtvTz3WLQSJDS8evySg", + "name": "ZoT", + "address": "122 S Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420063, + "longitude": -75.1447525, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, French, Belgian, Restaurants, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "eOEjkrby-5R2cdYqzXiBNQ", + "name": "Los Tacos", + "address": "5104 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0289935, + "longitude": -75.1324075, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'none'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "kG7VAFl67L0syjVhjYj5ZA", + "name": "Cherish Philly", + "address": "7060 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0582396, + "longitude": -75.1893803, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Breakfast & Brunch, Caribbean, Cafes", + "hours": null + }, + { + "business_id": "tIrKQRlAft3cytlm4khnKQ", + "name": "Taco Bell", + "address": "3032 North Broad St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.99957, + "longitude": -75.15348, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Tex-Mex, Mexican, Fast Food, Tacos", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-3:0", + "Saturday": "10:30-3:0", + "Sunday": "10:30-1:0" + } + }, + { + "business_id": "EsHiMZD4kttwnic4H9wN6A", + "name": "Jordan Brody", + "address": "223 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502621, + "longitude": -75.1445831, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "n3dudhBqW4HvsXmVzID_5w", + "name": "St. Christopher's Hospital for Children", + "address": "160 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0062031, + "longitude": -75.1250323, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "C_lyUPmRABHpE0K8C9TxFw", + "name": "Gennaro's Tomato Pie", + "address": "1429 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923454, + "longitude": -75.171167, + "stars": 4.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "GoodForKids": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants, Pizza, Salad", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "NDdd698xwCrCNAdaFhe-Dg", + "name": "Makkah Market", + "address": "4249 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9550514, + "longitude": -75.2084579, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Middle Eastern, Food, Halal, Specialty Food, Meat Shops, Grocery, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "KDG7FDWH-C224AsFmf6yjA", + "name": "Rite Aid", + "address": "730-32 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95076, + "longitude": -75.15335, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Convenience Stores, Food, Drugstores", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "WedpQ8jjdOE1Xa2FnbL7_g", + "name": "ToBox", + "address": "1822 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514517, + "longitude": -75.1713905, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Fashion, Shoe Stores, Shopping", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "nwq5cM5tYtQ7AnCnjVUhmg", + "name": "Saigon Noodle Bar", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741022929, + "longitude": -75.202862237, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Noodles, Vietnamese, Bubble Tea, Food", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "9SJ0UHzBsO_h93SJc42VMQ", + "name": "Millennium Nails", + "address": "2301 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95744, + "longitude": -75.1776579, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Skin Care", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "DCkboujFVLvFiAQ2qnBWig", + "name": "Howe Painting and Restoration", + "address": "903 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295062, + "longitude": -75.1603362, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Drywall Installation & Repair, Pressure Washers, Painters, Waterproofing, Contractors, Handyman, Carpenters, Damage Restoration", + "hours": { + "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" + } + }, + { + "business_id": "PLWD3U43KQaUThsHHbHRww", + "name": "Christopher Descano Photography", + "address": "133 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508935, + "longitude": -75.1736476, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Session Photography, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "e_DEJRat3uoUO1N6WXKHyw", + "name": "Kenneth Cole", + "address": "1422 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492543, + "longitude": -75.165772, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Shopping, Shoe Stores, Women's Clothing, Fashion", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "0YRnT6Ka8byQlp30-ylRMA", + "name": "Friendly Lounge", + "address": "1039 S Eighth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360788, + "longitude": -75.1567156, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Bars, Nightlife, Dive Bars, Lounges", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "q83AaVgSmbH8cvPDSi9rIg", + "name": "Stimmler G J & Sons", + "address": "3833 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0206759, + "longitude": -75.2111796, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Water Heater Installation/Repair, Heating & Air Conditioning/HVAC, Plumbing", + "hours": { + "Monday": "6:30-16:30", + "Tuesday": "6:30-16:30", + "Wednesday": "6:30-16:30", + "Thursday": "6:30-16:30", + "Friday": "6:30-15:30", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "5oA_6FVkModS02Yc3jkQiA", + "name": "Tip Top Pizza", + "address": "6627 Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.05494, + "longitude": -75.179682, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "Alcohol": "'none'", + "HasTV": "True", + "NoiseLevel": "'average'" + }, + "categories": "Restaurants, Pizza, Food", + "hours": null + }, + { + "business_id": "iAE-6OdEuKcl5iviLvZ9wg", + "name": "Fx Warehouse", + "address": "231 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9696145, + "longitude": -75.132932, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Costumes, Arts & Crafts, Holiday Decorations, Shopping, Local Services", + "hours": null + }, + { + "business_id": "WU9bLspOxUgypUypQiPtPQ", + "name": "Sugafoot Cafe", + "address": "2126 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0518887826, + "longitude": -75.1566190815, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "None", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Soul Food, Southern, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:30-16:30", + "Tuesday": "6:30-16:30", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "TfczlMPOJpsPun99HcKg5A", + "name": "Pat's Music Center", + "address": "7341 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037039, + "longitude": -75.040567, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Music & DVDs, Event Planning & Services, DJs, Books, Mags, Music & Video, Shopping, Musical Instruments & Teachers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "a_LO_j9Rb_HLbaLACqmSAA", + "name": "Trousseau Style", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Wedding Planning, Shopping, Bridal, Event Planning & Services, Personal Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "TxaIcT4koWVoMvyqZO11sQ", + "name": "Fairmount Behavioral Health", + "address": "561 Fairthorne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0434701, + "longitude": -75.2217431, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Medical Centers, Hospitals, Real Estate, Health & Medical, Home Services, Behavior Analysts, Apartments, Counseling & Mental Health, Psychiatrists, Addiction Medicine, Rehabilitation Center, Doctors, Psychologists", + "hours": { + "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" + } + }, + { + "business_id": "gZ-Fsyayz59rrc3x46hjFQ", + "name": "City Clipperz", + "address": "219 W Girard Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9698069, + "longitude": -75.1402489, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "PVT7rm1gRmUQG34anN-cew", + "name": "Donna Skerry, RN DC MA - The Healthy You", + "address": "7017 Calvert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0413015, + "longitude": -75.0591411, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Counseling & Mental Health, Nutritionists, Health & Medical, Chiropractors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "1:0-4:0" + } + }, + { + "business_id": "q4ttY_-OKTckonnTsPnyqA", + "name": "Paper Street Pub", + "address": "4630 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0301162, + "longitude": -75.2298874, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsDelivery": "None", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsTakeOut": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Nightlife, Bars, Pubs, Dive Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "yxLoc4VZMkD3AeoddRl8Ww", + "name": "HOSHI'S", + "address": "126 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949285, + "longitude": -75.159082, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "None" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "Vg-I8jrrNNiD7qzK7Br9eg", + "name": "Morris Animal Refuge", + "address": "1242 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9441562, + "longitude": -75.1627693, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Animal Shelters, Pet Stores, Pets", + "hours": null + }, + { + "business_id": "u89s24XEeeVzmicEvc3F5Q", + "name": "Sally Beauty Supply", + "address": "330 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9142937581, + "longitude": -75.153436425, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "CU0yiz9rIm6cBkdCGFwJiQ", + "name": "Waterfront Gourmet Cafe & Deli", + "address": "1414 S Penn Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515435656, + "longitude": -75.1650720835, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Cafes, Delis, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "vq01cN9AW0AoyZ9dyr-jbQ", + "name": "Emmaโ€™s Liberian Kitchen", + "address": "7201 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9185589, + "longitude": -75.2447385, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False" + }, + "categories": "International Grocery, Food, Restaurants, African", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "TeHlA3PjMCAwJSLymjhz3A", + "name": "Beans", + "address": "1733 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519213, + "longitude": -75.1699285, + "stars": 4.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Shopping, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "0:0-17:0" + } + }, + { + "business_id": "d_FmnBZFb6o_1mFZhIRM_Q", + "name": "Crash Bang Boom", + "address": "528 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941902, + "longitude": -75.1493278, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "sNHhtE1QRoEKWfcUTCjOrA", + "name": "Papa John's Pizza", + "address": "6001 Ridge Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0321044, + "longitude": -75.2130364, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "False", + "GoodForKids": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "awfs8U3H3ZzHQfCVH2kGXQ", + "name": "Beyond the Wall", + "address": "415 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941884, + "longitude": -75.149702, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Art Galleries, Arts & Entertainment, Shopping", + "hours": null + }, + { + "business_id": "86zlZrriX8J3LfJoNmI4fw", + "name": "Taylor's Certified Auto Service", + "address": "6940 Norwitch Dr, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.908407, + "longitude": -75.2263014, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "4fC6oyVSEH3nz6xCEy3cig", + "name": "Performance Garage", + "address": "1515 Brandywine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9636025, + "longitude": -75.1637307, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Performing Arts, Venues & Event Spaces, Fitness & Instruction, Arts & Entertainment, Event Planning & Services, Dance Studios, Active Life", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "24yg4Hvws9orB2Y718d9gw", + "name": "The Barber's Den", + "address": "115 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941143561, + "longitude": -75.1446298315, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "ci-kujWfHzsg5zCcqYZLKA", + "name": "Lucky Strike - Philadelphia", + "address": "1336 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950671, + "longitude": -75.1633942, + "stars": 3.0, + "review_count": 309, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForDancing": "True", + "HappyHour": "True", + "WiFi": "'paid'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Nightlife, Restaurants, Event Planning & Services, Cocktail Bars, Bowling, Active Life, Venues & Event Spaces, Bars, American (Traditional), American (New), Lounges", + "hours": { + "Monday": "12:0-20:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "14:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "kI_8RT6-IoVxD-EgXmyFvg", + "name": "Chef Ken's Cafe", + "address": "7135 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0594, + "longitude": -75.1902698, + "stars": 4.0, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "True" + }, + "categories": "Southern, Restaurants, Cafes", + "hours": { + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "_BEP3GuBR4TvxedLOQd6JA", + "name": "Cascade Pool Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19090", + "latitude": 40.1498909, + "longitude": -75.1253492, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Services, Pool Cleaners", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "dHFEcHJG2LmPBJ0X2cfj7Q", + "name": "Stargazy", + "address": "1838 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9267687862, + "longitude": -75.1673582289, + "stars": 4.5, + "review_count": 164, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, British, Food, Bakeries", + "hours": { + "Wednesday": "12:0-16:0", + "Thursday": "12:0-16:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "LMBzA2XpOVMvSYdBZjJAkA", + "name": "Discount Transmission Service", + "address": "1622 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245827, + "longitude": -75.1737023, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Transmission Repair, Automotive, Auto Parts & Supplies, Towing", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "_Y_LQoLF7zS8U7nAs0dz4Q", + "name": "Wok & Roast", + "address": "2313 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9944495, + "longitude": -75.0970217, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "qoR_oeEbFaF3U4zAH69g7g", + "name": "7-Eleven", + "address": "2601 Penrose Ave", + "city": "PHILADELPHIA", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9077633801, + "longitude": -75.1890879079, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Convenience Stores, Gas Stations, Automotive, Food", + "hours": { + "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" + } + }, + { + "business_id": "dL9-kgQxtB-mmyvbwbBriQ", + "name": "L & Z Laundry", + "address": "6825 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0323150479, + "longitude": -75.0493052602, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Laundromat, Local Services, Laundry Services", + "hours": { + "Monday": "7:0-1:0", + "Tuesday": "7:0-1:0", + "Wednesday": "7:0-1:0", + "Thursday": "7:0-1:0", + "Friday": "7:0-1:0", + "Saturday": "6:0-2:0", + "Sunday": "6:0-2:0" + } + }, + { + "business_id": "jOqQVll3LHy-J_s9CGeBpw", + "name": "Fabulous Faces Face Painting and Balloon Twisting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Kids Activities, Face Painting, Beauty & Spas, Arts & Entertainment, Balloon Services, Party & Event Planning, Party Supplies, Event Planning & Services, Clowns, Tattoo, DJs, Makeup Artists", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "h8GOCnAyDZosRfUmW8fe3Q", + "name": "Papery of Philadelphia", + "address": "1219 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948034, + "longitude": -75.161338, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Shopping, Flowers & Gifts, Arts & Crafts, Cards & Stationery, Gift Shops", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "ewKdZOI2cMiwehOG7PROyQ", + "name": "Aliza Schlabach Photography", + "address": "4347 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256764575, + "longitude": -75.2236275226, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Photography, Session Photography, Event Planning & Services, Boudoir Photography, Photographers", + "hours": { + "Monday": "9:30-15:30", + "Tuesday": "9:30-15:30", + "Wednesday": "9:30-15:30", + "Thursday": "9:30-15:30", + "Friday": "9:30-15:30" + } + }, + { + "business_id": "DeSsx9UMrU3tfedZbZfCag", + "name": "Veghada", + "address": "5912 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0433938, + "longitude": -75.1446699, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Vegan, Vegetarian, Specialty Food, Juice Bars & Smoothies, Health Markets", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "2PfMtJW-jJFElDT-S381zw", + "name": "Fusion Gym", + "address": "1425 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9547954026, + "longitude": -75.1646361863, + "stars": 1.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "Cjwb7VQGP0u2eWYj1wnO3g", + "name": "Vango Lounge & Skybar", + "address": "116 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511992, + "longitude": -75.1706583, + "stars": 2.0, + "review_count": 357, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'loud'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Lounges, Restaurants, Greek, Nightlife, Bars, Japanese, Mediterranean", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "CxxE9tXayYmeoNFy-PxlBQ", + "name": "Ranstead Barber Shop", + "address": "1811 Ranstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523722, + "longitude": -75.170602, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "1O-cOXmPlowTmoGgMi2Vtg", + "name": "Premium Steap", + "address": "111 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513268, + "longitude": -75.1702271, + "stars": 4.0, + "review_count": 90, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "False" + }, + "categories": "Coffee & Tea, Food, Kitchen & Bath, Shopping, Home & Garden", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5-olTgAwRwJyvfvrdEFdSg", + "name": "StudioKitchen", + "address": "236 N 2nd St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.954818, + "longitude": -75.142668, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "NUP9pTKwiA7G6o7mEfwPLQ", + "name": "Mega Deal Shoe Repair", + "address": "4123 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9658201, + "longitude": -75.2062999, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Local Services, Home Services, Shoe Stores, Keys & Locksmiths, Shoe Repair", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "KEGlju4Xke09QsBY8q172g", + "name": "Kinkamache Colon Hydro-Therapy", + "address": "1506 Seybert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9737587, + "longitude": -75.1609908, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False" + }, + "categories": "Health & Medical, Colonics, Weight Loss Centers, Professional Services, Beauty & Spas, Medical Spas, Life Coach, Naturopathic/Holistic, Doctors", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "ylV4wFE6qVcYPKZU5LBjaQ", + "name": "Cresheim Cottage Cafe", + "address": "7402 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.062681, + "longitude": -75.193195, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "7uiqoxNvg-gxcOcWTOUy8A", + "name": "Washington Square Psychic Madam China", + "address": "711 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94816, + "longitude": -75.153101, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Supernatural Readings, Arts & Entertainment, Psychics", + "hours": null + }, + { + "business_id": "vpHpg05PViB6g9SYd93pnQ", + "name": "Grady O's", + "address": "1444 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.972851, + "longitude": -75.134323, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Dive Bars, American (Traditional), Bars, Nightlife, Pubs, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "7NmBWvzUguU4RgvojAd4hg", + "name": "vybe urgent care", + "address": "3356 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.990828, + "longitude": -75.102409, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Urgent Care, Doctors, Health & Medical, Pathologists, Radiologists, Medical Centers, Walk-in Clinics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "HsmNo7bzZwYCfu9RJAcUEw", + "name": "The Thrifty Irishman", + "address": "2226 E Butler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9983135, + "longitude": -75.0945309, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Thrift Stores, Flea Markets", + "hours": null + }, + { + "business_id": "BLM5CeCJzz2-5OMuVxw08g", + "name": "USave Shipping Center", + "address": "7244 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.05086, + "longitude": -75.0668069, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Couriers & Delivery Services, Notaries, Shipping Centers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "uorvo3YDnAfzZZBJtMTHug", + "name": "Shaks Olde 2St Deli- Grocery & Pizzeria", + "address": "1841 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9244155057, + "longitude": -75.1499390226, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Caters": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False" + }, + "categories": "Grocery, Food, Pizza, Restaurants, Sandwiches, Delis", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:30-21:0", + "Sunday": "8:30-19:0" + } + }, + { + "business_id": "YWI4lRnWY7-dFBAei7JAEQ", + "name": "Academy of Music", + "address": "240 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948067, + "longitude": -75.1652089, + "stars": 4.0, + "review_count": 164, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "HappyHour": "False", + "Alcohol": "'beer_and_wine'", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True" + }, + "categories": "Performing Arts, Music Venues, Nightlife, Arts & Entertainment, Musical Instruments & Teachers, Shopping", + "hours": null + }, + { + "business_id": "zAssYS_txdEPsdwlSSZdYw", + "name": "Kindred Hospital Philadelphia", + "address": "6129 Palmetto St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.045962, + "longitude": -75.09694, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True" + }, + "categories": "Hospitals, Occupational Therapy, Health & Medical, Physical Therapy", + "hours": { + "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" + } + }, + { + "business_id": "RQJ0f2vUvfDartuciAtAhw", + "name": "One Love Veterinary Clinic", + "address": "5524 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.030755, + "longitude": -75.1778169, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Veterinarians, Pets, Pet Groomers, Pet Sitting", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "-BjXcRcvDqOQ23eUKx6hjg", + "name": "Brew", + "address": "1900 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9269698, + "longitude": -75.1710674, + "stars": 4.5, + "review_count": 209, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Alcohol": "'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False" + }, + "categories": "Beer, Wine & Spirits, Nightlife, Beer Bar, Coffee & Tea, Breweries, Food, Internet Cafes, Bars", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "9oogG0VATbbqQ7fCVISjDQ", + "name": "Gold Club", + "address": "1416 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486535, + "longitude": -75.1651117, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Smoking": "u'outdoor'" + }, + "categories": "Nightlife, Adult Entertainment", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "-zsr3CEpjUKWvRNl9c7ecw", + "name": "Beyond the Bell Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Hotels & Travel, Historical Tours, Walking Tours, Tours", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "ZCfhzELrF9yahqQIJH3DSw", + "name": "Coach's Bar & Grill", + "address": "6529 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0298717, + "longitude": -75.055222, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True" + }, + "categories": "Nightlife, Sports Bars, American (Traditional), Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "TNVrRLz4CBbAVciJof2adw", + "name": "Lun's Asia Chef", + "address": "2313 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9944495, + "longitude": -75.0970217, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Asian Fusion, Seafood, Restaurants, Vietnamese", + "hours": { + "Monday": "13:0-22:30", + "Tuesday": "13:0-22:30", + "Wednesday": "13:0-22:30", + "Thursday": "13:0-22:30", + "Friday": "13:0-22:30", + "Saturday": "13:0-22:30", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "YaLKDgS_zIYIm6jkXWCxgA", + "name": "Rustica", + "address": "903 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9642199, + "longitude": -75.1404574, + "stars": 4.0, + "review_count": 312, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "True", + "Corkage": "False", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Italian, Sandwiches, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "MFdZkWM-ebEBgaCOPSZJMg", + "name": "Eye Candy Vision", + "address": "218 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500002, + "longitude": -75.174168, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Optometrists", + "hours": { + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "D_xImnAQxQh4nNY_xcMHaQ", + "name": "Acupuncture Center City", + "address": "1601 Walnut St, Ste 1129", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949942, + "longitude": -75.1677213, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Acupuncture", + "hours": null + }, + { + "business_id": "YoVikPR6vpI4EENh1THXlA", + "name": "Unique Shoe Repair", + "address": "104 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517563136, + "longitude": -75.1756233971, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Local Services", + "hours": null + }, + { + "business_id": "GqE-dUBnMmvJz_3REK6Ykw", + "name": "The Head Nut", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531097412, + "longitude": -75.1595916748, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Herbs & Spices, Coffee & Tea, Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "hGRycT06CnsO1kcNwOc1wg", + "name": "Bait & Switch", + "address": "2537 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.981513, + "longitude": -75.113651, + "stars": 4.0, + "review_count": 98, + "is_open": 0, + "attributes": { + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Beer, Wine & Spirits, Chicken Wings, Nightlife, Seafood, Food, Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "uAZllapXsT1LIYBWdBBuIg", + "name": "Azalea Restaurant", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949013, + "longitude": -75.147931, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False" + }, + "categories": "American (New), Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "CjQQGFHyijhU76hkMg7U_Q", + "name": "Nelson's Auto Tag", + "address": "2700 S Randolph St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9148854972, + "longitude": -75.1577209665, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair, Professional Services, Registration Services", + "hours": null + }, + { + "business_id": "-VOl3gWKvEsjk5-Kht1xWg", + "name": "Philadelphia Community Acupuncture", + "address": "538 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.046708, + "longitude": -75.195257, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Monday": "14:0-18:0", + "Tuesday": "15:0-19:0", + "Wednesday": "9:0-13:0", + "Thursday": "15:0-19:0", + "Friday": "9:0-13:0", + "Saturday": "11:0-15:0", + "Sunday": "14:0-17:0" + } + }, + { + "business_id": "XswkvtCnlcosB_8GXkI5lQ", + "name": "The Goat Rittenhouse", + "address": "1907 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511749999, + "longitude": -75.1723914966, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BYOB": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "Caters": "False", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, Bars, Restaurants, American (Traditional)", + "hours": { + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "zMy3Pr6j2ZndQyD0Q0ToIw", + "name": "Gia Pronto", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9533282, + "longitude": -75.1717764, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Sandwiches, Food, Restaurants, Coffee & Tea, Fruits & Veggies, Specialty Food", + "hours": { + "Monday": "7:0-14:30", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-14:30", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "XAKR9lNtApEN3hVS8fsM_g", + "name": "The Print Center", + "address": "1614 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481309, + "longitude": -75.1685605, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0" + } + }, + { + "business_id": "smB6G7JvNWzPuxY86XafJQ", + "name": "Church of Scientology of Pennsylvania", + "address": "1315 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9561421, + "longitude": -75.1614084, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": null + }, + { + "business_id": "BE02lUdypdL6JTByh1iTVg", + "name": "Pacifico Mazda", + "address": "6715 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.912562, + "longitude": -75.223055, + "stars": 2.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Car Rental, Hotels & Travel, Automotive, Car Dealers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "p6hPjTEtsFU7kaiUIJm2tQ", + "name": "Epic Church Center City", + "address": "480 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448916, + "longitude": -75.1654997, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Religious Organizations, Churches", + "hours": { + "Sunday": "9:30-12:30" + } + }, + { + "business_id": "EDdXCviJePupPdni6CQY8A", + "name": "Hand & Stone Massage and Facial Spa", + "address": "1425 Locust Street, Suite C-1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948588, + "longitude": -75.1658929, + "stars": 3.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Skin Care, Massage, Day Spas", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "efNrVvbNw2stIq2PvCDV6g", + "name": "Foo Kitchen", + "address": "1301 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.957966, + "longitude": -75.160317, + "stars": 4.5, + "review_count": 121, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Trucks, Food, Breakfast & Brunch, Coffee & Tea, Sandwiches, Restaurants, Asian Fusion, Vegetarian", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "ZSaKeh2-3U9BiMMqZA0z9Q", + "name": "Good Karma Cafe", + "address": "2319 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512805, + "longitude": -75.1792293, + "stars": 4.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "HappyHour": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Coffee & Tea, Restaurants, Food, Cafes", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "-BLVl824WRLFIm_uiHmkbA", + "name": "Epicure Cafe", + "address": "3401 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.011525, + "longitude": -75.1886241, + "stars": 3.0, + "review_count": 91, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Food, Sandwiches, Cafes, Restaurants, Coffee & Tea, Delis", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "JmXqkl7S9mc3AG44tIK2Tg", + "name": "Locksmith Philadelphia Now", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Security Systems, Garage Door Services, Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "1bsQMS1SeLxcqXrJQYVfGQ", + "name": "Gia Pronto", + "address": "3400 Civic Center Blvd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9476279, + "longitude": -75.192598, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Pizza, Restaurants, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "1AqUAR932UJgGwr6FGfPkw", + "name": "WaWa", + "address": "33 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.951686, + "longitude": -75.166981, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Sandwiches, Coffee & Tea", + "hours": { + "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": "6:0-17:0" + } + }, + { + "business_id": "q8IOkTMIA9iYe-DbISEiyA", + "name": "New World Vision Center II", + "address": "813A Adams Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031756, + "longitude": -75.104275, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Doctors, Health & Medical, Shopping, Optometrists, Sunglasses, Eyewear & Opticians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "c0_zwqEFMXNV2o70_9QRSQ", + "name": "Matchbox", + "address": "633 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942343, + "longitude": -75.153646, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True" + }, + "categories": "Head Shops, Tobacco Shops, Shopping, Vape Shops", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "xDLoMSXpK5ZQUh6WJ1PZLg", + "name": "Campbell Jewelers", + "address": "715 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487571885, + "longitude": -75.1531972884, + "stars": 5.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Bridal, Shopping, Jewelry Repair, Jewelry, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-13:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "hOSLBlM6nkbZ218jwp8AvA", + "name": "Father & Sons Pasta & Pizza", + "address": "2500 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9835431, + "longitude": -75.1258591, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "aTOCTSi1GwigOEcqOKRwFg", + "name": "Starbucks", + "address": "2201 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945362, + "longitude": -75.178674, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "tRl5RxE_2XAHRcfvpCwgpQ", + "name": "Alden Park by Village Green", + "address": "5500 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.027069, + "longitude": -75.184032, + "stars": 1.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "UrzVmRtI0MBO2sQC_WdD4A", + "name": "Schuylkill Expressway", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 1.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Landmarks & Historical Buildings, Home Services, Public Services & Government, Real Estate", + "hours": null + }, + { + "business_id": "8_v0zZyTQqjogm2y0ULGwA", + "name": "All Seasons Roofing", + "address": "10730 Pelle Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0787025, + "longitude": -74.9884798, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Roofing, Home Services, Stucco Services", + "hours": { + "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" + } + }, + { + "business_id": "opjF_JN6Kpr5zWxBhkGC7w", + "name": "Mammoth Coffee", + "address": "534 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701234, + "longitude": -75.1464152, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Vegetarian, Food, Coffee & Tea, Restaurants, Vegan, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "cgSDm2SJONSeXBED2r-cGg", + "name": "Nicole Rae Styer Boutique", + "address": "1822 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927241, + "longitude": -75.166675, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Used, Vintage & Consignment, Shopping, Fashion", + "hours": null + }, + { + "business_id": "Yn9zJfQ6ejsj6UFcLBdVXA", + "name": "Studio N", + "address": "1040 N American St, Unit 1101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674016, + "longitude": -75.1411529, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Health & Medical, Medical Spas", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "70JaUaWlwZb_D8V5slNwkQ", + "name": "DoggieVIP Philly", + "address": "2200 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9603450412, + "longitude": -75.1779684579, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Boarding, Pet Groomers, Pet Sitting, Pet Services, Dog Walkers", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "7:30-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "9:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "t9BNV5xMOr9NVc_OmvdQ2Q", + "name": "Chroma Hair Salon", + "address": "108 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496431, + "longitude": -75.1426617, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "WheelchairAccessible": "True" + }, + "categories": "Blow Dry/Out Services, Men's Hair Salons, Makeup Artists, Beauty & Spas, Hair Salons, Hair Extensions", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "0y0qPSILVuwmj-hxkJJ0Bg", + "name": "EverybodyFights", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599141, + "longitude": -75.1726949215, + "stars": 5.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Gyms, Boxing, Active Life", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-20:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "hBTLjGexKiVl1sGqRjgkbg", + "name": "Bella Cena", + "address": "1506 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9470996, + "longitude": -75.1667854, + "stars": 2.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "WYel6hMEEPNwzVUlVBacbw", + "name": "honeygrow", + "address": "110 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9507231094, + "longitude": -75.1675008738, + "stars": 3.5, + "review_count": 560, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BYOB": "False", + "OutdoorSeating": "True", + "Corkage": "False" + }, + "categories": "Salad, Restaurants, Noodles, Juice Bars & Smoothies, Vegetarian, Food, Fruits & Veggies, Specialty Food, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "aASoTrOuCUd0sw2JcA9KcA", + "name": "Beautiful Brides Philly", + "address": "1613 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295265, + "longitude": -75.163651, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Makeup Artists", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "-HxLFWKVgXSU8JlR21PBkg", + "name": "Carluccio's", + "address": "932 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383069, + "longitude": -75.1597957, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "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-23:0" + } + }, + { + "business_id": "mA614PXNipOcwcSVEgDyBQ", + "name": "Home Sweet Homebrew", + "address": "2008 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951275, + "longitude": -75.174036, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "9ZfznUSTt7f_HHHJw82qZA", + "name": "Residence Inn Philadelphia Airport", + "address": "4630 Island Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8884269, + "longitude": -75.2308759, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": null + }, + { + "business_id": "wXx9-VOaJbkZJze-W50euw", + "name": "TLO Event Complex", + "address": "1621-27 Cecil B Moore", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9794398, + "longitude": -75.1619746, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True", + "BikeParking": "True", + "CoatCheck": "True", + "Music": "{'dj': True}", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'" + }, + "categories": "Music Venues, Arts & Entertainment, Venues & Event Spaces, Nightlife, Event Planning & Services", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "ZCj5o6j6_0JjGOe04WoLsg", + "name": "Banh Mi and Bottles", + "address": "712-14 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421239, + "longitude": -75.154438, + "stars": 4.0, + "review_count": 253, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "Caters": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True" + }, + "categories": "Nightlife, Vietnamese, Bars, Beer Bar, Restaurants, Cocktail Bars, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "-QG6KSRQKTQ80--wqrnLTg", + "name": "Starbucks", + "address": "901 Market St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9521781257, + "longitude": -75.1608799489, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-20:0", + "Sunday": "8:45-18:0" + } + }, + { + "business_id": "B-dVKci8McMfSjBC0z6adA", + "name": "Pierogie Kitchen", + "address": "648 Roxborough Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0315512952, + "longitude": -75.208060085, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Restaurants, Food, Ethnic Food, Modern European, Specialty Food, Vegetarian, Polish, Caterers", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "hBBa1hGUJIU2ErNca7goVw", + "name": "BB&T", + "address": "2330 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9788926, + "longitude": -75.1257825, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "gnpyyeWQ53WlDMJEq-YA_w", + "name": "Tinto", + "address": "114 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515011, + "longitude": -75.1738449, + "stars": 4.0, + "review_count": 877, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True" + }, + "categories": "Basque, Tapas Bars, Iberian, Bars, Wine Bars, Restaurants, Lounges, Nightlife, Spanish", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "nZmoai2EQw4RgI4w4bbzDg", + "name": "Fitness Works Philadelphia", + "address": "714 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9313464, + "longitude": -75.1571495, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Trainers, Cycling Classes, Gyms, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "_wcOVX6PPvhXGMpUa2Ij8A", + "name": "Melrose Diner", + "address": "1501 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925004, + "longitude": -75.172084, + "stars": 3.0, + "review_count": 287, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Bakeries, Restaurants, Sandwiches, Diners, Food", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "Yt9NW4fyODFipz33R22cfA", + "name": "Tony", + "address": "47 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515875, + "longitude": -75.1453029, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Fashion", + "hours": null + }, + { + "business_id": "MfKScMsPZfE66VQ1CsbS0A", + "name": "Chili's", + "address": "2320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9184477, + "longitude": -75.1874603, + "stars": 2.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "NoiseLevel": "'loud'", + "RestaurantsReservations": "False", + "HappyHour": "True", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "HasTV": "True", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': None}" + }, + "categories": "Nightlife, Tex-Mex, Bars, Restaurants, American (Traditional)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "catgj1WAPbrPMG7Jd7mDxg", + "name": "Lee's Hoagie House", + "address": "1428 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9786879, + "longitude": -75.159294, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForMeal": "None", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "None", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Steakhouses, Cheesesteaks, Salad, Food, Chicken Wings, Wraps, Event Planning & Services, Sandwiches, Caterers, Food Delivery Services, Delis", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "4wgkBsiJWP5Ih0qLQDB95A", + "name": "Juniata Family Practice", + "address": "1139 E Luzerne St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0082491, + "longitude": -75.1052331, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Family Practice, Health & Medical", + "hours": null + }, + { + "business_id": "6PO3OlixvoZMJBlcBW_iRw", + "name": "Cafe Nhan", + "address": "1620 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9247144, + "longitude": -75.1737536, + "stars": 4.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "GoodForKids": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0" + } + }, + { + "business_id": "ToW6MFXu2C6N04FualtFxQ", + "name": "Yaaโ€™s Fruitea Cafe", + "address": "1200 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431787643, + "longitude": -75.1619394982, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Donuts, Bubble Tea, Food, Coffee & Tea", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "CuTLs5KCpR-6QT5oMVZB-w", + "name": "Karma Diva Green Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Professional Services, Office Cleaning, Home Services, Home Cleaning", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "_ZS80gcXF63IXRBMtkaixw", + "name": "Motherland Hair Braiding", + "address": "1919 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9255628, + "longitude": -75.1780709, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Stylists, Hair Salons, Hair Extensions, Beauty & Spas", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "2dr5QB8Qbw-7_tWtQUZo8A", + "name": "Philadelphia Bridal Alterations", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Sewing & Alterations, Bridal, Fashion, Shopping, Local Services, Formal Wear, Women's Clothing, Children's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "FaDboHLpVcN01oL8EYTX2w", + "name": "Taqueria La Raza", + "address": "227 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9994302, + "longitude": -75.1342546, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'paid'", + "HasTV": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "vNeZt3C8-LZoNPKDlqxSsw", + "name": "Cannon Alfonso Funeral Chapels", + "address": "2315-19 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9883702, + "longitude": -75.1553817, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Funeral Services & Cemeteries, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "zps-kGBEwz4M4KYTnJXLJA", + "name": "Black Star Hardware", + "address": "503 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9633821, + "longitude": -75.1898996, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Home Services, Keys & Locksmiths, Hardware Stores, Home & Garden", + "hours": null + }, + { + "business_id": "uI5k9lJkWlKi6OUW5yYIpQ", + "name": "Benjamin Lovell Shoes", + "address": "1728 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951329, + "longitude": -75.1699729, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Shoe Stores, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "KHuc3PjQwmIUlMmdpTnfZw", + "name": "Ultimo Coffee", + "address": "238 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949517, + "longitude": -75.174284, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "WiFi": "'free'" + }, + "categories": "Coffee Roasteries, Food, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "QjJ6Er27VUCetYZGWk18XA", + "name": "K D Financial Services Inc", + "address": "1700 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9746694, + "longitude": -75.1333995, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Accountants, Professional Services", + "hours": { + "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-17:0" + } + }, + { + "business_id": "h2JR5PTgZh6ws04eoVfZlw", + "name": "Wildlife Clinic at the Schuylkill Center", + "address": "304 Port Royal Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0544972, + "longitude": -75.2457607, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Special Education, Education, Animal Shelters, Pets, Specialty Schools", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "15:0-18:0", + "Wednesday": "15:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "Z2JzC1z0D5PnGeJNyLG46g", + "name": "Tails of Philly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Transportation, Pet Sitting, Dog Walkers, Pets", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "zqisPpgCURrgLf4TVnI8RQ", + "name": "Hai Street Kitchen & Co", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519654623, + "longitude": -75.1678484349, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "-0PN_KFPtbnLQZEeb23XiA", + "name": "Mr Wong's Chinese Restaurant", + "address": "1849 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9230481, + "longitude": -75.1780777, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Caters": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "fFY5pda8iTCUQmEfhyMa5w", + "name": "Swanky Bubbles", + "address": "10 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493463, + "longitude": -75.1423488, + "stars": 3.0, + "review_count": 96, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Caters": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': True, 'upscale': False, 'casual': False}", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Lounges, Asian Fusion, Bars, Sushi Bars, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "oB2B1KlyhlY5LTy18jRqzw", + "name": "5th Street Diner", + "address": "6775 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0546708, + "longitude": -75.1260338, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "CcP-Xzb9HdZU63yW3YAVoA", + "name": "Top Taste 2", + "address": "7252 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9141479401, + "longitude": -75.2415435389, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "espY4ofSQAj7PX_er0D_TQ", + "name": "Dolphin Tavern", + "address": "1539 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930583, + "longitude": -75.167911, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Dive Bars, Dance Clubs, Adult Entertainment, Nightlife, Bars", + "hours": null + }, + { + "business_id": "PuukXxCe1V7OhG-pcViC9Q", + "name": "K & J Caribbean American Diner", + "address": "5603 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0338069, + "longitude": -75.175699, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BYOB": "False" + }, + "categories": "Diners, Restaurants, Caribbean", + "hours": { + "Monday": "10:0-20:45", + "Tuesday": "10:0-20:45", + "Wednesday": "10:0-20:45", + "Thursday": "10:0-20:45", + "Friday": "10:0-21:45", + "Saturday": "10:0-21:45", + "Sunday": "10:0-19:45" + } + }, + { + "business_id": "Ch2Hg3r6n3b5RLY9hmwrUQ", + "name": "Craftsman Row Saloon", + "address": "112 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491022, + "longitude": -75.1543329, + "stars": 3.5, + "review_count": 246, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BikeParking": "False", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Alcohol": "'full_bar'", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "Smoking": "u'outdoor'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pubs, Nightlife, Bars", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "OX1eFYQwN1iYdFd0fkNpqw", + "name": "iMunch Cafe", + "address": "1233 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9759178, + "longitude": -75.1863302, + "stars": 4.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BYOB": "False", + "Corkage": "False" + }, + "categories": "Breakfast & Brunch, Bakeries, Coffee & Tea, Salad, Sandwiches, Food, Restaurants", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "grwQ0HSdvZBSUPzHCijk6Q", + "name": "Holiday Inn Philadelphia Historic District", + "address": "400 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519755, + "longitude": -75.1471853, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": null, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": null + }, + { + "business_id": "iiwbC-2gHnTd_SlJ8HlPog", + "name": "American Heritage Federal Credit Union", + "address": "2060 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0991371, + "longitude": -75.0217308, + "stars": 2.0, + "review_count": 27, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "ba0RwMfgriUlrBETspm8ow", + "name": "Avanti Auto Transport", + "address": "15112 Kovats Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.126515, + "longitude": -74.995479, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Automotive, Hotels & Travel", + "hours": null + }, + { + "business_id": "ptO7ZNMB4w_G4DQgi-lLtA", + "name": "Auto Show Philadelphia", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540710998, + "longitude": -75.1593234008, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Car Dealers, Automotive, Festivals, Arts & Entertainment, Local Flavor", + "hours": null + }, + { + "business_id": "Tsd-LaqqT31JYE6AyUAcwA", + "name": "Target", + "address": "7400 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.051333, + "longitude": -75.058631, + "stars": 2.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "DogsAllowed": "False", + "CoatCheck": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Fashion, Furniture Stores, Grocery, Home & Garden, Electronics, Department Stores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:59", + "Wednesday": "7:0-23:59", + "Thursday": "7:0-23:59", + "Friday": "8:0-21:0", + "Saturday": "7:0-23:59", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "yXeTp8BoQUkNHFzYxSEvfA", + "name": "Nam Vang Restaurant", + "address": "571 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.037561, + "longitude": -75.108069, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "WiFi": "'no'" + }, + "categories": "Vietnamese, Restaurants, Cambodian", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "r6efoqznBpXCFzJWq3WVeQ", + "name": "Joseph Giannone Plumbing & Heating", + "address": "1323-25 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933351, + "longitude": -75.166504, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Contractors, Water Heater Installation/Repair, Plumbing", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "q9qIhrRLXdmM008xZGnH9A", + "name": "Approved Auto Body", + "address": "7309 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.025647, + "longitude": -75.031145, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Repair, Body Shops, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "RAwtx2OKnhhQxBurDSGC3Q", + "name": "Coney Shack", + "address": "3818 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551689, + "longitude": -75.199335734, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Tacos, Asian Fusion, Mexican, Hot Dogs", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "9kFMEa74Y79PKFGVO7dIPQ", + "name": "Vista Peru", + "address": "20 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494184, + "longitude": -75.1439592, + "stars": 4.0, + "review_count": 193, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "Smoking": "u'no'", + "HasTV": "False", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "GoodForKids": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': True, 'classy': True, 'casual': True}", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Peruvian, Nightlife, Bars, Cocktail Bars, Wine Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Thursday": "14:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "ug46LQ5eq0uF6NE3adHhyw", + "name": "Jimmy John's", + "address": "1601 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9779969, + "longitude": -75.1592852, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsTableService": "False" + }, + "categories": "Delis, Specialty Food, Sandwiches, Fast Food, Food, Restaurants", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-3:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "3cImBDLjY5IT5w3QWRujdA", + "name": "Veronica Couture Bridal Gowns", + "address": "106 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9521221119, + "longitude": -75.1435232162, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Women's Clothing, Fashion, Bridal, Jewelry", + "hours": null + }, + { + "business_id": "Wtr51cNrv1pYyIRg_IawYQ", + "name": "The Victor Cafe", + "address": "1303 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931653, + "longitude": -75.166327, + "stars": 4.5, + "review_count": 437, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': None}", + "CoatCheck": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'dressy'", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "HappyHour": "False" + }, + "categories": "Restaurants, Bars, Performing Arts, Gluten-Free, Wine Bars, Nightlife, Italian, Arts & Entertainment", + "hours": { + "Wednesday": "17:0-20:30", + "Thursday": "17:0-20:30", + "Friday": "17:0-20:45", + "Saturday": "16:30-20:45", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "mG_hTZjbjdal1tN3Jz5l5A", + "name": "Uhuru Furniture & Collectibles", + "address": "832 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9691436, + "longitude": -75.1603396, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home Decor, Thrift Stores, Shopping, Home & Garden, Community Service/Non-Profit, Outdoor Furniture Stores, Furniture Stores, Antiques, Fashion, Local Services, Used, Vintage & Consignment", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "2ZSnGlqj8JOWcN2bNf-3SQ", + "name": "Metropolitan Bakery", + "address": "262 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482948, + "longitude": -75.1728154459, + "stars": 4.0, + "review_count": 242, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'average'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Food, Cafes, Coffee & Tea, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:30-13:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Du0waRmHch08QABPLIQcMw", + "name": "Manayunk Tavern", + "address": "4247 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0245962, + "longitude": -75.221131, + "stars": 4.0, + "review_count": 176, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Comfort Food, Restaurants, American (Traditional)", + "hours": { + "Monday": "16:0-21:0", + "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" + } + }, + { + "business_id": "B0jYgle_nTtgPj3Jlaexlw", + "name": "Al-Khartoum Echo Restaurant", + "address": "4403 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567737, + "longitude": -75.2098772, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Middle Eastern, African, Restaurants, Halal", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "NjSLlXCI9s_I2yCgPLBb0A", + "name": "California Pizza Kitchen at City Line", + "address": "4040 City Ave, Bldg 1, Space 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.007355, + "longitude": -75.212371, + "stars": 3.0, + "review_count": 140, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "HasTV": "True", + "DriveThru": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Nightlife, Pizza, Bars, Salad, American (New), American (Traditional)", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "hjt5VSc8V_GF00KtFdwh2g", + "name": "Barouh Victor J,OD", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0643, + "longitude": -75.237204, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Optometrists, Health & Medical", + "hours": null + }, + { + "business_id": "YuYvesXrRf1PSp37a5IwUw", + "name": "Cavanaugh's Rittenhouse", + "address": "1823 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511145, + "longitude": -75.17157, + "stars": 3.5, + "review_count": 226, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Caters": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'free'", + "ByAppointmentOnly": "False", + "BYOB": "False", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Corkage": "False" + }, + "categories": "Burgers, American (Traditional), Sports Bars, Restaurants, Gastropubs, Bars, Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "pOQCsXpS6B9RJyE9efj2RQ", + "name": "Philadelphia Junk Removal", + "address": "1300 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95039, + "longitude": -75.162001, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Junk Removal & Hauling, Home Services, Home Cleaning, Demolition Services, Property Management, Real Estate, Local Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "GrHQITcWhJFOMZ_B2h3oRg", + "name": "Primo Hoagies South Street", + "address": "326 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413612, + "longitude": -75.1484741, + "stars": 3.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "DriveThru": "False" + }, + "categories": "Restaurants, Sandwiches, Fast Food", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "9ZL_iQiLTPTOMm6nDLVCAw", + "name": "Bryn Mawr Pizza II", + "address": "7572 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9786517, + "longitude": -75.2681178, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "IxopnFY3N31qMErNHaRTGg", + "name": "Lei's Auto & Collision Service Center", + "address": "4527 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9703279, + "longitude": -75.2131731, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Auto Repair, Body Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "DA44mAX_6Hq7SaPa91m-cg", + "name": "Calypso", + "address": "7122 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.058735, + "longitude": -75.190115, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Trinidadian, Food, Caribbean, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "Q8UJnXmY-_tuxdOaJozmFA", + "name": "Port Fednuts", + "address": "201 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9448159015, + "longitude": -75.1411866079, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsDelivery": "False", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Donuts, Food, Chicken Shop", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "pNrAkT-LWNCKlaZ0EviyZw", + "name": "I. Switt", + "address": "130 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485601, + "longitude": -75.1542712, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Antiques, Shopping, Watches, Jewelry", + "hours": { + "Monday": "10:0-16:30", + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-16:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "sJz1nAmdlu8OodhvZCUooA", + "name": "T Hogan's Pub", + "address": "5109 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.017157, + "longitude": -75.2104326, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "BYOBCorkage": "'no'", + "BikeParking": "False" + }, + "categories": "Pubs, Nightlife, Restaurants, Bars", + "hours": { + "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" + } + }, + { + "business_id": "FibcT_HHPxko0J3TtMsemw", + "name": "Popeye's - Roosevelt Mall", + "address": "2311 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0479212867, + "longitude": -75.0584603411, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food, Fast Food, Chicken Wings", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "gp_4Nl5ZhlsIobjIn1sF2Q", + "name": "Adolf Biecker Studio", + "address": "138 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9532025, + "longitude": -75.1921494, + "stars": 4.0, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "GoodForKids": "False", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Day Spas, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "tC8i2_9ww-WoT1wZOCwRrw", + "name": "Sue's Custom Dressmaking & Tailor Shop", + "address": "8129 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0730469, + "longitude": -75.2022434, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Professional Services, Sewing & Alterations", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "hV4nDgVdVvtQx-CMt0rbUg", + "name": "Betsy Ross Bridge", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.985095, + "longitude": -75.066301, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "nDdIb6y5Vc5_aNG-Rd0JMQ", + "name": "Lox Stock & Barrel", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9626098, + "longitude": -75.1720946, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "American (Traditional), Venues & Event Spaces, Restaurants, Sports Bars, Comfort Food, Event Planning & Services, Diners, Delis, Bars, Nightlife", + "hours": { + "Monday": "11:0-1:30", + "Tuesday": "11:0-1:30", + "Wednesday": "11:0-1:30", + "Thursday": "11:0-1:30", + "Friday": "11:0-1:30", + "Saturday": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "OCMrwo6MPIQBeUKwfn0iDg", + "name": "Science History Institute", + "address": "315 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490708, + "longitude": -75.1464205, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "'no'" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Museums, Libraries, Public Services & Government, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "2B8g11udE9SVdoIkvdpS7Q", + "name": "Andrewยดs Pack", + "address": "2617 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974257, + "longitude": -75.179433, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pet Adoption, Pet Boarding, Pets, Pet Services, Dog Walkers, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "_3su-am_oQzuvqfaausJ0A", + "name": "Karleys Linens", + "address": "4928 Disston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0238165, + "longitude": -75.040144, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party Equipment Rentals, Event Planning & Services, Party Supplies", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "jqW8kqQCR_NUY1DTtg30vA", + "name": "Hair Vyce Studio", + "address": "4828 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9481033, + "longitude": -75.2207845, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "DogsAllowed": "True", + "WiFi": "u'free'" + }, + "categories": "Hair Extensions, Shopping, Cosmetics & Beauty Supply, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:30", + "Thursday": "8:0-12:0", + "Friday": "10:0-16:30", + "Saturday": "12:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "QhgrhVKlXZtSY6gRThf8zA", + "name": "Bing Bing Dim Sum", + "address": "1648 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9289898, + "longitude": -75.1647415, + "stars": 4.0, + "review_count": 557, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "OutdoorSeating": "True" + }, + "categories": "Cocktail Bars, Dim Sum, Nightlife, Restaurants, Chinese, Asian Fusion, Bars", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:0", + "Saturday": "13:0-22:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "EsF5hZu-ylUzLyqvS6sUEA", + "name": "Adrian King Massage Arts", + "address": "1208 Titan St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428527924, + "longitude": -75.1569208337, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "AcceptsInsurance": "False", + "WiFi": "u'paid'", + "GoodForKids": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Massage, Massage Therapy, Yoga, Meditation Centers, Active Life, Health & Medical, Fitness & Instruction, Acupuncture", + "hours": { + "Monday": "12:0-20:30", + "Tuesday": "9:0-14:45", + "Wednesday": "12:0-20:30", + "Thursday": "9:0-14:45", + "Friday": "9:0-14:45", + "Saturday": "9:0-14:45" + } + }, + { + "business_id": "9c1p8TTOG_F55i3yEiVVDQ", + "name": "Starbucks", + "address": "9430 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.06919, + "longitude": -75.0081063, + "stars": 2.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "1wtu-suzLFtKbT4PFO2Osg", + "name": "Philadelphia Trolley Works", + "address": "1350 Schuylkill Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9375741, + "longitude": -75.2037673, + "stars": 3.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Bus Tours, Party Bus Rentals, Event Planning & Services, Transportation, Public Transportation, Hotels & Travel, Tours", + "hours": { + "Monday": "9:30-16:30", + "Tuesday": "9:30-16:30", + "Wednesday": "9:30-16:30", + "Thursday": "9:30-16:30", + "Friday": "9:30-16:30", + "Saturday": "9:30-16:30", + "Sunday": "9:30-16:30" + } + }, + { + "business_id": "3NNKjjMkjYQwkrlRJ__VGw", + "name": "England Pizza", + "address": "2840 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0432577, + "longitude": -75.052707, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'quiet'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "WiFi": "'no'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "EwIYwDYoevZRSmo_BubC1w", + "name": "Pineapple Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9116195992, + "longitude": -75.151478412, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "BAnKNRRc757nEmEdU7SevQ", + "name": "The Oceanaire Seafood Room", + "address": "700 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9479648, + "longitude": -75.1532156, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsAttire": "'dressy'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "I4RP2WUlqoOoIS_NDzeXaQ", + "name": "Creative Comp", + "address": "2008 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9234298, + "longitude": -75.1800116, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "IT Services & Computer Repair, Local Services", + "hours": null + }, + { + "business_id": "l9U0fpXrdJ2WDgKI4MGuOw", + "name": "Bar", + "address": "1309 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500315, + "longitude": -75.1623589, + "stars": 3.0, + "review_count": 98, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Beer Bar, Pool Halls, Hot Dogs, Restaurants, Pubs, Sports Bars, Nightlife, Dive Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "UEGZ1nHUVb2ltGtd7C7X9w", + "name": "Dairy Queen", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0873884142, + "longitude": -75.0399255753, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BikeParking": "False", + "RestaurantsDelivery": "None", + "HasTV": "True" + }, + "categories": "Fast Food, Ice Cream & Frozen Yogurt, Food, Restaurants, Burgers", + "hours": { + "Monday": "12:0-21:30", + "Tuesday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "o9a4dXSNgvbsbaIHNvP6qw", + "name": "Mi Pueblito Tacos", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9288708, + "longitude": -75.1467161, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Mexican, Food Trucks, Food", + "hours": { + "Saturday": "13:15-16:0", + "Sunday": "13:15-16:0" + } + }, + { + "business_id": "qP1OtBf20pNb_W_wDTW10g", + "name": "Titan Auto Tags & Insurance", + "address": "2499 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.975806, + "longitude": -75.120007, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Local Services, Public Services & Government, Insurance, Departments of Motor Vehicles, Financial Services, Automotive, Registration Services, Notaries", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "gOkC4Z_dNkXbqhpXypBlAA", + "name": "The Rosin Box", + "address": "2050 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513483, + "longitude": -75.1751723, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Sporting Goods, Dance Wear, Shopping, Accessories, Sports Wear", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "Gay6ZhRBF8SNF5YudevDoQ", + "name": "Brown Betty Dessert Boutique", + "address": "722 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9626107, + "longitude": -75.1412997, + "stars": 4.0, + "review_count": 173, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Desserts, Cupcakes, Bakeries", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "vg3JmN8hAiOV1suoxTi1yA", + "name": "Domino's Pizza", + "address": "401 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962797, + "longitude": -75.172945, + "stars": 2.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "Caters": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pizza, Restaurants, Chicken Wings, Sandwiches", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-4:0", + "Saturday": "10:0-4:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "A3cJnJGUgvWlt_k8YHxKQQ", + "name": "Body Graphics Inc Portside Parlor", + "address": "30 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491975, + "longitude": -75.1440152, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Shopping, Tattoo, Arts & Entertainment, Art Galleries", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "_5cmcdvqnfVCkMnqVJQtXw", + "name": "Rossi's Hair Studio", + "address": "1009 Spruce Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946358, + "longitude": -75.158296, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Waxing, Hair Removal, Men's Hair Salons, Massage, Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "PLCkzbVa1JXpc87SoHiOgQ", + "name": "Frozen Rolled Icecream", + "address": "511 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420437, + "longitude": -75.1511886, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-22:45", + "Tuesday": "12:0-22:45", + "Wednesday": "12:0-22:45", + "Thursday": "12:0-22:45", + "Friday": "12:0-23:45", + "Saturday": "12:0-23:45", + "Sunday": "12:0-23:45" + } + }, + { + "business_id": "HN7ZEswlnT9UneWubNVU1w", + "name": "Grace Spa & Nails Salon", + "address": "701 Watkins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9275046, + "longitude": -75.1573427, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Eyelash Service, Waxing, Beauty & Spas, Hair Removal, Nail Salons, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "grctd1K-eeYOKEkN-WW9pw", + "name": "Morrell Tavern", + "address": "3800 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0647222, + "longitude": -74.9872564, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "pwzx0x3qLmAXljUjJnqw7w", + "name": "Port Richmond Thriftway Market", + "address": "2497 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9753298, + "longitude": -75.1196932, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "YnB6Cr43FzE7uJysmxTfkw", + "name": "Friendly's", + "address": "9165 Ridge Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0762596, + "longitude": -75.2472024, + "stars": 1.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "RestaurantsReservations": "False" + }, + "categories": "Burgers, Food, Restaurants, Ice Cream & Frozen Yogurt, American (Traditional)", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "dxyT5_pC9nfXyGUetrKZAg", + "name": "FYE Music", + "address": "100 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9503721, + "longitude": -75.1645322, + "stars": 2.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Music & DVDs, Shopping, Books, Mags, Music & Video, Videos & Video Game Rental", + "hours": { + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "_9uiGqy52H8Fx6OY3TwSog", + "name": "Wolfson Wellness Family Chiropractic", + "address": "254 South 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470198, + "longitude": -75.1594746, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chiropractors, Doctors, Naturopathic/Holistic, Health & Medical", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "10:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:0-18:0" + } + }, + { + "business_id": "xvxgYvElx0nrGBzy-fnELw", + "name": "Affordable Fixes", + "address": "101 Geiger Rd, Unit 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1109574, + "longitude": -75.050847, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Appliances & Repair, Plumbing, Local Services, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "8:30-15:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "uJvTBGksfErVDSOeBsmOyA", + "name": "The Living Room Cafe", + "address": "701 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402868, + "longitude": -75.150867, + "stars": 4.5, + "review_count": 139, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Breakfast & Brunch, Cafes, Restaurants, Coffee & Tea, American (Traditional)", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "6:30-17:0", + "Sunday": "6:30-17:0" + } + }, + { + "business_id": "ZvOZCvLeAKGFzwnyu1aeKw", + "name": "Serrano", + "address": "20 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494184, + "longitude": -75.1439592, + "stars": 2.5, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "HasTV": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (Traditional)", + "hours": { + "Tuesday": "16:0-22:30", + "Wednesday": "15:30-22:30", + "Thursday": "15:30-22:30", + "Friday": "15:30-23:30", + "Saturday": "15:30-23:30", + "Sunday": "15:30-22:0" + } + }, + { + "business_id": "tyv7-bDHOMJ2DV9kbEBeCQ", + "name": "SP+ Parking", + "address": "36 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526536, + "longitude": -75.1721816, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "LfMWAP0gTbUlv-XqFVJmDQ", + "name": "Basil's Auto Body", + "address": "1645 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9386993, + "longitude": -75.1713648, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Glass Services, Wheel & Rim Repair, Automotive, Body Shops, Auto Repair, Windshield Installation & Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "E9oGqbo7KWr_NKZTsmzqaQ", + "name": "Hertz Rent A Car", + "address": "4100 Presidential Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0069291, + "longitude": -75.2106659, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": null + }, + { + "business_id": "26iUm28PTWJd9qqDe5YvKw", + "name": "Pei Wei", + "address": "1101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952141, + "longitude": -75.158537, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Chinese, Pan Asian, Fast Food, Gluten-Free, Noodles, Asian Fusion", + "hours": null + }, + { + "business_id": "aAj7q710tC5BSGAwaR0u0w", + "name": "The Expressive Hand", + "address": "622 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418528, + "longitude": -75.1573883, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Specialty Schools, Art Schools, Art Galleries, Paint-Your-Own Pottery, Shopping, Arts & Entertainment, Education, Arts & Crafts, Art Supplies, Paint & Sip", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "13:0-19:0", + "Friday": "13:0-19:0", + "Saturday": "13:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2YID_fcvgazPH938Gn5pqg", + "name": "All-Rite Collision", + "address": "8 1/2 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9127415228, + "longitude": -75.1425311342, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "8:30-14:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "Au6bDTawKEYXUJuhq6MBNw", + "name": "Kitty's Luncheonette", + "address": "2721 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9788544, + "longitude": -75.1110948, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Sandwiches, American (Traditional), Breakfast & Brunch", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30", + "Saturday": "7:0-15:0" + } + }, + { + "business_id": "yrei1_Hm8C7-z0KmmxsD8Q", + "name": "La Bella Vita", + "address": "124 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482233, + "longitude": -75.1434845, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Hair Salons, Massage, Beauty & Spas, Day Spas", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "I79keuDOkqf1CFjYDMRMNg", + "name": "Aldo's Pizzarama", + "address": "10201 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1085087244, + "longitude": -75.025526, + "stars": 4.0, + "review_count": 102, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "P0QE-Q6kUqU_ydmHCIsAJg", + "name": "Potbelly Sandwich Shop", + "address": "1100 W Montgomery Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9795332, + "longitude": -75.1535048, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "HasTV": "False", + "Caters": "True", + "WiFi": "'free'", + "CoatCheck": "False", + "DriveThru": "True", + "BikeParking": "True", + "GoodForMeal": "None", + "Ambience": "None" + }, + "categories": "Restaurants, Salad, Sandwiches, Fast Food, Delis, Soup", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Pi1djvbsj9KzrObuZO-csw", + "name": "Mira Nails", + "address": "1830 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444663695, + "longitude": -75.172917935, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "cCaIq-cO8tXct1alFkq6hQ", + "name": "Olga S Pรฉrez", + "address": "1700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950165, + "longitude": -75.16919, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Supernatural Readings, Professional Services, Life Coach, Health & Medical, Local Flavor, Arts & Entertainment, Counseling & Mental Health", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "MF4s80IXcLYY9HxuvwltGQ", + "name": "Belmont Behavioral Health System", + "address": "4200 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0001049, + "longitude": -75.2151741, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Addiction Medicine, Rehabilitation Center, Doctors, Hospitals, Counseling & Mental Health", + "hours": { + "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" + } + }, + { + "business_id": "2ak2wvRk3YMfVK1QG63eyA", + "name": "House of Our Own Books", + "address": "3920 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513385, + "longitude": -75.2019357, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "CToesleRmkTElhvXhA4nUw", + "name": "Power Yoga Works", + "address": "3527 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9585292, + "longitude": -75.1931899, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Yoga, Fitness & Instruction, Active Life, Gyms", + "hours": null + }, + { + "business_id": "DTyeAYLV9YCc4mG5XTorTA", + "name": "Starbucks", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.947778, + "longitude": -75.193432, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "u_X7JlkEChx8UsxI_S7deg", + "name": "Sculpere Studio", + "address": "209 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.964461, + "longitude": -75.141027, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Pilates, Barre Classes, Yoga, Fitness & Instruction", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-19:0", + "Saturday": "9:30-13:0" + } + }, + { + "business_id": "ShcOWrWIb-DQDiFqS3XLWA", + "name": "iTech Electric", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068629, + "longitude": -75.0026972, + "stars": 5.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Generator Installation/Repair, Electricians, Lighting Fixtures & Equipment, TV Mounting, Local Services, Home Services", + "hours": { + "Monday": "7:0-23:45", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-23:45", + "Friday": "7:0-23:45", + "Saturday": "7:0-23:45", + "Sunday": "7:0-23:45" + } + }, + { + "business_id": "ev8KX9xeLe9fP9y-vV81tQ", + "name": "South Square Market", + "address": "2221 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9457515981, + "longitude": -75.1794274598, + "stars": 2.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Organic Stores, Food, Delis, Restaurants, Meat Shops, Specialty Food, Grocery", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "vdNAPM0kjeY0XJtyvA4B7Q", + "name": "Wells Fargo Bank", + "address": "340 S 2nd St, Ste 350", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94324, + "longitude": -75.145366, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0" + } + }, + { + "business_id": "dST75t2bHG-JtNTiYuSBMg", + "name": "Uniqlo", + "address": "1608 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510697, + "longitude": -75.1677625, + "stars": 3.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Men's Clothing, Women's Clothing, Department Stores, Children's Clothing", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "x8ZyCVjQYWSPhUnYGxl_5Q", + "name": "Rita's Italian Ice", + "address": "2124 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451138, + "longitude": -75.1777972, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Shaved Ice, Desserts, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "iLSA0YCeg50DD0kc7D6srg", + "name": "Gentle Dental of Center City", + "address": "201 S 13th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488286065, + "longitude": -75.1620351509, + "stars": 1.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Cosmetic Dentists, Periodontists, General Dentistry, Endodontists", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "WN7deAzW6-jMJPyqVhHJXw", + "name": "SLATE Property Management Group", + "address": "4352 Main St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0252583, + "longitude": -75.2237917, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Real Estate Agents, Home Services, Real Estate Services, Property Management", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "CiTYWOKcXTZYztsT43wb5g", + "name": "Tela's Market & Kitchen", + "address": "1833 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967417, + "longitude": -75.168217, + "stars": 4.0, + "review_count": 265, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Alcohol": "'none'", + "BYOB": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WiFi": "'free'", + "Corkage": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Specialty Food, Food, Breakfast & Brunch, Restaurants, Salad, Sandwiches, Grocery, American (New)", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "0pzCUHzYxd69lgKfssaRyQ", + "name": "Halloween", + "address": "1329 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9455661, + "longitude": -75.1637953, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "T4o142k9AoT0yp0DqinZuA", + "name": "Right Steps", + "address": "1535 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9487243, + "longitude": -75.1675814, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Child Care & Day Care, Summer Camps, Education, Preschools, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "LQRXcBw2b2licjzJh1GG5w", + "name": "The Original Charlie's Pizza", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0648947115, + "longitude": -74.9859445267, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "14:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2Kii_YhfQM4XO7b-Zf3c6A", + "name": "Quest Diagnostics", + "address": "227 N. Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9570351, + "longitude": -75.1621765, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing, Medical Centers", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "3V97GKPqXFm2al_Ozu5Tdw", + "name": "Circ At the Philadelphia Marriott Downtown", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9526549, + "longitude": -75.1606488, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'paid'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "vXQBq0NPscuLfh1nj-aXmA", + "name": "Student Federal Credit Union", + "address": "3401 Walnut St, Ste 431A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953054, + "longitude": -75.192439, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "NGdVG_rn85p3KiU9D_WUVA", + "name": "Umi Sushi And Seafood", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535371257, + "longitude": -75.1590228, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Food, Specialty Food, Seafood Markets, Restaurants, Sushi Bars", + "hours": null + }, + { + "business_id": "MQiXtcB-4C-jQiSESjf_2w", + "name": "h2o Laundromat", + "address": "8207 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.068, + "longitude": -75.1797548, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry, Laundromat, Dry Cleaning", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "BRlJcme-mrWooPJ5UvtbLw", + "name": "Life4orceTouch Your Massage Resource", + "address": "6100 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9905362994, + "longitude": -75.248837471, + "stars": 5.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Massage Therapy, Physical Therapy, Massage, Local Services, Rolfing, Health & Medical, Reiki, Day Spas", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "WpdiX87-zz3UGbowGee4wg", + "name": "Wan's Seafood", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532527, + "longitude": -75.1592574, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "Caters": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Food, Grocery, Seafood", + "hours": null + }, + { + "business_id": "KK9qPZYo5CSNKyugzpMNfg", + "name": "The Q Food truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8654657, + "longitude": -75.2741557, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "vzj9FLQwxNpQfy_24C8mxA", + "name": "Burlington Coat Factory", + "address": "9167 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.075031, + "longitude": -75.032688, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Women's Clothing, Shopping, Men's Clothing, Accessories", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "9:30-21:30" + } + }, + { + "business_id": "qAkSrq_5J9ru6E7gzYWXcw", + "name": "Tendenza", + "address": "969 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9659353556, + "longitude": -75.1401412359, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Caterers, Event Planning & Services", + "hours": null + }, + { + "business_id": "1197WeMfKy-gUOOukAPEEQ", + "name": "South Style Pizza", + "address": "449 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9543106, + "longitude": -75.2442075, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'loud'", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Pizza, Delis, Sandwiches, Restaurants", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "mSyqu7A0TrGMeUzOqwT7uQ", + "name": "Golden Fish Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood Markets, Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "S5VH9dR3nCgNO5C0M_HttA", + "name": "Cafe Grindstone", + "address": "622 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413501, + "longitude": -75.1508647, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'" + }, + "categories": "Local Flavor, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "qwPpnCgmvrm1WsrmyyhuvQ", + "name": "Soul Kitchen 5935", + "address": "5935 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.044675, + "longitude": -75.149271, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Soul Food, Sandwiches, Southern, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "M1GH2As6vZ2lKDpqw13lNQ", + "name": "Circle Thrift", + "address": "1125 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369507, + "longitude": -75.1666084, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Used, Vintage & Consignment, Thrift Stores", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "am_ctUVQlR_XxQT4zWRHGw", + "name": "Aqua Vitae Institute", + "address": "148 N 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9567064, + "longitude": -75.1677348, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Education, Event Planning & Services, Venues & Event Spaces, Bartending Schools, Specialty Schools, Bartenders", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "qQm87XmomCWkVYYu7Eeu9g", + "name": "Inspirational Angels Therapeutic Massage", + "address": "7325 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9757935187, + "longitude": -75.2628790411, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Reflexology, Massage Therapy, Massage, Health & Medical, Skin Care, Beauty & Spas", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "IlAW63SepzVKroXXFjeo7w", + "name": "Wolf's Market", + "address": "1500 Locust St, Apt 2705", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482572, + "longitude": -75.1666834, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "TYLcvZn7vM7R3SS7AM7TgA", + "name": "Chapman Ford Sales, Inc.", + "address": "9371 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0777411, + "longitude": -75.0296266, + "stars": 2.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Dealers, Auto Parts & Supplies, Auto Repair", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "MhyQpGPcR1Nnv5U4EXpr3w", + "name": "Founding Footsteps", + "address": "302 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9520345, + "longitude": -75.1454345, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Tours, Historical Tours, Bus Tours", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "kqBLD5rueekc26t2HLI4AQ", + "name": "Wok Chinese Restaurant", + "address": "1613 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950055, + "longitude": -75.1680669, + "stars": 3.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Seafood, Asian Fusion", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-23:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "LyNbDru7reVkGaqhYlNlSQ", + "name": "The Reiki School and Clinic", + "address": "1500 Chestnut Street, Lower Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9508653, + "longitude": -75.1658994, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Doctors, Health & Medical, Naturopathic/Holistic, Education, Reiki, Adult Education", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "f350ZktJBwt93yvs8Kd1qA", + "name": "Frank's Breakfast & Lunch", + "address": "2433 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9161934638, + "longitude": -75.1375794862, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "False", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Comfort Food, Sandwiches, Restaurants", + "hours": { + "Monday": "5:0-15:30", + "Tuesday": "5:0-15:30", + "Wednesday": "5:0-15:30", + "Thursday": "5:0-15:30", + "Friday": "5:0-15:30" + } + }, + { + "business_id": "yeoutv6FkWfpvRED-Rz7Wg", + "name": "South Side Pizza", + "address": "740 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9253687, + "longitude": -75.1591098, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "bGogXCmqk5JWH5LZNoSDxA", + "name": "VCA Cat Hospital of Philadelphia", + "address": "226 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949809, + "longitude": -75.174162, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "O0fPPPMQYSFZIaUBnkGXFQ", + "name": "Kim Van Grocery And Deli", + "address": "2148 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94145, + "longitude": -75.1792679, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False" + }, + "categories": "Food, Grocery, Restaurants, Delis", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "VFV5wnidsMAqBufRjQN5Vw", + "name": "Seasons Flowers", + "address": "211 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9521668, + "longitude": -75.1437525, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Flowers & Gifts, Florists, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "dwgzsUfgMcbkI232jytX-A", + "name": "Society Hill Ophthalmic Associates", + "address": "700 Spruce St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9454075, + "longitude": -75.153524, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Laser Eye Surgery/Lasik, Doctors, Optometrists, Ophthalmologists, Health & Medical", + "hours": null + }, + { + "business_id": "pUIcxWcdfKMqXoJA0zuwcw", + "name": "Spot's Spot Pet Grooming", + "address": "123 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9692393, + "longitude": -75.1369628, + "stars": 4.5, + "review_count": 152, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pet Services, Pet Stores, Pet Groomers, Pets", + "hours": { + "Monday": "0:0-0: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": "10:0-18:0" + } + }, + { + "business_id": "4hVeYebIXf7ObiIwalpp7g", + "name": "Uncle Tomy's", + "address": "1653 S 27th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.932068, + "longitude": -75.189729, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza, Fast Food, Italian", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "16:0-22:30" + } + }, + { + "business_id": "iayEnD10RANkRly9O_zrDw", + "name": "W.F. Smith", + "address": "7310 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0261278, + "longitude": -75.0313153, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "efNsDtdqNp-gDanRyJs8sQ", + "name": "Computer Repair & Testing Center", + "address": "3508 Market St, Ste 211", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955792, + "longitude": -75.193461, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Mobile Phones, IT Services & Computer Repair, Local Services, Mobile Phone Repair, Shopping, Mobile Phone Accessories, Electronics Repair, Professional Services, Data Recovery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "fYSaoJMOj7-r4XWEuYjRxw", + "name": "Bleu Martini", + "address": "24 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493756, + "longitude": -75.1438865, + "stars": 2.5, + "review_count": 215, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "True", + "AgesAllowed": "u'21plus'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': False, u'dinner': None, u'latenight': True, u'dessert': False}" + }, + "categories": "Hookah Bars, Bars, Nightlife, Restaurants, Asian Fusion, Lounges, Dance Clubs", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "Jh2XqMQLWa_OixWM9rxdJA", + "name": "The Butcher & The Brewer", + "address": "216 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948104, + "longitude": -75.159407, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "HasTV": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "Gastropubs, Restaurants, American (New)", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "IZT4vXB3444kBF4E-0xKgw", + "name": "Celtic Shirts", + "address": "2537 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9850298, + "longitude": -75.106587, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Screen Printing/T-Shirt Printing", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "7NITtPelRe_oQRsWACI3yA", + "name": "Founded Coffee & Pizza", + "address": "3300 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0126210289, + "longitude": -75.1836797854, + "stars": 4.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Salad, Restaurants, Coffee & Tea, Pizza, Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "M6qDX8HZS7gOJ_pBOAih1g", + "name": "Royal Boucherie", + "address": "52 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487583, + "longitude": -75.1440827, + "stars": 4.0, + "review_count": 228, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': None}", + "HappyHour": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "False" + }, + "categories": "Live/Raw Food, Restaurants, Brasseries, American (Traditional), Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "D2be1nYeXrn-1F5alLIVEw", + "name": "Transfer Real Estate Intelligence", + "address": "3901B Main St, Ste 305", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0202857, + "longitude": -75.215555, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Commercial Real Estate, Home Services, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "qdiuVbeHgis5LOgDJMBfcw", + "name": "12th Street Gym", + "address": "204 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482041, + "longitude": -75.1607437, + "stars": 4.0, + "review_count": 120, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Active Life, Trainers, Fitness & Instruction", + "hours": { + "Monday": "5:30-23:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:30-23:0", + "Friday": "5:30-22:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "Tr5dnEpd6awRiGPJFWhKUg", + "name": "Southport Plaza Xpress Car Wash", + "address": "1600 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927043, + "longitude": -75.1455583, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Auto Repair, Automotive, Auto Detailing", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Ek6iqYGdYtyltAxVnhtJKQ", + "name": "JG SkyHigh", + "address": "1 N 19th St, Fl 60", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9552040814, + "longitude": -75.1709829249, + "stars": 4.0, + "review_count": 129, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': True, u'saturday': False, u'sunday': True}" + }, + "categories": "Lounges, Seafood, Bars, Cocktail Bars, Restaurants, French, American (New), Nightlife", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "frU7PIVtEl2bt_BCERpGDA", + "name": "Tatyana Boutique", + "address": "1605 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949791, + "longitude": -75.1678322, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Shopping, Women's Clothing, Fashion", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "aRyP578y47vwJ4KFIicjCw", + "name": "Yellowtail", + "address": "1218 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9450373, + "longitude": -75.1620739, + "stars": 3.5, + "review_count": 120, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Thai, Japanese, Sushi Bars, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "k_Enu6jNP358eIbqtqyGIg", + "name": "iBrow ThreadnWax", + "address": "3816 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955145, + "longitude": -75.19923, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Hair Removal, Beauty & Spas, Waxing, Eyebrow Services, Skin Care", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30" + } + }, + { + "business_id": "fOhnSqmO4XY5vSI8whVKSA", + "name": "Farmicia", + "address": "15 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9496993, + "longitude": -75.1457815, + "stars": 4.0, + "review_count": 1094, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': None}", + "DogsAllowed": "False" + }, + "categories": "Breakfast & Brunch, American (New), Mexican, French, Restaurants, Italian", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "8:30-23:0", + "Sunday": "8:30-21:0" + } + }, + { + "business_id": "81NKeedNCrNo0v60QatxzQ", + "name": "Charles Plaza", + "address": "234 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956502, + "longitude": -75.155845, + "stars": 4.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "13:0-0:0", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "rpbACUkHJYSnvP6s0myyLg", + "name": "Fat Joe's", + "address": "2550 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.915939, + "longitude": -75.15306, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "Caters": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Food, Cheesesteaks, American (New), American (Traditional), Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "1hMteDtsI0JMNBCtKpb24A", + "name": "Chickie's & Pete's", + "address": "8500 Essington Ave, Ste C26", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876011, + "longitude": -75.242965, + "stars": 2.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'full_bar'", + "BikeParking": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': None, 'street': False, 'validated': None, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Seafood, American (New), Restaurants", + "hours": null + }, + { + "business_id": "hu6WwDxwgsHwY24nQUY8rg", + "name": "Fishtown Market", + "address": "2328 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.977509, + "longitude": -75.128817, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "NoiseLevel": "'very_loud'", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "Ambience": "None", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'dressy'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Grocery, Food, Delis", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "o3RzkJ6yRhE6_YN5786feA", + "name": "Ross Dress for Less", + "address": "2419 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9216159, + "longitude": -75.1862836, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Discount Store, Home Decor, Men's Clothing, Women's Clothing, Accessories, Department Stores, Fashion, Home & Garden", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "SgQUBMOJglbjvssPHD3uhQ", + "name": "D.P. Dough-Philadelphia", + "address": "3235 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9606064684, + "longitude": -75.1891958714, + "stars": 2.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Pizza, Restaurants, Fast Food", + "hours": { + "Monday": "17:0-4:0", + "Tuesday": "17:0-4:0", + "Wednesday": "17:0-4:0", + "Thursday": "17:0-4:0", + "Friday": "17:0-4:0", + "Saturday": "17:0-4:0", + "Sunday": "17:0-4:0" + } + }, + { + "business_id": "c-sH2K3OowoQgYTLAoopRA", + "name": "Cereality", + "address": "3631 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534565, + "longitude": -75.1963913, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "ONIXmNf_kNxfe1J2YtRwFw", + "name": "The Art Institute of Philadelphia", + "address": "1622 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511063755, + "longitude": -75.1680976152, + "stars": 2.0, + "review_count": 29, + "is_open": 0, + "attributes": null, + "categories": "Specialty Schools, Education, Cooking Schools, Colleges & Universities, Art Schools", + "hours": { + "Monday": "8:30-19:30", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-16:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "AUyRZmMBIah8yFNnBadJ0g", + "name": "Whole Foods Market", + "address": "2101 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963185, + "longitude": -75.174306, + "stars": 3.5, + "review_count": 208, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Alcohol": "'beer_and_wine'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Grocery, Food, Beer, Wine & Spirits, Organic Stores, Specialty Food, Health Markets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-17:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "BVP6QPZz_cQLoBlNTF5S7w", + "name": "Mt Airy Pediatrics", + "address": "6673 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0517905, + "longitude": -75.1846358, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Pediatricians, Doctors", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-12:0" + } + }, + { + "business_id": "xMJVdJLw6b5_DfJQwqaHcQ", + "name": "Snap Kitchen", + "address": "243 Market St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502221, + "longitude": -75.1450357, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'" + }, + "categories": "American (New), Specialty Food, Vegetarian, Gluten-Free, Food, Health Markets, Restaurants, Food Delivery Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "5dIS6fNq-t5tdj5X56rTzg", + "name": "Kosmo Pizza & Grille", + "address": "1347 S St, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9437308043, + "longitude": -75.1647151245, + "stars": 4.5, + "review_count": 162, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "None", + "HappyHour": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Pizza, Sandwiches, American (Traditional), Food Delivery Services, Food", + "hours": { + "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" + } + }, + { + "business_id": "Xc8E9n8ZJg_xZeDTHBoJPw", + "name": "Ding Tea Philadelphia", + "address": "821 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0314842907, + "longitude": -75.1039324231, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bubble Tea, Coffee & Tea, Ice Cream & Frozen Yogurt, Internet Cafes", + "hours": { + "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": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "3fD7Pbi_VozCRS-eIjzIag", + "name": "Midas", + "address": "6750 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0415277879, + "longitude": -75.2261513411, + "stars": 2.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Tires, Automotive, Auto Repair", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "6UtUOlVQBKoCdWUqQWDz5Q", + "name": "Philadelphia Chocolate Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 2.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels & Travel, Specialty Food, Tours, Chocolatiers & Shops, Food", + "hours": null + }, + { + "business_id": "h6XRiG4QOnuY6n3SRnou1w", + "name": "Cooperage Cafรฉ", + "address": "150 S Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491962348, + "longitude": -75.1515886104, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Sandwiches, Food, Cafes", + "hours": null + }, + { + "business_id": "doo0-waBL2E2kzySKMBvQQ", + "name": "Millennium Art Gallery", + "address": "1332 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949036, + "longitude": -75.163516, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Arts & Crafts, Shopping, Print Media, Framing, Arts & Entertainment, Photography Stores & Services, Art Galleries, Local Services, Printing Services, Mass Media", + "hours": { + "Monday": "11:0-17:30", + "Tuesday": "10:30-17:30", + "Wednesday": "10:30-17:30", + "Thursday": "10:30-17:30", + "Friday": "11:0-17:30", + "Saturday": "10:0-13:0" + } + }, + { + "business_id": "tXPqXn7pUCPyXJ055woDkg", + "name": "St. Charles Skating Rink", + "address": "2001 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941344, + "longitude": -75.1759512, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Skating Rinks", + "hours": null + }, + { + "business_id": "QM64k4lKrBpctTij2tSp1w", + "name": "Philly Connextion Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Event Planning & Services, Photographers, Event Photography, Session Photography", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "SGd2xHjz0eZ-SbTHQsSUGQ", + "name": "Ed & Son's Painting and repairs", + "address": "3219 Brighton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0366507, + "longitude": -75.0497751, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Painters, Contractors, Home Services, Pressure Washers, Handyman", + "hours": { + "Monday": "0:0-0: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": "9:0-12:0" + } + }, + { + "business_id": "OeUayLGG_D_BPzLyGdxp7Q", + "name": "Pathmark", + "address": "3399 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9897382, + "longitude": -75.1012099, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Grocery", + "hours": { + "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" + } + }, + { + "business_id": "utfAinp69NM4FLHShmxGtQ", + "name": "Brownstone Natural Hair And Barber Studio", + "address": "524 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422299925, + "longitude": -75.1507185172, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Barbers, Hair Salons", + "hours": { + "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" + } + }, + { + "business_id": "Q-V4_FpcWd7KwhSHLcYYNg", + "name": "JFK Nails", + "address": "1823 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545436, + "longitude": -75.1707265, + "stars": 3.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "-NFHQ0ePNYu6SrwekdhcBw", + "name": "Ottoโ€™s Taproom", + "address": "1216 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9751372788, + "longitude": -75.183512288, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "OutdoorSeating": "None", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "Smoking": "u'no'" + }, + "categories": "Bars, Lounges, Nightlife, Beer Bar", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "1VoNUv9KM4y1SHmn0xbNaA", + "name": "Hahnemann University Hospital", + "address": "230 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9573045, + "longitude": -75.1630978, + "stars": 2.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Emergency Rooms, Doctors, Health & Medical, Hospitals, Urgent Care, Medical Centers, Urologists, Dermatologists, Food", + "hours": { + "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" + } + }, + { + "business_id": "49Gyz-LD9MxTh1yzbYiOhw", + "name": "Menagerie Coffee", + "address": "18 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496727, + "longitude": -75.1459188, + "stars": 4.5, + "review_count": 390, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "None" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "nsxFXNzF-XdAylNM7MAv_w", + "name": "Charles Schwab", + "address": "1650 Market St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952658, + "longitude": -75.167853, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Financial Services, Financial Advising, Investing, Banks & Credit Unions", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "VkDAFPL3lRvZrKg7266Mkg", + "name": "Plumer & Associates, Inc.", + "address": "226 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411326, + "longitude": -75.1466875, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Services, Commercial Real Estate, Real Estate, Home Services, Apartments, Property Management", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "g6ZBpREJxXD122VMICjSoQ", + "name": "Hudson Table - Philadelphia", + "address": "1001 N 2nd St, Unit 01", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665629, + "longitude": -75.1399899, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Cooking Schools, Caterers, Education, Event Planning & Services, Specialty Schools, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "8yZzf0gdWpSmY6ziyq7hKQ", + "name": "Sazon Restaurant & Cafe", + "address": "941 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619035, + "longitude": -75.1543329, + "stars": 4.0, + "review_count": 370, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True" + }, + "categories": "Vegetarian, Food, Venezuelan, Cafes, Latin American, Desserts, Restaurants", + "hours": { + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "x6a6XS8xa4pEk_16Q4OjgA", + "name": "Septa East Falls Station", + "address": "3310 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0115103, + "longitude": -75.1920207, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Public Transportation", + "hours": null + }, + { + "business_id": "f80tPVX_SxnBElz2bNSznw", + "name": "JAVA Ink", + "address": "3722 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0096191, + "longitude": -75.1931052, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "American (New), Shopping, Coffee & Tea, Restaurants, Internet Cafes, Food, Arts & Crafts", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-0:0", + "Saturday": "7:30-0:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "cZHpiiF3HpOKS9Xq-mchpw", + "name": "Pizza Fanatic", + "address": "5940 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.044645, + "longitude": -75.149908, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "bd3E9cJ7fWTINbMEjVnt-Q", + "name": "Veggie T Rex Deli", + "address": "127 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9554133, + "longitude": -75.1645002, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False" + }, + "categories": "Delis, Vegan, Restaurants, Gluten-Free, Vegetarian, Salad, Pizza", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "UaDnEIiRNCyLvrQWE4g0sg", + "name": "Square Pie", + "address": "801 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385948, + "longitude": -75.1526455, + "stars": 4.5, + "review_count": 145, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Italian, Pizza, Restaurants", + "hours": { + "Tuesday": "16:0-19:30", + "Wednesday": "16:0-19:30", + "Thursday": "16:0-19:30", + "Friday": "16:0-20:30", + "Saturday": "16:0-20:30" + } + }, + { + "business_id": "jygrkzqAdyQKSJkE9XNGlQ", + "name": "Executive Auto Salon", + "address": "5223 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.013296, + "longitude": -75.069183, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Auto Repair, Auto Customization, Body Shops, Automotive, Auto Detailing", + "hours": { + "Monday": "7:0-16:30", + "Tuesday": "7:0-16:30", + "Wednesday": "7:0-16:30", + "Thursday": "7:0-16:30", + "Friday": "7:0-16:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "RLD1aA80zeHaZeEDc2AEmw", + "name": "South Philly Cycles", + "address": "421 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262361, + "longitude": -75.1535045, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Motorcycle Dealers, Automotive, Motorcycle Repair", + "hours": null + }, + { + "business_id": "JSMvJtdPVGgq9xfc298QVw", + "name": "New England Pizza", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0722499474, + "longitude": -75.0311222039, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Pizza, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "uKKRHbXXAIuGxOxs9miwOg", + "name": "Olive Garden Italian Restaurant", + "address": "1346 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507424, + "longitude": -75.1635776, + "stars": 2.5, + "review_count": 88, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Salad, Bars, Nightlife, Italian, Wine Bars", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "_9nynjP2Fkv-K-wo4PWjQg", + "name": "PNC Bank", + "address": "2200 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0487885019, + "longitude": -75.0623287261, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions, Home Services, Investing, Mortgage Brokers, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "LaDJBSYEKiQ3iMqbLXt_sg", + "name": "Upper Cuts Barber Shop", + "address": "3471 Ainslie St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0127179, + "longitude": -75.1895529, + "stars": 5.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "tmroquufdrXXwFx1qiXNuA", + "name": "Cafe Liz", + "address": "5437 N Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0342467, + "longitude": -75.1298054, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, '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}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Iberian, Nightlife, Restaurants, Bars, Portuguese", + "hours": { + "Monday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Y46_nZxtCaFpOG1GrD9n2w", + "name": "Advanced Dentistry of Center City", + "address": "1601 Walnut St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949966, + "longitude": -75.167634, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "General Dentistry, Dentists, Health & Medical, Endodontists, Cosmetic Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "-kX4WpZWN_6Xp2mVsYoKVg", + "name": "Sweat Fitness", + "address": "700 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94035, + "longitude": -75.1512487648, + "stars": 2.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Trainers, Gyms, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "TfKROigrZVOPbAJG65mgLw", + "name": "Jay Harry Hoffman, DDS", + "address": "1015 Chestnut St, Ste 1117", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950402, + "longitude": -75.157617, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Oral Surgeons, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Kq2b7UTDJnk_luBRwa5LiA", + "name": "Target", + "address": "7162 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.044429, + "longitude": -75.232731, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "HasTV": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "ByAppointmentOnly": "False", + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "RestaurantsReservations": "False" + }, + "categories": "Fashion, Grocery, Drugstores, Home Decor, Food, Department Stores, Shopping, Electronics, Home & Garden, Furniture Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "bKrSIckF_9t_OSCVLETPJg", + "name": "Mega Marijuana Dispensary", + "address": "807 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473742, + "longitude": -75.1552904, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False" + }, + "categories": "Shopping, Cannabis Clinics, Health & Medical, Cannabis Dispensaries", + "hours": { + "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" + } + }, + { + "business_id": "Hr16lbtrtvZhFr9vvkLW1g", + "name": "Mural Arts Philadelphia", + "address": "128 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9653670987, + "longitude": -75.1669141221, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hotels & Travel, Tours, Art Galleries, Shopping, Arts & Entertainment", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "M6yUUIE8-incodeeJrMpVQ", + "name": "Martin Law", + "address": "1818 Market St, Fl 35", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532242, + "longitude": -75.1710105, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Employment Law, Workers Compensation Law, Lawyers, Professional Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "XBwxCXPE8MX1aMs-zT1-Fg", + "name": "Studio 34", + "address": "4522 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9488407, + "longitude": -75.2136177, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Performing Arts, Yoga, Pilates, Active Life, Health & Medical, Fitness & Instruction, Arts & Entertainment", + "hours": { + "Monday": "10:0-20: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", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "q-zV08jt6U-q05SMEuQJAQ", + "name": "The Original Tony Lukes", + "address": "39 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9141065086, + "longitude": -75.1487272304, + "stars": 4.0, + "review_count": 1910, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForKids": "True", + "HasTV": "False", + "Caters": "True", + "Alcohol": "'none'", + "BYOB": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BikeParking": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Fashion, Used, Vintage & Consignment, Cheesesteaks, Restaurants, Breakfast & Brunch, Shopping", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "SHSLbgp5ZoqdWsMbaUD_Gg", + "name": "River City Outpost", + "address": "4414 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025984, + "longitude": -75.225233, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Fruits & Veggies, Specialty Food, Grocery, Organic Stores, Food", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "5aKoh1_j9X27L1P9X9dzgA", + "name": "Checkers", + "address": "4322 Market ST", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957759, + "longitude": -75.2090475, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "None", + "OutdoorSeating": "False" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-4:0", + "Saturday": "10:0-4:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "tOOVfgPDKtt-YauqIIUx4g", + "name": "Binchล", + "address": "228 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412059, + "longitude": -75.1468728, + "stars": 4.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "None", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True" + }, + "categories": "Sushi Bars, Bars, Restaurants, Japanese, Tapas/Small Plates, Chinese, Nightlife, Barbeque", + "hours": null + }, + { + "business_id": "Xuppzuq-HxuzmT3fsGwP_g", + "name": "Philly Pharmacy", + "address": "210 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498683, + "longitude": -75.144176, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Drugstores", + "hours": null + }, + { + "business_id": "isYxsQR2GpzXX7nviDvelg", + "name": "Garden Court Plaza by Post Brothers", + "address": "4701 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.952626, + "longitude": -75.2166302, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Automotive, Parking, Real Estate, Apartments", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "3vmDeY3fTP3F_eICgrvehQ", + "name": "Payless Cleaners", + "address": "15200 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1341318, + "longitude": -75.0105026, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "ppgoocYga1HPYL6lsIZvnw", + "name": "Bistro Perrier", + "address": "4207 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551006, + "longitude": -75.2074747, + "stars": 4.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': True, 'valet': False}", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "Caters": "False" + }, + "categories": "Colleges & Universities, Bars, Specialty Schools, Cooking Classes, Food, Mediterranean, American (New), Nightlife, Arts & Crafts, Restaurants, Cooking Schools, Education, Shopping, Bakeries, French, Wine Bars", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-22:0", + "Wednesday": "7:30-22:0", + "Thursday": "7:30-22:0", + "Friday": "7:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "cIrcR4qiDlPGYmxh-OehyA", + "name": "Cutmasters Barber Shop", + "address": "511 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9705148, + "longitude": -75.1455232, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-20:30", + "Friday": "8:30-20:30", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "nz5RN5C4ezvsKDyVu2pSLA", + "name": "MrBeast Burger", + "address": "1320 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618015, + "longitude": -75.1601716, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Burgers, Restaurants, Food, Food Delivery Services", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "3N0afqO3P7mOEQXtn4UGAw", + "name": "Z Laundry", + "address": "8001 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0733870565, + "longitude": -75.1577121019, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "sBAjMAHmouAENKGzhv6O3w", + "name": "Kindy's Factory Outlet", + "address": "2900 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.915067, + "longitude": -75.187128, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Discount Store", + "hours": { + "Monday": "10:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "rbZAoFpfbccaIwHnOskVQQ", + "name": "Goodyear Auto Service", + "address": "1815 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9181439144, + "longitude": -75.1786950231, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Automotive, Auto Repair, Tires, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "c1JI1grorcKrpp9eN4hFcA", + "name": "Northeast Car Connection", + "address": "2001 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1129161, + "longitude": -75.0039297, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Automotive, Used Car Dealers, Auto Parts & Supplies", + "hours": { + "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-17:0" + } + }, + { + "business_id": "2vbbxo8E4z_41e9E3WgNRw", + "name": "Play2", + "address": "1526 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9114175, + "longitude": -75.1745111, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "'beer_and_wine'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Sports Bars, Nightlife, Bars, Arcades, Arts & Entertainment", + "hours": null + }, + { + "business_id": "voI5HNsL96_s5vlCpa-Q-A", + "name": "La Casa De Tu Madre", + "address": "800 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405489691, + "longitude": -75.1560400799, + "stars": 3.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Smoking": "u'no'" + }, + "categories": "Restaurants, Bars, Mexican, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "2T5t9DguNoYQAoTpA_8mcw", + "name": "Philly AIDS Thrift", + "address": "710 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940654, + "longitude": -75.151203, + "stars": 4.5, + "review_count": 305, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Fashion, Department Stores, Used, Vintage & Consignment, Shopping, Thrift Stores, Local Services, Community Service/Non-Profit", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "TVau2OxtX8rVe2As-I9Rgw", + "name": "Swaray's Bike Shop", + "address": "612 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.950079, + "longitude": -75.227271, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Bike Repair/Maintenance, Bikes, Local Services, Shopping, Sporting Goods", + "hours": null + }, + { + "business_id": "2f6NaQVGTM59OGvsdT9pxg", + "name": "Mood Indian Restaurant", + "address": "444 N 4th St, Ground Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9591167408, + "longitude": -75.1456578142, + "stars": 4.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Halal, Vegetarian, Pakistani, Indian", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "Bhi6oPbGK5zoyj9qoRxzfA", + "name": "Art in the Age", + "address": "116 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9525863309, + "longitude": -75.1452570203, + "stars": 4.5, + "review_count": 92, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "NoiseLevel": "u'quiet'", + "HappyHour": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Men's Clothing, Fashion, Accessories, Distilleries, Cocktail Bars, Tasting Classes, Beer, Wine & Spirits, Bars, Nightlife, Shopping, Education", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "QGtufoc9UhLVY6g8AeoY5Q", + "name": "Mr Wish", + "address": "189 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0885892, + "longitude": -74.9659343, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Bubble Tea", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "YpV0DniZQKnG6mWVVl-TSw", + "name": "Bubba's Texas BBQ", + "address": "19 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689174736, + "longitude": -75.1351448155, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "hWGMdTAvBJYQC8_scQv4Bg", + "name": "QQ Deli Market", + "address": "1231 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560857, + "longitude": -75.1603557, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "None", + "RestaurantsReservations": "None", + "BusinessAcceptsCreditCards": "None", + "RestaurantsGoodForGroups": "None", + "RestaurantsAttire": "'casual'" + }, + "categories": "Delis, Convenience Stores, Food, Sushi Bars, Restaurants", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "m0za_1Ocf0Q0rxlBYVDq7g", + "name": "Paradise Inn", + "address": "2720 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9740992, + "longitude": -75.1812936, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "VRbgrqNCR5914pV-KWBwYQ", + "name": "Fine Shaves & Cuts", + "address": "131 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488921, + "longitude": -75.1572097, + "stars": 4.5, + "review_count": 133, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "s_dMgCtQSMGBkru_nkfTpw", + "name": "Sunday's Best", + "address": "41 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9609773, + "longitude": -75.2243756, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'dressy'", + "HasTV": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "r9RdpSEb2-0SGD_UcvnDkA", + "name": "Four Seasons Diner", + "address": "2811 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0441858, + "longitude": -75.0529466, + "stars": 3.5, + "review_count": 195, + "is_open": 1, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Corkage": "False", + "WheelchairAccessible": "True", + "BYOB": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}" + }, + "categories": "Diners, Restaurants", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-10:0" + } + }, + { + "business_id": "tDxZHakdC1C67XVC2QUVKQ", + "name": "Zaccone's Restaurant", + "address": "3151 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.040781, + "longitude": -75.0478131, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "'quiet'", + "BikeParking": "False", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False" + }, + "categories": "Italian, Restaurants", + "hours": { + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-20:30", + "Saturday": "16:0-20:30", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "_Q3XmBesceFqn9Dk-w6tlA", + "name": "Artisan Boulanger Patissier", + "address": "1218 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264181, + "longitude": -75.1664513, + "stars": 4.5, + "review_count": 194, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "HappyHour": "False", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "None" + }, + "categories": "Coffee & Tea, Bakeries, Restaurants, Food, French", + "hours": { + "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" + } + }, + { + "business_id": "nMDteyIwo3zLbqm45xBwFw", + "name": "Prince Tea House", + "address": "203 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553481, + "longitude": -75.1540592, + "stars": 4.5, + "review_count": 176, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "False", + "HappyHour": "False" + }, + "categories": "Sandwiches, Food, Desserts, Coffee & Tea, Restaurants, Tea Rooms", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "stAPGCcWDJkNWA5u3nqa8Q", + "name": "Tacotacomexican", + "address": "261 S 44th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953222, + "longitude": -75.210254, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "Caters": "False", + "WheelchairAccessible": "False", + "HasTV": "False", + "HappyHour": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "Corkage": "True", + "BYOB": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "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": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "KQgCflC8eqJU5kvJkByXzw", + "name": "Yamitsuki Ramen", + "address": "1028 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535423, + "longitude": -75.1574552, + "stars": 3.5, + "review_count": 478, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Japanese, Bubble Tea, Shaved Ice, Food, Izakaya, Sushi Bars, Ramen, Restaurants, Bars, Cocktail Bars, Beer, Wine & Spirits, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:45", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "W3XUQEn7v84t_6uz829ATw", + "name": "Dunkin'", + "address": "9900 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0648965, + "longitude": -74.9831819, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "DriveThru": "None", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "4:30-22:0", + "Sunday": "4:30-22:0" + } + }, + { + "business_id": "EUgqUqD5K4sp0zOMWYPmqw", + "name": "Saladworks", + "address": "3728 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9511814, + "longitude": -75.1985097, + "stars": 2.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'" + }, + "categories": "American (New), Sandwiches, Salad, American (Traditional), Vegetarian, Soup, Restaurants", + "hours": { + "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-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "teEkOtB2sWP8dijRhHeutg", + "name": "SW Smith Moving & Hauling", + "address": "1728 Meadow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0139483, + "longitude": -75.0811087, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30" + } + }, + { + "business_id": "4Pum6FOeM6RhMI5WQtvi2w", + "name": "Angelique's The Artists' of Clean", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Home Cleaning, Home Services, Office Cleaning, Real Estate", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "pYs54pWZ_ajw_c92ptzB3Q", + "name": "Lightbox Cafe", + "address": "704 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404206, + "longitude": -75.1496878, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Tea Rooms, Food, Juice Bars & Smoothies, Vegan", + "hours": null + }, + { + "business_id": "UvJrc3opqG8q3eHxYnqPxg", + "name": "Toni Rust, DDS", + "address": "5542 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.024912, + "longitude": -75.2084663, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Oral Surgeons, Health & Medical, Dentists, General Dentistry", + "hours": null + }, + { + "business_id": "ybQFmzhEieLK512AfSYBkQ", + "name": "Rita's Italian Ice", + "address": "8201 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.067871, + "longitude": -75.179276, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Shaved Ice, Food", + "hours": null + }, + { + "business_id": "OSFvJokeN68Pl1kQxaxP8w", + "name": "Squeaky Green by Thomas", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Office Cleaning, Home Services, Home Cleaning, Professional Services, Home Health Care, Handyman, Health & Medical", + "hours": { + "Monday": "10:0-20:30", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "SwdHTo4A_5eA8QsfelTPdg", + "name": "Food for All Market", + "address": "7127 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059271, + "longitude": -75.189901, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Health Markets, Specialty Food, Restaurants, Bakeries, Food, Gluten-Free, Sandwiches, Grocery", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "XIR6VBtBm5L9CzNqzEPKng", + "name": "Three Countries Pizzeria", + "address": "1626 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9321252, + "longitude": -75.1723005, + "stars": 2.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Mexican, Italian, American (Traditional), Restaurants, Pizza", + "hours": { + "Saturday": "15:0-4:0", + "Sunday": "15:0-4:0" + } + }, + { + "business_id": "s2SXh9n7NSnXzQXM2FEUDg", + "name": "Catering by Mario's", + "address": "2617 E Indiana Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982783, + "longitude": -75.1076736, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Caterers, Event Planning & Services", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "eEAqsjhRZd8diGALYKUqhw", + "name": "McCusker's Tavern", + "address": "2601 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9186773, + "longitude": -75.1757308, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Music": "{u'dj': False, u'live': None, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Pubs, Bars, Nightlife, Dive Bars, Gay Bars", + "hours": null + }, + { + "business_id": "l6gKBfHU0YB4p2-XWNTglA", + "name": "Springfield Beer Distributor", + "address": "2206 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9393899, + "longitude": -75.1802944, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:30", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "JrDLf5e-awIC0suNlK39Zw", + "name": "Locust Rendezvous", + "address": "1415 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484648948, + "longitude": -75.1658053, + "stars": 4.0, + "review_count": 230, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Bars, Beer Bar, Restaurants, Salad, Dive Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "o2wOHahV_ZSWi7X-aA5VOw", + "name": "Jimmy's Old London Pizza", + "address": "2347 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.983781, + "longitude": -75.115526, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "f_rRBei5W9-8wPSTzlvGYw", + "name": "Village Kitchen", + "address": "342 Queen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374002, + "longitude": -75.1499642, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "haWjQEBveCilIvAyKblrXw", + "name": "Phoenix Shoe Shine", + "address": "Suburban Station Concourse", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539684979, + "longitude": -75.1681288942, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair, Shoe Shine", + "hours": { + "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" + } + }, + { + "business_id": "_7_ZYh1lQkVvmogQyn4HAw", + "name": "Tarelli Custom Tailors", + "address": "1639 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294436, + "longitude": -75.1682669, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "nGqJwKUT9DuklBXQE044Eg", + "name": "Panache Hair Design", + "address": "205 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492408, + "longitude": -75.1659147, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "WetGZHi6Q_A-zxujdzjVJg", + "name": "Loco Pez", + "address": "4631 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487664234, + "longitude": -75.2169698104, + "stars": 3.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "DriveThru": "False", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Caters": "True" + }, + "categories": "Nightlife, Tacos, Bars, Mexican, Restaurants", + "hours": { + "Monday": "14:0-22:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "0C85wdzr9lQmGzh30CBMxw", + "name": "The Amp Shop", + "address": "4732 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0276669939, + "longitude": -75.1593834423, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Electronics Repair, Musical Instruments & Teachers, Local Services, Musical Instrument Services", + "hours": { + "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": "12:0-16:0" + } + }, + { + "business_id": "vQNRMrVD7tQTCmYkYBMLyQ", + "name": "EverSafe Moving", + "address": "8701 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.042909, + "longitude": -75.006887, + "stars": 5.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Shipping Centers, Local Services, Movers, Self Storage", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "f933RAjLP09qWsqZdh6qPg", + "name": "So Crepe Manayunk", + "address": "4357 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025762, + "longitude": -75.223853, + "stars": 4.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Caters": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Creperies, Restaurants, Desserts, French, Food", + "hours": { + "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", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "FdLjOH275hK_BiJL9pPwhg", + "name": "Grande Olde Cheesesteak", + "address": "111 S Independence Mall E, Ste 21", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497622, + "longitude": -75.1480623, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "GoodForKids": "True" + }, + "categories": "Sandwiches, Cheesesteaks, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "ZG9mVw-YfoyyKVEfDF_qpQ", + "name": "Robin Apartments", + "address": "2003 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523389, + "longitude": -75.1737143, + "stars": 5.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate, Financial Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "XtQy3KXNigh0iGLh4Am3jA", + "name": "Historic Rittenhouse Town", + "address": "208 Lincoln Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0296733, + "longitude": -75.1905835, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Hiking, Active Life, Local Flavor, Parks, Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "y8Fg9LFYpvDCr_zehmCOkg", + "name": "Platinum Hair Company", + "address": "7625 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0514705479, + "longitude": -75.2362706512, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "11:0-19:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "Z5b1Me1YBZGQAxIx62vmqg", + "name": "So Crepe", + "address": "1506 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9438333, + "longitude": -75.1675337, + "stars": 4.5, + "review_count": 267, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "Gluten-Free, Creperies, Breakfast & Brunch, Ethnic Food, Specialty Food, Coffee & Tea, Restaurants, Food, French", + "hours": { + "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", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "TpLyNlRVcXREIw-94yOIaw", + "name": "Falafel Time", + "address": "2214 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451651, + "longitude": -75.1791734, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': None}", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Mediterranean, Middle Eastern, Halal", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "o3scBr-ylC8grqS8jTT14Q", + "name": "Giant Aquarium", + "address": "1539 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9292019, + "longitude": -75.156546, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Pet Stores, Pets", + "hours": null + }, + { + "business_id": "78j1ox-fsLGrnBRzn3y4_Q", + "name": "MILLAY", + "address": "4390 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025838, + "longitude": -75.2246096, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Women's Clothing, Home & Garden, Used, Vintage & Consignment, Fashion, Shopping, Accessories", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "l-bq-D1Nye5PLvh4md8SWg", + "name": "Polished By An Angel", + "address": "1731-1733 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444829006, + "longitude": -75.1713471115, + "stars": 4.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "7rStfblbjKIH1q9eDghF9A", + "name": "Uncle Nicks Pizza", + "address": "2825 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974728, + "longitude": -75.182701, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Pizza, Restaurants, Steakhouses", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Vw7dJJFqzLgxEsneIvmy1Q", + "name": "Aqua Malaysian Thai Cuisine", + "address": "705 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949672, + "longitude": -75.152562, + "stars": 3.5, + "review_count": 162, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Malaysian, Thai", + "hours": { + "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" + } + }, + { + "business_id": "NsAiuECBpHID6rZuGCz26w", + "name": "Founding Fathers Sports Bar & Grill", + "address": "1612 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439544, + "longitude": -75.1692787, + "stars": 3.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "HasTV": "True", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "DriveThru": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "Caters": "False" + }, + "categories": "Restaurants, Sports Bars, Bars, Nightlife, American (New)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "YR6iBlteQyBKHRkpenQ3OQ", + "name": "JJ Electrocity", + "address": "740 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.105171, + "longitude": -75.0338026, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Mobile Phones, Mobile Phone Repair, Electronics Repair, Electronics, IT Services & Computer Repair, Local Services, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "LCKWURSKqNmuGt8_qljQfA", + "name": "Accent On Animals", + "address": "804 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422995, + "longitude": -75.1557598, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Stores, Pet Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "vfD5iPMQiBI8fMguz2QU-w", + "name": "Sasa Beauty and Spa", + "address": "1004 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533721, + "longitude": -75.1566586, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Laser Hair Removal, Skin Care, Waxing, Hair Removal, Beauty & Spas, Day Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "zGeglx1xYT_53xYrpd2SFg", + "name": "The St. James", + "address": "200 W Washington Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9477151, + "longitude": -75.154082, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "fx-U1NC-HJlZ2In5UJiwNQ", + "name": "Art Machine Productions", + "address": "1345 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9714127, + "longitude": -75.1340946, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Art Galleries, Beauty & Spas, Shopping, Arts & Entertainment, Tattoo", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "FDG0iWM43AKux-_q8zQlIg", + "name": "Beautique Lash & Nails", + "address": "235 McClellan St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9253324, + "longitude": -75.150867, + "stars": 5.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas, Waxing, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "Lvxzjhsupfp4rd2oZbkh4g", + "name": "Bison Coffee", + "address": "1600 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9599273, + "longitude": -75.1657232, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Cafes, Restaurants, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "_tqPmZtjpuK1XpoLdBOphw", + "name": "Garces Dental Group", + "address": "212 Race St, Ste 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953661, + "longitude": -75.143468, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Health & Medical, Dentists, Pediatric Dentists, Cosmetic Dentists", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "6IRlUGtb_PZRR_IXJQ7Kbg", + "name": "Coffee House Too Cafe", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634343, + "longitude": -75.146801, + "stars": 4.5, + "review_count": 53, + "is_open": 0, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "Caters": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (New), Cafes", + "hours": { + "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": "8:30-15:0", + "Sunday": "8:30-15:0" + } + }, + { + "business_id": "HeUS0X72RccElOPKaZmnSA", + "name": "Penn Hospital Medicine", + "address": "51 N 39th St, 128 Wright-Saunders", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95825, + "longitude": -75.19875, + "stars": 2.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Medical Centers, Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "QvCc_mlkTSwKHviDolXz6A", + "name": "Dollar Tree", + "address": "4160 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0027576897, + "longitude": -75.2135895565, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "IMVCi-j2InXt_dJn5mnxEg", + "name": "Lola's Cafe", + "address": "224 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562529, + "longitude": -75.155908, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "BikeParking": "True" + }, + "categories": "Food, Cantonese, Vietnamese, Restaurants, Coffee & Tea, Chinese", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "PiFqvShE4ioCeyF7bhHwDQ", + "name": "ALDI", + "address": "9303 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0853388, + "longitude": -75.0458922, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fruits & Veggies, Discount Store, Food, Grocery, Shopping, Meat Shops, Specialty Food, Organic Stores, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "TiYGVQxNQ-wkr63o0JwaEA", + "name": "Haegeles Bakery", + "address": "4164 Barnett St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0263317, + "longitude": -75.0572246, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Bakeries", + "hours": { + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "7:0-16:0" + } + }, + { + "business_id": "cRYlFs-XQ6q-GTNOmcGcBw", + "name": "Aqua Plumbing & Heating", + "address": "4418A Holmesburg Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.039333, + "longitude": -75.023272, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Excavation Services, Local Services, Water Heater Installation/Repair, Home Services, Heating & Air Conditioning/HVAC, Hydro-jetting, Septic Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "vcbuzG5x11g68U23YF5T2g", + "name": "The Touraine", + "address": "1520 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9471729, + "longitude": -75.1675849, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "I4Szupt_YHzR9dczcNzfeA", + "name": "The El Bar", + "address": "1356 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9717648, + "longitude": -75.1354975, + "stars": 4.0, + "review_count": 160, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "WiFi": "u'no'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Dive Bars, Bars, American (New), Nightlife", + "hours": { + "Monday": "16:0-19:0", + "Tuesday": "16:0-19:0", + "Wednesday": "16:0-19:0", + "Thursday": "16:0-19:0", + "Friday": "16:0-19:0", + "Saturday": "16:0-19:0", + "Sunday": "16:0-19:0" + } + }, + { + "business_id": "zN1nWYBHTL4T4onTRoqE6g", + "name": "Children's Hospital of Philadelphia Cafeteria", + "address": "3401 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.94892, + "longitude": -75.193868, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Health & Medical, Hospitals, Restaurants, Cafes", + "hours": { + "Monday": "6:30-19:30", + "Tuesday": "6:30-19:30", + "Wednesday": "6:30-19:30", + "Thursday": "6:30-19:30", + "Friday": "6:30-19:30", + "Saturday": "6:30-19:30", + "Sunday": "6:30-19:30" + } + }, + { + "business_id": "9Jh85iabcBAiWBrAnn-I0Q", + "name": "Helen's Cleaners & Tailor", + "address": "101 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546359433, + "longitude": -75.1628029346, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Sewing & Alterations", + "hours": null + }, + { + "business_id": "aXWzxc2fYNBpr1xPLK2-qw", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "401 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0854722, + "longitude": -74.9648058, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "wLmJGKsj4LnXldXj3ecK0A", + "name": "Michael Singer Real Estate", + "address": "1117 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465538, + "longitude": -75.1600788, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Property Management, Real Estate Services, Home Services, Apartments, Real Estate, Real Estate Agents", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "-xV7ESuXJglzA_kdd8a7Mw", + "name": "Sweat Fitness", + "address": "1425 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548465, + "longitude": -75.1642664, + "stars": 2.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "CqwPurpyPzwGs9chhrUc3Q", + "name": "Paris Baguette", + "address": "600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344835, + "longitude": -75.1549941, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Coffee & Tea, Bakeries, Patisserie/Cake Shop", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "hxPnlWZmirx7neooZykmtg", + "name": "Sutton's", + "address": "1706 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9771594076, + "longitude": -75.1436727494, + "stars": 5.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "BYOB": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "RestaurantsReservations": "True" + }, + "categories": "American (Traditional), Cocktail Bars, Restaurants, Nightlife, Bars", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "12:15-13:0" + } + }, + { + "business_id": "IuFt1CTq9-tWu192kCUAxg", + "name": "Bella Vista Vintage", + "address": "613 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413012138, + "longitude": -75.1530492954, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Flooring, Home Services, Used, Vintage & Consignment", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "-t5dx3X0O63jCUuFEd-FcA", + "name": "The Palm Philadelphia", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9490779, + "longitude": -75.1648579, + "stars": 3.5, + "review_count": 205, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Italian, Restaurants, American (New), Steakhouses, Seafood", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "Qw7tz-UkPrpXaVidWuab4Q", + "name": "Philadelphia Museum of Art", + "address": "2600 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965573, + "longitude": -75.180969, + "stars": 4.5, + "review_count": 767, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Art Museums, Jazz & Blues, Arts & Crafts, American (New), Shopping, Museums, Nightlife, Art Galleries, Restaurants, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Vg48n8Yy0raElvW9xJKZFw", + "name": "Joe Foglia's Hair Stylist", + "address": "1417 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9255855, + "longitude": -75.1703389, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "Grk1h4mwG5aFyI1LVsxwvw", + "name": "Manayunk Self Storage", + "address": "116 Fountain St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0318239, + "longitude": -75.233526, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "IGxrAQcqw8Mr1x9WLXQsNA", + "name": "Hawthornes Biercafรฉ", + "address": "738 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410364, + "longitude": -75.1608686, + "stars": 4.0, + "review_count": 716, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "DogsAllowed": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Food, American (New), Sandwiches, Restaurants, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-17:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "gYFkfO-215AAOcH2cE9jNg", + "name": "Windows Done Right", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Pressure Washers, Window Washing, Home Services, Professional Services, Office Cleaning, Gutter Services, Home Window Tinting", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "U8GIloQDPVLV5JH3NjeUcA", + "name": "Avis Rent A Car", + "address": "201 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457341, + "longitude": -75.1413125, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": null + }, + { + "business_id": "aKZrfLHwqOMlYcDYDy_OEQ", + "name": "The Bagel Hut", + "address": "Montgomery St & Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.980309, + "longitude": -75.156274, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Bagels, Food, Breakfast & Brunch, Sandwiches", + "hours": { + "Monday": "6:30-14:0", + "Tuesday": "6:30-14:0", + "Wednesday": "6:30-14:0", + "Thursday": "6:30-14:0", + "Friday": "6:30-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "OniYp_RAqBP1s4Wd9_YWqw", + "name": "MangoMoon", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023536, + "longitude": -75.219756, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Tapas Bars, Thai", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "UtoDS1N5MV20A1F2MxH8Ug", + "name": "Quest Diagnostics", + "address": "828 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480362, + "longitude": -75.1547012, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Laboratory Testing, Diagnostic Services", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "Ko7mOX4Kqm3MeGKA81DZDw", + "name": "Godshall's Poultry", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Meat Shops, Specialty Food, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "h0JvRrc5E5WaX0i4y0TcWg", + "name": "Curiosity Shoppe", + "address": "529 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419095, + "longitude": -75.1491103, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Men's Clothing, Used, Vintage & Consignment, Fashion, Women's Clothing, Jewelry, Shopping, Shoe Stores", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "s59By5sG7zK4yKBFA7ZpSg", + "name": "Khmer Market", + "address": "1501 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299071, + "longitude": -75.1548818, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Ethnic Food, Imported Food, Grocery, Food, Specialty Food, Convenience Stores", + "hours": null + }, + { + "business_id": "6LrLVApWgUEUGogABELz8A", + "name": "Tony's Auto Service", + "address": "711 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9156931, + "longitude": -75.1604555, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Gas Stations", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "j-WKXu1uJbB2AvY09we9ZA", + "name": "Lorenzo's Pizza", + "address": "900 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388819134, + "longitude": -75.1579891, + "stars": 3.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "HasTV": "True", + "WiFi": "u'no'", + "DriveThru": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Cheesesteaks, Pizza, Restaurants, Burgers", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "UB8U6X0LshmhU-3Pwdfwig", + "name": "Radbill Animal Hospital", + "address": "11900 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1219192, + "longitude": -75.0165961, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Sitting, Veterinarians, Pet Services, Pet Groomers", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "10:0-14:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "kC6C9mqUq_hMUYZZ-5kKWA", + "name": "CJ & Eck's", + "address": "384 Shurs Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.025409, + "longitude": -75.212968, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': True, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, American (Traditional), Sports Bars, Nightlife, Bars", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "9ABnmZ01WrEx1RLoM1ivzg", + "name": "Kids with Paws", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Pet Services, Pets, Pet Transportation, Dog Walkers, Pet Sitting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "qbt1zCsv5aDQoGGjTfbV2A", + "name": "Dock Street Cafe", + "address": "6700 Essington Ave, Unit C-1, Philadelphia Wholesale Produce Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9097834, + "longitude": -75.2205579, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "American (New), Cafes, Restaurants", + "hours": { + "Monday": "20:0-0:0", + "Tuesday": "20:0-0:0", + "Wednesday": "20:0-0:0", + "Thursday": "20:0-0:0", + "Friday": "20:0-0:0", + "Sunday": "20:0-0:0" + } + }, + { + "business_id": "Rrd1WEcFWYRH85HdH7srHA", + "name": "The Bagel Factory on Independence Square", + "address": "510 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947521, + "longitude": -75.1502017, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Bagels, Food", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0" + } + }, + { + "business_id": "zMLpY0v7UXfnpwp6C0g95g", + "name": "Nail Society", + "address": "618 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961509965, + "longitude": -75.1413836755, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Nail Salons, Waxing, Beauty & Spas, Hair Removal, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "MHBuGL3Xo4Ud6kf8yKPYZQ", + "name": "Rita's Italian Ice", + "address": "1901 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9182896, + "longitude": -75.1807023, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False" + }, + "categories": "Shaved Ice, Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "FNjlHgBGW7g6_RdEG63wkA", + "name": "Linnett's Gulf", + "address": "2201 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964512, + "longitude": -75.174881, + "stars": 2.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Auto Repair, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "wPmeTBMlMsOh0K0LrWVPUQ", + "name": "Embassy Apartments", + "address": "2100 Walnut St Ofc", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506056698, + "longitude": -75.1759510514, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "f8d5NwkN4F2-mpx4MMDf3g", + "name": "Capogiro Gelato", + "address": "1625 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929346, + "longitude": -75.1638674, + "stars": 4.0, + "review_count": 95, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food, Restaurants, Italian, Gelato, Ice Cream & Frozen Yogurt", + "hours": { + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "W5Xn1-IYuMf_0ZimpRs_LA", + "name": "Wawa", + "address": "4371 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.996525, + "longitude": -75.0744153, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sandwiches, Restaurants, Coffee & Tea, Delis, Breakfast & Brunch, Food", + "hours": { + "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" + } + }, + { + "business_id": "6JeOgP-NpUedS4u5Iz3qlA", + "name": "Ocean Harmony", + "address": "937 Race St, 2nd Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554449, + "longitude": -75.1556214, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None" + }, + "categories": "Asian Fusion, Seafood, Chinese, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "j0xNFjuw9cCuFStDXu-jvA", + "name": "Yellowbird Bus", + "address": "7700 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.029833, + "longitude": -75.0249257, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Public Transportation, Hotels & Travel, Specialty Schools, Limos, Transportation, Education, Driving Schools", + "hours": null + }, + { + "business_id": "DgZ9_AF79OJ-Qa3sV3lFsA", + "name": "Allis Wagon", + "address": "191300000 Phila, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673647, + "longitude": -75.1709117, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Baby Gear & Furniture, Home & Garden, Home Decor, Children's Clothing, Jewelry, Gift Shops, Men's Clothing, Flowers & Gifts, Toy Stores, Fashion, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-15:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "mzsSZP8CLJKrxV9a-e-FMg", + "name": "Certified Green Team", + "address": "8517 Algon Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0743343, + "longitude": -75.0533003, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Air Duct Cleaning, Local Services, Carpet Cleaning", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "jGot3Ktq9kA7GDH7WwRq_Q", + "name": "Andy's Diner", + "address": "2224 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.120583, + "longitude": -74.979879, + "stars": 3.0, + "review_count": 117, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Diners, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "ypwdVHkqBc2xBPnMQCtOMg", + "name": "Vox Populi", + "address": "319 N 11th St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9583073, + "longitude": -75.1565993, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Art Galleries, Arts & Entertainment, Shopping", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "N2j1caPRBMk34IEKqtGLSA", + "name": "Bar 210", + "address": "211 W Rittenhouse Sq, Rittenhouse Hotel", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949705, + "longitude": -75.172932, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Seafood, Bars, Wine Bars, Nightlife", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Y6rfocWCLDo4yCEBTrtKjQ", + "name": "Petal Pusher Florist & Decorators", + "address": "2515 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9189429, + "longitude": -75.1705327, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "znkvT4-S6HtMmnqLQDqDlQ", + "name": "Chestnut Hill Library", + "address": "8711 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0777952, + "longitude": -75.2092982, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Public Services & Government, Libraries", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "10:0-18:0", + "Wednesday": "13:0-21:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "1RYggF8JhyXLrKQr6-8i2Q", + "name": "Auto Zone", + "address": "1416 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.060398, + "longitude": -75.164232, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Parts & Supplies", + "hours": null + }, + { + "business_id": "PNtOGLx7AowVstMVDaHn0Q", + "name": "Utrecht Art Supplies", + "address": "2020 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951925, + "longitude": -75.174425, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Art Supplies, Arts & Crafts, Shopping", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "6irNsrf_oMwEusD4a5ETdg", + "name": "Triple S Hair Lounge", + "address": "4145 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.966189, + "longitude": -75.206778, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Skin Care, Makeup Artists, Hair Stylists", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "qu0vPdKO4NN9Ucs51-BInA", + "name": "Philly Maid Green", + "address": "1905 N 2nd St, Unit 2F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979331, + "longitude": -75.137212, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Home Cleaning, Professional Services, Office Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "FVxo6PKyPgy5C9iOY_s9eQ", + "name": "Perfect Cut Hair Salon", + "address": "909 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554433, + "longitude": -75.1547889, + "stars": 4.5, + "review_count": 233, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "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": "9:30-19:0" + } + }, + { + "business_id": "n-Ff-FPW-9lQfBRTPxNeCA", + "name": "Pho Cyclo Cafe", + "address": "2124 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9237701, + "longitude": -75.1701907, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Vietnamese, Soup", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "9BGUIK6rcprILPyiyYnJyg", + "name": "The Foto Club", + "address": "3743 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.000822, + "longitude": -75.097048, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AgesAllowed": "u'21plus'", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Dance Clubs, Social Clubs, Arts & Entertainment, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "19:0-3:0", + "Thursday": "19:0-3:0", + "Friday": "19:0-3:0", + "Saturday": "19:0-3:0", + "Sunday": "19:0-3:0" + } + }, + { + "business_id": "w9GI3f5z_I3h1FvJo0oc8A", + "name": "Hemo's", + "address": "37th St And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509732529, + "longitude": -75.1970618339, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BYOBCorkage": "'no'", + "Caters": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Alcohol": "'none'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Food Stands, Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-15:30", + "Tuesday": "9:0-15:30", + "Wednesday": "9:0-15:30", + "Thursday": "9:0-15:30", + "Friday": "9:0-15:30" + } + }, + { + "business_id": "B4TDjoUs9zAhNKErLsHkxw", + "name": "Eddie's Grilled Cheese", + "address": "4309 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250825, + "longitude": -75.2221247, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "American (Traditional), Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "mgyfnz2juUJN4Pj42HLMiQ", + "name": "Argan Moroccan Cuisine", + "address": "132 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504955, + "longitude": -75.1691344, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Moroccan, Restaurants, Mediterranean, Breakfast & Brunch", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "FWTkrjnoIVJ4UiUWUVDi-Q", + "name": "Happy Bread Cafe", + "address": "5701 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0359153783, + "longitude": -75.1742697135, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True" + }, + "categories": "Bakeries, American (Traditional), Cafes, Coffee & Tea, Food, Restaurants", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "OdSw7sbipdKtyU4rZxFJHw", + "name": "Grumpy's Tavern", + "address": "1525 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929865, + "longitude": -75.1596689, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Nightlife, Bars, Dive Bars", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "s-Ff-8M5-AR-5jl59lCj1w", + "name": "Xfinity Live! Philadelphia", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9044484999, + "longitude": -75.1696318388, + "stars": 3.0, + "review_count": 361, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "None", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Nightlife, American (New), Food, Sports Bars, Bars, Breweries, Beer, Wine & Spirits", + "hours": { + "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" + } + }, + { + "business_id": "7we6aFgMlWGPxo9Buh833g", + "name": "Brilliant Earth", + "address": "1701 Walnut St, Fl 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502128, + "longitude": -75.1691922, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "9pr6rI87hZTCIAnFGNnvzQ", + "name": "Cafe Walnut", + "address": "703 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948124, + "longitude": -75.152821, + "stars": 4.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "HasTV": "True" + }, + "categories": "Bagels, Sushi Bars, Salad, Food, Coffee & Tea, Restaurants", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "PwadRAe8FyG9BZco2OZ5SA", + "name": "Hertz Rent A Car", + "address": "8201 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8937214, + "longitude": -75.240335, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": null + }, + { + "business_id": "Eni8nf_49XDbzEmaaCOQjw", + "name": "Pizano's Brick Oven Pizzeria And Grill", + "address": "1536 N Carlisle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977253, + "longitude": -75.159327, + "stars": 2.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Steakhouses, Italian, Seafood, Pizza, Ice Cream & Frozen Yogurt, American (Traditional), Restaurants, Food Delivery Services, Breakfast & Brunch, Food, Burgers", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "7D2vkGisfFzphfGXfeDCpg", + "name": "Utrecht Art Supplies", + "address": "301 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469713, + "longitude": -75.1646991, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Art Supplies, Shopping, Arts & Crafts", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "H3B6ZCjtQURr0iWBXYmYzg", + "name": "Pho Washington", + "address": "600 Washington Ave, Ste C & D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344835, + "longitude": -75.1549941, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "e85sw6dE3jNu697Hb3BskQ", + "name": "Dunkin'", + "address": "4301 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9582413, + "longitude": -75.2082353, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "False", + "DriveThru": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Cafes, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "4:0-22:0", + "Tuesday": "4:0-22:0", + "Wednesday": "4:0-22:0", + "Thursday": "4:0-22:0", + "Friday": "4:0-22:0", + "Saturday": "4:0-22:0", + "Sunday": "4:0-22:0" + } + }, + { + "business_id": "y4zd4gFTMW30xRCyGHWuDg", + "name": "PennDOT", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9131926356, + "longitude": -75.1572544622, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Departments of Motor Vehicles", + "hours": { + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "yjYOdci9mTeZphr-WD3H9Q", + "name": "Lil' Java Philly", + "address": "1739 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9215338976, + "longitude": -75.1767749189, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "WiFi": "'free'", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'" + }, + "categories": "Sandwiches, Burgers, Restaurants, Indonesian, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "lHu1ObJBD8IWLJGUpk87QQ", + "name": "Vino Volo", + "address": "Philadelphia International Airport, Terminal D/E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8780119385, + "longitude": -75.2394390106, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Wineries, Food, Restaurants, Bars, Nightlife, Arts & Entertainment, Wine Bars, American (New)", + "hours": { + "Monday": "7:0-22:30", + "Tuesday": "7:0-22:30", + "Wednesday": "7:0-22:30", + "Thursday": "7:0-22:30", + "Friday": "7:0-22:30", + "Saturday": "7:0-22:30", + "Sunday": "7:0-22:30" + } + }, + { + "business_id": "hwm0SPrb1IACKU5oU3hy0A", + "name": "Cannstatter Volksfest Verein", + "address": "9130 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.054758, + "longitude": -75.008043, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "WiFi": "u'paid'", + "Alcohol": "'full_bar'", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True" + }, + "categories": "German, Restaurants, Event Planning & Services, Caterers, Festivals, Venues & Event Spaces, Arts & Entertainment", + "hours": null + }, + { + "business_id": "0G-bDbhGK92i2tfyQEYMwQ", + "name": "Aces Design", + "address": "5310 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.032569689, + "longitude": -75.1315735191, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Screen Printing/T-Shirt Printing, Local Services, Customized Merchandise, Arts & Crafts, Embroidery & Crochet, Wholesale Stores", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "5m7bO2jAln0hygX7-Y72bQ", + "name": "Ga Vang", + "address": "600 Washington Ave, Ste C & D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344835, + "longitude": -75.1549941, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "fPjjGmgDMGstcYJcH4K19w", + "name": "Panera Bread", + "address": "200 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9538122, + "longitude": -75.2028403, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Salad, Soup, Cafes, Bakeries, Coffee & Tea, Sandwiches, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "ezp2hD0g_VPcZ53QcdFtbw", + "name": "Beverly's", + "address": "1100 N Front St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674815, + "longitude": -75.136957, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Reiki, Beauty & Spas, Tattoo, Permanent Makeup, Health & Medical, Makeup Artists", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:30-20:30", + "Saturday": "8:0-21:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "TnzOto9E46TKKZPF2Nq4hQ", + "name": "Barnes And Young Carpet Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0397682, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Tiling, Grout Services, Home Services, Carpet Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "FqOCC8Y9xryaX7sIBJcrxA", + "name": "Vic Sushi Bar", + "address": "2035 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515773, + "longitude": -75.174834, + "stars": 4.0, + "review_count": 884, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "HappyHour": "False", + "OutdoorSeating": "None", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "None" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "oyA87-Q_vqnmxVOn_auJQQ", + "name": "Spice C", + "address": "131 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9543751, + "longitude": -75.155929, + "stars": 4.0, + "review_count": 453, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "None", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Chinese, Comfort Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "aL_0huR-I6jwcyXIub3D-w", + "name": "Pollyodd", + "address": "1908 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926397, + "longitude": -75.167749, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Flowers & Gifts, Gift Shops, Local Flavor, Beer, Wine & Spirits, Shopping, Food", + "hours": { + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "13:0-21:0" + } + }, + { + "business_id": "6ajnOk0GcY9xbb5Ocaw8Gw", + "name": "Barbuzzo", + "address": "110 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950007, + "longitude": -75.1621577, + "stars": 4.5, + "review_count": 2893, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': True, 'casual': None}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Mediterranean, Restaurants, Pizza, Italian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "h9c5p5JwhdbMFGTFDvozag", + "name": "The Urban Cafe", + "address": "5109 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0170543, + "longitude": -75.2106773, + "stars": 4.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "American (New), Coffee & Tea, Restaurants, Food", + "hours": { + "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": "17:0-22:0", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "mPofJfeG_2GtKdHONWzKag", + "name": "Photography Tours of Philadelphia", + "address": "226 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9490487, + "longitude": -75.1736448, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Arts & Entertainment, Travel Services, Hotels & Travel, Tours", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "NkZLVNWKcHl33BlSVLcqsA", + "name": "Franklin's Barber Shop", + "address": "225 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9695176, + "longitude": -75.1330916, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Men's Hair Salons, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "sJJD7XjnQOffr-iCrbxvdA", + "name": "Hop Angel Brauhaus", + "address": "7980 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0770311, + "longitude": -75.0854109, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, German, Pubs, Bars, Restaurants", + "hours": { + "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": "10:0-2:0" + } + }, + { + "business_id": "VzHYbwcFJz2CdVCe5r3sDQ", + "name": "Bookhaven", + "address": "2202 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671382, + "longitude": -75.1740191, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-17:30", + "Sunday": "12:0-17:30" + } + }, + { + "business_id": "Avfv07Auf3pa6qIrpKtx-Q", + "name": "Manayunk Arts Festival", + "address": "4312 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0246303, + "longitude": -75.2225181, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor, Arts & Entertainment, Festivals", + "hours": null + }, + { + "business_id": "YDRFEj2R9Ua-c0j46HCTPQ", + "name": "Lush", + "address": "1525 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499764, + "longitude": -75.1670557, + "stars": 4.0, + "review_count": 166, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Skin Care, Beauty & Spas, Shopping, Cosmetics & Beauty Supply", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:30-18:0" + } + }, + { + "business_id": "f-E2twzNpM1EukmqYytmmQ", + "name": "Kinship Barber Lounge", + "address": "2538 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9861942221, + "longitude": -75.104347645, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "udtnLd8JxGcGPPT6qxzNgw", + "name": "Lifestyles Nationwide", + "address": "2109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951102, + "longitude": -75.176307, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Furniture Stores, Home & Garden, Shopping", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "dqe-f0X43pNhCO4jaFka0A", + "name": "Frontier", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8957459, + "longitude": -75.2284202, + "stars": 1.5, + "review_count": 119, + "is_open": 1, + "attributes": null, + "categories": "Airlines, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "F_p-pLonAAzzOSnTLdJMtw", + "name": "Frangelli's Bakery", + "address": "847 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919711, + "longitude": -75.1619599, + "stars": 4.5, + "review_count": 161, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Donuts, Bakeries", + "hours": { + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0" + } + }, + { + "business_id": "c5kcBGTi_xr32z88o8Al9Q", + "name": "Chinatown Square", + "address": "1016-18 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553798614, + "longitude": -75.1566319, + "stars": 3.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Food Court, Cambodian", + "hours": { + "Monday": "11:0-14:0", + "Tuesday": "11:0-14:0", + "Wednesday": "11:0-14:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-13:0" + } + }, + { + "business_id": "RDbA-QegR8eCmiq0WXxxDQ", + "name": "Richman's Ice Cream", + "address": "7302 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0617052395, + "longitude": -75.0838454728, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "uYZPcVLuCrnTZYmmTZMzjQ", + "name": "52nd Skyline Restaurant", + "address": "47 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9585731, + "longitude": -75.2248932, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, American (Traditional), Comfort Food", + "hours": { + "Monday": "6:30-14:30", + "Tuesday": "6:30-14:30", + "Wednesday": "6:30-14:30", + "Thursday": "6:30-14:30", + "Friday": "6:30-14:30", + "Saturday": "6:30-14:30" + } + }, + { + "business_id": "cD_If67mFKSEKFE1BZgJCA", + "name": "Trolley Car Ice Cream Shoppe", + "address": "7619 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.065664, + "longitude": -75.195612, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "okKdZGWVz8ew2gpZVrJbiA", + "name": "Fraternal Order Of Police Lodge 5", + "address": "11630 Caroline Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0992829062, + "longitude": -75.0031980872, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Arts & Entertainment, Social Clubs, Event Planning & Services", + "hours": null + }, + { + "business_id": "XxO5wrWEiDRR9sEmnc1msA", + "name": "Barbara Blau Collectables", + "address": "29 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507378, + "longitude": -75.1430526, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Antiques, Jewelry, Shopping", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "iMw_LReFjEsvhFGrU1EKqQ", + "name": "Tasty Place", + "address": "143 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9551451, + "longitude": -75.1574436, + "stars": 4.0, + "review_count": 139, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "Kdq1xfIFIKOdO-qW-_tg8A", + "name": "Twenty Manning", + "address": "261 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486521, + "longitude": -75.1741169, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Asian Fusion, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "m51s9JNDyR_VnYy7EWxgcA", + "name": "Tuttleman Imax Theater", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9583351365, + "longitude": -75.1736133699, + "stars": 2.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Cinema", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "hKdo1RNp-fKiSVswcjQK2g", + "name": "Jinxed at the Piazza", + "address": "1050 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664438, + "longitude": -75.139576, + "stars": 4.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Fashion, Home & Garden, Arts & Entertainment, Antiques, Home Decor, Furniture Stores, Shopping, Art Galleries", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "a2FCobBzFzC62IbHPa_oIg", + "name": "Mediterranean Cafe & Ice Cream", + "address": "3409 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530608377, + "longitude": -75.1928841837, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Restaurants, Cafes, Food", + "hours": null + }, + { + "business_id": "kdOoAdjtatHb6dg2RqNdkg", + "name": "Rain Lounge", + "address": "120 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948289, + "longitude": -75.14345, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Bars, Nightlife, Lounges", + "hours": null + }, + { + "business_id": "vKewfGh-UuMpDbZTbz1KeA", + "name": "Spice End: South Street", + "address": "650 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420298751, + "longitude": -75.153786689, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "GoodForKids": "True" + }, + "categories": "Vegetarian, Indian, Restaurants, Pakistani, Fast Food, Halal", + "hours": { + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "QS-MuBTaT5ufY22UGelWtw", + "name": "Cornbread and Coffee", + "address": "7175 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0641988, + "longitude": -75.1523304, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Coffee & Tea, Food, Restaurants", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "g-wFMsRD6VqXIOTuc1JPsA", + "name": "Park n Clean", + "address": "1650 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954662, + "longitude": -75.167697, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Car Wash, Laundry Services, Dry Cleaning & Laundry, Sewing & Alterations, Local Services, Auto Detailing, Automotive, Dry Cleaning", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "X9I44iLkLLZt_Mhory51Fw", + "name": "Litz Salon", + "address": "636 Washington Ave, Ste 632", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352316, + "longitude": -75.1550892, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "E3kCuQvpxM6O23_cjuSlmQ", + "name": "Maxwells Carribean American Take Outs", + "address": "2200 N 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9870409, + "longitude": -75.1612074, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Caters": "True", + "WiFi": "'no'", + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30" + } + }, + { + "business_id": "NjgeXPgv0FcdEsy-2ULWUQ", + "name": "Club Philadelphiaโ€‹", + "address": "1220 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485085, + "longitude": -75.1616073, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "6M5r34Sk3mC6kCVXLYKrag", + "name": "The Better Box", + "address": "8601 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0458955167, + "longitude": -75.0159519917, + "stars": 3.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Asian Fusion, Food, Food Trucks, Restaurants", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "oVwEPg-BADIFl2SlGma6jg", + "name": "Burrata", + "address": "1247 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9339252433, + "longitude": -75.1652430743, + "stars": 4.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "HasTV": "False", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "HappyHour": "False", + "DogsAllowed": "False", + "BYOB": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "False", + "Corkage": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "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": "17:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "uI8-q_D1pADZy8g1R1UP6Q", + "name": "KFC", + "address": "7350 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0625592, + "longitude": -75.0850316, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "'no'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "None", + "GoodForMeal": "None", + "RestaurantsDelivery": "True", + "BusinessParking": "None", + "Caters": "True", + "DriveThru": "True" + }, + "categories": "Chicken Wings, Restaurants, Chicken Shop, Fast Food", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "nmG12AwIEpIzx1Rd-5Nf8Q", + "name": "Bay Property Management Group Philadelphia", + "address": "1080 N Delaware Ave, # 506", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.965831, + "longitude": -75.1327524, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate Agents, Real Estate, Home Services, Real Estate Services, Apartments", + "hours": { + "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" + } + }, + { + "business_id": "5x0Qrz93x4msXr29NNRCkA", + "name": "Chili Szechuan", + "address": "4626 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948497, + "longitude": -75.2162611, + "stars": 3.5, + "review_count": 124, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Szechuan, Chinese", + "hours": { + "Monday": "11:0-22:30", + "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": "11:0-22:30" + } + }, + { + "business_id": "av2DTCAtrbQr8p18e0e0Cw", + "name": "Wendy's Deli", + "address": "2312 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9200716, + "longitude": -75.159003, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Delis, Food, Restaurants, Mexican", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "rabf02tlGDa8DcsYKal_kA", + "name": "Penn's Landing", + "address": "Blue Cross River Rin", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9479483, + "longitude": -75.1397376, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Tours, Hotels & Travel, Parks", + "hours": null + }, + { + "business_id": "EylVXUFlkCndr9DlGWb2yA", + "name": "Taco Bell", + "address": "5840 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.04233, + "longitude": -75.1446, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Restaurants, Fast Food, Mexican, Tex-Mex, Tacos", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "QlftJrBQV07DZP7Z6-_1Jg", + "name": "Video Library", + "address": "4040 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9528747, + "longitude": -75.204691, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Videos & Video Game Rental, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "BSss16DINplXj8RaQUMQwg", + "name": "TNS Diamonds", + "address": "136 S 8th St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483919, + "longitude": -75.154374, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Watches, Pawn Shops, Watch Repair, Jewelry Repair, Local Services, Matchmakers, Jewelry, Professional Services, Shopping", + "hours": { + "Monday": "10:30-17:30", + "Tuesday": "10:30-17:30", + "Wednesday": "10:30-17:30", + "Thursday": "10:30-17:30", + "Friday": "10:30-17:30" + } + }, + { + "business_id": "sPatE13elHkyLCtLDQ3qtQ", + "name": "Community Audio", + "address": "8020 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0711737, + "longitude": -75.2014456, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Electronics, Home Services, Home Theatre Installation, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "XL_Rq4qRwNdJ_yVaWqDUDg", + "name": "Mi Casita Preschool", + "address": "1415 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674219, + "longitude": -75.1616064, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Preschools, Local Services, Child Care & Day Care, Specialty Schools, Language Schools, Education", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "3Ue1baQZeGqo2bOksGpQhg", + "name": "Villari Brothers Bakery", + "address": "2134 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922647, + "longitude": -75.1632489, + "stars": 5.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Pizza, Restaurants, Italian, Food", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "nFw2YbqSluNq9omto-ToUg", + "name": "Safa Persian Teahouse", + "address": "4165 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0236254, + "longitude": -75.21984, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "WiFi": "'free'" + }, + "categories": "Tea Rooms, Food", + "hours": { + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "ssiL1F8iL-fTlkalaLzpvQ", + "name": "Blossom", + "address": "225 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9492137, + "longitude": -75.168964, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": null + }, + { + "business_id": "g2zwbLIqxtN9nGGuL43trg", + "name": "Pizza Brain", + "address": "2313 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9806746, + "longitude": -75.1280968, + "stars": 4.0, + "review_count": 575, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HappyHour": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "Alcohol": "u'none'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Pizza, Specialty Food, Museums, Food, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "fB2DpRZi4LB8kkZ83fDEVw", + "name": "Baba Bar", + "address": "8500 Essington Ave, Level 2, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.873796, + "longitude": -75.244075, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "4", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), Restaurants, Bars, Nightlife, Mediterranean", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "NUOATs5NHySPqGj39oaN1g", + "name": "Dentex Dental Group", + "address": "6227 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0477676, + "longitude": -75.0969671, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Periodontists, Endodontists, General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "yWL012Q65VunA4m_moqtPw", + "name": "Sabbatical Beauty", + "address": "1901 S 9th St, Bldg Bok, Ste 308", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9252954, + "longitude": -75.159828, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply, Skin Care", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "zDAPljNKUka4vGyKFR-KkQ", + "name": "Style By Blain", + "address": "8433 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0759172, + "longitude": -75.2058563, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Shoe Stores, Shopping, Fashion", + "hours": { + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "10:30-18:30", + "Saturday": "10:30-18:0", + "Sunday": "11:30-16:30" + } + }, + { + "business_id": "5E_llTG4jqraq0n95IFajA", + "name": "Oregon Express", + "address": "2700 S Marvine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9161098, + "longitude": -75.1671811, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "egk4EEv8KcmI6ZFyUieVeQ", + "name": "Four Seasons Hotel Philadelphia at Comcast Center", + "address": "1 N 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9550013332, + "longitude": -75.170976, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Day Spas, Beauty & Spas, Event Planning & Services, Hotels, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "8NCYYDGGPtmL4NxQxKUKBA", + "name": "Burger King", + "address": "5921 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.044244, + "longitude": -75.101804, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-21:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "yeTzjbJPd1lHd1apdP0xXQ", + "name": "Merzbacher's of Germantown", + "address": "4530 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0242390916, + "longitude": -75.1598716155, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:0", + "Saturday": "16:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "ZfUvZC7f3nuDNRNyVISumw", + "name": "Apex Manayunk", + "address": "4601 Flat Rock Road", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0292598, + "longitude": -75.2317036, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "csJpn8qHQIwTh97JsB7lew", + "name": "Express Limo", + "address": "7410 Lapwing Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9082321, + "longitude": -75.2381297, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Limos, Party Bus Rentals, Transportation, Event Planning & Services", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "7vp9dEMm2MMBLpPLykId5A", + "name": "Holy Smoke Bar, Restaurant & BBQ", + "address": "473 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0353453, + "longitude": -75.2179119, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Jazz & Blues, Nightlife, Arts & Entertainment, Barbeque", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "pNOgbiOm3wOhqw9zNFCuDw", + "name": "Temple Garden Chinese Restaurant", + "address": "1524 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.976779, + "longitude": -75.1584154, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-3:30", + "Saturday": "11:0-3:30", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "krsZ0fowPeQyIT7cPKdP0Q", + "name": "ZAKTi", + "address": "744 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393539, + "longitude": -75.1498066, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Massage Therapy, Weight Loss Centers, Health & Medical, Trainers, Fitness & Instruction", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "2HD88VjLfRjo2jRwfZ_q-w", + "name": "Neway Hair Salon", + "address": "224 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559869, + "longitude": -75.1543443, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "jkUjZI9RjmoIuMPpwpdSRw", + "name": "Victoria's Kitchen", + "address": "7304 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0650858, + "longitude": -75.1553463, + "stars": 2.5, + "review_count": 191, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Comfort Food, Soul Food, Restaurants", + "hours": { + "Monday": "13: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", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "RBrjw9lwqkSwLUw1hZgGBw", + "name": "Boxers PHL", + "address": "1330 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949153, + "longitude": -75.163396, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "CoatCheck": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WiFi": "'free'", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'loud'", + "ByAppointmentOnly": "False", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Bars, Gay Bars, Bars, Karaoke, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "qco6vin5bT7cD7miX55aoQ", + "name": "Sweet Me Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Event Planning & Services, Session Photography, Photographers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "m7ASFgmWejezvZmPmj6_yg", + "name": "Villagio Pizza", + "address": "9233 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0553885, + "longitude": -75.0035074, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Sunday": "11:0-12:0" + } + }, + { + "business_id": "Auc20f0uYTIwPnJIqcdmNw", + "name": "Crepesody", + "address": "1800 John F Kennedy Blvd, 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9540100098, + "longitude": -75.1702728271, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True" + }, + "categories": "Food, Restaurants, Coffee & Tea, Creperies, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "qlU5YwDLNDXuY48y5zgvjg", + "name": "Caroline's Pet Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Pet Sitting, Dog Walkers, Pets, Pet Services, Home Services, House Sitters", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "T_GeXNYY_zO0WpJzBxQj4w", + "name": "LeBus East Falls", + "address": "4201 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0088924745, + "longitude": -75.1937016472, + "stars": 3.5, + "review_count": 199, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': True, 'valet': False}", + "NoiseLevel": "'average'", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': None}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Nightlife, Beer Bar, Burgers, Breakfast & Brunch, American (Traditional), Restaurants, Bars, Seafood", + "hours": { + "Monday": "16:0-19:45", + "Tuesday": "16:0-19:45", + "Wednesday": "16:0-19:45", + "Thursday": "16:0-19:45", + "Friday": "16:0-20:45", + "Saturday": "16:0-20:45", + "Sunday": "16:0-19:45" + } + }, + { + "business_id": "eDFzAhqPm5Ch5irJdiba8g", + "name": "William Penn Realty Group", + "address": "19 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528956, + "longitude": -75.1750697, + "stars": 2.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Property Management", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "sGRWVnRKiajfm8Bi7gr4RQ", + "name": "Kevin Tinneny's Exterminating", + "address": "7408 Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0487122, + "longitude": -75.2296517, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Pest Control, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "8J-vUGThbFqCxQhrcqP0CQ", + "name": "CVS Pharmacy", + "address": "4849 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.959544, + "longitude": -75.218536, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Convenience Stores, Pharmacy, Food, Health & Medical, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "v3nYPLm8PkbbtQhsrqTo-Q", + "name": "Mr. Chicken", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622043, + "longitude": -75.1721077, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "QIEajLDnaNgFrCHWmiXCaQ", + "name": "Lombard Cafe", + "address": "542 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429290453, + "longitude": -75.1520036906, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Coffee & Tea, Food, Bakeries", + "hours": { + "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": "7:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "K552cD0P1v2pdM_-A_3qLg", + "name": "Temple University Hospital Cafeteria", + "address": "3401 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0054237, + "longitude": -75.1507198, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Restaurants, Food", + "hours": null + }, + { + "business_id": "fvKwOXGdrRxh8RYMGBV56w", + "name": "Subway", + "address": "501 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9444367456, + "longitude": -75.1648213, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Sandwiches, Restaurants, Grocery", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "0Yo0wD-eImLSf8diTTHjOg", + "name": "Fab Pet Care", + "address": "20th St & Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967149, + "longitude": -75.170099, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Sitting, Pet Services", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "HvcIFoojaEFIGUCWgtu0Iw", + "name": "Ryerss Museum & Library", + "address": "7370 Central Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0686225, + "longitude": -75.0886261, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Public Services & Government, Museums, Libraries", + "hours": { + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "B89LbTiRc7FPoTwOt7DOiw", + "name": "Fat Lady Brewing", + "address": "4323 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253102242, + "longitude": -75.2227694169, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Breweries, Food", + "hours": null + }, + { + "business_id": "5xlYG_4gSOC96rDBxI_NEQ", + "name": "Istanbul Restaurant & Lounge", + "address": "216 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410963, + "longitude": -75.146299, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Middle Eastern, Vegetarian, Turkish", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "DY2-gIyesL5S5_DZM2TqeQ", + "name": "El Gallo Pinto Restaurant", + "address": "1163 S 7th. St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93395, + "longitude": -75.1557061, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Latin American", + "hours": null + }, + { + "business_id": "37l4y0WSYlDIzUC84Dgazg", + "name": "Dan Campos Fitness", + "address": "4926 Pearson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0494439, + "longitude": -74.9906003, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Lc8uAfs36o2FSlvEmuqwgQ", + "name": "Ironworks Fitness Clubs: Northern Liberties", + "address": "821 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963323, + "longitude": -75.140287, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Nutritionists, Health & Medical, Active Life, Fitness & Instruction, Gyms", + "hours": null + }, + { + "business_id": "OmMzmi6Ny1sag3JlgBRcYw", + "name": "Dilworth Park", + "address": "1 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952505, + "longitude": -75.165131, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True" + }, + "categories": "Parks, Shopping, Active Life, Shopping Centers", + "hours": { + "Monday": "6:0-1:0", + "Tuesday": "6:0-1:0", + "Wednesday": "6:0-1:0", + "Thursday": "6:0-1:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-1:0" + } + }, + { + "business_id": "cZ3a8jhARdhfxJGJuu28_A", + "name": "Roxborough Dog Park", + "address": "4123 Mitchell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.027028, + "longitude": -75.211422, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Pet Sitting, Parks, Dog Parks, Pets, Pet Services", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "6:30-21:0", + "Sunday": "6:30-21:0" + } + }, + { + "business_id": "rZlmMVYGaf1q6q0KoJh31Q", + "name": "Lemon Hill", + "address": "747 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968768, + "longitude": -75.178158, + "stars": 4.0, + "review_count": 122, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Nightlife, Bars, American (New), Restaurants, Gastropubs", + "hours": { + "Tuesday": "17:0-1:30", + "Wednesday": "17:0-1:30", + "Thursday": "17:0-1:30", + "Friday": "17:0-1:30", + "Saturday": "10:30-1:30", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "JtAyaKWwnax-Ag20WXW10Q", + "name": "Mt. Airy Deli", + "address": "7200 Devon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0632429, + "longitude": -75.188104, + "stars": 4.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Cheesesteaks, Breakfast & Brunch, Restaurants, Delis", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "iXZ9SUP8DOcbDILxbR1f7g", + "name": "Personal Plumbing and Drain Cleaning, LLC", + "address": "7051 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0583843, + "longitude": -75.1892302, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Plumbing, Contractors, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0" + } + }, + { + "business_id": "C6ZTVm4BmpazpUTNzgVSqw", + "name": "Subway", + "address": "2217 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224792054, + "longitude": -75.1696932142, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "WiFi": "'free'", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches, Fast Food", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "a8b-p7SjJIyuZWv4JwvdWQ", + "name": "Five Virtues", + "address": "526 Bainbridge Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940908, + "longitude": -75.1517904, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-19:0", + "Wednesday": "13:0-19:0" + } + }, + { + "business_id": "ZJk8hUc7VFwtgP98iNSQIA", + "name": "Family Dollar", + "address": "6555 Greene St, Ste 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.043197, + "longitude": -75.190752, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Discount Store, Shopping", + "hours": null + }, + { + "business_id": "OnNd2qp2M1CfGvyPCOMzow", + "name": "Alphabet Academy", + "address": "1506-1508 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9307105, + "longitude": -75.1625871, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Child Care & Day Care, Local Services, Education, Preschools", + "hours": { + "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" + } + }, + { + "business_id": "wDIoXmmJ2Pfc_OebquhIYw", + "name": "Opportunity Barks Behavior & Training", + "address": "3510 Scotts Ln, Ste 3112", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007648, + "longitude": -75.186478, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Sitting, Education, Pet Training, Private Tutors", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "NaUdzbQGc6KN1T8ASTNm_A", + "name": "Suzanne Roberts Theater", + "address": "480 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448916, + "longitude": -75.1654997, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "B92uCw3374cpuHZSACv0YA", + "name": "Kings Oak", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9668211, + "longitude": -75.1399137, + "stars": 3.0, + "review_count": 146, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "HappyHour": "True" + }, + "categories": "American (New), Nightlife, Bars, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "qHBakpsiwB0doJ39Oo_h-Q", + "name": "O Sandwiches", + "address": "1205 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340448, + "longitude": -75.1582971, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "8:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "9g7_oSVUYnquy6w3ocZyAA", + "name": "Li'l Nick's Deli", + "address": "1311 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.918657, + "longitude": -75.169555, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "3UHWoRTwxV7iy8njqA9fMQ", + "name": "Doc's Gourmet Cafe & Soup Bar", + "address": "169 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.969588, + "longitude": -75.138694, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "Caters": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Soup, Restaurants, Delis", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "ggFfdS0hDwGfTSIrTYQ_5Q", + "name": "Sloane Honda", + "address": "9903 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.094889, + "longitude": -75.029862, + "stars": 3.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "False" + }, + "categories": "Auto Repair, Car Dealers, Body Shops, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "5CHjDZYRVAdj3MJ3oc4v4g", + "name": "Pentridge Station Beer Garden", + "address": "5116 Pentridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9455249536, + "longitude": -75.2242228389, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{u'dj': False, u'live': True, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Donuts, Food, Nightlife, Beer Gardens", + "hours": { + "Friday": "18:0-23:0", + "Saturday": "18:0-23:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "MFqcEIzw3MKgGtcOHwYwXQ", + "name": "Marchi", + "address": "720 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948486, + "longitude": -75.153331, + "stars": 5.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "RWQZ-Z19Q08w12SEknie_Q", + "name": "Amarie Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, Photographers, Session Photography, Event Photography", + "hours": { + "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" + } + }, + { + "business_id": "yrvM3DDB6HT5i9KhP5psLA", + "name": "Commissary Food Market", + "address": "5255 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0200154, + "longitude": -75.210096, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "nt1nLTY-gdiDTZ2LfQVhYA", + "name": "Shell gas", + "address": "1135 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9577013, + "longitude": -75.1582547, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "00AGVWzkxNLGb-7ZrwAOIA", + "name": "Ever Green", + "address": "4726 Spruce Ct", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9532594, + "longitude": -75.2170205, + "stars": 3.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "C0_UsFrWCXdHdPFTb57Zqg", + "name": "Temple ReadyCare - Port Richmond", + "address": "2301 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.989965, + "longitude": -75.106029, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Urgent Care", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0" + } + }, + { + "business_id": "LoVVyTKjpuH3H3q8Iyre_g", + "name": "VAC Motorsports", + "address": "2501 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9269705, + "longitude": -75.1882126, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Automotive, Auto Repair, Body Shops, Motorcycle Repair", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "WSdlkC1-WPtkbK-1KwcOVQ", + "name": "Voila Design Home", + "address": "2011 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9469685, + "longitude": -75.1750984, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Interior Design, Painters, Home Services, Real Estate Services, Local Services, Real Estate, Home Staging, Furniture Rental", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "N-2t07vKgl6v_8NHaWLHgQ", + "name": "Spiritual World", + "address": "13020 Bustleton Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1243838, + "longitude": -75.0155805, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Reiki, Hobby Shops, Shopping, Health & Medical, Gift Shops", + "hours": { + "Tuesday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "13:0-20:0" + } + }, + { + "business_id": "0S3TvsmbCeOZ9UitnpRd1A", + "name": "Dim Sum House", + "address": "1930 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518328, + "longitude": -75.173394, + "stars": 4.0, + "review_count": 505, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Shanghainese, Tapas Bars, Cantonese, Seafood, Dim Sum, Chinese, Asian Fusion, Restaurants, Tapas/Small Plates, Szechuan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ICn-fL9g_F7nhL_yalhnqg", + "name": "Philadelphia Record Exchange", + "address": "1524 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.973576, + "longitude": -75.1338743, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Books, Mags, Music & Video, Vinyl Records, Shopping", + "hours": null + }, + { + "business_id": "CAMIAMKJMaa9ivYyMsEcDw", + "name": "Bubby's Brisket & Bugsy's Weiners", + "address": "103 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548704, + "longitude": -75.1646958, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Hot Dogs, Burgers, Cheesesteaks, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "hct3rFcG5YtBwAYpfHhlug", + "name": "Fine Wine & Good Spirits", + "address": "The Shops At Brewertown, 3101 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9757056119, + "longitude": -75.1870495993, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "TpaWkW4eazEBNZkDeIYLYg", + "name": "Aya's Cafe", + "address": "2129 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.956135, + "longitude": -75.1755672, + "stars": 4.0, + "review_count": 198, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Mediterranean, Restaurants, Greek, Middle Eastern", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "r_TpYNbdgABMwT4qhln5GA", + "name": "Palumbo Recreation Center", + "address": "725 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410605635, + "longitude": -75.1588042006, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Playgrounds, Art Galleries, Arts & Entertainment, Recreation Centers, Active Life, Shopping", + "hours": null + }, + { + "business_id": "luzi9ygrx1X5aAvVg3mR6w", + "name": "Ol' Boy's Soul Food", + "address": "243 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.957595, + "longitude": -75.241387, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Soul Food", + "hours": { + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "sa2aTTqsZ9OkiwMYr5K0Hw", + "name": "Santucci Square Pizza", + "address": "901 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0529324, + "longitude": -75.0806657, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "JD819tYQ7ApQXgCETtzsIw", + "name": "Sears", + "address": "7300 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0495444, + "longitude": -75.0599759, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Shopping, Department Stores, Home & Garden, Appliances, Electronics", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "k4WBufHPsiz4HgmT_gwK3g", + "name": "Starbucks", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953314, + "longitude": -75.173079, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Coffee & Tea, Food, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-18:0", + "Wednesday": "5:30-18:0", + "Thursday": "5:30-18:0", + "Friday": "5:30-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "w_1UjetUIQ4hjEk0QdcyEg", + "name": "Speck Private Dining", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Bartenders, Caterers, Event Planning & Services, Personal Chefs", + "hours": { + "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" + } + }, + { + "business_id": "CaXoVgnTfQznEN3vToZbUQ", + "name": "Uno Pizzeria & Grill", + "address": "789 Franklin Mills Circle", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0924473, + "longitude": -74.9629444, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Pizza, Gluten-Free, Restaurants, American (Traditional)", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-1:0", + "Sunday": "11:30-1:0" + } + }, + { + "business_id": "2m8Gdh2AYepXn0dQBA5y8Q", + "name": "Wawa", + "address": "2131 South Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9453409827, + "longitude": -75.1784252989, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Automotive, Gas Stations, Convenience Stores, Sandwiches, Coffee & Tea, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "epVHdJqIFN0dtAiFvnVJVg", + "name": "LongHorn Steakhouse", + "address": "9769 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0844101, + "longitude": -75.0240676748, + "stars": 2.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False" + }, + "categories": "Steakhouses, Restaurants, Barbeque, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "auv2bdk8DGvnCo70B5JZkQ", + "name": "The Children's Boutique", + "address": "1702 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498202, + "longitude": -75.1694028, + "stars": 2.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BikeParking": "True" + }, + "categories": "Baby Gear & Furniture, Children's Clothing, Fashion, Shoe Stores, Shopping, Toy Stores", + "hours": null + }, + { + "business_id": "mGHUAU3p8r5jUTv22eng6Q", + "name": "The Roxxy", + "address": "939 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631381, + "longitude": -75.1351326, + "stars": 1.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True" + }, + "categories": "Nightlife, Lounges, Dance Clubs, Bars", + "hours": { + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "EFci0tbSrb7wko6tpVDnbA", + "name": "Starbucks", + "address": "1801 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947886, + "longitude": -75.171286, + "stars": 3.0, + "review_count": 124, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "5:30-20:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "5:30-20:0", + "Sunday": "5:30-20:0" + } + }, + { + "business_id": "R5PDWmEnLX7lDSEPfF9ZWw", + "name": "Hunan Star", + "address": "7203 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0359063, + "longitude": -75.0420708, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "BusinessParking": "None" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "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": "11:0-21:0" + } + }, + { + "business_id": "RgVcY0hWnkZkP76cqb5ZhQ", + "name": "McDonald's", + "address": "2nd Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.991042, + "longitude": -75.1353316356, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "None", + "DriveThru": "True", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "Burgers, Fast Food, Restaurants, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "QbJXsdhbZ8HQqjCpb76_FQ", + "name": "Allthree's Luxury Sedan & Taxicab Service", + "address": "8125 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0420570374, + "longitude": -75.0241394043, + "stars": 1.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Transportation, Taxis, Airport Shuttles, Hotels & Travel, Limos", + "hours": { + "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" + } + }, + { + "business_id": "Y2Xd0i9Yd6rTDghVBYiDLQ", + "name": "The Rittenhouse Spa & Club - Hair By Paul Labrecque", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949901, + "longitude": -75.173049, + "stars": 4.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Men's Hair Salons, Beauty & Spas, Barbers, Gyms, Day Spas, Nail Salons, Fitness & Instruction, Hair Salons, Active Life", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "10:0-20:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "FGUI7K-YLVdY61PgIx-Rvg", + "name": "Penn Therapy & Fitness University City", + "address": "3737 Market St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957029, + "longitude": -75.197136, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Physical Therapy, Orthopedists", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0" + } + }, + { + "business_id": "9Vn3m5EafV-Oc69DkPyt3A", + "name": "Chatkharay Indian and Pakistani Grill", + "address": "306 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0300231, + "longitude": -75.1803247, + "stars": 2.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pakistani, Halal, Indian", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "bI2SURapiDr-0g9yLykBkw", + "name": "Internal Tax Services", + "address": "25 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526298, + "longitude": -75.1714584, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Payroll Services, Tax Services, Bookkeepers, Financial Services, Financial Advising, Accountants, Professional Services, Insurance", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "ArGw19nfPgjR28TTfgb7iw", + "name": "Smith & Wollensky", + "address": "Rittenhouse Hotel, 210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950063, + "longitude": -75.173178, + "stars": 3.5, + "review_count": 105, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsReservations": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Caters": "True" + }, + "categories": "Restaurants, Steakhouses, Seafood", + "hours": { + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "X2G6wYqhXRDCCzEgVbnOIA", + "name": "John Nicolucci - State Farm Insurance Agent", + "address": "6001 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0321044, + "longitude": -75.2130364, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Banks & Credit Unions, Auto Insurance, Home & Rental Insurance, Life Insurance, Insurance, Financial Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "YBjFuFJXKBKdsxx2TlQVPw", + "name": "Aldo Lamberti Trattoria", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874953, + "longitude": -75.241206, + "stars": 4.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Italian, Sandwiches, Pizza, Restaurants", + "hours": { + "Monday": "5:30-22:30", + "Tuesday": "5:30-22:30", + "Wednesday": "5:30-22:30", + "Thursday": "5:30-22:30", + "Friday": "5:30-22:30", + "Saturday": "5:30-22:30", + "Sunday": "5:30-22:30" + } + }, + { + "business_id": "2ARj7F-3tvuRqA7QaeNAZw", + "name": "Sentrum Services", + "address": "2006 Sansom St, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512173, + "longitude": -75.1739013, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Property Management", + "hours": null + }, + { + "business_id": "BsLE8Hd_ZbWhhYpR4Q2vFw", + "name": "Mamma Mia's Breakfast Kitchen", + "address": "901 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9710772, + "longitude": -75.1511178, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Wraps, Sandwiches, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:30-23:30", + "Tuesday": "7:30-23:30", + "Wednesday": "7:30-23:30", + "Thursday": "7:30-23:30", + "Friday": "7:30-0:30", + "Saturday": "7:30-0:30", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "pwGKTqotn78MxL45naeS7Q", + "name": "R & R Produce", + "address": "2300 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0471331329, + "longitude": -75.0596754708, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Specialty Food, Fruits & Veggies, Restaurants, Delis", + "hours": null + }, + { + "business_id": "SFuedHlHzZAl_0SY75507A", + "name": "Mariposa Food Co-op", + "address": "4824 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479607, + "longitude": -75.2206709, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Health Markets, Grocery, Specialty Food, Vegetarian, Restaurants, Food, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "Q18TVpaeOs-UkljaLG-UBQ", + "name": "Philly Dance Fitness", + "address": "1170 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9360431, + "longitude": -75.167413, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Dance Studios, Active Life, Specialty Schools, Education, Dance Schools, Trainers, Fitness & Instruction, Gyms", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "_34KJPR-T0HP9USJw1nCfw", + "name": "Hiro Ramen House", + "address": "1102 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95001, + "longitude": -75.158862, + "stars": 4.0, + "review_count": 435, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Soul Food, Fast Food, Restaurants, Vegetarian, Noodles, Ramen, Japanese, Vegan, Comfort Food", + "hours": { + "Monday": "15:30-21:30", + "Tuesday": "15:30-21:30", + "Wednesday": "15:30-21:30", + "Thursday": "15:30-21:30", + "Friday": "15:30-21:30", + "Saturday": "15:30-21:30", + "Sunday": "15:30-21:30" + } + }, + { + "business_id": "NNDj4IU4DWxEq-foJV8yfA", + "name": "Quaker City Motor Sport", + "address": "3901 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.020077, + "longitude": -75.215299, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Motorcycle Repair, Motorcycle Gear, Shopping, Automotive, Motorcycle Dealers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "dUbPvWWUxq8ZH7oMu1ZmZw", + "name": "Viva Nails, Hair & Spa", + "address": "187 Franklin Mills Blvd, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.088833, + "longitude": -74.965986, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Salons, Reflexology, Health & Medical", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "O05f0Mlc_F5YyBPHoWOFdg", + "name": "Violet Salon II", + "address": "7300 Bustleton Ave, Ste 22", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0495162518, + "longitude": -75.0609327727, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Nail Salons, Hair Salons, Massage, Beauty & Spas", + "hours": { + "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-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "FYboiPpW2j6lP3T3n-lKAw", + "name": "The Strange And Unusual", + "address": "523 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419396, + "longitude": -75.1487818, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Antiques, Museums, Professional Services, Arts & Entertainment, Taxidermy", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "VMOzGMX2qOwccFLOaxPSNg", + "name": "Mr of Rittenhouse", + "address": "2001 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.946921, + "longitude": -75.1747336, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Kids Hair Salons, Men's Hair Salons, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "12:0-18:0", + "Thursday": "10:0-21:0", + "Friday": "9:0-13:0", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "XQewVfTaosZ3U-4g_yH7Nw", + "name": "Los Cuatro Soles", + "address": "1801 S Chadwick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9284853, + "longitude": -75.173034668, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "KPyHQaKR7G0tuVedn4y9Dw", + "name": "New Pizza Villa", + "address": "7159 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0290717, + "longitude": -75.0367804, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "VuOfGMSMFGtwWF3-DxApyQ", + "name": "Naturale Salon", + "address": "1606 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481446802, + "longitude": -75.1681833333, + "stars": 4.5, + "review_count": 112, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "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" + } + }, + { + "business_id": "r-SJgc58C_fuOtbwn-TW8w", + "name": "Dandy Salon", + "address": "1441 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931305, + "longitude": -75.1642171, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "ikCYoiprokM8d7zrp1OJPw", + "name": "Indy Veterinary Care", + "address": "917 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633932, + "longitude": -75.1375443, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "B_Kk8Nq9NqfvwFrN8uOR9w", + "name": "City & Suburbs Pest Control Company", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 231, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Inspectors, Pest Control, Home Cleaning, Professional Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0" + } + }, + { + "business_id": "CpV8X8DHk2VqWo11CEde-w", + "name": "Paprica Modern Mediterranean Grill", + "address": "811 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491547, + "longitude": -75.1545837, + "stars": 4.5, + "review_count": 154, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Turkish, Mediterranean, Halal", + "hours": { + "Monday": "23:30-2:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "HvmnXUubTdxHK95SS0QiJg", + "name": "Ulta Beauty", + "address": "1021 Market St, Ste 1175", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95201, + "longitude": -75.15772, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Hair Salons, Cosmetics & Beauty Supply, Skin Care, Shopping", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "DzzVSYXadZ1_XgfGz_Loyw", + "name": "Paris Baguette", + "address": "923 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537172, + "longitude": -75.155701, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "False", + "DogsAllowed": "False", + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "Caters": "True" + }, + "categories": "Food, Bakeries, Restaurants, Coffee & Tea, Patisserie/Cake Shop, Cafes, Desserts", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "SsTjya8Lf7WDY0rrTKxTvw", + "name": "Spear Greenfield", + "address": "1500 John F Kennedy Blvd, Ste 200, Two Penn Center Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658879, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Personal Injury Law, Lawyers, Professional Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "3zuwbMR9AjSUVKjTsLbtgA", + "name": "Salon At 5th", + "address": "316 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9445813, + "longitude": -75.1501789, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Nail Salons, Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "kb-U-rFwFhxPtIND8bFGJg", + "name": "Parkway - 12th & Walnut", + "address": "1201 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949316, + "longitude": -75.160858, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "gEmVqHPesM4z0dC3nOnkUw", + "name": "New Star Pizza", + "address": "2800 W Dauphin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9910933, + "longitude": -75.1787482, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "L0f3ETO9ZyVF6_tdpE0OMg", + "name": "Talbots", + "address": "1719 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950289, + "longitude": -75.1699071, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Accessories, Shopping, Fashion, Shoe Stores, Women's Clothing", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "LSujksRVsK7UK6jA4rvRGA", + "name": "Oregon Window", + "address": "628 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9150516, + "longitude": -75.1590642, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Glass & Mirrors, Door Sales/Installation, Home Services, Windows Installation", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "GJmyROrNu3KrhnHNNRbVrw", + "name": "Holy Smokes", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.088389, + "longitude": -75.038923, + "stars": 3.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Vape Shops, Shopping, Tobacco Shops, Head Shops", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "2-tG52f0k7V1Vin-4GWn6g", + "name": "Her Place", + "address": "1740 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507452, + "longitude": -75.1701679, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "French, Restaurants, Italian, Supper Clubs", + "hours": { + "Wednesday": "18:15-20:30", + "Thursday": "18:15-20:30", + "Friday": "18:15-20:30", + "Saturday": "18:15-20:30" + } + }, + { + "business_id": "l9vXb16zmmFBDtozL6B6Vw", + "name": "Balboa Catering and Supper Club", + "address": "4345 Orchard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0105246, + "longitude": -75.0856163, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Venues & Event Spaces, Arts & Crafts, Supper Clubs, Caterers, Cooking Classes, Restaurants, Shopping, Event Planning & Services", + "hours": { + "Monday": "9:0-23:45", + "Tuesday": "9:0-23:45", + "Wednesday": "9:0-23:45", + "Thursday": "9:0-23:45", + "Friday": "9:0-23:45", + "Saturday": "9:0-23:45", + "Sunday": "9:0-23:45" + } + }, + { + "business_id": "Duf-k9b1xpuK33BGCLWQ6w", + "name": "Quetzally", + "address": "1225 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416062, + "longitude": -75.163026, + "stars": 4.0, + "review_count": 241, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Latin American, Tex-Mex, Mexican", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "WSHu1THoWsd64DrKN-N7nA", + "name": "Dickey's Barbecue Pit", + "address": "650 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94203, + "longitude": -75.1537866, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "GCPecqD-FJis5SxrqKwSZw", + "name": "Bill's Breakfast & Lunch", + "address": "1312 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498484, + "longitude": -75.1627607, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BikeParking": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Breakfast & Brunch, Sandwiches, American (Traditional), Restaurants", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0" + } + }, + { + "business_id": "Qt5UAOA9FiZr317dgU0hvg", + "name": "Next Salon", + "address": "45 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218216, + "longitude": -75.1468993, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Waxing, Beauty & Spas, Hair Salons, Nail Salons, Hair Removal", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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" + } + }, + { + "business_id": "cMbVjMaYqWu-4nkWTw73tw", + "name": "Goldstein's Clothing", + "address": "2537 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.918462, + "longitude": -75.170627, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Children's Clothing, Accessories, Fashion, Shopping, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "WNBEsnHwe94X6TY3pQUOHA", + "name": "O Rei Da Picanha Steakhouse", + "address": "7534 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0551435541, + "longitude": -75.0628037275, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "'very_loud'", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "WiFi": "u'free'", + "Caters": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Brazilian, Food, Steakhouses, Portuguese, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "MX9gdPpixg0drDv8r3hFjQ", + "name": "Corner Dentistry", + "address": "744 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401465, + "longitude": -75.1529167, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Cosmetic Dentists, Dentists, General Dentistry, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "sVZb87xjhbCWHQ2UXOGLrA", + "name": "Giorgio On Pine", + "address": "1328 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9453393812, + "longitude": -75.1644544588, + "stars": 4.0, + "review_count": 954, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "DogsAllowed": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "OutdoorSeating": "None" + }, + "categories": "Pizza, Italian, Restaurants, Gluten-Free", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "tZaEfbKqd01CxqaWJoxX9w", + "name": "U-Haul Moving & Storage of West Oak Lane", + "address": "7400 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.067372, + "longitude": -75.156578, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Truck Rental, Local Services, Automotive, Self Storage, Propane, Movers, Home Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "vlosej4eJvMc9aMmBGV2jg", + "name": "Wissahickon Chiropractic", + "address": "610 Barnes St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0251815, + "longitude": -75.2023354, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chiropractors, Health & Medical", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "9:0-12:0" + } + }, + { + "business_id": "j1ksm0IwqRlDeUj7hkPZYA", + "name": "Plays & Players", + "address": "1714 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9468096, + "longitude": -75.1703797, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Cinema, Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "rhpvLGLQ0QEnyhvXkYSEOw", + "name": "Ten Thousand Villages", + "address": "8331 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0751241, + "longitude": -75.2044136, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Home & Garden, Shopping, Gift Shops, Flowers & Gifts, Home Decor", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "0NQZc7V3Uysw4TFR7igOfA", + "name": "Joe's Peking Duck", + "address": "108 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481458, + "longitude": -75.1428828, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True" + }, + "categories": "Chinese, Restaurants, Asian Fusion", + "hours": null + }, + { + "business_id": "hKHSNrjuPVo1medSBJ50PA", + "name": "Bossard Valerie, MD", + "address": "9815 Roosevelt Blvd, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0856834, + "longitude": -75.0221416, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Obstetricians & Gynecologists", + "hours": null + }, + { + "business_id": "Xxl7s55xGYUvRhM2QWh7xA", + "name": "Enterprise Rent-A-Car", + "address": "8913 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0507104963, + "longitude": -75.0090811104, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "3woevNT4gDDZWTFf94qlCg", + "name": "Elfreth's Alley", + "address": "126 Elfreths Aly", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9527511597, + "longitude": -75.1424942017, + "stars": 4.5, + "review_count": 61, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Tours, Public Services & Government, Hotels & Travel", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "hp-UUz15tDMgIu_AgFeuBw", + "name": "Royal Ashoka", + "address": "13314 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1293475, + "longitude": -75.0237692, + "stars": 4.0, + "review_count": 58, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Seafood, Indian, Vegan", + "hours": { + "Monday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "cVwr3l3WnGJEMX8NhxcY9g", + "name": "Wahlburgers", + "address": "1033 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9674501, + "longitude": -75.1397332, + "stars": 3.0, + "review_count": 229, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "WiFi": "'free'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Food Trucks, Restaurants, Sandwiches, Food, Burgers, American (Traditional)", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Op2LBr0d9E3SLm12BEDrfA", + "name": "Staples", + "address": "4640 Roosevelt Blvd, Roosevelt Blvd at Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031089, + "longitude": -75.099033, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Printing Services, IT Services & Computer Repair, Office Equipment, Shopping, Shipping Centers, Local Services, Mobile Phone Repair", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "i9n3DzCkmWDfiJ7yzTxPJg", + "name": "Philly Home Girls", + "address": "2006 Frankford Ave, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978906, + "longitude": -75.130459, + "stars": 5.0, + "review_count": 109, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Real Estate Services, Home Services, Real Estate Agents, Apartments", + "hours": { + "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" + } + }, + { + "business_id": "aqKvIjinoVOy-P6zy-JVMQ", + "name": "PNC Bank", + "address": "501 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9606285, + "longitude": -75.1483266, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Investing, Mortgage Brokers, Financial Services, Home Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "-LpG-lx52Mjp7jyJ8YZHZQ", + "name": "Non Stop Deli", + "address": "2842 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9742886, + "longitude": -75.1834252, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Beer, Wine & Spirits, Delis, Sandwiches, Food", + "hours": null + }, + { + "business_id": "m7x7VT2EhSoH4H0teslWFw", + "name": "A-Team Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Movers, Home Services", + "hours": null + }, + { + "business_id": "aZd_dnnfvGdujkgWPai8tQ", + "name": "Dolce Italian - Philadelphia", + "address": "1437 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515299461, + "longitude": -75.1650634432, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False" + }, + "categories": "Seafood, Pizza, Restaurants, Italian, Breakfast & Brunch", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-14:30" + } + }, + { + "business_id": "oxyJmKcG-GykkaQAKIkhdA", + "name": "Philadelphia Eddies's Chinatown Tattoo", + "address": "904 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953297, + "longitude": -75.1549724, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "O03uv9v2pEuzi1UL9hZKjQ", + "name": "Produce Truck", + "address": "44TH And Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955051, + "longitude": -75.210043, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Farmers Market, Food, Street Vendors, Grocery", + "hours": null + }, + { + "business_id": "N8TKWzDx4mnVkRHTPv6q4A", + "name": "World of Animals at South Philadelphia", + "address": "1317 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218537, + "longitude": -75.1687543, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "YcuPwERZuS7_WcQBb_btdQ", + "name": "Prometric Testing Site 1726", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Local Services", + "hours": null + }, + { + "business_id": "-c7kNz3HjL3xc0LNBkTM8w", + "name": "Strictly Seafood", + "address": "1707 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9794590399, + "longitude": -75.1628860935, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "None", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Salad, Sandwiches, Seafood", + "hours": { + "Monday": "15:0-23:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "spGcNnwP4OTGkp-k6fGruQ", + "name": "Leaves of Grass Floral Design", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": null + }, + { + "business_id": "e5U6_oaQXh_VTTWuTFkgOA", + "name": "Danny's Auto Tags", + "address": "7184 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0639967, + "longitude": -75.1536165, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Notaries, Financial Services, Local Services, Registration Services, Tax Services, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "u858IdTVc8Np_JHXS8JImQ", + "name": "Chipotle Mexican Grill", + "address": "3400 Lancaster Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9572771, + "longitude": -75.1914230169, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Mexican, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "sIFgrjbg2klEZE2iLCkQBw", + "name": "The Yelson Group", + "address": "407 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9447438, + "longitude": -75.161291, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "0d7nPS5dv42stQqdZbh08g", + "name": "Dollar Tree Store", + "address": "2116 S Chris Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9157501437, + "longitude": -75.1397630536, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Discount Store, Shopping", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "XHYVgrJ_1jyx_yjM-svQrw", + "name": "Colors & Bottles", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "43215", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Local Flavor, Party & Event Planning, Event Planning & Services, Arts & Entertainment, Ticket Sales", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "gQJ5-VVf2OObACgRrIUf6g", + "name": "Law Offices of Eric A Shore", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658879, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Employment Law, Professional Services, Personal Injury Law, Lawyers, Disability Law", + "hours": null + }, + { + "business_id": "us7g3OCOFDXjZpmYqQ-f3A", + "name": "Cadence", + "address": "161 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9695251, + "longitude": -75.138405, + "stars": 4.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForKids": "False" + }, + "categories": "Tapas/Small Plates, Restaurants, Korean, American (New)", + "hours": { + "Monday": "17:30-22:0", + "Thursday": "17:30-20:0", + "Friday": "17:0-20:30", + "Saturday": "17:0-20:30", + "Sunday": "17:30-22:0" + } + }, + { + "business_id": "rV8OE1EeyJiLmBApu9wnGw", + "name": "Uzu Sushi", + "address": "104 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949614, + "longitude": -75.1426123, + "stars": 4.0, + "review_count": 98, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True" + }, + "categories": "Restaurants, Sushi Bars", + "hours": { + "Monday": "16:0-22:30", + "Tuesday": "16:0-22:30", + "Wednesday": "16:0-22:30", + "Thursday": "16:0-22:30", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:30" + } + }, + { + "business_id": "o7I6moiU7ldJfhScIq0Ihg", + "name": "The Dinner Detective", + "address": "1201 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479304148, + "longitude": -75.1641528799, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "Smoking": "u'outdoor'", + "Alcohol": "u'full_bar'", + "HappyHour": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Comedy Clubs, Nightlife, Dinner Theater, Restaurants, Performing Arts, Arts & Entertainment", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "X0U70sRNE5vOoas5Vdbluw", + "name": "Milillo Event Group", + "address": "2980 Southampton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1042811, + "longitude": -74.9850765, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Venues & Event Spaces, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "mXNKjKkq7Zk6-39_t4c5OA", + "name": "Spice Garden Indian Cuisine", + "address": "11728 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1197853088, + "longitude": -75.0180282593, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Indian, Restaurants, Caterers, Event Planning & Services", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "_zOYhClIhFnxBdYOfeChPg", + "name": "Hi Spot Lanes", + "address": "3857 Pechin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0225692, + "longitude": -75.2101018, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Active Life, Bowling", + "hours": null + }, + { + "business_id": "EmTlcS9DVL69iDPciczR2w", + "name": "Bubble Time", + "address": "609 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941086, + "longitude": -75.1474328, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "HappyHour": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "False", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "Smoking": "u'yes'", + "CoatCheck": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Waffles, Restaurants, Hookah Bars, Food, Breakfast & Brunch, Bars, Nightlife, Bubble Tea, Coffee & Tea", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "q-m9__XyqMhuX5cValqS2w", + "name": "Lulu Cafe", + "address": "4508 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9550208, + "longitude": -75.2121474, + "stars": 4.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Corkage": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False" + }, + "categories": "Bubble Tea, Coffee & Tea, Shaved Ice, Taiwanese, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "eE5rsErCgdkqBe5FnWn6oA", + "name": "Three Queens Yoga", + "address": "410 Monroe St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9399852, + "longitude": -75.1499698, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Yoga, Fitness & Instruction, Active Life", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "gOrJeoLDOiW7muWuoE-sMg", + "name": "Morgan's Pier", + "address": "221 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9549030181, + "longitude": -75.1389125268, + "stars": 3.0, + "review_count": 710, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "HasTV": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "AgesAllowed": "u'21plus'", + "RestaurantsDelivery": "None", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Nightlife, Arts & Entertainment, Seafood, Music Venues, American (New), Paint & Sip, Dance Clubs, Sandwiches, Bars", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "9ea4ORXNyoof29LwiKQZoA", + "name": "my pro-duct cleaner", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 1.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services", + "hours": null + }, + { + "business_id": "DucrEk1GbKkM18MlKVuSRw", + "name": "Saffron Indian Cuisine", + "address": "3240 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0022087, + "longitude": -75.1527447, + "stars": 2.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "LP2tjnXiKSn-Yy7MFsUKLw", + "name": "Pizza Shoppe", + "address": "1500 E Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0084785, + "longitude": -75.0982939, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "n4GKqYV2_cr89WK565DB3w", + "name": "Midas", + "address": "9417 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0849956, + "longitude": -75.0374089724, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Tires, Automotive", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "bzO826Hw3DCuQ5xl3OEP7Q", + "name": "El Fuego", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522316251, + "longitude": -75.1757883989, + "stars": 3.0, + "review_count": 68, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True" + }, + "categories": "Food, Mexican, Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "oSdgCWWlUI3pv1DjAADmXA", + "name": "Gaetano's Pizza", + "address": "1135 East Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0057948469, + "longitude": -75.1057657599, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Spanish, Pizza, Burgers", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0" + } + }, + { + "business_id": "Q8b_MwLNfKLxxmfB68ozHw", + "name": "Veronica Valdes, DDS", + "address": "542 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710776, + "longitude": -75.1271622, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, Oral Surgeons, General Dentistry", + "hours": null + }, + { + "business_id": "GZDUQ9P8oNRa8E3hJWXgmw", + "name": "Lya's Cafe", + "address": "802 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385758106, + "longitude": -75.15657496, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cafes, Restaurants, Vegetarian, Mexican, Sandwiches", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "10:0-15:30" + } + }, + { + "business_id": "eIZxYl6fB4NNY9s67QZhLg", + "name": "Thread Beauty Bar", + "address": "1903 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520989, + "longitude": -75.172064, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons, Hair Removal", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "HUVLNeBs32cInBZVFS90RA", + "name": "Bardot Cafe", + "address": "447 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664506632, + "longitude": -75.1455635682, + "stars": 4.5, + "review_count": 154, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "None", + "WiFi": "u'free'", + "GoodForDancing": "False", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "GoodForKids": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "ByAppointmentOnly": "False" + }, + "categories": "French, Cocktail Bars, Wine Bars, Lounges, American (New), Cafes, Beer Bar, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-1:45", + "Friday": "17:0-1:45", + "Saturday": "17:0-1:45" + } + }, + { + "business_id": "uG1722G9ajpayHPDDy6stg", + "name": "Y2B Fit", + "address": "3426 Conrad St, Ste C1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0116951511, + "longitude": -75.1893296, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Barre Classes, Pilates, Fitness & Instruction, Trainers, Health & Medical, Cardio Classes, Yoga, Health Coach", + "hours": { + "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" + } + }, + { + "business_id": "8vxNQrL_ONPNXZ1VuMTmCw", + "name": "Sotto", + "address": "151 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513494418, + "longitude": -75.1793946709, + "stars": 4.0, + "review_count": 175, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "False", + "BYOB": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "HappyHour": "False" + }, + "categories": "Restaurants, Desserts, Food, Italian, Pizza", + "hours": { + "Tuesday": "16:45-21:45", + "Wednesday": "16:45-21:45", + "Thursday": "16:45-21:45", + "Friday": "16:45-22:30", + "Saturday": "16:45-22:30" + } + }, + { + "business_id": "663TbE6U48Fj_4WgAh-W_g", + "name": "Boardwalk", + "address": "9987 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1015816, + "longitude": -75.0283848, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessParking": "None", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Falafel, Cheesesteaks, Restaurants, Pizza, Mediterranean", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "jA4vqznzM5diOCY6upZUng", + "name": "Everybody Hits", + "address": "529 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9705084, + "longitude": -75.1462326, + "stars": 5.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Batting Cages, Sports Clubs, Active Life, Baseball Fields", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "-RJfiKv_UsYol83dkfqpHQ", + "name": "Maxi Gastronome", + "address": "10155 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1026609943, + "longitude": -75.0307999645, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'none'" + }, + "categories": "Russian, Restaurants, Ukrainian", + "hours": { + "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": "9:0-18:0" + } + }, + { + "business_id": "7k9qGQyytbGxpJTnwxK6Xg", + "name": "QDOBA Mexican Eats", + "address": "1600 N Broad St, Ste 12", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9785404, + "longitude": -75.158377, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Event Planning & Services, Mexican, Fast Food, Caterers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "zDuBpAhbC6lDtg7JR_XnHQ", + "name": "HoneyDo Home Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Handyman, Home Services, Contractors, Painters", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "lY2I5hH8tqFATpqzmxAruA", + "name": "CrossFit Fairmount", + "address": "1513 Parrish St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9694665, + "longitude": -75.1620853, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Professional Services, Boot Camps, Life Coach, Gyms, Fitness & Instruction, Active Life, Interval Training Gyms", + "hours": null + }, + { + "business_id": "x_nTQqKX4qttGI3n5Vbaow", + "name": "Paul Beale's Florist", + "address": "7220 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.064508, + "longitude": -75.1543651414, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Florists, Shopping, Flowers & Gifts, Floral Designers, Event Planning & Services", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-14:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "5K2d01yWDxYlm3duiyQ0RQ", + "name": "Rebel Yoga Studio", + "address": "8020 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0711748, + "longitude": -75.2014456, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Juice Bars & Smoothies, Active Life, Food, Women's Clothing, Fashion, Sporting Goods, Sports Wear, Yoga, Fitness & Instruction, Kombucha, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "c4ecEZS7BEmPhgSqzVz9tA", + "name": "Cantina Avenida", + "address": "7402 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.062681, + "longitude": -75.193195, + "stars": 3.5, + "review_count": 101, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Breakfast & Brunch, Latin American, Restaurants", + "hours": { + "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-22:0" + } + }, + { + "business_id": "cmVD5Ai1x__iOtNgoZjkAg", + "name": "Meineke Car Care Center", + "address": "6140 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.027891, + "longitude": -75.0628144, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "5QZoJbld4r2tRnSd3QzUng", + "name": "Kelly Pool", + "address": "Lansdowne Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.97917, + "longitude": -75.208022, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Swimming Pools, Active Life", + "hours": null + }, + { + "business_id": "GXq1DWYHNlH9pEN-4XvsHQ", + "name": "Pep Boys", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.028711, + "longitude": -75.09928, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Parts & Supplies, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "vs0uV4vwkv0eKB5FIyI3ug", + "name": "Bain's Deli", + "address": "200 S Broad St, Ste Fc3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Convenience Stores, Sandwiches, Food, Restaurants, Delis", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "23:30-16:30" + } + }, + { + "business_id": "Crd6jbioxzgd1j2885eCHQ", + "name": "Maids Gone Green", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Cleaning, Home Organization, Home Services", + "hours": null + }, + { + "business_id": "auR1RNlfPQHmnfARtTM88A", + "name": "Bralow Vicki, DO", + "address": "2240 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9196869, + "longitude": -75.1522109, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Family Practice, Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "5S2KlQTSqhzXYNKtVGAHog", + "name": "Alpha and Omega Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Painters, Solar Panel Cleaning, Interior Design, Home Services", + "hours": { + "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", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "_HOZ9tfaB0v1C8OsNSo1CA", + "name": "Kabobeesh Turkish Restaurant", + "address": "613 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411183, + "longitude": -75.1491354, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsReservations": "True" + }, + "categories": "Mediterranean, Middle Eastern, Halal, Pakistani, Turkish, Restaurants, Kebab, Indian", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "0JkkF-9XPth8ej-MWISChQ", + "name": "U-Haul Moving & Storage At Roosevelt Blvd", + "address": "7750 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0528334311, + "longitude": -75.0511139973, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Movers, Self Storage, Automotive, Packing Supplies, Propane, Truck Rental, Local Services, Shopping, Home Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "2kyczXOKMGqcDdval--KJw", + "name": "7-Eleven", + "address": "804 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947983, + "longitude": -75.154628, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Grocery, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "8bDsHNKOrjJEyOFNDidV8Q", + "name": "Kusina Philly", + "address": "4612 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9439712, + "longitude": -75.2099137, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BYOB": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "HasTV": "False", + "BikeParking": "False" + }, + "categories": "Food, Desserts, Filipino, Restaurants", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "Z69f5DLAgRvn528Y61WEIg", + "name": "Saladworks", + "address": "1625 Market St, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524133109, + "longitude": -75.1681163907, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Soup, Vegetarian, American (Traditional), Sandwiches, Restaurants, Salad", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "gO_W7JLMw2om3l1NUUlvjA", + "name": "Gatehouse ", + "address": "4503 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8966261, + "longitude": -75.1754003, + "stars": 3.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Smoking": "u'yes'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Italian, Event Planning & Services, Venues & Event Spaces, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "9M7LpN2FISuihc9Ad0makw", + "name": "Charlie's Pizzeria", + "address": "4300 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0299782, + "longitude": -75.1052559, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "Alcohol": "'none'", + "WiFi": "u'no'", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BikeParking": "False" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "2XbCMWfctIKuZpswT0Yt_g", + "name": "Sistah's Gourmet Delights", + "address": "Willits & Wesleyan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0594781, + "longitude": -75.0176614, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bakeries, Food", + "hours": null + }, + { + "business_id": "p6EOQtluRCBWCRns40kdow", + "name": "Down Philadelphia", + "address": "262 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9475263, + "longitude": -75.1664986, + "stars": 2.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "None", + "NoiseLevel": "None", + "BusinessAcceptsCreditCards": "True", + "AgesAllowed": "u'21plus'", + "CoatCheck": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}" + }, + "categories": "Dance Clubs, Bars, Nightlife, Lounges", + "hours": { + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "4nEajRJlnTsgWlvACOX6qg", + "name": "Banana Mousse", + "address": "5602 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9554637, + "longitude": -75.2342304, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Desserts, Pet Adoption, Pets, Ice Cream & Frozen Yogurt", + "hours": { + "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" + } + }, + { + "business_id": "6jZhYEThSDOfImT7pl9u2g", + "name": "VaporFi - Philadelphia", + "address": "1240 S St, Unit B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94320464, + "longitude": -75.1629069, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Flowers & Gifts, Vape Shops, Gift Shops, Head Shops, Tobacco Shops", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "Fde-_DZdIpKhXE7i9KRlTw", + "name": "Tasty Asia Restaurant", + "address": "1807 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387746, + "longitude": -75.1740802, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Malaysian, Asian Fusion, Restaurants, Indonesian", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "s-6xfRvPnqrcNH_g3JReNA", + "name": "Lanci Bakery", + "address": "1716 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923678, + "longitude": -75.1754654, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Local Flavor, Bakeries, Shopping, Grocery, Food", + "hours": { + "Monday": "6:0-13:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "HA217nXPzk9ZFNik4jx_Tg", + "name": "Hoagies Plus", + "address": "752 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0011962, + "longitude": -75.1146186, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Sandwiches, Salad, Restaurants, Delis", + "hours": { + "Monday": "8:0-20:30", + "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" + } + }, + { + "business_id": "jIaycjmFK6ZecPx-tMR43A", + "name": "Dahlak", + "address": "4708 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483841, + "longitude": -75.2173556, + "stars": 3.5, + "review_count": 164, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': False, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Ethiopian, Dive Bars, Bars, Nightlife, Restaurants", + "hours": { + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "QvhKhVOzkmHFF_wMP_-x2A", + "name": "Old Thyme Cafe", + "address": "229 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501875221, + "longitude": -75.1447476447, + "stars": 4.5, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Mediterranean, Restaurants, Middle Eastern", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "9H3AqvbRlNNVpfgk4yyomw", + "name": "Philadelphia Convention Center Parking", + "address": "142 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.955882, + "longitude": -75.163377, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "-fs09akgCKv5rTTy7iUHUg", + "name": "ICI Macarons & Cafe", + "address": "230 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519105, + "longitude": -75.1443815, + "stars": 5.0, + "review_count": 276, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "Caters": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Desserts, Bakeries, Food, Coffee & Tea, Specialty Food, Macarons", + "hours": { + "Monday": "0:0-0:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "ED-6JeGGo8C_m7MiSB36Zw", + "name": "Vault + Vine", + "address": "3507 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0137038, + "longitude": -75.1926351, + "stars": 4.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home & Garden, Shopping, Florists, Flowers & Gifts, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "DZ03mJdNvTMsJCCLouRXUQ", + "name": "RowZone Manayunk", + "address": "4401 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026114, + "longitude": -75.22469, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False" + }, + "categories": "Gyms, Boot Camps, Trainers, Active Life, Fitness & Instruction", + "hours": { + "Monday": "6:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "6:0-20:30", + "Saturday": "8:0-12:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "xkHm1pEx803UnzbZNVqu-g", + "name": "Boss Plumbing & Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358382, + "longitude": -75.174734, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Water Heater Installation/Repair, Heating & Air Conditioning/HVAC, Plumbing, Home Services, Hydro-jetting, Shopping, Kitchen & Bath, Home & Garden, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "f5UrgjKQtZdvXPEWkFrBpw", + "name": "PHL Taxi", + "address": "641 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9647435, + "longitude": -75.1606108, + "stars": 1.5, + "review_count": 61, + "is_open": 1, + "attributes": null, + "categories": "Airport Shuttles, Taxis, Transportation, Hotels & Travel", + "hours": { + "Monday": "0:0-23:59", + "Tuesday": "0:0-23:59", + "Wednesday": "0:0-23:59", + "Thursday": "0:0-23:59", + "Friday": "0:0-23:59", + "Saturday": "0:0-23:59", + "Sunday": "0:0-23:59" + } + }, + { + "business_id": "l2TdZEPHrboWrMUnoFB1RQ", + "name": "Mangia Macaroni", + "address": "1543 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630572, + "longitude": -75.1643311, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Corkage": "False", + "BYOB": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "WiFi": "u'free'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sandwiches, Pasta Shops, Italian, Restaurants, Food, Delis, Specialty Food", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "bCvUy9KIFP4Q6DwCwRKmMg", + "name": "The Breakfast Den", + "address": "1500 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943759, + "longitude": -75.167337, + "stars": 4.0, + "review_count": 83, + "is_open": 1, + "attributes": { + "Corkage": "False", + "BYOB": "True", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "10:0-17:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "24xx8ju_U_uN1zJf2YtKkA", + "name": "The Black Cat Tavern On 12th", + "address": "2654 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.91654, + "longitude": -75.1677739, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "HasTV": "True", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BYOB": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "CoatCheck": "False", + "BikeParking": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beer Bar, Dive Bars, Gastropubs, Cocktail Bars, Nightlife, Bars, Restaurants", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "lThz-RFgLk4gZz2kheXQqg", + "name": "Jar Bar", + "address": "113 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499371, + "longitude": -75.1602462, + "stars": 3.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Juice Bars & Smoothies, American (New), Restaurants, Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "a9VBpA_-Tl8FtCYYJtE5Xw", + "name": "Schmear It", + "address": "19 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513058, + "longitude": -75.1599019, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "True" + }, + "categories": "Bagels, Food Trucks, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-13:0", + "Wednesday": "7:30-13:0", + "Thursday": "7:30-13:0", + "Friday": "7:30-13:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "QbNvi4NDzGSle2Wsp8Bwyw", + "name": "Bruce B Zappan, DPM - Medical Arts Podiatry Associates", + "address": "1601 Walnut St, Ste 505", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Podiatrists, Doctors, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "lxbY-WSj7V4Nj1w8AuNXUA", + "name": "She Sugars Co", + "address": "1204 E Palmer St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710917, + "longitude": -75.1287518, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Waxing, Beauty & Spas, Sugaring, Hair Removal", + "hours": { + "Monday": "9:0-17:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "QriIO0sJCe1dUKEe21gtWw", + "name": "House of Chen", + "address": "932 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955173, + "longitude": -75.155511, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "aNIqkFQYtBieV7NX3343ag", + "name": "Jamaica Way", + "address": "2900 Island Ave, Ste 2930", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.903291, + "longitude": -75.2406365, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "HasTV": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Imported Food, Ethnic Food, Restaurants, American (New), Caribbean, Specialty Food, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0" + } + }, + { + "business_id": "dFBGpQvHtQ20HVM6cYeFWQ", + "name": "Public Storage", + "address": "7000 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9097415, + "longitude": -75.231056, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "5EL8OtIvDMWkT9jDlAJetg", + "name": "Wilbur: Vintage & Designer Clothing", + "address": "716 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401355, + "longitude": -75.1496321, + "stars": 5.0, + "review_count": 59, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Used, Vintage & Consignment, Fashion", + "hours": { + "Monday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "B-O3TsBwkK3Bir3AbVlhKw", + "name": "Twin Smoke Shoppe", + "address": "1537 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929654, + "longitude": -75.1613069, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Bars, Arts & Crafts, Shopping, Event Planning & Services, Cards & Stationery, Flowers & Gifts, Nightlife, Cocktail Bars, Tobacco Shops", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Wt3NAVSLT5KXFR7uQF0HbA", + "name": "La Fusion ", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936254, + "longitude": -75.162051, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "Corkage": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "Smoking": "u'no'", + "GoodForKids": "True", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Lounges, Sushi Bars, Thai, Nightlife, Japanese, Bars, Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "7HcaaocVkMj3g7OiIVWy6g", + "name": "Delmar Bar & Lounge", + "address": "304 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0300677, + "longitude": -75.180271, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, Dive Bars", + "hours": null + }, + { + "business_id": "yAN4CbZnwczuEOvAlxOdlA", + "name": "Harmony Bakery", + "address": "901 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955254, + "longitude": -75.154563, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Religious Organizations, Bakeries, Food", + "hours": null + }, + { + "business_id": "7vLNhkXPzmufC6aKkh3n8Q", + "name": "ZEPS Pizza & Shish Kabobs", + "address": "9965 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0997479, + "longitude": -75.030078, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Food, Pizza, Middle Eastern, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "XNqXFyK0vUSBa7Fk8Lv_lQ", + "name": "The Bottle Shop at Local 44", + "address": "4331 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529504, + "longitude": -75.2102038, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "VqbS5tyfB0t1VIbjqtudWQ", + "name": "Nicoletti Beverage Center", + "address": "7040 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0240264, + "longitude": -75.0361858, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Breweries, Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "GYB5w02K-JrWKziBEwXcQA", + "name": "LYS Love YourSelf", + "address": "503 S 52nd St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9517969, + "longitude": -75.2263242, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Fashion, Hats, Shopping, Shoe Stores, Women's Clothing", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "EnXcMavajj6xV0K67NKSeQ", + "name": "Monarch Hardware", + "address": "4502 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9550019, + "longitude": -75.2120226, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Keys & Locksmiths, Hardware Stores, Home Services, Home & Garden, Shopping, Windows Installation", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "s2J1lRgd4CagG4TjTUYQhA", + "name": "Adelie Coffee House", + "address": "6610 Germantown Ave, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.050681, + "longitude": -75.1851122, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Caters": "False", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Food, Coffee & Tea, Cafes, Breakfast & Brunch", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "-lVEVi3vtQ8_L9kKT0bBwQ", + "name": "Le Chรฉri", + "address": "251 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948372, + "longitude": -75.170851, + "stars": 4.0, + "review_count": 128, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'dressy'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, French", + "hours": { + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "9o55tW2eCwxRvwWVQSzj5g", + "name": "Trio", + "address": "2601 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9689060509, + "longitude": -75.1810369268, + "stars": 3.5, + "review_count": 184, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Seafood, Thai", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "Oi_42Zeok7jYPAd0-ViiBw", + "name": "Go Pro Movers", + "address": "314 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9584247, + "longitude": -75.1602533, + "stars": 4.0, + "review_count": 264, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Movers, Professional Services, Home Services, Self Storage, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "ETNlknCdy7jR33yoAH_l3g", + "name": "City of Philadelphia", + "address": "1 Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9523942224, + "longitude": -75.1635988202, + "stars": 3.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Flavor, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "q_aNiAml3tAeafeWDAeirQ", + "name": "Jacobs Music - Philadelphia", + "address": "1718 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513634, + "longitude": -75.1695637, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Musical Instrument Services, Shopping, Musical Instruments & Teachers, Local Services, Piano Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "1Bby_pb1ZBojRRcslDk1gA", + "name": "Ox Coffee", + "address": "616 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409074, + "longitude": -75.1477406, + "stars": 4.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee Roasteries, Coffee & Tea, Food, Juice Bars & Smoothies, Bakeries", + "hours": { + "Tuesday": "7:0-12:0", + "Wednesday": "7:0-12:0", + "Thursday": "7:0-12:0", + "Friday": "7:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "qa4nHJFfq3LAzgq_xagfag", + "name": "OUR Welding", + "address": "323 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.966038, + "longitude": -75.224472, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Home Services, Fences & Gates, Metal Fabricators, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "Gmwa3dHeqM_kHJHFrMJ2bQ", + "name": "Marcello Family Concrete", + "address": "2031 Shelmire Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0537792, + "longitude": -75.0616508, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Professional Services, Masonry/Concrete, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "hkKWRyfYI4fDzaiIEkZIeQ", + "name": "The Asthma Center", + "address": "2137 Welsh Rd, Ste 2B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0754824, + "longitude": -75.0350752, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Ear Nose & Throat, Health & Medical, Doctors, Allergists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-18:0", + "Thursday": "9:0-18:30", + "Friday": "13:0-17:0" + } + }, + { + "business_id": "AuLdRDaloS-jY5s5yGJADA", + "name": "Ashley HomeStores", + "address": "9755 Roosevelt Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0847918, + "longitude": -75.0225067, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Home & Garden, Furniture Stores, Shopping", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "2BWgMVUaFacZ9oueEixAGg", + "name": "Chew Philly Food Tours", + "address": "4212 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023867, + "longitude": -75.22083, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Tours, Food Tours, Hotels & Travel, Walking Tours", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "nDXR7nnWXDlkTvlx3Qbqgw", + "name": "WXPN Radio", + "address": "3025 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9522277, + "longitude": -75.1850894, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations", + "hours": null + }, + { + "business_id": "yRO9jF-YqiMwq5ja96GdTg", + "name": "Amanda Iris Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Event Photography, Event Planning & Services, Session Photography", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "Hk_EjFDeK5u7rlYEUx6a_g", + "name": "Jaggie's Restaurant", + "address": "6220 Lansdowne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9754309403, + "longitude": -75.244301181, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "zFpzWAtUXDkOXk7JEXbk3w", + "name": "Dansavann Laos Cafe", + "address": "5419 N Mascher St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0332971, + "longitude": -75.1236905, + "stars": 4.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Laotian, Restaurants, Thai, Salad", + "hours": { + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-21:30", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "qv6TSnK4iXZAXxG13mjv-w", + "name": "Angelina's Panini Bar", + "address": "Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.872831, + "longitude": -75.252221, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "lQTdARrqdKMAcDp1PWpQ9A", + "name": "The Original Turkey", + "address": "45 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953049478, + "longitude": -75.1594718185, + "stars": 4.5, + "review_count": 213, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "HappyHour": "False" + }, + "categories": "Sandwiches, Restaurants, Specialty Food, Food, American (Traditional), Comfort Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "iXyhJ8pywjdkNAFwAQYadA", + "name": "Frankford Tax Professionals", + "address": "2424 E York St, Ste 327", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774533, + "longitude": -75.1245282, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Business Consulting, Accountants, Tax Services, Bookkeepers, Financial Services, Payroll Services, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "XT1xF_7s3bJdm2UOrTMjPQ", + "name": "Halal Gyro Express", + "address": "1880 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9543180934, + "longitude": -75.1712594915, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Food, Imported Food, Halal, Specialty Food, Street Vendors, Ethnic Food, Middle Eastern, Gluten-Free", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "47TOmOqMxeyUSpYoLKqTsA", + "name": "McDonald's", + "address": "2400 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9194113, + "longitude": -75.1873063, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "None", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'loud'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Fast Food, Burgers, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "-Xbd9fxhkZtKVmIUi7me1Q", + "name": "Yo Bus", + "address": ", 1001 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528792781, + "longitude": -75.1570801064, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Public Transportation, Transportation", + "hours": null + }, + { + "business_id": "NBNzbOmnx07SypzXkgPitA", + "name": "Adrienne Theater", + "address": "2030 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512829, + "longitude": -75.1746805, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "qg6TJc2izTA52XFHAxdVjQ", + "name": "Di Bruno Bros.", + "address": "1701 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954251, + "longitude": -75.168476, + "stars": 3.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'" + }, + "categories": "Sandwiches, Italian, Delis, Food, Specialty Food, Restaurants, Cheese Shops, Meat Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:30", + "Wednesday": "7:0-19:30", + "Thursday": "7:0-19:30", + "Friday": "7:0-19:30", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "75pheRYoJf0hdWs9pqLE9A", + "name": "Snow White", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519227, + "longitude": -75.1720713, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, American (Traditional)", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Friday": "16:30-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "hzXmSzmBqgvEkivy7-Mc2Q", + "name": "Chick-fil-A", + "address": "203 N 34th St Northside Dining Ter", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9589223, + "longitude": -75.1906643617, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Fast Food, Event Planning & Services, Caterers, Restaurants, Chicken Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "zmf3SRG73_R3IUkIIOzZtw", + "name": "Tot Cart", + "address": "13TH St Between Montgomery And Norris Sts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9853927, + "longitude": -75.1762181, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "wDdtwWo-TxHifDoMGx5Wdw", + "name": "Wasabi", + "address": "724 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.105464, + "longitude": -75.034138, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True" + }, + "categories": "Japanese, Sushi Bars, Restaurants, Thai", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "m0IftALyhD48DUgfRsngUg", + "name": "Caputo's Pizzeria", + "address": "4229 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243530273, + "longitude": -75.2207183838, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "True", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Italian, Pizza, Moroccan, Sandwiches", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "xtEDyU98DnjqsCuV8apV6A", + "name": "Lamberti Pizza and Market", + "address": "707 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497346448, + "longitude": -75.1526048407, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Sandwiches, Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "eWVXZ2C-YATIBXV3bezXGA", + "name": "ARDMOR", + "address": "2030 Grant Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.082868, + "longitude": -75.033755, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Handyman, Gutter Services, Home Services, Door Sales/Installation, Glass & Mirrors, Windows Installation", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "D-xMOgd36hqlyfbmPlKDQg", + "name": "Park America", + "address": "215 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942489, + "longitude": -75.1460855, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "RNqbc9oD-kGFM-djhfAzvg", + "name": "ShopRite of Aramingo Avenue", + "address": "3745 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9945411318, + "longitude": -75.0919159434, + "stars": 2.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Bakeries, Restaurants, Delis", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "_t9DLXruGEQMXKRuPRLehA", + "name": "The Mann Center", + "address": "5201 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.983326, + "longitude": -75.222969, + "stars": 4.0, + "review_count": 160, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'loud'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "False", + "GoodForDancing": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Performing Arts, Dance Clubs, Nightlife, Music Venues, Arts & Entertainment", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "TFcLqraaSeyswscZrT437w", + "name": "Palace Travel", + "address": "123 S Broad St, Ste 1040", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19109", + "latitude": 39.9498227, + "longitude": -75.1638251, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Transportation, Airlines, Tours, Travel Services", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0" + } + }, + { + "business_id": "ThD4dDoprC3YKwa6RHhUdw", + "name": "Central Uniforms", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496252, + "longitude": -75.1550996, + "stars": 2.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Men's Clothing, Shopping, Shoe Stores, Arts & Crafts, Medical Centers, Women's Clothing, Health & Medical, Fashion, Costumes", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "Tx9pbav8fRr-kC_Bdzn1pg", + "name": "Center City Notary", + "address": "100 S Broad St, Ste 1415", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.950378, + "longitude": -75.164459, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Notaries, Professional Services", + "hours": { + "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": "10:0-16:0" + } + }, + { + "business_id": "e4InIycH2PAJWccBBj0tAA", + "name": "Yong Hwa Roo", + "address": "6779 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0547178, + "longitude": -75.1260501, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Korean, Restaurants", + "hours": null + }, + { + "business_id": "_zTCeJDF00ssmvBUMY9sKA", + "name": "AURA", + "address": "628 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612273, + "longitude": -75.1387381, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'dressy'", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "WiFi": "u'free'" + }, + "categories": "Italian, Dance Clubs, Nightlife, American (New), Asian Fusion, Restaurants", + "hours": { + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "47qVw25eTyGXMVQe83ypVg", + "name": "Seasons at Drexel", + "address": "33RD And Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9540795, + "longitude": -75.189731, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "EoKKkfmOOgtdy-Br0Hs1xw", + "name": "Shofuso Japanese House & Garden", + "address": "Horticultural Dr And Lansdowne Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.981419, + "longitude": -75.213578, + "stars": 4.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Cultural Center, Venues & Event Spaces, Botanical Gardens, Event Planning & Services, Museums", + "hours": { + "Monday": "0:0-0:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "wIqtSoKR8rwTmDCbqKHjJw", + "name": "Enterprise Rent-A-Car", + "address": "5847 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0426041206, + "longitude": -75.1434123069, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "7:30-16:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "pfvrsJHVBIAjACZJ85_6JQ", + "name": "Luxury Car service ", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19109", + "latitude": 39.9502753, + "longitude": -75.1634761, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Transportation, Limos, Taxis, Hotels & Travel, Town Car Service, Airport Shuttles", + "hours": { + "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" + } + }, + { + "business_id": "KkA7sTU3YovKzBmgqxrGRg", + "name": "Wawa", + "address": "7715 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0394769, + "longitude": -75.0326844, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Food, Convenience Stores, Restaurants, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "ExcIcrtV0-RAbOV7xp7Rkg", + "name": "Crossfit Rittenhouse", + "address": "2300 Chestnut St, Ste B7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524957, + "longitude": -75.178706, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Interval Training Gyms, Recreation Centers, Gyms, Trainers", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-19:0", + "Saturday": "9:0-11:30" + } + }, + { + "business_id": "HK6Iew4GgRzV6A5zO2OXjw", + "name": "3Rd St. Hardware Ace", + "address": "153 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537293, + "longitude": -75.1446646, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Hardware Stores, Shopping", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "OAhBYw8IQ6wlfw1owXWRWw", + "name": "Target", + "address": "1128 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950249, + "longitude": -75.15983, + "stars": 3.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "None", + "HasTV": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Fashion, Food, Drugstores, Grocery, Department Stores, Shopping, Shopping Centers, Home & Garden, Electronics, Furniture Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-10:30", + "Friday": "7:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "SMKJV4XRKRD-ShQx5emIsA", + "name": "Comcast", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Home Services, Public Services & Government, Television Service Providers, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "ItK7wimYGEXb-XrfVCQByw", + "name": "Reanimator Coffee", + "address": "1248 S Clarion St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340325, + "longitude": -75.1660499, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cafes, Coffee Roasteries, Coffee & Tea, Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "iHm1l7v1xaejlOgATGFymw", + "name": "Frankford Cookies", + "address": "1429 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9730521, + "longitude": -75.1337939, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Desserts, Food", + "hours": { + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "jUnLjPEuLON6fpPvpuEAjA", + "name": "Frog Burger", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9581389, + "longitude": -75.1726258, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Burgers", + "hours": { + "Monday": "12:0-19:30", + "Tuesday": "12:0-19:30", + "Wednesday": "12:0-19:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-19:30", + "Saturday": "12:0-19:30", + "Sunday": "12:0-19:30" + } + }, + { + "business_id": "u0YzQj5kpdMa-Khl3jC8OQ", + "name": "Hot Hands Studio & Spa", + "address": "2545 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9182604, + "longitude": -75.1706944, + "stars": 3.5, + "review_count": 130, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Beauty & Spas, Massage, Day Spas, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "d9qfEl0SxRCy1SEkVIHlaA", + "name": "Clear", + "address": "1736 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514689, + "longitude": -75.1702426, + "stars": 1.5, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Internet Service Providers", + "hours": null + }, + { + "business_id": "WNe98nBJxx94ac-WeMzKaA", + "name": "Fluent City", + "address": "1222 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9475378, + "longitude": -75.1698753, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": null, + "categories": "Private Tutors, Language Schools, Adult Education, Education, Specialty Schools", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-17:0", + "Saturday": "12:0-15:0" + } + }, + { + "business_id": "XixKy4AoVb-sAljtEeKALw", + "name": "Aether", + "address": "1832 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9778782724, + "longitude": -75.131544, + "stars": 4.0, + "review_count": 82, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "CoatCheck": "False", + "WiFi": "u'free'", + "Corkage": "True", + "Smoking": "u'no'", + "HappyHour": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Bars, Cocktail Bars, American (New), Nightlife, Restaurants, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "Jc-y852Fq1_6VB5kPUjxfA", + "name": "City Planter", + "address": "814 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9642187, + "longitude": -75.1444745, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Gardeners, Nurseries & Gardening, Home & Garden, Shopping", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "W9nNBbhU_MyLvc_c8u63KA", + "name": "The Children's Boutique", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Children's Clothing, Shoe Stores, Toy Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:30-17:0" + } + }, + { + "business_id": "Vu2JA3e98QsxaRhkiFIylw", + "name": "Mattress Firm Chestnut Street", + "address": "1722 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515073, + "longitude": -75.169772, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Furniture Stores, Home & Garden, Mattresses", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "vpLMV6pHa1oI71jYaCVFzA", + "name": "Cooperage Wine & Whiskey Bar", + "address": "123 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9483215605, + "longitude": -75.1524532172, + "stars": 4.0, + "review_count": 240, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Nightlife, Food, Southern, Beer, Wine & Spirits, Gastropubs, American (New), Cocktail Bars, Restaurants, Bars, Wine Bars, Whiskey Bars, Coffee & Tea", + "hours": { + "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": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "p6eqb3CSMuMPmkkVlLDhpw", + "name": "Mom's Bake At Home Pizza", + "address": "4452 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0263177654, + "longitude": -75.2260648743, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-2:30", + "Saturday": "11:0-2:30" + } + }, + { + "business_id": "OO48TeTKTtizov_DioX5ow", + "name": "Jannie Japan Chinese Cuisine", + "address": "2117 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0500993, + "longitude": -75.0629689, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Chinese, Japanese, Restaurants", + "hours": null + }, + { + "business_id": "W-o1Q1SRFlyLYtDanhfx9A", + "name": "Minh Nguyet Hair Salon", + "address": "211 South 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541879, + "longitude": -75.208916, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "m44uqdqZyz7AQJhcCu7DUg", + "name": "Nova Ice", + "address": "1508 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9507546, + "longitude": -75.1660981, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Piercing, Shopping, Cosmetics & Beauty Supply, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "ksSxGHhWozfLMz0temWOig", + "name": "The Blarney South", + "address": "328 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413837, + "longitude": -75.1485306, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True" + }, + "categories": "Irish, Restaurants, Bars, American (New), Pubs, Nightlife", + "hours": null + }, + { + "business_id": "6isf3Uypu9O1zfnRyaGiZw", + "name": "WMD Hot Sauce", + "address": "1212 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432072, + "longitude": -75.1622475, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Specialty Food", + "hours": { + "Thursday": "16:30-20:0", + "Friday": "16:30-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "oqVIt-3KN84rkeC2Z-woeg", + "name": "Salon Thalia", + "address": "1520 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484902306, + "longitude": -75.1671101693, + "stars": 4.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Hair Salons, Massage, Skin Care, Hair Removal, Nail Salons, Makeup Artists, Eyelash Service, Beauty & Spas, Day Spas", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "8:30-15:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "PmJx4zNYCyR7Hx9AmgUUJA", + "name": "Steve's Prince of Steaks", + "address": "41 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9514989281, + "longitude": -75.1669257544, + "stars": 3.0, + "review_count": 519, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "Caters": "True", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Burgers, Chicken Wings, Cheesesteaks, Steakhouses, Food, Restaurants", + "hours": { + "Monday": "9:30-23:0", + "Tuesday": "9:30-23:0", + "Wednesday": "9:30-23:0", + "Thursday": "9:30-23:0", + "Friday": "9:30-3:0", + "Saturday": "9:30-3:0", + "Sunday": "9:30-23:0" + } + }, + { + "business_id": "Oepie7uMmsxaAWKNjouZvA", + "name": "Romp Pet Care", + "address": "800 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 40.0100612, + "longitude": -75.083878, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": null, + "categories": "Dog Walkers, Pet Services, Pets, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "mvL5FhxCmZ1Im8lFgMu4fQ", + "name": "Philly Chocolate", + "address": "1317 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949295, + "longitude": -75.1630394, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Desserts, Coffee & Tea, Food", + "hours": { + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "PPVPsVsPGii4xs5trp8LcA", + "name": "Philadelphia Insectarium & Butterfly Pavilion", + "address": "8046 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425104, + "longitude": -75.0263674, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Zoos, Botanical Gardens, Children's Museums, Active Life, Arts & Entertainment, Petting Zoos, Museums", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "AR5KMwr7SsXPyhBfF1QkdQ", + "name": "Lore's Chocolates", + "address": "34 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498263, + "longitude": -75.1524506, + "stars": 4.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False" + }, + "categories": "Chocolatiers & Shops, Desserts, Food, Specialty Food, Candy Stores", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "3ldp8B52AOzNSFnPMAY0ww", + "name": "Fette Sau", + "address": "1208 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9692358, + "longitude": -75.134788, + "stars": 4.0, + "review_count": 631, + "is_open": 1, + "attributes": { + "HasTV": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-20:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ungtrLrUNNN_Ohldfo3zcw", + "name": "Philly Pretzel Factory", + "address": "8800 Essington Ave, Terminal F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8805791544, + "longitude": -75.2375794521, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Bakeries, Food, Pretzels, Restaurants, Hot Dogs", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "ibZDb2w7D116oa5HioNqWA", + "name": "Harry Merrill & Son", + "address": "124 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487565, + "longitude": -75.154196, + "stars": 5.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Watches, Shopping, Jewelry, Bridal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-14:0" + } + }, + { + "business_id": "44kn9IotNdaGnvXbODGcXA", + "name": "Hair Cuttery", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.102419, + "longitude": -75.00874, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}" + }, + "categories": "Hair Stylists, Men's Hair Salons, Beauty & Spas, Barbers, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "bLHeleYVhhjghnv00jyqpg", + "name": "Ko Am Motors", + "address": "173 W Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0258663, + "longitude": -75.1265579, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "Lg0CyMD-R_v-NWe8e-UQwg", + "name": "Society Hill Synagogue", + "address": "418 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9447975, + "longitude": -75.149476, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Synagogues, Religious Organizations", + "hours": null + }, + { + "business_id": "tzJE88QY8OHxiU4GxOSNrg", + "name": "Red House II", + "address": "8756 frankford ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0493905, + "longitude": -75.0123935, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Seafood, Restaurants, Salad, Sushi Bars", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "1nK_pMoriYMXfx2GHVdtkQ", + "name": "Pizza Warehouse", + "address": "1000 Diamond St, Ste 114", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9834801, + "longitude": -75.1499321, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "OutdoorSeating": "True" + }, + "categories": "Pizza, Restaurants, Breakfast & Brunch, Chicken Wings, Italian", + "hours": null + }, + { + "business_id": "tejDyP6IwEvcFQ8AVxKL1Q", + "name": "Lipkin Bakery", + "address": "8013 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0620366, + "longitude": -75.0554678, + "stars": 3.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bagels, Bakeries, Desserts", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-19:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "FXTIlnd5z1ufA4oHraKq6g", + "name": "Classic Car Cleaners", + "address": "2011 S Chadwick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9258169, + "longitude": -75.173622, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Detailing, Car Wash", + "hours": null + }, + { + "business_id": "wk97-U9eVonoAyDyRQX3ig", + "name": "Hats In the Belfry", + "address": "1824 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515495, + "longitude": -75.1714749, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Local Flavor, Hats", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "CAIIPqKY0pS0yQ8fKGlDPg", + "name": "ร€se Yoga Studio and Tea Room", + "address": "4054 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0075766, + "longitude": -75.1907567, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Event Planning & Services, Yoga, Fitness & Instruction, Active Life, Venues & Event Spaces", + "hours": { + "Wednesday": "18:0-19:30", + "Friday": "18:0-19:30", + "Saturday": "8:0-22:0", + "Sunday": "9:0-10:30" + } + }, + { + "business_id": "Or3e2M09bnuydIVfHDzuAA", + "name": "Kay, Tabas & Niknam Ophthalmology Associates", + "address": "601 Walnut St, Ste L-30", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ophthalmologists, Doctors, Optometrists, Health & Medical", + "hours": null + }, + { + "business_id": "AabZBiLIQn-JdY8StCbABg", + "name": "Esprit", + "address": "1729 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501137, + "longitude": -75.1703239, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Women's Clothing, Fashion, Men's Clothing", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "kuLBEoUmfIWZxDC6oWd-Kw", + "name": "Philly Pretzel Factory", + "address": "3734 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510755, + "longitude": -75.1986771, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Bakeries, Specialty Food, Food, Pretzels", + "hours": { + "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": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "bfv9lnhfwxSdJynls259Cg", + "name": "Roberto Clemente Park & Playground", + "address": "1800 Mt Vernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965164, + "longitude": -75.1675341, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "-rvNMxUaQsJltsn0ftqpbQ", + "name": "24-7 Food Mart", + "address": "1 Franklin Town Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9598849, + "longitude": -75.1673303, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Convenience Stores, Local Flavor, Food", + "hours": null + }, + { + "business_id": "sxBJ4-kvlc5DMj2qakOUzA", + "name": "Melting Pot", + "address": "1219 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532600406, + "longitude": -75.1608015159, + "stars": 3.5, + "review_count": 156, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "BYOBCorkage": "'no'", + "WiFi": "u'no'", + "HasTV": "False", + "BikeParking": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "GoodForKids": "True" + }, + "categories": "Desserts, Restaurants, Fondue, American (New), Food", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "S9IFCU4FKCqEriV1Rr2ZcA", + "name": "Race Street Cafe", + "address": "208 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537127, + "longitude": -75.1434447561, + "stars": 4.0, + "review_count": 315, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "HappyHour": "True", + "GoodForDancing": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, American (New), Cafes, Nightlife, American (Traditional), Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "D65f1izTlcBlUJmH4iQW8A", + "name": "Brown Sugar Nail Spa", + "address": "1128 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935628, + "longitude": -75.15882, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Eyebrow Services, Hair Removal, Waxing, Nail Salons, Skin Care, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:0-19:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "oUcqQ_WgA2kZtHfa1Vu2Ug", + "name": "8th & Market Patco High Speed Line", + "address": "8TH And Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511521251, + "longitude": -75.1535868645, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Public Transportation, Train Stations, Transportation", + "hours": null + }, + { + "business_id": "dSdnWJxvhLwvsDfRI1lKuQ", + "name": "Residence Inn Philadelphia Airport", + "address": "3701 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8957530955, + "longitude": -75.2363016307, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "24AvZmbQOjUzmpH1TOuDGA", + "name": "Gallelli Formal Wear", + "address": "904 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0617245, + "longitude": -75.0846353, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Fashion, Men's Clothing, Shopping, Formal Wear", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "S4S7MXqTzZCekYkGuIJ2hw", + "name": "TD Bank", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532295074, + "longitude": -75.1717012981, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "5DxlRmOL5kpE-j-uipAADw", + "name": "Keys to the Attic", + "address": "314 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9696676, + "longitude": -75.1311883, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Home Decor, Home & Garden, Furniture Stores, Antiques", + "hours": { + "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" + } + }, + { + "business_id": "4rEE97olHLzF5WnpHm8rmQ", + "name": "Acapulco", + "address": "1122 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9357454, + "longitude": -75.1587221, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "AsiGOzIFBgOsB0zBKZ9_bA", + "name": "Aviya's Garage Door", + "address": "621 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422923, + "longitude": -75.1531711, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Garage Door Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "nUFA34NsBSBm1LZZIsZlsw", + "name": "The Shop On The Ave", + "address": "7149 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0597757, + "longitude": -75.1903825, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "le0jxDSzFaDKS58n12yOIA", + "name": "Bo Wah", + "address": "7008 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9168703, + "longitude": -75.2375485, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "mDX0I8AQfro5st8IVufp-g", + "name": "Green Papaya Cafe", + "address": "7933 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.05767, + "longitude": -75.0525017, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False" + }, + "categories": "Cafes, Restaurants", + "hours": { + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-20:30", + "Saturday": "16:0-20:30", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "PwubHDpNphSPXu490VHIJQ", + "name": "Prof. Ouch's Bizarre Bazaar & Odditorium", + "address": "720 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404271269, + "longitude": -75.1511474259, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Antiques, Vinyl Records, Arts & Entertainment, Thrift Stores, Museums, Books, Mags, Music & Video", + "hours": { + "Monday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "jM9eNs-zXQ9iPpKskv2kgA", + "name": "Santucci's Original Square Pizza", + "address": "6164 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0348466, + "longitude": -75.21703, + "stars": 3.5, + "review_count": 80, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "NoiseLevel": "u'average'", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "n5J69MCeyGvofp3S4Vq_tw", + "name": "C.R.Y.O Philadelphia", + "address": "1700 Sansom St, Ste 501", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506387, + "longitude": -75.1691989, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Weight Loss Centers, Health & Medical, Physical Therapy, Medical Spas, Cryotherapy, Naturopathic/Holistic, Massage Therapy, Beauty & Spas, Doctors, Saunas, Skin Care", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Bw5UCOVXroCRve-hpseVlw", + "name": "Comer Paper", + "address": "6241 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0432128, + "longitude": -75.1807387, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Flowers & Gifts, Cards & Stationery, Shopping, Arts & Crafts, Party Supplies", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "GxXgWMJKvkidWxfEHwDjPw", + "name": "Lambie Funeral Home", + "address": "8000 Rowland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0460383, + "longitude": -75.031401, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Funeral Services & Cemeteries, Cremation Services", + "hours": { + "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" + } + }, + { + "business_id": "rjioWnWXnEbPc_0ocmoQEw", + "name": "U S Hotel Bar & Grill", + "address": "4439 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026658, + "longitude": -75.2261204411, + "stars": 3.0, + "review_count": 100, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Nightlife, Beer Bar, Burgers, American (Traditional), Restaurants, Bars, American (New)", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "JQyF_uBfOKxO90FAehrTKA", + "name": "Izlas Latin Cuisine", + "address": "2725 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.992299, + "longitude": -75.135783, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "Corkage": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True" + }, + "categories": "Puerto Rican, Mexican, Latin American, Caribbean, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-23:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0" + } + }, + { + "business_id": "7ZakDG7pDC2TAy9Iy8FCyg", + "name": "Retro Fitness", + "address": "2524 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.072916143, + "longitude": -75.0345552634, + "stars": 2.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "mQc4BBUzR9xyLbUTLoABSA", + "name": "Thread Bar", + "address": "247 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469269, + "longitude": -75.1574453, + "stars": 4.5, + "review_count": 197, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Henna Artists, Threading Services, Beauty & Spas, Hair Removal, Event Planning & Services, Waxing", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "gY4kIh8f9uCk-XI0FPH1fg", + "name": "US Airways", + "address": "8500 Essington Ave, Terminal B - 3rd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8732279267, + "longitude": -75.2447390798, + "stars": 1.5, + "review_count": 395, + "is_open": 0, + "attributes": null, + "categories": "Airlines, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "EUnnoesZTelOv_bT4GvZjg", + "name": "Tony's Deli", + "address": "17 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529259, + "longitude": -75.1750013, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True" + }, + "categories": "Delis, Diners, Restaurants, Breakfast & Brunch, Caterers, Event Planning & Services", + "hours": { + "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:30-14:30" + } + }, + { + "business_id": "1QlgJVS-WEb9KGS42sQMIA", + "name": "ROOST Rittenhouse", + "address": "1831 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520087, + "longitude": -75.1715201, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "om76TgZAFXQOHTIwlp9e5w", + "name": "O'donnell Real Estate", + "address": "4534 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487434, + "longitude": -75.213939, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Real Estate Agents, Real Estate, Home Services, Real Estate Services", + "hours": null + }, + { + "business_id": "QX3g1tCeHvb_kIhLmtBj0A", + "name": "Society Hill Hotel", + "address": "301 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488102, + "longitude": -75.1461255, + "stars": 2.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Hotels, Hotels & Travel, Bed & Breakfast, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "wwGdjg0gBmDu0CWPzNO9IA", + "name": "Access Karaoke", + "address": "1016-18 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553668, + "longitude": -75.1566319, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Smoking": "u'yes'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Karaoke", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "MhoPPxx-PMh08AzG6VPAgQ", + "name": "Penn Herb Company", + "address": "601 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961002, + "longitude": -75.141156, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Specialty Food, Herbs & Spices, Health Markets, Health & Medical, Vitamins & Supplements, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "lsgUussl7kP3Ml9hzelHPw", + "name": "Pep Boys", + "address": "7422 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0522584, + "longitude": -75.0586506, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Oil Change Stations, Auto Repair, Auto Parts & Supplies, Tires", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "Fp0S9XtlpiYsSWfc3q3wWg", + "name": "1st Rate Auto & Truck Repair", + "address": "1801 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.929971, + "longitude": -75.1867062, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-12:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "PpPYrO3Vkn4EgbKbIHTkdg", + "name": "Mais Nails", + "address": "3880 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9616493, + "longitude": -75.1999411, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Hair Removal, Beauty & Spas, Nail Salons, Waxing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "tQ8uGMhqDWcPfXMqukZJRg", + "name": "Artisserie Chocolate Cafe", + "address": "3421 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530283445, + "longitude": -75.1930439723, + "stars": 3.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea, Desserts", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "y6m-NyM9IeQj8-gokS8seA", + "name": "New Station Pizza", + "address": "6904 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0261752089, + "longitude": -75.0431555885, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Pizza, American (Traditional)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "o1xMeeymj2rr23wWnrH8XA", + "name": "Ends Hair Design And Day Spa", + "address": "624 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961204, + "longitude": -75.138882, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Day Spas, Eyelash Service, Beauty & Spas, Nail Salons, Massage, Hair Salons", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "8:30-19:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "uJ_GzL3GIKVGm1-DZRKn-g", + "name": "Re-Bath", + "address": "4201 Decatur St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0394566, + "longitude": -75.028885, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Kitchen & Bath, Plumbing, Home Services, Shopping, Contractors", + "hours": null + }, + { + "business_id": "_PundYs-vjo7ELl8lh264A", + "name": "Zsa's Gourmet Ice Cream", + "address": "6616 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.051026, + "longitude": -75.185115, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Food Trucks", + "hours": null + }, + { + "business_id": "BTXj2Vk6_55nimdKoXrZyg", + "name": "Acupuncture Off Broad", + "address": "1315 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9356272, + "longitude": -75.1661004, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Traditional Chinese Medicine, Tui Na, Acupuncture, Nutritionists", + "hours": { + "Monday": "13:30-19:30", + "Tuesday": "14:0-20:0", + "Wednesday": "12:30-20:0", + "Thursday": "14:30-20:0", + "Friday": "13:30-19:30", + "Saturday": "8:30-15:30", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "17MK8qagV374AuUA4sXuIA", + "name": "XIX Nineteen", + "address": "200 S Broad St, Fl 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949104, + "longitude": -75.164768, + "stars": 3.5, + "review_count": 611, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BYOBCorkage": "'no'", + "HasTV": "False", + "BikeParking": "True", + "CoatCheck": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Cafes, Lounges, Bars, American (New), American (Traditional), Restaurants, Nightlife, Seafood", + "hours": { + "Thursday": "15:0-0:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0" + } + }, + { + "business_id": "trwHwsXOVV-ZmF-MtP98BA", + "name": "High Street Philadelphia", + "address": "101 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949579, + "longitude": -75.1553831, + "stars": 4.0, + "review_count": 807, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'" + }, + "categories": "Cafes, Pizza, American (New), Breakfast & Brunch, Sandwiches, Restaurants", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-19:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-19:30", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "aT6dfEcg0bucpmdrE_G1zg", + "name": "Teassert Bar", + "address": "227 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562085, + "longitude": -75.1555185, + "stars": 4.0, + "review_count": 167, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BikeParking": "False", + "Caters": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Coffee & Tea, Bubble Tea, Desserts", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "kmAk-B3e0YJ8LGEgV4Q3bA", + "name": "Thomas Restaurant & Bar", + "address": "4201 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0238267, + "longitude": -75.2201312, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Pubs, Bars, Restaurants, Nightlife, American (New)", + "hours": { + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "ukpPtF8UMRshZ_216N1YTQ", + "name": "Plage Tahiti", + "address": "128 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505573, + "longitude": -75.1691942, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Fashion, Shopping, Women's Clothing", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "EBoqt-NMtrKicAfhckAatA", + "name": "Texas Wiener", + "address": "3963 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9632741, + "longitude": -75.2020952, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Diners, Food, Restaurants, Breakfast & Brunch, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:45-14:15", + "Wednesday": "5:45-14:15", + "Thursday": "5:45-14:15", + "Friday": "5:45-14:15", + "Saturday": "5:45-14:15", + "Sunday": "6:0-14:15" + } + }, + { + "business_id": "DXXoCDfWrTFAjVqLNwSAiA", + "name": "National Watch and Diamond Exchange", + "address": "101 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493617, + "longitude": -75.1537632, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Watches, Jewelry, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "j9tIldJfidEFNEMQM9vANg", + "name": "Ninja Bao", + "address": "1500 Jfk Blvd, Ste 6, Two Penn Ctr Concourse Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9535009355, + "longitude": -75.1658879027, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "BYOB": "False", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Caters": "True" + }, + "categories": "Ramen, Izakaya, Asian Fusion, Restaurants, Tapas/Small Plates, Dim Sum, Chinese, Japanese", + "hours": { + "Monday": "11:0-16:30", + "Tuesday": "11:0-16:30", + "Wednesday": "11:0-16:30", + "Thursday": "11:0-16:30", + "Friday": "11:0-16:30" + } + }, + { + "business_id": "7PGabPXRNxI76U5IFIJPYg", + "name": "Bombay Yoga Company", + "address": "756 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406765, + "longitude": -75.1610081, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Yoga", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "yypfHgPJw6V65cLTOZiPSQ", + "name": "Cafe Fulya", + "address": "727 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395131, + "longitude": -75.1459605, + "stars": 4.0, + "review_count": 128, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Food, Cafes, Turkish, Bakeries, Breakfast & Brunch, Restaurants, Coffee & Tea", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-3:0", + "Friday": "6:0-3:0", + "Saturday": "6:0-3:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "oU7Z8kUNvOFeMyOd-7olgA", + "name": "Camille La Vie at Philadelphia Mills", + "address": "1811 Franklin Mills Cir, Ste 125", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0871658, + "longitude": -74.9619261, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Bridal, Shoe Stores, Shopping, Women's Clothing, Fashion, Accessories", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Gap5d_aBk7k_HLLH9ScvqA", + "name": "Aramingo Diner", + "address": "3356 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9908907, + "longitude": -75.1024831, + "stars": 2.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "6:0-5:30", + "Tuesday": "6:0-5:30", + "Wednesday": "6:0-5:30", + "Thursday": "6:0-5:30", + "Friday": "6:0-5:30", + "Saturday": "6:0-5:30", + "Sunday": "6:0-5:30" + } + }, + { + "business_id": "bIDyzk1VBkpofSORapAiew", + "name": "Basement at the Bellevue", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True" + }, + "categories": "Sandwiches, Restaurants", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "aca4m9TSqTxQsEQ2H0KSwA", + "name": "Pizzeria Nonna", + "address": "7200 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0600251316, + "longitude": -75.1910885247, + "stars": 3.5, + "review_count": 166, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BYOB": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Nightlife, Bars, Italian, Pubs, Restaurants, Food, Pizza, Desserts", + "hours": { + "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" + } + }, + { + "business_id": "E8jXRCHPjcUTFboBPQY6LQ", + "name": "Mifflin Tavern", + "address": "1843 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9243899, + "longitude": -75.1499253, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "BikeParking": "True", + "Smoking": "u'outdoor'", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Gastropubs, American (New), Breakfast & Brunch, Restaurants", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "14:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "WN7ZKZtTStAVsRPee6azzw", + "name": "FedEx Office Print & Ship Center", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9525981835, + "longitude": -75.1605274338, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Printing Services, Signmaking, Shipping Centers, Local Services, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "C809UuprygJyEgJw4wr2Pg", + "name": "Domino's Pizza", + "address": "716 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420587, + "longitude": -75.1545153, + "stars": 1.5, + "review_count": 106, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BikeParking": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "HasTV": "True", + "RestaurantsTableService": "False" + }, + "categories": "Chicken Wings, Sandwiches, Restaurants, Pizza", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "OTwwIvLkrS0zc8f1lNRstw", + "name": "Dasiwa", + "address": "735 N 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9691548, + "longitude": -75.1797839, + "stars": 4.5, + "review_count": 230, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "7:0-9:0", + "Tuesday": "7:0-9:0", + "Wednesday": "7:0-9:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "dyE0EyZgUpgzF_jHspeZnA", + "name": "Craig Shapiro, DC", + "address": "714 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9313464, + "longitude": -75.1571495, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Chiropractors, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "14:0-18:0", + "Thursday": "11:0-19:0" + } + }, + { + "business_id": "c5w3gViEODLmPJBCeAVUIQ", + "name": "Byblos", + "address": "116 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511992, + "longitude": -75.1706583, + "stars": 3.0, + "review_count": 269, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForDancing": "True", + "NoiseLevel": "u'very_loud'", + "WiFi": "'no'", + "HappyHour": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Mediterranean, Hookah Bars, Nightlife, Middle Eastern, Restaurants, Bars", + "hours": { + "Monday": "19:30-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "20:45-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "WkUbPCVqTg3RnZ7noYsU3w", + "name": "King of Wings", + "address": "2233 S Woodstock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9237455, + "longitude": -75.1802281, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chicken Wings, Restaurants, Food Delivery Services, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "zBfhupE2j25W26pnmWgMmQ", + "name": "The Broad Nail Salon", + "address": "6301 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0597576819, + "longitude": -75.1654744711, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "uLiioK-KIoIpJfdZ_t-6bg", + "name": "ABM Parking", + "address": "1301 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9524558646, + "longitude": -75.1617739394, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "5ITd9Bnspp8QteDDXs3ULw", + "name": "Podiatric Medical and Surgical Assoc", + "address": "1546 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.911417, + "longitude": -75.1755276, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Podiatrists, Health & Medical", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-15:30", + "Saturday": "9:0-11:0" + } + }, + { + "business_id": "xOCVsyNHR5Rjhx3ZVDJNnQ", + "name": "Moe's Southwest Grill", + "address": "1725 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518258, + "longitude": -75.1696937, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Mexican, Southern", + "hours": { + "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-18:0" + } + }, + { + "business_id": "YJS-kqID-DoVboE4fTEGlg", + "name": "Porky's Point Restaurant", + "address": "3824 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0096965, + "longitude": -75.1365387, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Latin American", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "_27BIQa1uBaqx9deGt6iow", + "name": "Laurentius Salon", + "address": "815 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388653, + "longitude": -75.15685, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "UvFzVv2lDDh2BVALgU2a3w", + "name": "US Post Office", + "address": "6184 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.035302, + "longitude": -75.217727, + "stars": 2.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Post Offices, Local Services, Shipping Centers", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "u3f62SU1xA3qc0WqwDkNUg", + "name": "CHAZ and CREW", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0397682, + "longitude": -75.145782, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "gm4LM6PgfZILxnrVSDA_GQ", + "name": "IGA", + "address": "2497 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9751551273, + "longitude": -75.1194168627, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Food, Beer, Wine & Spirits, Grocery", + "hours": null + }, + { + "business_id": "F7ogxdrqzuYffhGAYaaFDw", + "name": "Hair Cuttery", + "address": "2457 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9740963, + "longitude": -75.1207619775, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Salons, Hair Stylists", + "hours": { + "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": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "khn9lsIDvoULtuGP0zYaHw", + "name": "Rittenhouse Women's Wellness Center", + "address": "1632 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9460539, + "longitude": -75.1694468, + "stars": 3.5, + "review_count": 213, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Health & Medical, Skin Care, Beauty & Spas, Obstetricians & Gynecologists, Medical Centers, Counseling & Mental Health, Internal Medicine, Nutritionists, Psychologists", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "z5LvLuGqXBU20qhVDx0ppA", + "name": "Cockatoo", + "address": "208 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948462, + "longitude": -75.162526, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Bars, Nightlife, Cocktail Bars, Bartenders", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "W7S0G6eLDFSoxVBpaU33Rg", + "name": "The Fresh Grocer of Monument Road", + "address": "4160 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002622, + "longitude": -75.2134466, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Delis, Meat Shops, Specialty Food, Grocery, Restaurants, Beer, Wine & Spirits", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "FtT_HlYiyOrE-TzKl6_qgg", + "name": "Crazy Grub Cafe", + "address": "5751 Wheeler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9300118, + "longitude": -75.2215038, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cafes, Seafood, American (Traditional)", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "NRK4ZisC26RCujS03k_CNw", + "name": "Homestyle Caribbean and American Restaurant", + "address": "6051 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9294909, + "longitude": -75.2291116, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "None", + "Caters": "True" + }, + "categories": "Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "KIqh9wB8Pb4yOeLWxao3Gg", + "name": "The Home Depot", + "address": "2200 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.915672, + "longitude": -75.185781, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Building Supplies, Hardware Stores, Home Services, Appliances, Nurseries & Gardening, Home & Garden, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "6:0-21:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "8c07At2riqjfrHV4fHvesg", + "name": "Comfy Heating & Cooling", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "7:30-16:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "m18Iy9ZOZWXA6qvYs65M6A", + "name": "Clutter Moving & Storage - Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19093", + "latitude": 39.95, + "longitude": -75.18, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Self Storage, Home & Garden, Home Services, Movers, Packing Services, Home Decor, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "ZwCvURKz4l5OBp5trIR02A", + "name": "Mr Wish", + "address": "216 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559225, + "longitude": -75.15592, + "stars": 4.5, + "review_count": 274, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bubble Tea, Food, Tea Rooms, Juice Bars & Smoothies", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "R419nDJLQ2n83tmRecqt_Q", + "name": "Ed's Auto Glass", + "address": "1201 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0273705, + "longitude": -75.0827136, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Glass Services, Auto Repair, Automotive", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "rfGQVPUlQgqfM3Ffewze3A", + "name": "Helen Nail Salon", + "address": "2510 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.988039, + "longitude": -75.1291919, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "F1Yu0QcZkNGIRsah3waamQ", + "name": "The A-Space", + "address": "4722 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483428, + "longitude": -75.2177204, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False" + }, + "categories": "Art Galleries, Shopping, Local Flavor, Arts & Entertainment", + "hours": null + }, + { + "business_id": "1mGOAW7QODA3TEPl1bGkSA", + "name": "South Philly Wellness", + "address": "224 Moore St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9254682, + "longitude": -75.1504868, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Massage, Beauty & Spas, Massage Therapy, Health & Medical, Reiki, Doctors, Naturopathic/Holistic", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "l8hunlyP2nL1XxNpEu-zLQ", + "name": "Memphis Market & Grill", + "address": "2327 E Huntingdon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9817082, + "longitude": -75.1208943, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "HasTV": "True" + }, + "categories": "Restaurants, Cheesesteaks, American (New)", + "hours": null + }, + { + "business_id": "-p4zQq3RvGKohvLCa2kdag", + "name": "Property Management Group Realty", + "address": "311 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9461849, + "longitude": -75.1625185, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Property Management, Home Services, Real Estate", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "fh4gkNgd8woStQNQ7MxN0A", + "name": "The Crab house", + "address": "8001 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618354, + "longitude": -75.055457034, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood Markets, Restaurants, Food, Specialty Food, Seafood", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "PLEg-6WoWX9N5BcS-m-sTw", + "name": "Nature's Way Medicine-Medical Marijuana Cards", + "address": "131 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9534785, + "longitude": -75.146352, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Medical Centers, Cannabis Clinics, Medical Cannabis Referrals", + "hours": { + "Monday": "13:0-17:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "X0Dpf6yaN5wfEVcKwB_pIQ", + "name": "Adsum Restaurant", + "address": "700 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409043, + "longitude": -75.1511103, + "stars": 3.5, + "review_count": 99, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, American (New), French, Breakfast & Brunch, Brasseries", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "a4wHosODTXZ6IaKlzxgzIA", + "name": "Made With Love Juicery", + "address": "547 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9634699871, + "longitude": -75.1708599553, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Juice Bars & Smoothies", + "hours": { + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "D0fanJRjGeSveHiBoWbpeQ", + "name": "Simply Shabu", + "address": "1023 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9547839, + "longitude": -75.156927, + "stars": 4.0, + "review_count": 117, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "Caters": "False" + }, + "categories": "Food, Ethnic Food, Chinese, Shanghainese, Hot Pot, Specialty Food, Do-It-Yourself Food, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "Wxk2RsFJpbrsgdPEGxGNBA", + "name": "British Airways Lounge", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8748680942, + "longitude": -75.2493632065, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Airport Lounges, Lounges, Nightlife, Bars", + "hours": { + "Monday": "15:0-21:30", + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-21:30", + "Saturday": "15:0-21:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "28fFWNVFb5RTflDKECk29Q", + "name": "Gamestop", + "address": "2437 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9210421, + "longitude": -75.1862749, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hobby Shops, Shopping, Video Game Stores, Books, Mags, Music & Video, Electronics, Videos & Video Game Rental", + "hours": { + "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-18:0" + } + }, + { + "business_id": "wzyuBcu40tA3m541Pv0d3g", + "name": "Mike Kilian Small Engine Repair", + "address": "9280 Ridge Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0747869, + "longitude": -75.2445169, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Nurseries & Gardening, Shopping, Appliances & Repair, Auto Repair, Home & Garden, Automotive, Farm Equipment Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "khH0QtNyUjcExh9i2CwGfg", + "name": "Serpico", + "address": "604 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419068, + "longitude": -75.152643, + "stars": 4.0, + "review_count": 419, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "0Ae7F98kmeA01VJCIdD8vw", + "name": "Suppa", + "address": "Liberties Walk, Northern Liberties", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9675987041, + "longitude": -75.1414208832, + "stars": 4.5, + "review_count": 94, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "1tlRVhbz4l-tkEZLCQK_Ow", + "name": "China Garden", + "address": "8756 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.049329, + "longitude": -75.012364, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "12:0-22:30" + } + }, + { + "business_id": "n_RGE_Wn5L7phnlkQ919kQ", + "name": "Dottie's Donuts", + "address": "509 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426655675, + "longitude": -75.1520184428, + "stars": 4.5, + "review_count": 97, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Donuts, Vegan, Restaurants", + "hours": null + }, + { + "business_id": "4fBMC1My_-Hdsv2YZrkm4w", + "name": "US Post Office", + "address": "58 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9204731, + "longitude": -75.1471498, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Post Offices, Couriers & Delivery Services, Public Services & Government, Shipping Centers", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "mlrzM-jUkKot28XJhScuuA", + "name": "Goldie", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502275, + "longitude": -75.1668635, + "stars": 4.5, + "review_count": 514, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "Caters": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HasTV": "False", + "HappyHour": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Falafel, Middle Eastern, Mediterranean, Sandwiches, Vegan, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "BnnX18SkiQuOUExbTIQErw", + "name": "I95 Collision Center", + "address": "7360 Wissinoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0260974, + "longitude": -75.0290882, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Windshield Installation & Repair, Towing, Body Shops, Home Services, Glass & Mirrors, Auto Detailing, Auto Customization", + "hours": { + "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" + } + }, + { + "business_id": "StaWjZNVxsWuSftOA4tvkg", + "name": "Hy Asia Massage", + "address": "1220 South St, Ste 1 FL", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430544, + "longitude": -75.1624415, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Health & Medical, Massage Therapy, Massage, Reflexology", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "ibtPoUXzMdWco4FDWDJWHA", + "name": "Fine Wines & Good Spirits", + "address": "2429 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9459153, + "longitude": -75.1816926, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "SmX1YLOOAGWOIArWi5ZFgQ", + "name": "SEPTA Green Line", + "address": "West Philly Univ City And Center City", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9536418, + "longitude": -75.1987107, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Public Transportation", + "hours": null + }, + { + "business_id": "XgeH9lfiOYdnYbysP3NSOg", + "name": "Abs General Contracting", + "address": "2301 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9325821, + "longitude": -75.2250774, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Plumbing, Painters, Contractors, Electricians, Handyman, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "zssISv4ZdplRT_Zcw8drPQ", + "name": "Golf & Social", + "address": "1080 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.965831, + "longitude": -75.1327524, + "stars": 2.0, + "review_count": 110, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Sports Bars, Nightlife, Bars, American (Traditional), Event Planning & Services, Golf, Venues & Event Spaces, Golf Lessons, Active Life, Fitness & Instruction", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "YOjherH1QVBgRYgE4ElTJA", + "name": "Kmart", + "address": "3301 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.989636, + "longitude": -75.102111, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Department Stores, Shopping, Fashion", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "_lgBQIq2y5_MCuUrNS3x-A", + "name": "Peerless Pest Control", + "address": "5246 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0314998, + "longitude": -75.1319628, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Pest Control", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-15:30", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:30" + } + }, + { + "business_id": "TDLkD6gOkn1jJ93go1ZySQ", + "name": "Sheraton Philadelphia Downtown", + "address": "201 North 17th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9570991, + "longitude": -75.1670329, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": null + }, + { + "business_id": "AFe9CAVwXMQe1LssZ-jJmQ", + "name": "Giovani's Bar & Grill", + "address": "1533 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512544989, + "longitude": -75.1666958386, + "stars": 4.0, + "review_count": 215, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "False", + "HasTV": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "Smoking": "u'no'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BYOB": "False" + }, + "categories": "Italian, Mediterranean, Nightlife, Pizza, Restaurants, Sports Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "Qwh4zJr8iRvkkv_ti-AZpg", + "name": "Laila Rowe", + "address": "1710 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515126, + "longitude": -75.1692899, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Fashion, Shopping, Women's Clothing, Accessories", + "hours": null + }, + { + "business_id": "WXtD3L-zAqdiP--MAQbq7A", + "name": "Broad Street Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 271, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Packing Supplies, Movers, Home Services, Shopping, Packing Services", + "hours": { + "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" + } + }, + { + "business_id": "DRiI7iYr1UNbA8WXDBcv_g", + "name": "The Philadelphia Flower Market", + "address": "1500 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534177437, + "longitude": -75.1658444693, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Gift Shops, Event Planning & Services, Shopping, Floral Designers, Flowers & Gifts, Florists", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30" + } + }, + { + "business_id": "BYp_0rYXtTgIsSuKbxRc_Q", + "name": "1st Oriental Supermarket", + "address": "1111 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345440436, + "longitude": -75.1535654068, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ethnic Food, Grocery, Imported Food, Food, Specialty Food, International Grocery", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "zxYD-C8GDnwuWDYxfD0spg", + "name": "La Cucina at the Market", + "address": "Reading Terminal, 51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953223, + "longitude": -75.1588819, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Festivals, Education, Specialty Schools, Food, Party & Event Planning, Event Planning & Services, Arts & Entertainment, Cooking Schools", + "hours": null + }, + { + "business_id": "-qXlrp191oly3g2hMvdZZw", + "name": "R & R Mechanical Services", + "address": "4313 Factory St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0137435, + "longitude": -75.0920718, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Home Services, Local Services, Air Duct Cleaning, Appliances & Repair, Electricians, Heating & Air Conditioning/HVAC, Plumbing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-19:30", + "Wednesday": "7:30-19:30", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "hRlly5EvaG487NoZ55-qmw", + "name": "Reuben's Marc", + "address": "8131 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.06754, + "longitude": -75.17915, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "hVMCo8daSsRGdWaLCym2Ag", + "name": "Alamo Rent A Car", + "address": "2955 Market St 30th Station, 30th Station", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557501, + "longitude": -75.1819889, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "5tvwM1Jk1jwJYoErwv3NTw", + "name": "Jefferson Urgent Care - Rittenhouse", + "address": "2021 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522729, + "longitude": -75.1742831, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Urgent Care", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "I4tDL_n4rloVGpC-AHbGXA", + "name": "Glass On Glass Philly", + "address": "1346 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9319485, + "longitude": -75.1594867, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tobacco Shops, Shopping, Home Services", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "Jt-O8U536fd1_NMzVbDW5w", + "name": "Simply Yummy", + "address": "1322 W Montgomery Ave And N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9802222, + "longitude": -75.1575449, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WiFi": "'no'", + "NoiseLevel": "'average'" + }, + "categories": "Food Stands, Vietnamese, Restaurants, Sandwiches", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "2C7bSIEhrEIcYDk7Awr7Gw", + "name": "Traveling Tech", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9761644617, + "longitude": -75.1248171491, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pet Hospice, Pet Sitting, Pets, Dog Walkers, Pet Services", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "_61CLj2WP5jA6X3SDDlrrg", + "name": "Tang's Halal Chinese Restaurant", + "address": "2223 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9802551, + "longitude": -75.1717646, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Halal, Chinese, Restaurants", + "hours": null + }, + { + "business_id": "tW8-5eqkjnbSWoydRV_0Pg", + "name": "Doggie Style Pets", + "address": "2101 S St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945209, + "longitude": -75.177504, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Adoption, Pet Groomers, Pet Stores", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "U9gATBSpddPuqZdfhYOaUQ", + "name": "Clark Park Farmers' Market", + "address": "Clark Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9490625202, + "longitude": -75.209441185, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Farmers Market", + "hours": { + "Thursday": "15:0-19:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "gtfd4BcuXFIc_QLA98RyUA", + "name": "Restore Bodywork & Reflexology", + "address": "1420 Walnut St, Ste 1105", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95208, + "longitude": -75.16548, + "stars": 3.0, + "review_count": 90, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Reflexology, Skin Care, Health & Medical, Massage, Professional Services, Medical Spas, Beauty & Spas", + "hours": { + "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-16:0" + } + }, + { + "business_id": "QFvIzZx_hQhdf1fr61qAFg", + "name": "Evan's Gulf Auto Repair", + "address": "1101 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620954, + "longitude": -75.1564306, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Automotive, Smog Check Stations, Tires, Gas Stations", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "2DpdPBDois-P61R5UYbSMA", + "name": "Liberty Bell Shuttle", + "address": "609 N 64th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.972511, + "longitude": -75.246709, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Airport Shuttles, Taxis, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "s6Nb9L-4r9MkLPy07ajIeg", + "name": "New Town Restaurant", + "address": "448 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9600207, + "longitude": -75.1534664, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False", + "HasTV": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BYOB": "False", + "Corkage": "False", + "RestaurantsTableService": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{u'breakfast': True, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': False}" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Monday": "6:0-15:30", + "Tuesday": "6:0-15:30", + "Wednesday": "6:0-15:30", + "Thursday": "6:0-15:30", + "Friday": "6:0-15:30", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "0KNskvMPP0A8XLPF-ORRGQ", + "name": "M O B Salon", + "address": "7390 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0497785, + "longitude": -75.0588658, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Hair Extensions, Shopping, Beauty & Spas, Waxing, Hair Stylists, Hair Removal, Blow Dry/Out Services, Hair Salons", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "TE2IEDNV0RcI6s1wTOP4fg", + "name": "Tortilleria San Roman", + "address": "951 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937636, + "longitude": -75.1580824734, + "stars": 5.0, + "review_count": 219, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "False", + "BikeParking": "False", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False", + "HasTV": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "None", + "GoodForMeal": "{u'breakfast': None, u'brunch': False, u'lunch': None, u'dinner': None, u'latenight': False, u'dessert': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Convenience Stores, Italian, Specialty Food, Mexican, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "NFzfuIFghE-HnrodHpaT6A", + "name": "Garces Trading Company", + "address": "1111 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477453, + "longitude": -75.159542, + "stars": 4.0, + "review_count": 896, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Cheese Shops, Food, Specialty Food, Sandwiches, Cafes, Restaurants, Pizza, American (New), Beer, Wine & Spirits, Butcher, Modern European, Italian, Bars, Nightlife", + "hours": { + "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": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "lDM7JvIddDDMs637Cwkq7g", + "name": "N E Shades", + "address": "1929 S Chadwick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9266951, + "longitude": -75.1734984, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Auto Repair, Auto Glass Services, Car Window Tinting, Home Window Tinting, Car Stereo Installation, Automotive, Home Services, Auto Security", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "yw8CBHbTmB5zrChvzt82VA", + "name": "Main Street Animal Clinic", + "address": "4331 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0254097, + "longitude": -75.2230081, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": null + }, + { + "business_id": "PxwdZDfO9AMFxUYjedhV3Q", + "name": "Dunkin'", + "address": "1100 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483814, + "longitude": -75.1591896, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "DriveThru": "None" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "4:0-21:0", + "Tuesday": "4:0-21:0", + "Wednesday": "4:0-21:0", + "Thursday": "4:0-21:0", + "Friday": "4:0-21:0", + "Saturday": "4:0-21:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "Cl14jgWjX7cDa5uKoeadVQ", + "name": "The Rosenbach", + "address": "2008-2010 Delancey Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9473446, + "longitude": -75.1749863, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Public Services & Government, Libraries, Art Galleries, Shopping, Arts & Entertainment, Museums", + "hours": { + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "P9ZZ0P1zuwIgraLb1VFA6Q", + "name": "Avis", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949051, + "longitude": -75.164848, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": null + }, + { + "business_id": "yr6U0Wk8LXR_OLF1ezHOhw", + "name": "Megasun Tanning", + "address": "1519 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499083, + "longitude": -75.1668576, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False" + }, + "categories": "Tanning, Spray Tanning, Beauty & Spas, Fitness & Instruction, Tanning Beds, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "mh_WoveKnqCzIETmZIn7Sg", + "name": "El Provocon Restaurant", + "address": "11701 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1191070242, + "longitude": -75.0175529337, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Spanish", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "F6X6CKxuWKLn89Y5nV_6Bw", + "name": "Bull Shooters", + "address": "14000 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1312844, + "longitude": -75.0131513, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Bars, Sports Bars", + "hours": null + }, + { + "business_id": "-sTrihdzACrsOSu1FYdfxQ", + "name": "The Rooster", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502275, + "longitude": -75.1668635, + "stars": 4.5, + "review_count": 266, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "Caters": "False", + "GoodForDancing": "False", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "Smoking": "u'no'", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "RestaurantsDelivery": "None", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Cocktail Bars, Bars, Comfort Food, Breakfast & Brunch, Nightlife, Southern, Sandwiches, Soup", + "hours": { + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "urXE9YSeQpOv16kjDu6CHg", + "name": "Taco Bell", + "address": "2951 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557002, + "longitude": -75.182516, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "DriveThru": "True", + "HasTV": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants, Tex-Mex, Fast Food, Pizza, Mexican", + "hours": { + "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-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "YPk1gZZGLpC51uFku2O4jA", + "name": "Bethel Church Philadelphia Mills", + "address": "903 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0953582, + "longitude": -74.9578584, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Churches, Religious Organizations", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Sunday": "11:0-12:0" + } + }, + { + "business_id": "6b-ySr3Jn6rQ20DD5AtqFw", + "name": "Bindi", + "address": "105 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502102, + "longitude": -75.1618232, + "stars": 3.5, + "review_count": 128, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Pakistani, Indian, Restaurants", + "hours": null + }, + { + "business_id": "_a9Dm36eVUeg0incBwSnew", + "name": "Vy Vy Nails", + "address": "1434 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.933831, + "longitude": -75.180468, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "N0AXeuqu-EOO_jUg0VkuJA", + "name": "Wilson Parking", + "address": "929 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955507, + "longitude": -75.155327, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "nnj8APV33vrflphc6f50nA", + "name": "Roe", + "address": "138 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948205, + "longitude": -75.143918, + "stars": 3.5, + "review_count": 109, + "is_open": 0, + "attributes": { + "WiFi": "u'paid'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Japanese, Thai", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "vl8yqlsaXgj9OGxXH16pjA", + "name": "PetSmart", + "address": "7422 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0522584, + "longitude": -75.0586506, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Pet Training, Pet Stores, Pets, Pet Services, Pet Groomers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Oouza_oRNXUoNdsIjjWLfg", + "name": "LAZ Parking", + "address": "1327 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480794, + "longitude": -75.1634387, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "9SqhTgh-8y-pYVfJTA5itg", + "name": "Paradigm Restaurant & Bar", + "address": "239 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948818, + "longitude": -75.1456539, + "stars": 3.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Asian Fusion, Restaurants, Nightlife, Bars", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "y5SdcwfKF8JgYwGFb_SfiQ", + "name": "Oregon Market", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9127689, + "longitude": -75.1535348, + "stars": 3.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Seafood Markets, Specialty Food, International Grocery, Grocery, Meat Shops", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "VndJMY1frtXpFp7QPsYV0w", + "name": "Best Nails Salon", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.062807, + "longitude": -75.2352982, + "stars": 2.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "8Xk9nyQkaLZyWJcZrwX2uA", + "name": "Kung Fu Tea", + "address": "4500 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0030201, + "longitude": -75.2214924, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Coffee & Tea, Bubble Tea, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "ib9i3cSQ-ZwWSI9dH9JeSA", + "name": "Holy Land Grill", + "address": "7628 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0572727, + "longitude": -75.06095, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Middle Eastern, Kosher, Chinese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-15:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "_adx9vXFLO-P15qNrvVPuA", + "name": "Gem Cleaners", + "address": "546 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0465011, + "longitude": -75.1954621, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "S6q5t-TGc_je8ssh06zTYw", + "name": "Knock", + "address": "225 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478650629, + "longitude": -75.1606399648, + "stars": 3.5, + "review_count": 159, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "'no'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{u'dj': False, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "HasTV": "True" + }, + "categories": "American (New), Bars, Nightlife, Gay Bars, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "Hb4xDlnBd2N9jJND4RsqLw", + "name": "Burger King", + "address": "2728 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9129833, + "longitude": -75.1506616, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "BikeParking": "False" + }, + "categories": "Restaurants, Burgers", + "hours": null + }, + { + "business_id": "-X6ITNozAhXT4uVBjdCBUA", + "name": "Absolute Smile", + "address": "6737 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0399256, + "longitude": -75.0649369, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Cosmetic Dentists, Health & Medical, General Dentistry, Dentists, Periodontists, Financial Services, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "BTnkLg9-oy1YFtAOEt8WGw", + "name": "River Twice", + "address": "1601 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929741, + "longitude": -75.163397, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BYOB": "True", + "RestaurantsTableService": "True", + "Caters": "False", + "WiFi": "u'free'", + "Corkage": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': True, u'romantic': True, u'classy': None, u'upscale': None}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:0-0:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "0SmsiKfGOoFdXO-j23AVWA", + "name": "Classic Body Worx", + "address": "9902 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0986068674, + "longitude": -75.0307909772, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Auto Repair, Auto Glass Services, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "BIGwAJH7CIvwHu-9Rog9cw", + "name": "Gunners Run", + "address": "1001 N 2nd St, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399899, + "stars": 3.0, + "review_count": 197, + "is_open": 0, + "attributes": { + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dive Bars, Nightlife, Restaurants, American (New), American (Traditional), Bars, Sports Bars, Vegan", + "hours": { + "Monday": "0:0-0: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-17:30" + } + }, + { + "business_id": "j8INHuYFI3f0FZ_qiRAZ8A", + "name": "American Mortals", + "address": "508 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408741, + "longitude": -75.15138, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "HSTjQ_z0-k_m8ZkbmWSBnQ", + "name": "Rittenhouse Square District", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9494, + "longitude": -75.1721, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Parks, Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "vWKTTbYHSi2tGA6hksCRkA", + "name": "The Bean Exchange Coffeehouse", + "address": "650 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9412628799, + "longitude": -75.1540263417, + "stars": 3.5, + "review_count": 79, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "Caters": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "False" + }, + "categories": "Food, Coffee & Tea, Sandwiches, Bagels, Restaurants", + "hours": null + }, + { + "business_id": "venWfi69QVylbyrvaPt0nQ", + "name": "Cafe Ynez", + "address": "2025 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394117528, + "longitude": -75.1773281189, + "stars": 4.5, + "review_count": 276, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican, Cafes", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "Q61bxdqtRdTyxNPhbgV6Hg", + "name": "Chucks Alibi", + "address": "1001 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0614476, + "longitude": -75.0833465, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Seafood, American (New), Steakhouses", + "hours": null + }, + { + "business_id": "BnprLJ4Lr33--YjTmgk9Zg", + "name": "Doma", + "address": "1822 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9602728, + "longitude": -75.1692394, + "stars": 4.0, + "review_count": 457, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "True", + "HasTV": "False", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Corkage": "False", + "BYOB": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Korean, Japanese, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "eilf3Uuzr7d-2SOLLoA-ig", + "name": "Circle Thrift", + "address": "2233 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9802433, + "longitude": -75.1286104, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Antiques, Used, Vintage & Consignment, Shopping, Fashion", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "pxBNs2YkBIdMo9w8UVBrYw", + "name": "University City Mini Market", + "address": "4700 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.945704, + "longitude": -75.2138797, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Convenience Stores, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "7pf74oDDqZP0i1L1rzJHVQ", + "name": "U-Bahn", + "address": "1320 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505038, + "longitude": -75.1625185, + "stars": 2.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "American (New), Bars, Arts & Entertainment, Restaurants, Nightlife, Beer Bar, Music Venues", + "hours": { + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "JCFoc-tILAHIf-zqSatBdA", + "name": "Trev's Philly Steaks", + "address": "9970 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.096285, + "longitude": -75.017905, + "stars": 3.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Steakhouses, Cheesesteaks, Restaurants, Sandwiches, Caterers, Event Planning & Services", + "hours": { + "Monday": "0:0-0: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-21:0" + } + }, + { + "business_id": "chktpCblpN5Kd_yskQXreg", + "name": "Starbucks", + "address": "1 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923795, + "longitude": -75.145925, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "oKfdaneqJK_7yD2Rgt199Q", + "name": "Armed & Dangerous", + "address": "623 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409358, + "longitude": -75.1491454, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "kO4Tet9qGAzCfOkZ3m6BVA", + "name": "Roosevelts", + "address": "2220 Walnut St Ph 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950899, + "longitude": -75.178368, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HappyHour": "True" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "Whd-gCVfXn_efivaRki3gA", + "name": "21st Century Storage", + "address": "3503 B St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0032143249, + "longitude": -75.1236024499, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "0jJf0DNHvYI0itdQSezsgg", + "name": "Dunkin'", + "address": "7500 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0387413, + "longitude": -75.0361757, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Donuts, Coffee & Tea", + "hours": { + "Monday": "4:30-0:0", + "Tuesday": "4:30-0:0", + "Wednesday": "4:30-0:0", + "Thursday": "4:30-0:0", + "Friday": "4:30-0:0", + "Saturday": "4:30-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "0DQ_EwydoUVS0YJxvQRMXg", + "name": "Dave's Automotive Center", + "address": "7000 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0274831, + "longitude": -75.0409286, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Transmission Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "O76kDVYNag6w7VJVd69m3A", + "name": "Raindrop Cafe", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9520895, + "longitude": -75.1661084, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Cafes, Sandwiches, Breakfast & Brunch, Restaurants, Food", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "K3lXNfqteOz_ksfqRIkT-A", + "name": "Raindrop Cafe", + "address": "1800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514842, + "longitude": -75.1705096, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Sandwiches, Juice Bars & Smoothies, Food", + "hours": null + }, + { + "business_id": "OXFCsM7_GkJ9KC93_UIbuw", + "name": "PTG Catering", + "address": "6813 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0428057, + "longitude": -75.2264191, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "False" + }, + "categories": "Salad, Restaurants, Event Planning & Services, Caterers, Italian, Venues & Event Spaces", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "Qf6Ex-2ZIrNxJb-qVwbvLw", + "name": "Rittenhouse Square Fitness Club", + "address": "2002 Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486278, + "longitude": -75.1746633, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gyms", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "6eY1_m72jdjy4jtyRZOYNw", + "name": "in.dus.try", + "address": "1020 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446454, + "longitude": -75.1590146, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Home & Garden, Department Stores, Fashion, Shopping", + "hours": { + "Monday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "uMZ8356r7_5ZGNGFTGvOzQ", + "name": "Doggie Style Pets", + "address": "858 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9649266, + "longitude": -75.14275, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Stores, Pet Groomers, Pet Adoption, Pets", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "Jz2GVzNL4gOBc12gWhaP2w", + "name": "Lyla designs", + "address": "1050 N Hancock St, Ste 90", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9661586, + "longitude": -75.1389973, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Fabric Stores, Hobby Shops, Home Decor, Shopping, Arts & Crafts", + "hours": null + }, + { + "business_id": "mlb7G66nkwYddPBfldUtIQ", + "name": "Lokal Hotel", + "address": "139 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9532548, + "longitude": -75.14479, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "b0pWg0S2BD6cL1VIonZIfg", + "name": "For Paws Philly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dog Walkers, Pets, Pet Sitting, Pet Services", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "xa49Z4ar0PXDgjZyHrqbHQ", + "name": "Luna Cafรฉ & Provisions", + "address": "1700 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766134455, + "longitude": -75.1408450305, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "True" + }, + "categories": "Breakfast & Brunch, Cafes, American (New), Food, Bars, Coffee & Tea, Nightlife, Restaurants", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "y-mfgQ9p18pVxdD_5_BbpA", + "name": "Chef Li ๅบญ่ฏด็ซ้”…", + "address": "4255 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0248447, + "longitude": -75.2215266, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "None" + }, + "categories": "Restaurants, Chinese, Hot Pot", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "r1g9VYLve8rfL3NUqA4uWw", + "name": "Recess Lounge", + "address": "125 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9476017, + "longitude": -75.1444627, + "stars": 2.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Lounges, Nightlife, Bars", + "hours": { + "Thursday": "22:0-3:0", + "Friday": "22:0-3:0", + "Saturday": "22:0-3:0" + } + }, + { + "business_id": "ZTFpUHP8c49fmvmonugO2g", + "name": "Finish Line Sports", + "address": "1519 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951473, + "longitude": -75.166267, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Sports Wear, Fashion, Sporting Goods", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5nHflw_6WGzTe0heVmyo1Q", + "name": "Pep Boys", + "address": "9200 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.055661, + "longitude": -75.005031, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Auto Repair, Automotive, Oil Change Stations, Auto Parts & Supplies", + "hours": { + "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-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "0eOCn6kZSck6cpfm6-_RhQ", + "name": "Nicck Townsend", + "address": "3510 Scotts Ln, Bldg 30, Ste 3019A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007584, + "longitude": -75.186042, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Skin Care, Shopping, Eyelash Service, Waxing, Hair Removal, Beauty & Spas, Makeup Artists, Cosmetics & Beauty Supply", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "A5cw-8WUxVw8f11_gmCzEQ", + "name": "Legacy Youth Tennis and Education", + "address": "4842 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0129062, + "longitude": -75.203235, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Tennis, Local Services, Community Service/Non-Profit", + "hours": { + "Monday": "7:30-23:0", + "Tuesday": "7:30-23:0", + "Wednesday": "7:30-23:0", + "Thursday": "7:30-23:0", + "Friday": "7:30-23:0", + "Saturday": "7:30-21:30", + "Sunday": "7:30-21:30" + } + }, + { + "business_id": "c6-WqifRPuEmc3ZgPOa5CQ", + "name": "Carol Diament - Compass", + "address": "1601 Market St, Fl 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673521, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Real Estate Agents", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "mjofAD-BQzhBaNcp1RO-Xg", + "name": "McDaniel Furniture Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Furniture Reupholstery, Furniture Stores, Local Services, Furniture Repair, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "1k-jn75foQrO-YLy6gWXLw", + "name": "Michael Cirigliano, MD", + "address": "3400 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950044, + "longitude": -75.193131, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "UyTx6ci7ATsWco_mE4J8Jw", + "name": "Pamcakes, a Philly Cupcakery", + "address": "404 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465746178, + "longitude": -75.1747274451, + "stars": 4.0, + "review_count": 142, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Cupcakes, Food, Bakeries", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "4i0FA0P4hLyiSfPbAP7bzg", + "name": "Spectacular Maids", + "address": "2211 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965775, + "longitude": -75.174695, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "ps0bd_rZ-IVBoV_ayQizCw", + "name": "China Moon", + "address": "8443 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0436859, + "longitude": -75.0178737, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "Caa9ztEvZaPTaImViy2-zg", + "name": "Automotive Collision & Service Experts", + "address": "3101 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9395205, + "longitude": -75.19517, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Insurance, Auto Insurance, Body Shops, Towing, Financial Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "60OGVvAALJr7JO3IG2aClg", + "name": "Marinucci's Deli - Port Richmond", + "address": "3122 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982194507, + "longitude": -75.103260102, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Sandwiches, Restaurants, Wraps, Delis", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "i9QWaDBCX3DRISUt94GDQA", + "name": "Dessertcrazy", + "address": "1925 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674631874, + "longitude": -75.1696444444, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Specialty Food, Food, Health Markets, Desserts, Coffee & Tea, Gluten-Free, Cupcakes, Bakeries", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "6G3wFp44SmHOnoeccsqeow", + "name": "Pasquale & Anna Scioli Tailoring", + "address": "1744 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9278632, + "longitude": -75.1660411, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Sewing & Alterations, Shopping, Local Services, Men's Clothing, Fashion", + "hours": null + }, + { + "business_id": "VC7VTddnZmY6RQoLQd_49A", + "name": "La Locanda Del Ghiottone", + "address": "2723 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9750224, + "longitude": -75.1183932, + "stars": 4.0, + "review_count": 278, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "HasTV": "False", + "Corkage": "False", + "OutdoorSeating": "True", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ZVUp47GWQ0iVRVm-dqi65A", + "name": "Valley High Apartments", + "address": "7950 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.056292, + "longitude": -75.2331905, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "8ZSDF-3akKn2Q7EtviMaXQ", + "name": "May's Nail Salon", + "address": "1056 E Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0095117, + "longitude": -75.1067612, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "mhm7pNRVZhSr3RBo9Y2NSQ", + "name": "Kick Axe Throwing", + "address": "232 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499062, + "longitude": -75.1450579, + "stars": 4.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "CoatCheck": "False", + "Smoking": "u'outdoor'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, Restaurants, American (Traditional), Recreation Centers, Axe Throwing, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "mHSeE65p4ruSdy0Suf0oCA", + "name": "Graffiti Bar", + "address": "124 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495667, + "longitude": -75.1623991, + "stars": 4.0, + "review_count": 350, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForDancing": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Aoe8dOzeuiAovvFYPl2jMA", + "name": "Bagels & Co", + "address": "1001 N 2nd St, Ste EF", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665629, + "longitude": -75.1399899, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Coffee & Tea, Sandwiches, Bagels, Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "rh3c8tgPyPXD4vj7nC0TuQ", + "name": "Schlotzsky's", + "address": "4600 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9763236, + "longitude": -75.2777009, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Restaurants, Delis, Sandwiches, Bakeries, Food, Cafes", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "rNPddzp4s_Zgj3nrZcYZaA", + "name": "Budget Rent A Car", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.878685, + "longitude": -75.245255, + "stars": 1.5, + "review_count": 293, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "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" + } + }, + { + "business_id": "IXr5oaYWFbDJN7CcdcyQVQ", + "name": "Society Hill Dance Academy", + "address": "1919 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260371, + "longitude": -75.1676257, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Active Life, Performing Arts, Dance Studios, Fitness & Instruction, Event Planning & Services, Caterers, Education, Arts & Entertainment, Dance Schools, Specialty Schools", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "qzbM4egnlq5vLabJQjWgxQ", + "name": "Verree Pharmacy", + "address": "7960 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.072502, + "longitude": -75.0767381, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Drugstores, Shopping", + "hours": null + }, + { + "business_id": "c0eRjo4okGY_ppuwTjNYzQ", + "name": "Chicko Tako", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074096, + "longitude": -75.2025511, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Korean, Farmers Market, Restaurants, Chicken Wings, Asian Fusion, Food", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "61c9bfRWNxPZSYiMdbDjbA", + "name": "Mtq Cafe", + "address": "113 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484413, + "longitude": -75.1430937, + "stars": 4.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Vietnamese", + "hours": null + }, + { + "business_id": "GlRPcu24wMfL0K7NjQlG4A", + "name": "Philly Flavors", + "address": "343 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9454970437, + "longitude": -75.1628121289, + "stars": 4.0, + "review_count": 108, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "iWy6Wft0MMO9Ud2wM93frg", + "name": "The Sidecar Bar & Grille", + "address": "2201 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9418939, + "longitude": -75.1794584, + "stars": 4.0, + "review_count": 680, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BYOBCorkage": "'no'", + "RestaurantsTableService": "True", + "DriveThru": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Caters": "False", + "GoodForKids": "True", + "CoatCheck": "False", + "DogsAllowed": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True" + }, + "categories": "American (New), Nightlife, Chicken Wings, Gastropubs, Cocktail Bars, Burgers, Bars, Pubs, Restaurants", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "jCxnMudvJWgc72tSHJx-_A", + "name": "ENI Deli", + "address": "1639 West Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9870666, + "longitude": -75.160888, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "HasTV": "False" + }, + "categories": "Delis, Grocery, Food, Restaurants, Beer, Wine & Spirits", + "hours": { + "Monday": "13:0-0:0", + "Tuesday": "13:0-0:0", + "Wednesday": "13:0-0:0", + "Thursday": "13:0-0:0", + "Friday": "13:0-1:0", + "Saturday": "13:0-1:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "GYFDgaBkWnxepHoyJ7mWAw", + "name": "Green Soul", + "address": "1410 Mount Vernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9644892965, + "longitude": -75.1615949209, + "stars": 4.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "WiFi": "u'free'", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "BikeParking": "True" + }, + "categories": "Southern, Restaurants, Sandwiches, Salad, Cafes, Food, Juice Bars & Smoothies", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "j5IsoB-xT1Kqp8yQjQnaXA", + "name": "Pho Ha Saigon", + "address": "320 W Oregon Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9129581157, + "longitude": -75.1538034657, + "stars": 4.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "vvMG0sIw2Yw7iXaE14K46A", + "name": "Target", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.101882, + "longitude": -75.010845, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Shopping, Fashion, Department Stores, Home & Garden, Grocery, Furniture Stores, Food, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:59", + "Wednesday": "7:0-23:59", + "Thursday": "7:0-23:59", + "Friday": "8:0-21:0", + "Saturday": "7:0-23:59", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "TBIDOS819Roo6uaTb24rKg", + "name": "The Philadelphia Dance Academy", + "address": "219 Cuthbert St, Fl 3, The Creative Arts Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951301, + "longitude": -75.144362, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Fitness & Instruction, Pilates, Dance Schools, Active Life, Arts & Entertainment, Performing Arts, Specialty Schools, Education", + "hours": { + "Monday": "13:0-20:30", + "Tuesday": "10:30-20:30", + "Wednesday": "15:0-20:30", + "Thursday": "9:30-20:30", + "Friday": "15:0-20:30", + "Saturday": "9:0-14:0", + "Sunday": "9:30-14:30" + } + }, + { + "business_id": "HdbG53Bt29qyqYhjl5NDOw", + "name": "Station Pizza", + "address": "14102 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.131999, + "longitude": -75.0123742, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caterers, Pizza, Event Planning & Services, Restaurants, Party & Event Planning, Cheesesteaks", + "hours": { + "Monday": "0:0-0: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": "12:0-22:0" + } + }, + { + "business_id": "n0gsj17k8G_5U2L9hAwozw", + "name": "Brocks Wings & Things", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9775106195, + "longitude": -75.158135891, + "stars": 2.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (New), Seafood, Chicken Wings, Food, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0" + } + }, + { + "business_id": "qBwOLby0sOJd3QG1o76W2w", + "name": "Veda - Modern Indian Bistro", + "address": "1920 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517805, + "longitude": -75.1729152, + "stars": 4.0, + "review_count": 465, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': False}", + "CoatCheck": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Tapas/Small Plates, Bars, Nightlife, Cocktail Bars, Indian, Breakfast & Brunch", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:0", + "Saturday": "16:0-21:30", + "Sunday": "16:30-21:30" + } + }, + { + "business_id": "qxj6z-4cpM7OSROq8LKTAQ", + "name": "Dreifuss Fireplaces", + "address": "6610 Hasbrook Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0552648, + "longitude": -75.0958812, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Home Services, Fireplace Services, Home Decor, Local Services, Home & Garden", + "hours": null + }, + { + "business_id": "OoXGui_Ldn2lDovpUDs_3w", + "name": "CVS/pharmacy", + "address": "421 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942808, + "longitude": -75.145133, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "MYZuMWSZ9-1q-_1fbWfvow", + "name": "Jamaican D's", + "address": "1265 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0524287, + "longitude": -75.1580031, + "stars": 4.0, + "review_count": 157, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "OutdoorSeating": "None", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HasTV": "True", + "RestaurantsTakeOut": "None", + "NoiseLevel": "u'average'" + }, + "categories": "Caribbean, American (Traditional), Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "yQFrumkNl1clQ-iy6WxjIw", + "name": "Scorpion Computers", + "address": "2636 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.984505, + "longitude": -75.103188, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Computers, IT Services & Computer Repair, Local Services, Electronics Repair, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "M6J69_HIzJtryDp05-3Okg", + "name": "Tech Wiz Pro", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466674, + "longitude": -75.1953934506, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "TV Mounting, Security Systems, Home Services, Home Theatre Installation, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "082TpJTMVghSFRJsU9eVdQ", + "name": "Firestone Complete Auto Care", + "address": "3161 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955753, + "longitude": -75.1878939, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": null, + "categories": "Tires, Automotive, Oil Change Stations, Auto Parts & Supplies, Auto Repair", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "M9JWfmlIZzT9R5GMHk_RLg", + "name": "Ebauche En-Vogue Hair Salon", + "address": "3200 W Oxford St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9808644, + "longitude": -75.1873736, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "FQOZgFFbPdc6AwI1t_dzYQ", + "name": "Payless ShoeSource", + "address": "1604 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511541, + "longitude": -75.1675343, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Shoe Stores, Fashion, Accessories", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "wu65uBHDTyKEapumSk45og", + "name": "Phil's Battery Service", + "address": "1854 W Moyamensing", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9140612546, + "longitude": -75.1791310248, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Battery Stores, Oil Change Stations, Auto Repair, Auto Parts & Supplies, Shopping, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "shWeoleJWUr7jsMyheAyVA", + "name": "Pagano's Market", + "address": "701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95165, + "longitude": -75.152675, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Sandwiches, Pizza, Delis", + "hours": { + "Monday": "6:0-17:30", + "Tuesday": "6:0-17:30", + "Wednesday": "6:0-17:30", + "Thursday": "6:0-17:30", + "Friday": "6:0-17:30" + } + }, + { + "business_id": "tS6sIazfKc77jbEi2w0zgQ", + "name": "D'Emilio's Old World Ice Treats", + "address": "1928 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926084, + "longitude": -75.1682071, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "Caters": "True", + "WheelchairAccessible": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Trucks, Food, Food Court, Food Stands, Shaved Ice, Gelato, Restaurants, Specialty Food, Ice Cream & Frozen Yogurt", + "hours": { + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:30-22:0" + } + }, + { + "business_id": "25s0bcNfEcK5Pm6ipqkw6w", + "name": "Psychic Readings By Maria", + "address": "1639 Chancellor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493719, + "longitude": -75.1688154, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Supernatural Readings, Psychics, Arts & Entertainment", + "hours": { + "Monday": "9:30-0:0", + "Tuesday": "9:30-0:0", + "Wednesday": "9:30-0:0", + "Thursday": "9:30-0:0", + "Friday": "9:30-2:0", + "Saturday": "9:30-2:0", + "Sunday": "9:30-0:0" + } + }, + { + "business_id": "D-f813jeoUJxs_-rujlojQ", + "name": "Cadence Cycling & Multisport Center", + "address": "4323 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253439, + "longitude": -75.222731, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Bikes, Sporting Goods", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "i1JDddNy6B9FOERNlDdB_w", + "name": "City Nails", + "address": "353 W Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9221536048, + "longitude": -75.1532864571, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "qH4sR6U98EEfM8hUrmXMOg", + "name": "GSI Tech", + "address": "6905 Frankfort Av", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.032868, + "longitude": -75.0481323, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Computers, Professional Services, Data Recovery, Mobile Phone Repair, Web Design, Shopping, Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "fiE7T-iWLTFFW5lVKe3bJQ", + "name": "Elixir Cafe", + "address": "944 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9653113, + "longitude": -75.1405616, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mediterranean, Greek, Food, Coffee & Tea, Restaurants", + "hours": null + }, + { + "business_id": "l2sJHXO_qYogFPmQf8da0Q", + "name": "Burbridge Street Bed & Breakfast", + "address": "6324 Burbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0403631, + "longitude": -75.1850666, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Bed & Breakfast", + "hours": { + "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" + } + }, + { + "business_id": "KDnsBMAFiaUkol06rXzVNQ", + "name": "Lil' Dan's", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968388, + "longitude": -75.150518, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Food, Street Vendors, Food Stands, Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "RlJLO-WXW7IP-LSSdvqWJA", + "name": "Delaire Auto Body & Service Center", + "address": "4926 Pearson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0493654039, + "longitude": -74.9906578539, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "QJcjW79f5k_HLg5_KgjUtg", + "name": "Fishtown Diner", + "address": "2424 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774533, + "longitude": -75.1245282, + "stars": 3.0, + "review_count": 222, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': True, u'dessert': None}" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch, American (New), American (Traditional), Burgers", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "lwN9FutfBq81GnGWhj5Mng", + "name": "Balkan Express Restaurant", + "address": "2237 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9449215, + "longitude": -75.1799647, + "stars": 4.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "HasTV": "False" + }, + "categories": "Hungarian, Mediterranean, Restaurants", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "ysvzP0VvMTrGmUClKJ3img", + "name": "Ms Tootsie's RBL", + "address": "1312 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943366813, + "longitude": -75.1638820306, + "stars": 3.5, + "review_count": 612, + "is_open": 0, + "attributes": { + "Caters": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "BYOB": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "EeugoqoiNtlBCpXKMHKg3g", + "name": "Salon On 4th", + "address": "736 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395752, + "longitude": -75.1497838, + "stars": 4.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Hair Removal, Nail Salons, Permanent Makeup, Hair Salons, Waxing", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "64zjcLKeEQ5_oGQDnpsj5A", + "name": "Nannie Francoโ€™s Pizzeria", + "address": "910 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938626639, + "longitude": -75.1580459894, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "IaIgyHK4q0Gc0Sc_-6Myrg", + "name": "The Buffalo House", + "address": "8439 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0440091, + "longitude": -75.0185888, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, American (Traditional), Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "DzDzosJn3MeK5QyiZPMOSg", + "name": "South Fellini", + "address": "1507 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930714, + "longitude": -75.162115, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Accessories, Fashion, Women's Clothing, Shopping, Men's Clothing", + "hours": { + "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": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "pRYs_U3tiTisUazOzDgLaA", + "name": "Raymour & Flanigan Furniture and Mattress Store", + "address": "2110 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.918865, + "longitude": -75.143176, + "stars": 2.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Home Decor, Home & Garden, Furniture Stores, Mattresses, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "KkCkP7Va_4OD25Q35UyynA", + "name": "Parmigiana", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633598577, + "longitude": -75.1468192956, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "yTQG-9sWAJ5MrU8KFu_Pwg", + "name": "En Vogue Medi-Spa", + "address": "13050 Bustleton Ave, Ste L", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.125435, + "longitude": -75.015082, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Chiropractors, Health & Medical, Hair Removal, Beauty & Spas, Medical Spas", + "hours": null + }, + { + "business_id": "4ijvtSMdrgze2USbJQn2Og", + "name": "Nic Grooming Barber Shop", + "address": "267 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484469, + "longitude": -75.17415, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Barbers, Men's Hair Salons, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "4fzyMIxVjxXc2N6UeJD3Yg", + "name": "DermaCenter Medical Spa", + "address": "1632 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9458948, + "longitude": -75.1694912, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Skin Care, Medical Spas, Acne Treatment, Hair Removal, Laser Hair Removal, Day Spas, Health & Medical", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-16:0", + "Wednesday": "10:0-20:0", + "Thursday": "8:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "PhJeNe9KRtrek1BP-HaMtA", + "name": "Bobby Chez", + "address": "The Lofts, 1352 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.943407, + "longitude": -75.165004, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "hkk0wHfD55HIjN8qVSRSAw", + "name": "Pacific Yoga", + "address": "2518 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9798422, + "longitude": -75.1217953, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Active Life, Yoga", + "hours": { + "Monday": "8:30-21:30", + "Tuesday": "8:30-21:30", + "Wednesday": "8:30-21:30", + "Thursday": "8:30-21:30", + "Friday": "8:30-21:30", + "Saturday": "8:30-21:30", + "Sunday": "8:30-21:30" + } + }, + { + "business_id": "R8Yy-Abycqdnnyi7wbw8hA", + "name": "Cella Luxuria Furniture + Accessories", + "address": "1214 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503793156, + "longitude": -75.1608230355, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Furniture Stores, Home & Garden, Home Decor", + "hours": { + "Monday": "10:0-18: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", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "jFmgi73Pdb6R1jSVus1q0Q", + "name": "Crazy Hands Studio", + "address": "5501 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947431446, + "longitude": -75.2336980272, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Hair Extensions, Beauty & Spas, Hair Stylists", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "zQUcllwjcYYILarOTWSnXA", + "name": "Bander", + "address": "3626 Richmond St, Ste 1A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9882821, + "longitude": -75.0914451, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Masonry/Concrete, Contractors, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "qwh9F8qRYSRe2uGgHdXhTA", + "name": "Kline & Specter, PC", + "address": "1525 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948789, + "longitude": -75.1673749, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Employment Law, Personal Injury Law, Medical Law, Professional Services, Lawyers, General Litigation", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "jvkIfHrR-B7ItVJq7-v4LQ", + "name": "US Post Office", + "address": "622 S 4th St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410879, + "longitude": -75.1494988, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Post Offices, Local Services, Shipping Centers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Cogh2FfWQjUTdB3GQ9zjZQ", + "name": "Shubin Theatre", + "address": "407 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409248, + "longitude": -75.1496619, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Cinema, Performing Arts, Arts & Entertainment", + "hours": null + }, + { + "business_id": "0TAkS6vEkkHI8lrF-GBR3w", + "name": "Old Academy Players", + "address": "3540-44 Indian Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0099316, + "longitude": -75.1895846, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Arts & Entertainment, Cinema", + "hours": null + }, + { + "business_id": "x8H-yQUbbeaC28Sj4cqy4w", + "name": "Sky Asian Bistro", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8946117, + "longitude": -75.2292952, + "stars": 3.0, + "review_count": 211, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "WiFi": "'free'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Asian Fusion, Restaurants, Sushi Bars", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "4OpfZk5kiwi3ttYy1Va8Bw", + "name": "Atl Wings Your Way", + "address": "524 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941974, + "longitude": -75.149313, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "RRjqW_pX2vEWvdPbFpM41A", + "name": "Tranquil Therapy", + "address": "150 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9756859, + "longitude": -75.1365237, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage Therapy, Health & Medical, Rehabilitation Center", + "hours": { + "Monday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "clriyBytbabM2vR9vyVSPQ", + "name": "Romeo's Window Tinting and Custom Upholstery", + "address": "8362 State Rd, Ste G", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0360497, + "longitude": -75.0141085, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Car Window Tinting, Auto Upholstery, Automotive, Auto Parts & Supplies, Auto Glass Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "6dQdwKORJ8tHNb-_EFsdzA", + "name": "R5 Productions", + "address": "3860 Lancaster Ave, First Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9613491, + "longitude": -75.199524, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services", + "hours": null + }, + { + "business_id": "rYqmaOIULRouz_1db07OdQ", + "name": "Green Eggs Cafe", + "address": "1306 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931348, + "longitude": -75.166497, + "stars": 4.0, + "review_count": 813, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HappyHour": "False" + }, + "categories": "Diners, Restaurants, Breakfast & Brunch, American (New)", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "uSWSlkLwF3_9KDCzzDvpxw", + "name": "Kin's Laundromat", + "address": "1537 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306599778, + "longitude": -75.1681060052, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Dry Cleaning & Laundry, Laundromat, Local Services, Laundry Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "Qo6Ty6uQQzDrhSCFknV1Ig", + "name": "Your Local Handyman", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Water Heater Installation/Repair, Home Services, Handyman, Plumbing, Electricians", + "hours": null + }, + { + "business_id": "_17mPclvO7AGufoCZoFuqQ", + "name": "Penn Dental Family Practice - Locust Walk", + "address": "240 S 40th St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527786, + "longitude": -75.2032502, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Shopping, Pediatric Dentists, Bookstores, Books, Mags, Music & Video, Health & Medical, Cosmetic Dentists, Dentists, Orthodontists", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "tBQcVd9c0EHKAXLZn_v54g", + "name": "Bibou", + "address": "1009 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365031566, + "longitude": -75.1566941459, + "stars": 4.5, + "review_count": 364, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "HasTV": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, French, Specialty Food, Food", + "hours": { + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "F5g0nskSr_xd0XxXTsKoPQ", + "name": "Mancuso Lucio J & Son", + "address": "1902 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264834, + "longitude": -75.1676599, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cheese Shops, Specialty Food, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "UrYj-HI2I61BK_nsPEa_QQ", + "name": "Starbucks", + "address": "2201-2219 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224171, + "longitude": -75.1698373, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Caters": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "4:30-21:30", + "Wednesday": "4:30-21:30", + "Thursday": "4:30-21:30", + "Friday": "4:30-21:30", + "Saturday": "5:30-21:30", + "Sunday": "5:30-21:30" + } + }, + { + "business_id": "filUIMLq2pzauy_ew63LPw", + "name": "Aria - Jefferson Health", + "address": "4900 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.019879, + "longitude": -75.0816014, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": { + "Monday": "7:0-16:30", + "Tuesday": "7:0-16:30", + "Wednesday": "7:0-16:30", + "Thursday": "7:0-16:30", + "Friday": "7:0-16:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "QMNheeGTdKujLnYgEyFuWw", + "name": "Old Nelson Food Market", + "address": "2000 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518982, + "longitude": -75.1736676, + "stars": 4.0, + "review_count": 96, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BYOB": "False" + }, + "categories": "Delis, Sandwiches, Restaurants, Grocery, Food, Convenience Stores", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "bugqlf02nwjIY1F8lozzKQ", + "name": "The Foodery Roxborough", + "address": "6148 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034485782, + "longitude": -75.2164116943, + "stars": 4.0, + "review_count": 141, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Delis, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "fq5AGPmKcjOIYwtm_fnNHQ", + "name": "Redcap's Corner", + "address": "3617 Lancaster Ave, 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95906, + "longitude": -75.194152, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Toy Stores, Shopping, Hobby Shops", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "DW2aLprOpZfW-35l-_aBcw", + "name": "Owl's Nest Pizza", + "address": "2010 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9836862, + "longitude": -75.1571184, + "stars": 1.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-4:0", + "Friday": "10:0-4:0", + "Saturday": "10:0-4:0" + } + }, + { + "business_id": "t-NGEMI5KrGJc2sfsP4BIQ", + "name": "Wayne & Berkley", + "address": "4529 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0225317145, + "longitude": -75.1624374837, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Seafood Markets, Specialty Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "x78CiGQcmM7BrBWa5wJGTA", + "name": "Sumo Lounge at Raw", + "address": "1225 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500363, + "longitude": -75.1614924, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Dance Clubs, Nightlife", + "hours": null + }, + { + "business_id": "HEhVtP712TjJ9uS6Bxl21w", + "name": "Mike's Towing Service", + "address": "3946 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0138727, + "longitude": -75.1537667, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Towing, Automotive", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "MHWFSucbtONJ8jO-fJmDcA", + "name": "Brandywine Construction & Management", + "address": "1521 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9487771, + "longitude": -75.1671925, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Property Management, Contractors, Home Services, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-18:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-14:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "Pp4LoheunB4izDxveFgU0A", + "name": "Hush Salon Philadelphia", + "address": "45 N 3rd St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515596, + "longitude": -75.1452802, + "stars": 4.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "KqbwtP88sAENx9mJk3wXTw", + "name": "China Bowl Restaurant", + "address": "7952 Dungan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0680407, + "longitude": -75.0689851, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "Caters": "True", + "Alcohol": "'none'", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "SnhNQ5vTPMJnJnrN70dEEA", + "name": "Kim's Seafood", + "address": "1336 Windrim Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0295686, + "longitude": -75.1464091, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Seafood Markets, Specialty Food, Food", + "hours": null + }, + { + "business_id": "l2jU6XzbNbv_k1S7-IsQQA", + "name": "Tropical Choice", + "address": "247 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9644501, + "longitude": -75.2241823, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "7:0-21:30", + "Tuesday": "7:0-21:30", + "Wednesday": "7:0-21:30", + "Thursday": "7:0-21:30", + "Friday": "7:0-21:30", + "Saturday": "7:0-21:30", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "t7wiijUlCStUn01v6atHgQ", + "name": "Staples", + "address": "2290 Oregon Ave, Quartermaster Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9171115, + "longitude": -75.1853766, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Printing Services, Office Equipment, Shipping Centers, Mobile Phone Repair, Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "9EXy-Cq5ZESw31g7hGG6Sw", + "name": "J Buffet", + "address": "7620 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9036177, + "longitude": -75.239064, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Buffets, Restaurants", + "hours": null + }, + { + "business_id": "ECxsb2wf9J7Qf2CWtJelbw", + "name": "Phila Nail Wholesale Supply", + "address": "571 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0372919, + "longitude": -75.1079701, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "shmNcjICpPMrbo-sjJ0mQw", + "name": "Ferrante's Meats & More", + "address": "7534 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.977642, + "longitude": -75.2667641, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "HappyHour": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "BYOB": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTableService": "False" + }, + "categories": "Event Planning & Services, Food, Caterers, Sandwiches, Meat Shops, Specialty Food, Restaurants, Delis", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "hjbWZ7ITHL_1Xr7IAwyoxQ", + "name": "Monarch Philly", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9662103, + "longitude": -75.1378919, + "stars": 2.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New), Southern", + "hours": { + "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": "17:0-23:0" + } + }, + { + "business_id": "PRrhv6G_A7a7ytkNMvtBAA", + "name": "Flyer Nail & Spa", + "address": "3138 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9824281671, + "longitude": -75.1026885957, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False" + }, + "categories": "Massage, Nail Salons, Waxing, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "1vBukdVVblR8R_f4LS2Yyg", + "name": "Dollar General", + "address": "6000 N Broad St Store A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0178794861, + "longitude": -75.1491012573, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Grocery, Department Stores, Food, Discount Store, Fashion", + "hours": null + }, + { + "business_id": "teVgtcBKslM6kBYOGgko-Q", + "name": "CubeSmart Self Storage", + "address": "501 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9581986711, + "longitude": -75.1477061515, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "TMqM947-Asyd70MPGyrBHw", + "name": "City Line Deli & Frank's Catering", + "address": "7547 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9795187, + "longitude": -75.2683563, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HasTV": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsAttire": "'casual'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Delis, Caterers, Diners, Restaurants, Event Planning & Services", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "ocLAsvE07AJcbTbi2BxiPQ", + "name": "Drexel University", + "address": "3141 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956613, + "longitude": -75.189944, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": null, + "categories": "Education, Colleges & Universities", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "gpyLhszdiZ2_eIXeLIMU4w", + "name": "Domino's Pizza", + "address": "2628 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9933517, + "longitude": -75.1552221, + "stars": 1.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Chicken Wings, Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "10:30-1:30", + "Tuesday": "10:30-1:30", + "Wednesday": "10:30-1:30", + "Thursday": "10:30-1:30", + "Friday": "10:30-2:15", + "Saturday": "10:30-2:15", + "Sunday": "10:30-1:30" + } + }, + { + "business_id": "R17gwW6zn9ilslbdvKdgsg", + "name": "Alma de Cuba", + "address": "1623 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500808, + "longitude": -75.1685265, + "stars": 4.0, + "review_count": 1321, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForDancing": "False", + "CoatCheck": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Latin American, Nightlife, Cocktail Bars, Caribbean, Cuban, Restaurants, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "2mbH5r0clGty4w7dchJ-Gw", + "name": "Santucci's Original Square Pizza", + "address": "4019 O St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.007637, + "longitude": -75.096361, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "onufA0MixmTq5_VR_Zrx8Q", + "name": "Hummus Grill", + "address": "212 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481641, + "longitude": -75.1592112, + "stars": 4.0, + "review_count": 77, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Mediterranean, Food, Middle Eastern", + "hours": null + }, + { + "business_id": "Tz41bpzdjOLy7JwA4axqpw", + "name": "Crown Deli At Pennypack", + "address": "3887 Pennypack St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0510698311, + "longitude": -75.015319302, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Delicatessen, Delis, Food, Restaurants", + "hours": null + }, + { + "business_id": "GdOJijsW30iiW3e1UrMHcA", + "name": "Steve's Olde City Cleaners and Tailors", + "address": "102 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481157, + "longitude": -75.1427064, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry, Sewing & Alterations", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "4TCmJskt1VVvI0C4WeA0_A", + "name": "Union Trust", + "address": "717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496591, + "longitude": -75.1530332, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "4lZovWojx_S0xsM42k7nNw", + "name": "CVS Pharmacy", + "address": "1919 Market St, Ste 150", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536685899, + "longitude": -75.172693237, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Pharmacy, Health & Medical, Drugstores, Shopping, Food, Convenience Stores", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "10:0-20:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "Qy8eNnWB1bTYnvRQ9jgOOQ", + "name": "Le Meridien Philadelphia", + "address": "1421 Arch Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548246, + "longitude": -75.1640644, + "stars": 3.5, + "review_count": 305, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "-esrlwUKa3cQWouOr5y9Rw", + "name": "Staples", + "address": "1300 South Columbus Blvd, Riverview Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9301737, + "longitude": -75.1447786, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "IT Services & Computer Repair, Printing Services, Mobile Phone Repair, Office Equipment, Computers, Shopping, Local Services, Shipping Centers", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "tND-bS0sECbWI8GVMFT_MA", + "name": "Modern Vac & Sew Centers", + "address": "1685 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0868162, + "longitude": -75.0387799, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Discount Store, Appliances & Repair, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "8Pf3z_J3jEOCEiN04M0U3A", + "name": "S&B Organic Cleaning Solutions", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.926576, + "longitude": -75.1746251, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Cleaning, Home Organization, Professional Services, Office Cleaning, Home Services, Carpet Cleaning", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "uQoiBtVSSqxIWR1bZbgtFA", + "name": "International Foods and Spices", + "address": "4203 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548785414, + "longitude": -75.2070041524, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Specialty Food, Grocery, Ethnic Food, International Grocery", + "hours": { + "Monday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "wZ6EfAVljGcjT1JPbc9htA", + "name": "Tokyo Lunch Boxes", + "address": "1705 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515125, + "longitude": -75.1690656, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Japanese", + "hours": null + }, + { + "business_id": "PsmEYy55HF3epGGbCgIOzA", + "name": "Wonderspaces Philadelphia", + "address": "27 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9522972, + "longitude": -75.1576716822, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True" + }, + "categories": "Virtual Reality Centers, Art Museums, Museums, Shopping, Arts & Entertainment, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "vBn7oOLot5NI77NgChkqwA", + "name": "Studio KP", + "address": "1630 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496526, + "longitude": -75.1687885, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Eyelash Service, Skin Care, Permanent Makeup, Shopping, Waxing, Cosmetics & Beauty Supply, Beauty & Spas, Education, Hair Removal", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "LDxiC0oywntw2F5zkxLHsw", + "name": "FedEx Office Print & Ship Center", + "address": "216 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949328, + "longitude": -75.167743, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Couriers & Delivery Services, Local Services, Professional Services, Shipping Centers, Signmaking, Printing Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "dJEm7VxFtWT5E4k5Kr5bBA", + "name": "Keller's Auto & Truck Repair", + "address": "360 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0414973, + "longitude": -75.2376511, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Transmission Repair, Commercial Truck Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "jagBU79ciQVpvPMtQ-r52w", + "name": "Philly Comedy Club", + "address": "16 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495571, + "longitude": -75.1439805, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Nightlife, Comedy Clubs", + "hours": { + "Friday": "18:30-21:0" + } + }, + { + "business_id": "ch29D3CT7tkxkp2_FhRiNg", + "name": "Franklin Mint Federal Credit Union", + "address": "200 Stevens Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8751194, + "longitude": -75.2800795, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "u1DCxkcswVHB-RUsPeDsxw", + "name": "Heavy Metal Hair Salon", + "address": "1604 E Passyunk Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9296389335, + "longitude": -75.1638315605, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "eNhMUJbS1MuG3hdfk3wq0w", + "name": "MB3 Printing", + "address": "6911 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0458265, + "longitude": -75.0709135, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Web Design, Bookbinding, Screen Printing/T-Shirt Printing, Printing Services, Professional Services, Graphic Design, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:30", + "Wednesday": "10:30-19:30", + "Thursday": "10:30-19:30", + "Friday": "10:30-19:30" + } + }, + { + "business_id": "xeX0beo_B3CYoeR9gfJG8A", + "name": "Pant Dog Center", + "address": "1134 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310089, + "longitude": -75.163973, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Sitting, Dog Walkers, Pet Training", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30" + } + }, + { + "business_id": "kdY9pcvJ-GAMfuZPeSsImA", + "name": "ShopRite of Oxford & Levick", + "address": "6301 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0440083466, + "longitude": -75.0881614111, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False" + }, + "categories": "Delis, Bakeries, Restaurants, Local Services, Grocery, Food, Shipping Centers", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "VL6C4iK4rVDVGO2xTGr0Gw", + "name": "The Towne Barker", + "address": "700 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9716937336, + "longitude": -75.1257668401, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Sitting, Pet Training", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30" + } + }, + { + "business_id": "2ToHAI5r5sdNv8LcvKNsxw", + "name": "US Post Office", + "address": "1939 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674415, + "longitude": -75.170014, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Shipping Centers, Post Offices, Local Services", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:45-11:45" + } + }, + { + "business_id": "HxSAlo0GRb4JTmDIxNw68Q", + "name": "Clarkville", + "address": "4301 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.949712, + "longitude": -75.209374, + "stars": 3.5, + "review_count": 227, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "HasTV": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsDelivery": "None", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Gastropubs, Beer Bar, Nightlife, Pizza, Bars, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "DZglT5FP5VNDQJU3PuRIHw", + "name": "La Calaca Feliz", + "address": "2321 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967534, + "longitude": -75.1760734, + "stars": 4.0, + "review_count": 681, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "None", + "GoodForDancing": "False", + "CoatCheck": "False", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Smoking": "u'no'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Cocktail Bars, Restaurants, Mexican, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "xKobpA4w0P_J2jFMP7wcnw", + "name": "Buzz Cafe", + "address": "1800 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9773871, + "longitude": -75.1350528, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Cafes, Coffee & Tea, Desserts, Breakfast & Brunch, Food", + "hours": { + "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": "8:0-13:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "-qr5uBcrMsISGTjAzGKJ_g", + "name": "DollFace Studio", + "address": "1639 N Hancock St, Ste 408", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9755101, + "longitude": -75.136981, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Photographers, Session Photography, Event Photography, Boudoir Photography, Professional Services", + "hours": { + "Wednesday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "A9K47DPPPxmoi3HorT1xag", + "name": "Lazaro's 2 Pizzeria & Grill", + "address": "716 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484491, + "longitude": -75.1532384, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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:30-21:30" + } + }, + { + "business_id": "WDvtd_VkiMGLwlpKuSYQRw", + "name": "Mattress Firm Quartermaster", + "address": "2304 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.917331514, + "longitude": -75.186565703, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shades & Blinds, Home & Garden, Furniture Stores, Home Services, Shopping, Mattresses, Home Decor", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Am5wWa0v13NZRsJ-g9f9cQ", + "name": "Chestnut Hill Brewing Company", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074276, + "longitude": -75.20258, + "stars": 4.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "True", + "HappyHour": "True", + "GoodForDancing": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Alcohol": "'beer_and_wine'" + }, + "categories": "Food, Beer Bar, Breweries, Nightlife, Pizza, Restaurants, Bars", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "qY-BUQY-SFBaSrFHowF3nA", + "name": "Nine Ting", + "address": "926 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550836837, + "longitude": -75.1552917273, + "stars": 4.0, + "review_count": 1213, + "is_open": 1, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "BYOB": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Korean, Restaurants, Chinese, Barbeque, Hot Pot", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "aQZRMPH4ClppMCqfnshR9A", + "name": "Cira Green", + "address": "80 S 30th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9526731445, + "longitude": -75.183339, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "U5Xuk0e2GZ4TSV_km6__ig", + "name": "Garden Court Eatery & Beer", + "address": "4725 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9526669, + "longitude": -75.2177652, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Nightlife, Restaurants, Convenience Stores, Delis, Food, Beer Bar, Sandwiches, Bars, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "Ifg91Sp981Io80sqMBr8Ew", + "name": "Gaeta's Italian Bakery", + "address": "7616 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0565982, + "longitude": -75.0614112, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "None", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Corkage": "None", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "WiFi": "'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Caters": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Food, Bakeries, Pizza, Restaurants", + "hours": { + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-17:30", + "Saturday": "11:0-16:0", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "f5P2hf44ThhH_25-yx0c6w", + "name": "All City Plumbing Heating & Air", + "address": "515 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0277865, + "longitude": -75.1835394, + "stars": 1.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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" + } + }, + { + "business_id": "00Tcf1hTCb4uFSK99xI_hg", + "name": "Philly Hookah Shop", + "address": "4321 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568167, + "longitude": -75.2089241, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Tobacco Shops, Nightlife, Bars, Hookah Bars, Shopping", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "e35x4wEC-SQaj_2_O7ZyZg", + "name": "Coco's Chicken and Waffles", + "address": "628 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612103, + "longitude": -75.1388269, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (Traditional), American (New)", + "hours": { + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "wzDTQ2rBUyVLptcWXQv3oQ", + "name": "Rice N Spice International Grocery Store", + "address": "4205 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956457, + "longitude": -75.2067362, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "Food, Grocery, Restaurants, Indian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "MUYjCWUYgEBAXyI8MZhUww", + "name": "City Nails", + "address": "100 N 17th St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553175, + "longitude": -75.1680488, + "stars": 2.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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-18:0" + } + }, + { + "business_id": "muE9hi63ObMhwQIpq6Ln7w", + "name": "Queen Bee African Hair Braiding & American Hairstyle", + "address": "3800 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0111064, + "longitude": -75.1510494, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "8:30-18:0" + } + }, + { + "business_id": "vdAN6puqt3yy8Pha1TR1xA", + "name": "Peter T Kousoulis, DMD", + "address": "501 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9424796, + "longitude": -75.1485639, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "GROalyyK79uPqR8GnwpRTw", + "name": "Saigon Maxim Restaurant", + "address": "612 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345239533, + "longitude": -75.1545877331, + "stars": 2.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Chinese, Event Planning & Services, Vietnamese, Restaurants, Venues & Event Spaces", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "HzKZlWwxEGgGjCL7M1Kacg", + "name": "Hugo's Frog Bar & Chop House", + "address": "1001 N Delaware Ave, 1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9640632, + "longitude": -75.1327706, + "stars": 3.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "BestNights": "None", + "Caters": "True", + "HasTV": "True", + "GoodForDancing": "True", + "HappyHour": "False", + "Smoking": "u'outdoor'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Lounges, Bars, Steakhouses, Restaurants, Nightlife", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "y2AQh1vbpSnyh2JdcwYnJw", + "name": "Healing Hands Therapy", + "address": "810 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942205, + "longitude": -75.1559259, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Health & Medical, Massage Therapy, Beauty & Spas, Massage, Reflexology", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "d3GaO8eZgbwUOsi5mcsqAQ", + "name": "Aktion Air", + "address": "614 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412268, + "longitude": -75.149419, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "KNDMUyeW8bSsLXGSNyQS-Q", + "name": "Hibachi Grill & Supreme Buffet", + "address": "Franklin Market Place Shopping Center, 103 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.088707, + "longitude": -74.9678448, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Japanese, Restaurants, Buffets, Chinese", + "hours": null + }, + { + "business_id": "p_Y1CgtbpLEKIXrzWZjMsg", + "name": "ScrubHaven", + "address": "9357 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0871774, + "longitude": -75.0443361, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Uniforms, Shopping", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "KHe6HAqmyioITwTvg9Bbcg", + "name": "Lee's Deli", + "address": "4700 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9484414, + "longitude": -75.2171163, + "stars": 4.5, + "review_count": 175, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "Caters": "False", + "DogsAllowed": "False", + "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': True}", + "RestaurantsDelivery": "False", + "DriveThru": "False" + }, + "categories": "Sandwiches, Burgers, Delis, Restaurants, Local Flavor", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0" + } + }, + { + "business_id": "IzyQVIJG8JAnOiRQPb0-wg", + "name": "Rione", + "address": "102 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520434, + "longitude": -75.1756387, + "stars": 4.5, + "review_count": 208, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Pizza, Restaurants, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-16:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "eFB8nsciED7EupYVyAnTyA", + "name": "Deke's Bar-B-Que", + "address": "4901 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0152739, + "longitude": -75.2075673, + "stars": 3.5, + "review_count": 182, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "HasTV": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "i0b_xiKIbExKtF3vqo1Bzw", + "name": "Shake Shack", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "DriveThru": "False" + }, + "categories": "Restaurants, Ice Cream & Frozen Yogurt, American (New), Food, Burgers, Hot Dogs", + "hours": null + }, + { + "business_id": "XG72Wuz7oWwgqM7ir3kpuA", + "name": "Rosebud Aesthetics", + "address": "501 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9703983, + "longitude": -75.1451663, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Skin Care, Day Spas, Massage, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "HA7KZzk_Lk8pGfgI3Kc1og", + "name": "Primal Nutrition", + "address": "8114 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0587563, + "longitude": -75.0459419, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Health Markets, Specialty Food, Nutritionists, Food, Health & Medical", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "Z6WntA-h-vBAQ3Xoe2Xy6Q", + "name": "Brickbat Books", + "address": "709 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402186, + "longitude": -75.1493078, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Books, Mags, Music & Video, Shopping, Bookstores, Used Bookstore", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-14:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eRG8bCEd6D4IO83QB27eBQ", + "name": "Resolution Rentals", + "address": "1600 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9757198, + "longitude": -75.1442308, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photography Stores & Services, Shopping", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "mk8tU_q7O771XHv79n-d7Q", + "name": "Trax Foods", + "address": "1204 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.969223, + "longitude": -75.1363257, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False" + }, + "categories": "Food, Delis, Restaurants, Convenience Stores", + "hours": null + }, + { + "business_id": "HotEtVKhb7SVb7AFgp4O1g", + "name": "King Tut Restaurant and Hookah Bar", + "address": "401 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9451839, + "longitude": -75.1628028, + "stars": 3.5, + "review_count": 94, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "OutdoorSeating": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Middle Eastern, Mediterranean, Bars, Greek, Hookah Bars, Restaurants, Egyptian, Nightlife", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "vJKxxr2auAsbmLfis-PJnw", + "name": "Old Nelson Food Company", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570681, + "longitude": -75.1916189, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Convenience Stores, Delis, Grocery, Restaurants", + "hours": null + }, + { + "business_id": "RcE9LYOyYjl8K_uje-24Nw", + "name": "Starr Garden Playground", + "address": "600-44 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942614, + "longitude": -75.152514, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Playgrounds", + "hours": null + }, + { + "business_id": "i89mbAOMy4HVJRllmIKyzQ", + "name": "Wrap Shack", + "address": "120 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511294, + "longitude": -75.1707078, + "stars": 3.5, + "review_count": 300, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "GoodForKids": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Bars, Ethnic Food, American (Traditional), Sandwiches, Wraps, Food Delivery Services, Nightlife, American (New), Seafood, Sports Bars, Food, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-23:0", + "Friday": "15:0-2:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "qzFBDBxFQFZ0D9erZ-4pCA", + "name": "Irina Sigal Dressmaker", + "address": "2038 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493839, + "longitude": -75.1753829, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False" + }, + "categories": "Shopping, Bridal, Local Services, Sewing & Alterations, Women's Clothing, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "JDBFp-o17rOGth-KeBCvNA", + "name": "Broadview Kitchen & Bath", + "address": "6330 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0499972, + "longitude": -75.1427263, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Shopping", + "hours": null + }, + { + "business_id": "5E9nyAMrRUPzHL-kTPXvGw", + "name": "L'Amour Nails", + "address": "7055 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0344445, + "longitude": -75.0448038, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Waxing, Nail Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "grrvhDzHz6qdMayLVgSkrQ", + "name": "S&N Bar Spa Nail", + "address": "612 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412863, + "longitude": -75.1494988, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons, Professional Services", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "FhGshHPi9tEL11bKuyWGrg", + "name": "Ezbuyback", + "address": "10871 Bustleton Ave, Ste 232", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.110804808, + "longitude": -75.0244678482, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobile Phones, Shopping", + "hours": null + }, + { + "business_id": "yJRWfrf2VnczD43dW-EE3A", + "name": "Bank of America Financial Center", + "address": "1501 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948583769, + "longitude": -75.166286, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "sZk8wTZ9xRcE0rp3bUjN5Q", + "name": "Washington Auto Shine", + "address": "1208 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937082, + "longitude": -75.1634761, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive, Auto Detailing", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "BPMz2-6BwS0B3SIN11Qwqw", + "name": "Beautiful Blooms Events", + "address": "1016 New Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9655543, + "longitude": -75.1393608, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Shopping, Event Planning & Services, Flowers & Gifts", + "hours": { + "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" + } + }, + { + "business_id": "KoMlidUMfCLz42ETmlF56A", + "name": "Amalia's Cafe & Hookah Lounge", + "address": "1431 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254509, + "longitude": -75.1707379, + "stars": 4.5, + "review_count": 114, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Middle Eastern, Hookah Bars, Restaurants, Juice Bars & Smoothies, Bars, Halal, Nightlife, Diners, Food, Mediterranean, Sandwiches, Falafel, Vegan", + "hours": { + "Monday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "_tCXepBAl7G8uTp1NDagWg", + "name": "Club Metro USA", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9130092, + "longitude": -75.154636, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Fitness & Instruction, Gyms, Trainers, Active Life", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "1ZUH-1hctJlQZnbKsPro3A", + "name": "Jinette's Dominican Hair Salon", + "address": "1922 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0665813, + "longitude": -75.158645, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shopping, Hair Salons, Cosmetics & Beauty Supply, Beauty & Spas", + "hours": null + }, + { + "business_id": "GIItciLVJF527Z7y17VSlA", + "name": "Diamond Nail Salon", + "address": "4831 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0269738, + "longitude": -75.1469563, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "8:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "O7bOALpYQoQH-wPSxHrwsw", + "name": "Taqueria La Mexicanita", + "address": "1148 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923909, + "longitude": -75.1660285, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "JUyqzjxF6dSJTB8uhc5e1Q", + "name": "Vagabond", + "address": "37 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512981, + "longitude": -75.1451228, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Women's Clothing, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "XASfdnU1Ewfh2dnfv0jFqg", + "name": "Al Nahrain Halal Restaurant", + "address": "9356 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08278, + "longitude": -75.0383, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Middle Eastern, Halal", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "leS4Eu2704iYEF_QvJhYzg", + "name": "Yadain", + "address": "1226 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503429, + "longitude": -75.1614918, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Skin Care, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": null + }, + { + "business_id": "FBav7ij_TUqmBjgDlxI_oA", + "name": "Water and Rock Studio", + "address": "8109 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0723377, + "longitude": -75.2020087, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Fitness & Instruction, Trainers, Martial Arts, Yoga, Kickboxing, Active Life", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "ws8ltnaTw9MJuF6fZehOVQ", + "name": "Traditional Szechuan", + "address": "935 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537009, + "longitude": -75.1561045, + "stars": 3.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Chinese, Szechuan, Food, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "UIyDw8OqB17EkI2p3m7-EQ", + "name": "Burg's Hideaway Lounge", + "address": "1200 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9375354, + "longitude": -75.178827, + "stars": 4.5, + "review_count": 102, + "is_open": 0, + "attributes": { + "DriveThru": "False", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Restaurants, Chicken Wings, Burgers, Nightlife", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "0jgz7W-ytCK-LmN84G1hVg", + "name": "HFS Parkour Center", + "address": "2869 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9838325318, + "longitude": -75.1137001215, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction, Fashion, Shopping, Sporting Goods, Sports Wear, Boot Camps, Climbing", + "hours": { + "Monday": "16:0-20:30", + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Friday": "15:0-20:0", + "Saturday": "17:0-20:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "EkA1I4kODCDTHg021sXgFQ", + "name": "Pearle Vision", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.079159, + "longitude": -75.028599, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "True", + "WiFi": "'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Optometrists, Eyewear & Opticians, Health & Medical", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "FotR6jku5WWtm8THC4T7ig", + "name": "Pizzeria L'Angolo", + "address": "4105 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0224642, + "longitude": -75.2183357, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (Traditional), Restaurants, Pizza, Gluten-Free", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "VV_DMArltFOUQq_ONjGVcQ", + "name": "The UPS Store", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322466, + "longitude": -75.2141304, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Local Services, Shipping Centers, Printing Services, Mailbox Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "MIJ1UCPQ0LMh7D9U5PGFrA", + "name": "Jose's Tacos", + "address": "469 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9606898585, + "longitude": -75.1546471723, + "stars": 4.0, + "review_count": 150, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Corkage": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "FBFdK0h-Agd3Sj0nZpiVIQ", + "name": "Contemporary Staffing Solutions", + "address": "1819 John F Kennedy Blvd, Ste 307", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.2009599683, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Employment Agencies, Professional Services, Accountants", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30", + "Sunday": "8:0-17:30" + } + }, + { + "business_id": "-4N4YEobjG89VQsEgqZshg", + "name": "Peteโ€™s Place", + "address": "604 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941906746, + "longitude": -75.1526430622, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Korean, Restaurants, Chicken Wings, Asian Fusion", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "mzFIAmpX1Ef83Djqs19vZQ", + "name": "PaperMill - Fresh Asian Kitchen", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "None", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food Trucks, Vietnamese, Food, Event Planning & Services, Caterers, Asian Fusion", + "hours": null + }, + { + "business_id": "kBy6spzfroIe5Ph6lO6b7w", + "name": "Conjure Wellness", + "address": "2234 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9853189, + "longitude": -75.141941, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Arts & Entertainment, Reiki, Psychics, Supernatural Readings, Naturopathic/Holistic, Doctors, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "oqQNpDW3yy_LoHj0zNqCUw", + "name": "Blendo", + "address": "1002 Pine St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9445885745, + "longitude": -75.1581024706, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Jewelry, Antiques, Cards & Stationery, Flowers & Gifts, Event Planning & Services, Arts & Crafts", + "hours": { + "Monday": "11:0-17:30", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "_EkKoNEH0uIZ-h9kWjdhVQ", + "name": "Kaufman's Delicatessen", + "address": "38 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953329152, + "longitude": -75.1707119192, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "HasTV": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Home Services, Steakhouses, Sandwiches, Delis, Caterers, Event Planning & Services, Cheesesteaks, Plumbing", + "hours": null + }, + { + "business_id": "pSZzbCrkMwBdriYCdXLd4w", + "name": "Farm Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Farmers Market, Caterers, Food, Event Planning & Services, Food Trucks", + "hours": { + "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" + } + }, + { + "business_id": "5LTk9O8CeaEamgrRi4HaRQ", + "name": "Rilling's Bakery", + "address": "2990 Southampton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.10286, + "longitude": -74.983042, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "j2AhQF5-dYGyJFbQd5t4aA", + "name": "Singapore Chinese Vegetarian Restaurant", + "address": "1006 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552485, + "longitude": -75.1562486, + "stars": 4.0, + "review_count": 76, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "True" + }, + "categories": "Restaurants, Vegetarian, Dim Sum, Chinese", + "hours": null + }, + { + "business_id": "5-YFRezc0MMV8Fe79ImJYQ", + "name": "Vu Lily Nail", + "address": "5101 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0308162, + "longitude": -75.1462726, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:30-17:30" + } + }, + { + "business_id": "nmwdt0-CLNptMrZqcVuDKw", + "name": "DelVal R S", + "address": "3655 Salmon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9891659, + "longitude": -75.0905531, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Windows Installation, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "gA6fsMPkVswDxuacdZBzUA", + "name": "Express Kabob & Grill", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0474609348, + "longitude": -75.0555587434, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "WiFi": "u'no'" + }, + "categories": "Middle Eastern, American (New), Halal, Restaurants, Mediterranean", + "hours": { + "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": "11:0-19:0" + } + }, + { + "business_id": "NDq2NEFxi4hbnUMHf3ScDA", + "name": "Freehouse Fitness Studio", + "address": "1430 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437294726, + "longitude": -75.1666122911, + "stars": 5.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Yoga, Pilates, Active Life, Barre Classes, Fitness & Instruction", + "hours": { + "Monday": "6:15-20:30", + "Tuesday": "6:15-20:30", + "Wednesday": "6:15-20:30", + "Thursday": "6:15-20:30", + "Friday": "6:15-20:30", + "Saturday": "8:30-12:30", + "Sunday": "8:30-12:30" + } + }, + { + "business_id": "JR9ZiDhmtB110JgbvKBtiw", + "name": "Sanctuary Yoga and Mindfulness", + "address": "1233 Locust St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479863, + "longitude": -75.1619304, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Yoga, Active Life, Meditation Centers, Fitness & Instruction", + "hours": { + "Monday": "10:0-20:30", + "Tuesday": "9:0-20:0", + "Wednesday": "7:0-20:30", + "Thursday": "9:0-20:0", + "Friday": "7:0-18:30", + "Saturday": "9:0-14:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "gi1I8qH3aqbsGs2acQ_u_Q", + "name": "Sullivan Owen Floral & Event Design", + "address": "1639 N Hancock St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9755101, + "longitude": -75.136981, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "None", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Floral Designers, Party & Event Planning, Shopping, Wedding Planning, Florists, Event Planning & Services, Flowers & Gifts", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30" + } + }, + { + "business_id": "-Ti5pwj6mA99khsxxur8aQ", + "name": "Ambrosia Ristorante BYOB", + "address": "231 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499785, + "longitude": -75.1796522, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Caters": "False", + "DogsAllowed": "True", + "OutdoorSeating": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': True, u'romantic': True, u'classy': True, u'upscale': None}", + "BYOB": "True", + "Corkage": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': True}" + }, + "categories": "Restaurants, Italian", + "hours": { + "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-21:0" + } + }, + { + "business_id": "Hzp-J1e8KwOgo24lR5RVWw", + "name": "McGinnis Roofing", + "address": "2832 E Pacific St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9878188, + "longitude": -75.090726, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Roofing, Home Services, Windows Installation, Gutter Services, Painters, Home Inspectors, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "Pt7FpaeQcOgWcPQDJZnkmQ", + "name": "Project Management Academy", + "address": "Residence Inn Philadelphia Center City, One East Penn Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9526118, + "longitude": -75.162302, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Test Preparation, Education, Adult Education, Specialty Schools, Special Education", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "n8n0gbaaYMS267aLcc4ysQ", + "name": "Philly Temps & Perm", + "address": "1518 Walnut St, Ste 208", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494256, + "longitude": -75.1668961, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Personal Assistants, Professional Services, Employment Agencies", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "geFqswYwGZ_XmuSJy3DEvw", + "name": "OG Pizza", + "address": "2500 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9835263378, + "longitude": -75.1258263442, + "stars": 4.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "'average'", + "DriveThru": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BYOB": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False" + }, + "categories": "American (New), Pizza, Restaurants, Salad, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "ekxvAyD2T5v3GS7n4X_3dQ", + "name": "Jay's Deli", + "address": "1228 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465533063, + "longitude": -75.1624734497, + "stars": 4.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Grocery, Sandwiches, Delis", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "HnsKjZ5SXBOwsdur73b7iw", + "name": "Potito's Bakery", + "address": "547 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9637847, + "longitude": -75.1709191, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "IW5nVwCmmhL6cENHTst2og", + "name": "Caribbean Delight", + "address": "1124 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429434, + "longitude": -75.1610111, + "stars": 4.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "vjHtDUObnrbDyzKMHUA6fg", + "name": "Old Navy", + "address": "1618 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951084, + "longitude": -75.1681729, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Shopping, Men's Clothing, Fashion, Children's Clothing", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "vDRbIZgQkohfjt2ctVLn1w", + "name": "Coquette Bistro", + "address": "700 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407654, + "longitude": -75.150985, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "9m6GQp45QBEydlyE6DywCw", + "name": "honeygrow", + "address": "15 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509772093, + "longitude": -75.1583468263, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Salad, Vegan, Vegetarian, Juice Bars & Smoothies, Noodles, American (Traditional), Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "d_o_PQ-_-nDm_xg7v9gfeQ", + "name": "Hudson Tax Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tax Services, Notaries, Accountants, Financial Services, Professional Services, Financial Advising, Local Services", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "dhIpGsx1bMUC2nsV4ckB-A", + "name": "Papa John's Pizza", + "address": "104 S. 40Th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551874, + "longitude": -75.2026309, + "stars": 2.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "HLpuAT5-2mVeWKigV9bHZg", + "name": "The Grand Lodge of Free and Accepted Masons of Pennsylvania", + "address": "1 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536445, + "longitude": -75.1628563, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Education, Special Education, Religious Organizations", + "hours": null + }, + { + "business_id": "RDwBQNJMjb7HQgypdTISJg", + "name": "Mexican Food Stand", + "address": "18 John F. Kennedy Blvd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542146, + "longitude": -75.1697856, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Street Vendors, Food Stands, Food Trucks, Restaurants, Food, Mexican", + "hours": { + "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" + } + }, + { + "business_id": "wocwfwSFrNfYJRyfYSi1Cw", + "name": "Knead Bagels", + "address": "725 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481128, + "longitude": -75.1536477, + "stars": 4.5, + "review_count": 367, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "False", + "DogsAllowed": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Bagels, Coffee & Tea, Sandwiches, Food, Soup, Salad", + "hours": { + "Tuesday": "7:30-13:30", + "Wednesday": "7:30-13:30", + "Thursday": "7:30-13:30", + "Friday": "7:30-13:30", + "Saturday": "7:30-13:30" + } + }, + { + "business_id": "xMg1u9IrHaJ1K0VU49bqyQ", + "name": "8 Limbs Academy", + "address": "4542 Baltimore Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9488029, + "longitude": -75.2142686, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Martial Arts", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "8:0-16:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "BGWF8V14C-xZ4CitQ0r93g", + "name": "Sipe Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Roofing, Decks & Railing, Home Services, Shopping, Contractors, Home & Garden, Cabinetry, Painters, Kitchen & Bath", + "hours": { + "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" + } + }, + { + "business_id": "TbjqvdrSBm27arbKbReRfg", + "name": "Thanal Indian Tavern", + "address": "1939 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955872, + "longitude": -75.1725276, + "stars": 4.5, + "review_count": 240, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': True, u'validated': False}", + "GoodForKids": "True", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': True, u'classy': True, u'upscale': None}", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Asian Fusion, Restaurants, Indian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "Qq4bJfagVGJ3Z7BDbkiXuA", + "name": "Adrian's Sports Bar And Grill", + "address": "5912 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0379825, + "longitude": -75.1769392, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'dressy'", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': True, 'jukebox': True, 'live': False, 'video': True, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "Smoking": "u'outdoor'", + "GoodForDancing": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'" + }, + "categories": "Bars, Caribbean, Nightlife, Restaurants, Soul Food, Sports Bars, American (Traditional)", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "LIWVmAbYIYiou-rr_-PfWA", + "name": "KFC", + "address": "2422 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9217729423, + "longitude": -75.1878497029, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "Alcohol": "u'none'", + "Caters": "True", + "BusinessParking": "None", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Chicken Wings, Chicken Shop", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "KR_sbvIHRAyBj-osH_kENw", + "name": "Golden Dragon", + "address": "1503A E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0793182, + "longitude": -75.1741349, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "y0e9i-wx4lviLQjxT-mQ7Q", + "name": "USA Express Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "CIct-LkqAJo7dqjG7EsNHA", + "name": "Super Miss Nail & Spa", + "address": "12345 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.096243, + "longitude": -74.9759638, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Eyelash Service, Nail Salons, Beauty & Spas, Nail Technicians", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "sFuaxIL9f8gC_aPprKIhEQ", + "name": "Holistic Home", + "address": "616 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415109, + "longitude": -75.1525885, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Commercial Real Estate, Real Estate, Cosmetics & Beauty Supply, Window Washing, Home Services, Home Cleaning, Professional Services, Shopping, Office Cleaning", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "LUzv72OXoXKxs6Tbz37L2w", + "name": "El Costeรฑo", + "address": "940 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93776, + "longitude": -75.158289, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "zCP1Tz-wUf1rKyEFmkEdog", + "name": "Philadelphia Mind-Body Acupuncture", + "address": "1740 South St, Ste 503", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441824, + "longitude": -75.1717273, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage Therapy, Traditional Chinese Medicine, Health & Medical, Doctors, Sports Medicine, Acupuncture", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-18:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "lBHZc-fGzL8fRWREy7VlZA", + "name": "Taco Bell", + "address": "2422 W Passyunk Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9221, + "longitude": -75.18726, + "stars": 1.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Tex-Mex, Tacos, Restaurants, Mexican", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "gD7_c7FrdR6xsy-H2-GnFQ", + "name": "Balance Studios", + "address": "7530 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.039391, + "longitude": -75.034991, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Brazilian Jiu-jitsu, Fitness & Instruction, Muay Thai, Martial Arts, Active Life, Yoga, Boxing", + "hours": { + "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" + } + }, + { + "business_id": "H7-pLTKDqQNb62ngq7AlvA", + "name": "EZ Storage", + "address": "7425 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.026946, + "longitude": -75.027973, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "-3ArWZfDjfab8qVHf3WVtg", + "name": "Taste Africa", + "address": "6518 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9251278, + "longitude": -75.2346314, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, African", + "hours": null + }, + { + "business_id": "tY9O-0lBEcIN-sVPKLJllw", + "name": "3 Diamonds Automotive", + "address": "4771 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0184158, + "longitude": -75.0837926, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Tires, Automotive", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "sQkWVgxhbiVBydK6lK4bZA", + "name": "Airs Appliances", + "address": "1600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.950419, + "longitude": -75.159279, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Appliances, Home & Garden, Shopping, Appliances & Repair, Electronics, Local Services", + "hours": null + }, + { + "business_id": "jZS1SgxHnw9NxRNVRNgqwg", + "name": "Top of the Hill Market", + "address": "186 E Evergreen Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0767759571, + "longitude": -75.2069476517, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Meat Shops, Christmas Trees, Shopping, Food, Fruits & Veggies, Seafood Markets, Home & Garden, Juice Bars & Smoothies, Specialty Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-13:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "BpIwDr5mG6wG5-Pxu3yxSg", + "name": "The Bagel Place", + "address": "404 Queen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374733, + "longitude": -75.1504451, + "stars": 4.0, + "review_count": 171, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "HappyHour": "False", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False" + }, + "categories": "Bagels, Food, Restaurants, Event Planning & Services, Caterers, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "SjCxvaC-OZLnOqAqHTXG_Q", + "name": "My Thai Restaurant", + "address": "2200 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945201, + "longitude": -75.178723, + "stars": 3.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "AbTrRYsEUhF5V3q_WcpqXw", + "name": "Esporta Fitness", + "address": "851 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.094793, + "longitude": -74.9595094, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Yoga, Gyms, Fitness & Instruction, Sports Clubs, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "tgpgJqLjSB5Ms76qXAGFhw", + "name": "Lisa's Flowers & Gifts", + "address": "45 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492635799, + "longitude": -75.1473373004, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Home Services, Flowers & Gifts, Florists, Party & Event Planning, Landscaping, Shopping, Event Planning & Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "12:0-15:0" + } + }, + { + "business_id": "mRsn9zdXBzosvyDUnQZBcQ", + "name": "Pennsylvania Centre For Dermatology", + "address": "822 Pine St, Ste 2a", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9442605, + "longitude": -75.1560763, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Beauty & Spas, Medical Spas, Dermatologists, Doctors, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "ZqGYaqGmHqoqFdUI3WvNFg", + "name": "Juicy Couture", + "address": "1701 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502071, + "longitude": -75.1691803, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Accessories, Women's Clothing, Fashion, Children's Clothing, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "aL53puqxtcR1KZrrj4U7Jw", + "name": "Farmer's Keep", + "address": "10 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952856, + "longitude": -75.1734852, + "stars": 4.5, + "review_count": 205, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None" + }, + "categories": "Gluten-Free, American (New), Salad, Restaurants", + "hours": { + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "XD469cx9VeHkCrDXfzc8rg", + "name": "City of Paws Pet Care", + "address": "4167 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0236620953, + "longitude": -75.2200420049, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Dog Walkers, Pets, Pet Transportation, Pet Stores", + "hours": { + "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": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "2wqXY-eBHUeMIw_f5VHHMg", + "name": "Thien Tan", + "address": "701 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.03305, + "longitude": -75.106396, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "True" + }, + "categories": "Restaurants, Vietnamese, Chinese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "LI-aq2-ArBhzFo6UejgOHw", + "name": "John Nicholas Peters", + "address": "252 Kalos St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0190194, + "longitude": -75.2063857, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BikeParking": "True" + }, + "categories": "Performing Arts, Shopping, Musical Instruments & Teachers, Education, Specialty Schools, Arts & Entertainment", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "AnZPS4hUH1TzPrrEhIjJcA", + "name": "New York Gyro Place", + "address": "4407 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956729, + "longitude": -75.210063, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False", + "Corkage": "False", + "HappyHour": "False", + "WheelchairAccessible": "False", + "BYOB": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Halal, Middle Eastern, Greek, Restaurants, Pakistani", + "hours": { + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "jnA8xrLUi93ClDd-anHaDw", + "name": "Motherhood Maternity and Pea In the Pod", + "address": "1615 Walnut St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950067, + "longitude": -75.168147, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Fashion, Maternity Wear", + "hours": { + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "YSSYgUjVz81AGZzykEAQcw", + "name": "August", + "address": "1247 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9339277, + "longitude": -75.1652368, + "stars": 4.0, + "review_count": 106, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "BikeParking": "True" + }, + "categories": "Italian, Tapas/Small Plates, Restaurants", + "hours": { + "Wednesday": "17:30-21:15", + "Thursday": "17:30-21:30", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "1o0C_fqBgnQCiWn4A0R68g", + "name": "Nuts To You", + "address": "1328 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949018, + "longitude": -75.163372, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chocolatiers & Shops, Organic Stores, Candy Stores, Food, Specialty Food", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "NVmDogNEpIqL8wksyfcTEA", + "name": "Max's Steaks and Hoagies", + "address": "7301-09 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0615632277, + "longitude": -75.0835071965, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Bars, Nightlife", + "hours": null + }, + { + "business_id": "lgSO-bzx0USaPe34zdLyCw", + "name": "Starbucks", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529913, + "longitude": -75.1922872, + "stars": 2.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "Caters": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "5lyrEQeYPQcOJ5p0fhIcKw", + "name": "Harry the K's Broadcast Bar & Grille", + "address": "One Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9060572, + "longitude": -75.1664952, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Gastropubs, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "bNiMFB1fk08AXMuLxA6Adw", + "name": "Shop N Bag Mayfair", + "address": "6420 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0293768, + "longitude": -75.0567569, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "ysxrRklK6xqBiBznoFp7Cw", + "name": "Trophy Bikes", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524388, + "longitude": -75.1873387, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Bike Repair/Maintenance, Bike Rentals, Bikes, Sports Wear, Local Services, Local Flavor, Active Life, Shopping, Fashion, Sporting Goods", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "m-5N-fwCIGK5NWMclTqOUw", + "name": "Cibo Ristorante Italiano", + "address": "1227 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492784, + "longitude": -75.1617775, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True", + "Caters": "None", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "DogsAllowed": "None", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "None", + "GoodForDancing": "False", + "HasTV": "True" + }, + "categories": "Jazz & Blues, Restaurants, Arts & Entertainment, Piano Bars, Italian, Bars, Nightlife", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "YavrzZ3UjVtUzVIlAH0S-g", + "name": "Back to Balance Healing and Therapeutic Massage", + "address": "1444 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9318248, + "longitude": -75.1684123, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Massage, Massage Therapy, Beauty & Spas", + "hours": null + }, + { + "business_id": "2KTIvQVjejiTtcv68iCk1g", + "name": "Studio KP", + "address": "1613 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9743208, + "longitude": -75.1330406, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Special Education, Eyebrow Services, Permanent Makeup, Specialty Schools, Cosmetology Schools, Education, Shopping, Beauty & Spas, Eyelash Service, Cosmetics & Beauty Supply", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "7:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "7:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "GP0K5RlP2_6eTYgtLCuy_Q", + "name": "Kmart", + "address": "901-99 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 2.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Department Stores, Outlet Stores, Shopping", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "ifnnBBIeNFHEvhJuaKZiAA", + "name": "Alex Auto Body", + "address": "1120 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9371559, + "longitude": -75.1674319, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0" + } + }, + { + "business_id": "BQnGmgI7Z5cMPp457q7vCg", + "name": "The Amazing Escape Room - Philadelphia", + "address": "101 N 15th St, Fl 2nd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.954837, + "longitude": -75.16467, + "stars": 4.0, + "review_count": 115, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Active Life, Amusement Parks, Team Building Activities, Event Planning & Services, Leisure Centers, Shopping, Escape Games, Arts & Entertainment, Art Galleries", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "ubdngRXDh4NwrVvUnpMZqA", + "name": "Call Me Cupcake", + "address": "2000 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953389, + "longitude": -75.173435, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Desserts, Food Stands, Restaurants", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "11:0-15:0", + "Friday": "7:30-15:0" + } + }, + { + "business_id": "z4yBWuipKoas_hK9RrSARA", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "The Court At Grant Ave, 2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "mKADf8AICtHs3bnBZbdxMQ", + "name": "McNally's On Rhawn", + "address": "427 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0770817, + "longitude": -75.0840422, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Sports Bars, Bars, Pubs", + "hours": null + }, + { + "business_id": "ciQrHorElL1_ekMewnsDXg", + "name": "Evil Eye Cafรฉ", + "address": "628 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419294, + "longitude": -75.1531842, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bakeries, Turkish, Greek, Sandwiches, Ice Cream & Frozen Yogurt, Italian, Food, Coffee & Tea, Cafes, Event Planning & Services, Restaurants, Delis, Caterers", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "LsqIKqHgfJv9tPn2PQPq4w", + "name": "Maasi J Smith DPM", + "address": "5201 Wynnefield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9921922, + "longitude": -75.2307229, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Podiatrists, Health & Medical, Doctors", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "Ib9HV7ekw459jM1Ksdiyiw", + "name": "Independence Hall", + "address": "520 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488980012, + "longitude": -75.1500296367, + "stars": 4.5, + "review_count": 346, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'validated': False, 'street': False, 'lot': False, 'valet': False}" + }, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "J3nx8u-uRRejlfyP9KjFhQ", + "name": "McFadden's", + "address": "461 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589021, + "longitude": -75.1435969, + "stars": 2.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "HappyHour": "True", + "HasTV": "True", + "WiFi": "'free'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BYOBCorkage": "'no'" + }, + "categories": "Nightlife, Bars, Restaurants, American (New)", + "hours": { + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "t2ojMXjUgeKG0B5tmzevMA", + "name": "CeX", + "address": "1379 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.094816, + "longitude": -74.957922, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mobile Phones, Videos & Video Game Rental, Electronics, Fashion, Video Game Stores, Used, Vintage & Consignment, Books, Mags, Music & Video, Shopping, Music & DVDs", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "iE9w8w96epHq1nPO52AxGQ", + "name": "All Star Electrical Services LLC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 39.9508812039, + "longitude": -75.1641963403, + "stars": 4.5, + "review_count": 192, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "BikeParking": "False" + }, + "categories": "Professional Services, Home Services, Hardware Stores, Contractors, Plumbing, Home Theatre Installation, Shopping, Lighting Fixtures & Equipment, Home & Garden, Electricians", + "hours": { + "Monday": "7:0-23:45", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-23:30", + "Friday": "7:0-23:45", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "EPIsho1lUDpgsKKsOQQPgQ", + "name": "The Spiral Bookcase", + "address": "4257 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024786904, + "longitude": -75.221655187, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": { + "Wednesday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "iWMf-pRqpp5-oxW5zvONwA", + "name": "Platform Thirty At Beat Street Station", + "address": "4401 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0270647, + "longitude": -75.2250246, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Caterers, Party & Event Planning", + "hours": { + "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" + } + }, + { + "business_id": "9kgGsRA07ULQM0QTun0qiw", + "name": "Pest Medics", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1145029, + "longitude": -75.0085399, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wildlife Control, Pest Control, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "h2MCJQVK7YF-G8kCCEDXhg", + "name": "TLA Video", + "address": "1520 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95208, + "longitude": -75.16548, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Books, Mags, Music & Video, Videos & Video Game Rental", + "hours": null + }, + { + "business_id": "XTiYxUCu5W25XHehvUQLhg", + "name": "CVS Pharmacy", + "address": "259 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503413, + "longitude": -75.1453259, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "AcceptsInsurance": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "DriveThru": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Drugstores, Shopping, Convenience Stores, Food, Pharmacy, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "wopwoiKIllIzcggK7HkTmw", + "name": "The Gold Standard Cafe", + "address": "4800 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9481839, + "longitude": -75.2196691, + "stars": 3.0, + "review_count": 312, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (Traditional), American (New), Restaurants, Food, Breakfast & Brunch, Coffee & Tea", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "9:30-15:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-20:30", + "Sunday": "8:0-20:30" + } + }, + { + "business_id": "9U454aiscZzLytBdFXLMBg", + "name": "Fiesta Pizza II", + "address": "600 E Jamestown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0300466083, + "longitude": -75.2063495035, + "stars": 3.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Pizza, Italian, Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "a9zn21nVTcDkCSsqhJeRXA", + "name": "Diet Doctor, Robert Fortino, DO - Premier Weight Loss Physician", + "address": "1822 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9274496, + "longitude": -75.1693471, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BikeParking": "True", + "AcceptsInsurance": "False" + }, + "categories": "Doctors, Weight Loss Centers, Beauty & Spas, Health & Medical, Medical Spas, Medical Centers, Nutritionists", + "hours": { + "Tuesday": "14:0-18:0", + "Thursday": "14:0-18:0", + "Friday": "9:30-12:0" + } + }, + { + "business_id": "miM0Bycd3kE4QNoZ5DwXyQ", + "name": "The Animedic", + "address": "102-104 Jamestown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023263, + "longitude": -75.21917, + "stars": 4.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Veterinarians, Pet Groomers, Pets, Pet Sitting, Pet Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "yUqps9Ws3kVfkJbN61xo9A", + "name": "Liu's Garden", + "address": "1458 E Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.008503, + "longitude": -75.098647, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-11:30", + "Tuesday": "11:0-11:30", + "Wednesday": "11:0-11:30", + "Thursday": "11:0-11:30", + "Friday": "11:0-0:30", + "Saturday": "13:0-0:0" + } + }, + { + "business_id": "vKfBhC5M_OiDGdbpF5hmWA", + "name": "Philadelphia Weekly Taste of Philly", + "address": "100 East Penn Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9512944, + "longitude": -75.1619269, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Local Flavor, Food, Festivals", + "hours": null + }, + { + "business_id": "SGfnHZzhu1H5fyYOpkATHQ", + "name": "Mi Lah", + "address": "615 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409538, + "longitude": -75.1474829, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Tapas/Small Plates, Restaurants, Chinese, Vegan, Dim Sum", + "hours": null + }, + { + "business_id": "ivs4cAT5oQJp14KHxQ4xEA", + "name": "FedEx Office Print & Ship Center", + "address": "924 Chestnut St, Ste 32", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949793, + "longitude": -75.156646, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Signmaking, Notaries, Local Services, Professional Services, Shipping Centers", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "8:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "umY6N-ON6HD14vPHicFmQQ", + "name": "Fifi's Creole Cuisine", + "address": "6527 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.051621, + "longitude": -75.093309, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Haitian, Caribbean, Restaurants", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "2kXBqCeNyW3Oe9QOVUjOpA", + "name": "La Scalaโ€™s", + "address": "1701 John F Kennedy Blvd, Ste C100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545813765, + "longitude": -75.1684700822, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "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': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Salad, Italian, Restaurants, Sandwiches", + "hours": { + "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-21:0" + } + }, + { + "business_id": "LPQJ4AjGFKRRf4Uo7dt7bA", + "name": "American Red Cross Blood Services", + "address": "700 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605438, + "longitude": -75.1507073, + "stars": 2.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Medical Centers, Blood & Plasma Donation Centers", + "hours": null + }, + { + "business_id": "LkTqiNDMvuWrTLOuoikHyQ", + "name": "Saint Lazarus", + "address": "102 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9687029, + "longitude": -75.1364723, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "HappyHour": "True" + }, + "categories": "Nightlife, Restaurants, Bars, American (New), Burgers", + "hours": { + "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" + } + }, + { + "business_id": "EVBon3CYRXXhbhkrVYfDWA", + "name": "Octo Waterfront Grille", + "address": "221 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9544372, + "longitude": -75.1394443, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "WWEx8kEEjzV3mFu1dYfwAA", + "name": "Verde", + "address": "108 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950041, + "longitude": -75.1621623, + "stars": 4.0, + "review_count": 110, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Event Planning & Services, Flowers & Gifts, Chocolatiers & Shops, Cards & Stationery, Specialty Food, Home Decor, Florists, Shopping, Food, Jewelry, Home & Garden, Fashion, Accessories, Arts & Crafts", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "hvn3hDdV6wJxz4h2t1dh3g", + "name": "Evo Philly", + "address": "2930 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531904393, + "longitude": -75.1836039384, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, University Housing, Apartments, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-13:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "Xzpm5E8JeFW8QSfDowksMQ", + "name": "Fishtown Pizza Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Pizza, Food, Restaurants, Food Stands, Italian, Food Trucks", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "D4N3kguo363wDH0S1yp6uQ", + "name": "DiNapoli Pizza", + "address": "3137 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9985276338, + "longitude": -75.1292780042, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "'average'", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WiFi": "'paid'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Soup, Food Delivery Services, Pizza, Burgers, Italian, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "XraDlkcgikcaaMTJNJw2LQ", + "name": "K Louise Boutique Salon", + "address": "6072 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0331499, + "longitude": -75.2151219, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons, Blow Dry/Out Services, Hair Stylists", + "hours": { + "Wednesday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "e0M-5mblsuda0syws5R68g", + "name": "Common Wealth Old City", + "address": "319 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504125, + "longitude": -75.1463381, + "stars": 3.5, + "review_count": 221, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gastropubs, Restaurants, American (New), Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "wHkYLlZyPXllrQRlvidUlg", + "name": "Campo's Philly Cheesesteaks", + "address": "214 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497014, + "longitude": -75.1442745, + "stars": 3.5, + "review_count": 686, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "CoatCheck": "False", + "BYOB": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False" + }, + "categories": "Food, Local Flavor, Sandwiches, Restaurants, Fast Food, Delis, Cheesesteaks", + "hours": { + "Monday": "9:30-22:0", + "Tuesday": "9:30-22:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "9:30-21:0" + } + }, + { + "business_id": "3Ow4eWMRULLlF1LuczneiQ", + "name": "The 215 Guys", + "address": "151 N 3rd St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9536395, + "longitude": -75.1446532, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Professional Services, IT Services & Computer Repair, Local Services, Graphic Design, Web Design, Marketing", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "aa8dyLuupbMRyexfCRiLIQ", + "name": "Sona Pub & Kitchen", + "address": "4417 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026275, + "longitude": -75.225367, + "stars": 3.0, + "review_count": 165, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "'free'", + "RestaurantsTableService": "True", + "Smoking": "u'outdoor'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': True, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "American (New), Gastropubs, Cocktail Bars, Irish Pub, Bars, Nightlife, Restaurants, Pubs", + "hours": { + "Monday": "0:0-0:0", + "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" + } + }, + { + "business_id": "7NwFNLC0SwX1SwQYlfF5yw", + "name": "Luna Cafรฉ", + "address": "317 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504011, + "longitude": -75.1463684, + "stars": 4.0, + "review_count": 444, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BYOB": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "HappyHour": "False", + "WiFi": "'free'", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "American (Traditional), Restaurants, Sandwiches, Caterers, Breakfast & Brunch, Coffee & Tea, Cafes, Event Planning & Services, Burgers, American (New), Vegetarian, Food", + "hours": { + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "vvfXLBxn_f_02b3jDMHBpQ", + "name": "Nu Bella Nails", + "address": "2303 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9850791, + "longitude": -75.1319856, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas, Eyelash Service, Eyebrow Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "UjSyPFzZcd70c_nm3tnwtA", + "name": "Main Street Munchies", + "address": "4307 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025059, + "longitude": -75.2220627, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "YklJC4Lt2rMGfV8JfrTtuw", + "name": "Starbucks", + "address": "1455 Franklin Mills Cir, KI09", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.08728, + "longitude": -74.96154, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Bakeries, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "11:15-18:0" + } + }, + { + "business_id": "aH6h5unqZXf3IV-uKzfD7w", + "name": "A Steven's Towing", + "address": "5050 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0365328, + "longitude": -75.2374688, + "stars": 1.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Towing", + "hours": null + }, + { + "business_id": "pojLkG9I0ZJaNncNKqIEow", + "name": "TradeWinds", + "address": "8630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770647, + "longitude": -75.2087089, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hawaiian, Food, Asian Fusion, Japanese, Restaurants, Korean, Poke, Breakfast & Brunch, Seafood", + "hours": { + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "UokpxaLWQ4pKaEmlSPaClw", + "name": "Temple Physicians at Palmer Park", + "address": "1741 Frankford Ave, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9756059, + "longitude": -75.1320084, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Medical Centers, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "DRYgIg2oiGmHZiWinNgXaw", + "name": "Fluke's Bar & Grill", + "address": "7401 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0272326, + "longitude": -75.0283944, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Pubs, Nightlife, Bars", + "hours": null + }, + { + "business_id": "vSGXzJCyIG7iaa26TsC4Eg", + "name": "Oil Patch Corp", + "address": "7421 Glenmore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.914464, + "longitude": -75.2460374, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Oil Change Stations, Automotive, Heating & Air Conditioning/HVAC, Home Services", + "hours": null + }, + { + "business_id": "s42lXutnE21A5diFS9jckg", + "name": "Lisflor's", + "address": "510 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9700928, + "longitude": -75.1455311, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Permanent Makeup, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "7uCyMMWlBh5uTwnRUvQX_A", + "name": "Wiki Pokรฉ", + "address": "44 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95178, + "longitude": -75.168824, + "stars": 4.5, + "review_count": 110, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False" + }, + "categories": "Poke, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "Q0yXdKsJX513_89t5OHKKQ", + "name": "Express Shuttle", + "address": "2722 S 73rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.910959, + "longitude": -75.23831, + "stars": 2.5, + "review_count": 36, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Airport Shuttles", + "hours": null + }, + { + "business_id": "P9X2j6pq-LBki9AMB0aIpA", + "name": "Rittenhouse Square Chiropractic", + "address": "1608 Walnut St, Ste 601", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949545, + "longitude": -75.1681451, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Chiropractors, Professional Services, Massage Therapy, Health & Medical, Nutritionists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "7:0-15:0", + "Wednesday": "9:0-18:0", + "Thursday": "8:0-15:0", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "Rt-J208w2fzPit4QZhwlVA", + "name": "Quiznos", + "address": "1201 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950708, + "longitude": -75.1603219, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fast Food, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "N_zgKDHop40kPOq_9Uz0Fg", + "name": "His & Hers Restaurant & Bar", + "address": "216 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941124, + "longitude": -75.14629, + "stars": 3.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "GoodForDancing": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': None}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "None", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "American (Traditional), Turkish, Music Venues, Bars, Lounges, Arts & Entertainment, Nightlife, Pizza, Sports Bars, American (New), Italian, Hookah Bars, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "NAGWNngVeVKkMO-EFxYxdA", + "name": "Philadelphia Tattoo Arts Convention", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553311718, + "longitude": -75.160012034, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Festivals", + "hours": { + "Friday": "14:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "X93R8JpZfYlI7Mx0QddqGg", + "name": "Grand King Buffet", + "address": "40 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9207024, + "longitude": -75.1465131, + "stars": 1.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Buffets, Chinese", + "hours": null + }, + { + "business_id": "tYhrjhgG8nhejGdF_jfmSA", + "name": "The Spa", + "address": "1 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9569323, + "longitude": -75.1702705, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Day Spas, Hotels & Travel, Massage, Beauty & Spas", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "kMVP0ufvJ9ahtApq-NdPQQ", + "name": "Nonno Ugo's Italian Bakery", + "address": "6606 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0310624, + "longitude": -75.0546878, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Bakeries", + "hours": { + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "o-q9Uy3VUV_mrOBhIC48tg", + "name": "Izzy & Zoe's", + "address": "224 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533255, + "longitude": -75.2027777, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'" + }, + "categories": "Restaurants, Delis, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "weWSsq0CJ8tYFJgYdZ3jMw", + "name": "Verizon Authorized Retailer - Wireless Zone", + "address": "920 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482620963, + "longitude": -75.1569145471, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Mobile Phones, Shopping, Electronics, Home Services, Mobile Phone Accessories, Professional Services, Internet Service Providers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "1i0NDQ2VUchckortEI_GeA", + "name": "Paris Baguette", + "address": "1717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951589543, + "longitude": -75.1698958678, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Patisserie/Cake Shop, Coffee & Tea, Food, Bakeries", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "rTUHCFIW-spCQyUdwM9U_Q", + "name": "Caliber Collision", + "address": "5117 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0387612, + "longitude": -75.2389273, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Body Shops, Auto Repair", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "8:30-15:30", + "Friday": "8:30-15:30" + } + }, + { + "business_id": "PDGyduDCysMP5L__5BnYJA", + "name": "The Board & Brew", + "address": "3200 Chestnut St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534403364, + "longitude": -75.1883720979, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Nightlife, Arts & Entertainment, Restaurants, Beer Bar, American (New), Bars, Coffee & Tea, Breakfast & Brunch, Food, Sports Bars", + "hours": { + "Tuesday": "7:30-22:0", + "Wednesday": "7:30-22:0", + "Thursday": "7:30-22:0", + "Friday": "7:30-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Ny4eJViwYt10oP4bjKcFmg", + "name": "Tommy's Laundromat", + "address": "6544 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0497022, + "longitude": -75.1845195, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Laundry Services, Laundromat, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "CyKEqW5UjhPB2pMEPrUsYg", + "name": "A King's Cafe", + "address": "6053 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.04756, + "longitude": -75.1507187, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None" + }, + "categories": "Cafes, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "oaL4PHfTpe71IDvGw4AhcA", + "name": "Rittenhouse Acupuncture", + "address": "1601 Walnut St, Ste 1326", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Acupuncture, Traditional Chinese Medicine, Health & Medical", + "hours": null + }, + { + "business_id": "kVTHnhgYUw-Pmr7wgDB4_g", + "name": "Distrito", + "address": "3945 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558813, + "longitude": -75.2020031, + "stars": 3.5, + "review_count": 1077, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "DogsAllowed": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants, Nightlife, Cocktail Bars, Bars", + "hours": { + "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" + } + }, + { + "business_id": "gvSl1B8macJk9y9Y0xN2Qg", + "name": "Phila Taxi Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8851561249, + "longitude": -75.2489578351, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Taxis, Hotels & Travel, Airport Shuttles, Transportation, Town Car Service", + "hours": { + "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" + } + }, + { + "business_id": "vMmWKCwoGsFnmDTot4K3Ag", + "name": "Moffin's Steak", + "address": "1307 W Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0061024, + "longitude": -75.1502741, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Cheesesteaks, Restaurants", + "hours": { + "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-19:0" + } + }, + { + "business_id": "Z1Dr-V0YyAupniwGSQ1n3w", + "name": "Robert Lance Jewelers", + "address": "803 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948987, + "longitude": -75.154317, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Watches, Jewelry, Local Services, Jewelry Repair, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-16:30", + "Wednesday": "10:30-16:30", + "Thursday": "10:30-16:30", + "Friday": "10:30-16:30", + "Saturday": "10:30-15:30" + } + }, + { + "business_id": "2oqMGiiziE6qtvgqOb_PUg", + "name": "George Baker Flowers", + "address": "1607 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482517, + "longitude": -75.1682071, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Shopping, Flowers & Gifts", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "Y0Z13K5KquO0OT3TEuLmVQ", + "name": "Crab House 5706", + "address": "5706 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358783, + "longitude": -75.1753091, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "NoiseLevel": "'very_loud'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsTakeOut": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Bars, Nightlife, Seafood, Restaurants, Lounges", + "hours": null + }, + { + "business_id": "Ay0j65KKb3sOrOFUVWs44g", + "name": "Dolce & Caffรจ", + "address": "708 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9622145, + "longitude": -75.1413898, + "stars": 4.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForMeal": "{u'breakfast': True, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': True}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Cafes, Cafeteria, Restaurants, Italian, Gelato, Food", + "hours": { + "Monday": "7:15-20:0", + "Tuesday": "7:15-20:0", + "Wednesday": "7:15-20:0", + "Thursday": "7:15-20:0", + "Friday": "7:15-22:30", + "Saturday": "7:15-22:30", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "Z7IyPy4sBA-754VzvNNcTg", + "name": "Rite Aid", + "address": "5911-5933 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.030833, + "longitude": -75.211315, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Health & Medical, Drugstores, Food, Convenience Stores, Shopping, Photography Stores & Services", + "hours": { + "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" + } + }, + { + "business_id": "9E-niGRtxsbA0xiTHfsKIw", + "name": "Jezabel's Studio", + "address": "208 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548441186, + "longitude": -75.2117576078, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Argentine, Kitchen & Bath, Food, Coffee & Tea, Home & Garden, Empanadas, Cooking Classes, Education, Cooking Schools, Specialty Schools, Restaurants, Shopping, Arts & Crafts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "J5KCZj4soXXiMceLe-FJvw", + "name": "Latitudes and Longitudes", + "address": "4325 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025373, + "longitude": -75.222806, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Toy Stores, Accessories, Hobby Shops, Shopping, Fashion, Gift Shops, Arts & Crafts, Art Supplies, Flowers & Gifts, Jewelry, Luggage, Event Planning & Services, Cards & Stationery", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "-5jh7Rgm_jP2SclLrZG80A", + "name": "CeCe Boutique - Suburban Station", + "address": "16TH St And Jfk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9537998945, + "longitude": -75.1664829254, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "uflDYdHGrCawgr1JSQ7Ypw", + "name": "HubBub Coffee", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9554088, + "longitude": -75.1690352, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False" + }, + "categories": "Internet Cafes, Restaurants, Event Planning & Services, Cafes, Coffee & Tea, Food, Caterers", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0" + } + }, + { + "business_id": "djGSPb8zwOZ-Cl-DFDubsg", + "name": "Wendy's", + "address": "2100 Red Lion Road", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0965914, + "longitude": -75.018011, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BikeParking": "False", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "Caters": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "rOdN7PFexB8MNqQDmCKQAA", + "name": "Sulimayโ€™s Salon & Barber Studio", + "address": "2333 Fairmount Ave, Ste C-102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967603, + "longitude": -75.176519, + "stars": 4.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': False, 'asian': False}", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "Q_BBW768Hye7hUGeyXNh_w", + "name": "Edward M Segal, DDS", + "address": "6508 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0382938, + "longitude": -75.2232474, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Oral Surgeons, Dentists, General Dentistry, Health & Medical", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "FjtPoVSq3ek3G40C8npFNQ", + "name": "Perfect Ten Nail Salon", + "address": "5732 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0408672, + "longitude": -75.1446087, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "wxhQRBdPwthi4ZiazMXEwg", + "name": "Metal Menagerie", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Art Galleries, Shopping, Arts & Entertainment", + "hours": null + }, + { + "business_id": "z_v1HmY1OH_SFmJxQWVyeA", + "name": "University of the Arts", + "address": "320 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9460081, + "longitude": -75.1655701, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Art Schools, Colleges & Universities, Specialty Schools, Education", + "hours": null + }, + { + "business_id": "g_qmBN6Ta_qQLLotb02EJQ", + "name": "Ben Franklin Parkway", + "address": "323 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9604349, + "longitude": -75.173306, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Stadiums & Arenas, Cultural Center", + "hours": null + }, + { + "business_id": "J5CxTCM9nL_s-qYByTiNgw", + "name": "McDonald's", + "address": "1601 Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9239862957, + "longitude": -75.1425339189, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Fast Food, Burgers, Food, Restaurants", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "l2OaoGE9USD7oNZbI28u3Q", + "name": "City Fitness - East Market", + "address": "11 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513081734, + "longitude": -75.159848083, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-1:0", + "Wednesday": "5:0-1:0", + "Thursday": "5:0-12:0", + "Friday": "5:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "Lm87sW-GlrPwRusYvI2V5w", + "name": "Muttropolitan Pet Sitting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Pet Groomers, Dog Walkers, Pet Services, House Sitters, Pet Sitting, Pets", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "__Ld2XsuPMHjo5uzLF0sXQ", + "name": "Hand & Stone Massage and Facial Spa", + "address": "2500 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0783696766, + "longitude": -75.0255157214, + "stars": 3.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "True" + }, + "categories": "Massage, Beauty & Spas, Day Spas, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "BiMzwRR4rAmACrjAJCM7Dw", + "name": "Bustleton Bikes", + "address": "9261 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07494, + "longitude": -75.031304, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Sporting Goods, Shopping, Active Life, Bikes, Bike Rentals", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "YzluF3FNGjnW-tOrLZt8JA", + "name": "Zama", + "address": "128 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509073, + "longitude": -75.1723929, + "stars": 3.5, + "review_count": 566, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "OTNPMzKPb8LVQxX3fXJaqw", + "name": "Uncle Oogie's", + "address": "2119 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9189548, + "longitude": -75.1835926, + "stars": 3.0, + "review_count": 116, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BYOB": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pizza, Food, Restaurants, Sandwiches, Burgers", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "qgwz0S9BwI8NQx4LZjVqqQ", + "name": "The Philadelphia Print Shop", + "address": "8441 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0760982, + "longitude": -75.2061185, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Antiques, Arts & Entertainment, Art Galleries", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "TaqnX_zA2mVthoG0tczc7A", + "name": "Old Nelson Food Company", + "address": "3020 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549142812, + "longitude": -75.1846790314, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Delis, Food, Grocery, Restaurants", + "hours": null + }, + { + "business_id": "yy0n5-SHXZWgK8sy_0dHpA", + "name": "Nanee's Kitchen", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953162, + "longitude": -75.1591, + "stars": 2.5, + "review_count": 122, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Indian, Restaurants, Pakistani", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Vvd12n0sYII8rUgPhq-XNA", + "name": "Pete's BBQ Breakfast & Deli", + "address": "6783 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0548739816, + "longitude": -75.1260549948, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Barbeque, Korean, Breakfast & Brunch, Restaurants", + "hours": { + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "4xqsvnZtjE7FgIMvSXrviw", + "name": "Scoop DeVille", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949861, + "longitude": -75.148506, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "HappyHour": "True", + "HasTV": "False" + }, + "categories": "Food, Restaurants, Sandwiches, Ice Cream & Frozen Yogurt, Desserts, Bakeries, Patisserie/Cake Shop", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "nQdZcs55Z_dBncSjZ421cw", + "name": "The Republican", + "address": "1734 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9249712, + "longitude": -75.1757992, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Bars, Lounges, Adult Entertainment, Nightlife, Dive Bars", + "hours": null + }, + { + "business_id": "LF6tcrjx-aDTeMeoCCoLqA", + "name": "Nancy's Le Nails", + "address": "4016 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570922, + "longitude": -75.2027107, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal", + "hours": null + }, + { + "business_id": "UtWJ6ULL3Pw9B9LXw4uSNQ", + "name": "One Liberty Observation Deck", + "address": "1650 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952659, + "longitude": -75.1680966, + "stars": 4.0, + "review_count": 160, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Local Flavor, Venues & Event Spaces, Event Planning & Services, Public Services & Government, Landmarks & Historical Buildings, Tours, Hotels & Travel, Arts & Entertainment, Observatories", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "BiPEA4tJ62VbrrV29YrrHg", + "name": "Trinity Playgroup", + "address": "2212 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9483901, + "longitude": -75.1783519, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Child Care & Day Care, Local Services", + "hours": null + }, + { + "business_id": "-F04D8Q5oACUCW_zEMkS1A", + "name": "The Giving Tree Daycare+ Preschool", + "address": "232 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9587456535, + "longitude": -75.1758066308, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Preschools, Child Care & Day Care, Local Services, Education", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "AVCsL26Asb5vsPnACWvkqg", + "name": "Parker Pub", + "address": "6800 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.042346, + "longitude": -75.226547, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Pubs", + "hours": null + }, + { + "business_id": "DpHiXRM3cxC9c2i4idYw0g", + "name": "SoBol Rittenhouse", + "address": "46 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517605, + "longitude": -75.1688792, + "stars": 4.0, + "review_count": 143, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'" + }, + "categories": "Empanadas, Specialty Food, Fruits & Veggies, Acai Bowls, Food, Cafes, Juice Bars & Smoothies, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "-YTipfQ0Yj0iF7m921rhmQ", + "name": "Foose Grill", + "address": "5143 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948015, + "longitude": -75.227058, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False" + }, + "categories": "American (Traditional), Seafood, Restaurants, Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "dJKg1uEIE7cst91x8F_PSw", + "name": "The Green Line Cafe", + "address": "4426 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953957, + "longitude": -75.211638, + "stars": 3.0, + "review_count": 127, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForDancing": "False", + "GoodForKids": "True" + }, + "categories": "Food, Nightlife, Restaurants, Arts & Entertainment, Coffee & Tea, Music Venues", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "mrTvfpe18Y2fw-gI9phJXw", + "name": "CPR Restoration & Cleaning Services", + "address": "8421 Hegerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.039453, + "longitude": -75.013127, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Home Services, Damage Restoration", + "hours": { + "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" + } + }, + { + "business_id": "j_bRSKJ41GD2nP8O-9I7gA", + "name": "World Gym", + "address": "11000 Roosevelt Blvd, Ste 190", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1008333, + "longitude": -75.0101235, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Trainers", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-22:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "VQhU-E5-EbW4rfMs5QKANQ", + "name": "Charlie Salon", + "address": "203 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484753, + "longitude": -75.160398, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Skin Care, Nail Salons", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "6w6wDhgTzteP1tCBvK6fnw", + "name": "Loie", + "address": "128 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950897, + "longitude": -75.1724, + "stars": 2.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Lounges, Nightlife, Bars, Restaurants", + "hours": null + }, + { + "business_id": "PRGH_6VxMfCyp3UmKiTEHg", + "name": "Penn Ob/Gyn", + "address": "800 Walnut St, 12th and 15th Floor, Penn Medicine Washington Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948322, + "longitude": -75.155286, + "stars": 2.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Obstetricians & Gynecologists, Doctors", + "hours": null + }, + { + "business_id": "Tz10h4z2J6j2V9gD2fgGKA", + "name": "La Casa Di Lucias", + "address": "14425 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.132395, + "longitude": -75.0108678, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "Caters": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Ethnic Food, Italian, Food, Specialty Food, Pizza, Event Planning & Services, Caterers, Bars, Nightlife", + "hours": { + "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": "13:0-20:0" + } + }, + { + "business_id": "U4hfGoAStyAAIe7iu6aHuA", + "name": "Coach", + "address": "1703 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950218, + "longitude": -75.169257, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shopping, Leather Goods, Accessories", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "gL1ilbKIQ9Bxtuw3n0xLgQ", + "name": "CVS", + "address": "401SPRING Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961306, + "longitude": -75.145356, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Health & Medical, Drugstores, Convenience Stores, Food, Pharmacy, Shopping", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "wd1AqgQQdeoMCMEwvvs4ow", + "name": "House of Tea", + "address": "720 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400661, + "longitude": -75.149639, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "BDUwup1sk3E28DcKB5NPMA", + "name": "New Olympia House", + "address": "7242 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0507833, + "longitude": -75.066764, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "NoiseLevel": "'average'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'beer_and_wine'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "American (Traditional), Seafood, Restaurants", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "xWWozjUBzKNeV4Q2CHcJFQ", + "name": "Salon Ambiance", + "address": "848 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.103257, + "longitude": -75.030479, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "11:0-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "-0eUa8TsXFFy0FCxHYmrjg", + "name": "Waterfront Gourmet Cafe & Deli", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524461, + "longitude": -75.1873206, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "WiFi": "u'free'" + }, + "categories": "Caterers, Sandwiches, Delis, Restaurants, Cafes, Event Planning & Services", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "JMm_VEivWfEcf3TsRKfplw", + "name": "Italian Market Festival", + "address": "919 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9380597492, + "longitude": -75.1580760912, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "OBFlSgQzl4XnewQvrquQCw", + "name": "iOptik", + "address": "8354 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.069431, + "longitude": -75.051639, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyewear & Opticians, Shopping, Health & Medical, Optometrists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "TYylLv7GZ46PIiuum_G0gA", + "name": "Classic Pizza Shop", + "address": "1532 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.07955, + "longitude": -75.173096, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "tukxgoQNUKql3gYy39yZ9A", + "name": "Dirty Deedz Cleaning Crew", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "CLIsXugvRCV-h_Suc-xN2g", + "name": "The Flower Cafe At Linda's", + "address": "48 W Maplewood Mall", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0340278, + "longitude": -75.1750241, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Vegetarian, Food, Restaurants, Coffee & Tea, Cafes", + "hours": { + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-19:0" + } + }, + { + "business_id": "AwJRVQ4tmQFWNqQL9pXQgw", + "name": "Tai's Vietnamese Food", + "address": "1835 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9809158, + "longitude": -75.153284, + "stars": 4.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Food Stands, Restaurants, Vietnamese", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0" + } + }, + { + "business_id": "L0zMk5SXnqR0JLEe0XY20g", + "name": "Sassafras Bar", + "address": "48 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948832, + "longitude": -75.144063, + "stars": 4.5, + "review_count": 352, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "DogsAllowed": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DriveThru": "False", + "CoatCheck": "False", + "Caters": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Nightlife, Sandwiches, American (New), Restaurants, Bars, Local Flavor", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "jYi4Gy91Mmhq7WzGcb3zLQ", + "name": "Yunique Pizza", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541164, + "longitude": -75.1667929, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "cwgBOJDY6ssBrGsLNro1sw", + "name": "University City Beverage", + "address": "4300 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546846, + "longitude": -75.2089563, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "l8gAoQqqVfphPe9jmIJZ3g", + "name": "K-POT Korean BBQ & Hot Pot", + "address": "789 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0924685, + "longitude": -74.9629393, + "stars": 4.5, + "review_count": 349, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BYOB": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BikeParking": "True", + "Corkage": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': True, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Korean, Barbeque, Hot Pot, Restaurants", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "hXJRcg9lAOZTxUJnroo8CQ", + "name": "Design Builders Associates", + "address": "4231 E Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0198632, + "longitude": -75.0669253, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Home Services", + "hours": null + }, + { + "business_id": "hXL6oSqDFIp8DWQzR35QKQ", + "name": "Dunkin'", + "address": "7300 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0618034, + "longitude": -75.0840422, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "4:30-21:0", + "Tuesday": "4:30-21:0", + "Wednesday": "4:30-21:0", + "Thursday": "4:30-21:0", + "Friday": "4:30-21:0", + "Saturday": "4:30-21:0", + "Sunday": "4:30-21:0" + } + }, + { + "business_id": "TZtgKWH9dNRc8aP7D1IBIg", + "name": "Bubbles Salon", + "address": "1605 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499096, + "longitude": -75.1677973, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "v4GEm31U0iNmz7VrJiYirA", + "name": "Szechuan Tasty House", + "address": "902 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953175, + "longitude": -75.154942, + "stars": 3.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "IccxkISZzU6zycUBCKRflQ", + "name": "Follicle", + "address": "741 South 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9392462, + "longitude": -75.1495444, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Yw-kPf-QH1uxpXdjmbFRgw", + "name": "Fountain Street Auto Service", + "address": "6501 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0384559, + "longitude": -75.222678, + "stars": 4.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Tires, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "53KCCiwnJxAiOcjCPUi5nA", + "name": "Reanimator Coffee", + "address": "4705 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9524458, + "longitude": -75.2166523, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Food, Cafes, Restaurants, Coffee & Tea, Coffee Roasteries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "6RGvVa32Tyf-n0QhXM3Tvw", + "name": "Hipstr Photo Booth", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Photo Booth Rentals, Photographers, Event Photography", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "rKbTMJ7RMi06I2cW18toog", + "name": "Street Tails Animal Rescue", + "address": "1030 N 2nd St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671055, + "longitude": -75.1402219, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False" + }, + "categories": "Pet Stores, Local Services, Animal Shelters, Pets, Pet Adoption, Community Service/Non-Profit", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "GWqPmrWu0kXB_-gB1H-j6A", + "name": "Love & Honey Fried Chicken", + "address": "1100 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674815, + "longitude": -75.136957, + "stars": 4.5, + "review_count": 409, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HasTV": "False", + "Caters": "False", + "BYOB": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Chicken Shop, Chicken Wings, Sandwiches, Comfort Food, American (Traditional), Soul Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "gMF0RF2yGneeQez5IKOFIg", + "name": "Northeast Fence & Iron Works", + "address": "8451 Hegerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0393057, + "longitude": -75.0126479, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Home Services, Fences & Gates, Metal Fabricators, Local Services, Decks & Railing, Powder Coating", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:30", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30" + } + }, + { + "business_id": "dwOsLnuXq2RthkEN9m3lAw", + "name": "Biedermanโ€™s Specialty Foods", + "address": "824 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385929724, + "longitude": -75.1571558788, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Food, Specialty Food", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "7kgF1JYwZQMUrHpBsULC2g", + "name": "The Best House Pizzeria", + "address": "4301 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9497247, + "longitude": -75.209374, + "stars": 2.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'beer_and_wine'", + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "Corkage": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "8:0-1:0", + "Tuesday": "8:0-1:0", + "Wednesday": "8:0-1:0", + "Thursday": "8:0-1:0", + "Friday": "8:0-2:0", + "Saturday": "8:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "ZkLdxMHuzp9_LGPoiQ4dVA", + "name": "Hesh's Eclair Bake Shoppe", + "address": "7721 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057472, + "longitude": -75.059678, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Bakeries, Food", + "hours": { + "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-15:0" + } + }, + { + "business_id": "ItxBRdovLG1Wl67DOr8_3A", + "name": "Bella Bridesmaids", + "address": "30 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94911, + "longitude": -75.145291, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Bridal, Women's Clothing, Formal Wear, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "IXRSMV7U5D0sYJvArEbm5g", + "name": "Finn McCool's Ale House", + "address": "118 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949742, + "longitude": -75.160578, + "stars": 3.5, + "review_count": 163, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "HasTV": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Caters": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sports Bars, Pubs, Nightlife, Bars, Burgers, Sandwiches, American (Traditional), Dive Bars, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "MtZ4qZwhgD4gidKWWBzKTw", + "name": "Thomas Edison Electric", + "address": "1735 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Electricians", + "hours": { + "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" + } + }, + { + "business_id": "z22MXGNyk8L2rOp0213cWA", + "name": "Crowne Plaza Philadelphia West", + "address": "4010 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0069005941, + "longitude": -75.2109080648, + "stars": 2.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Hotels, Venues & Event Spaces, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "p_g_AjXjRGXN_IyGAzuIMg", + "name": "Hello Donuts + Coffee", + "address": "2557 Amber St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9844875, + "longitude": -75.1244597, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False" + }, + "categories": "Coffee & Tea, Restaurants, Breakfast & Brunch, Food, Donuts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "7_KgorPRx5l0oqhkwm_X1Q", + "name": "Top Banana USA Printing", + "address": "1308 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9301392, + "longitude": -75.1669303, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Screen Printing/T-Shirt Printing, Screen Printing", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-12:15" + } + }, + { + "business_id": "h2Ap7CLb2cjM-cw-fEA5tg", + "name": "Diamante Pizzaria", + "address": "4937 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0286286, + "longitude": -75.1466371, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "QciEf6I9aZ2_awkPNGwwkg", + "name": "Bella Trattoria", + "address": "4258 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024636, + "longitude": -75.222067, + "stars": 3.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "tpS5qq7iSJLKD38pM02lZA", + "name": "All City Taxi", + "address": "2024 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9244258, + "longitude": -75.1660812, + "stars": 2.0, + "review_count": 114, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Airport Shuttles, Taxis, Transportation", + "hours": null + }, + { + "business_id": "Dj6KszfL_CKhf-kMTC4-8g", + "name": "Sutra Healing Arts", + "address": "1100 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9448041176, + "longitude": -75.1599431497, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage Therapy, Beauty & Spas, Massage, Health & Medical", + "hours": { + "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-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "g0UI4VuBBTvNow0-HW58sA", + "name": "Good Spoon Soupery", + "address": "1400 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9720325, + "longitude": -75.1354214, + "stars": 4.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "ByAppointmentOnly": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Soup, Restaurants", + "hours": { + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "ONJBEPNFUv_uTglJOT8ctw", + "name": "Libertรฉ Lounge", + "address": "120 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950802, + "longitude": -75.1690105, + "stars": 3.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsAttire": "u'dressy'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "Smoking": "u'no'", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Food, Nightlife, Lounges, French, Bars", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "RLo_f0nD_Ew5KAQtVMcs2g", + "name": "Hip Philly", + "address": "1050 N Hancock St, Ste 79", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966848, + "longitude": -75.13922, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party Equipment Rentals, Event Planning & Services, Venues & Event Spaces, DJs", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "14:0-19:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "14:0-19:0" + } + }, + { + "business_id": "AOaCT7MBizYN09RnP0FYtg", + "name": "What's In This?", + "address": "299 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.945082, + "longitude": -75.141081, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "WiFi": "u'no'" + }, + "categories": "Polish, Restaurants, Food Trucks, Food, Street Vendors", + "hours": null + }, + { + "business_id": "w3dtTa8Xfmvo01xMu4Kxrg", + "name": "Trinidad Flat Fix", + "address": "2778 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9888953, + "longitude": -75.120481, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Tires, Automotive", + "hours": null + }, + { + "business_id": "SrMiiB-Y6osUezq9s5nnYw", + "name": "Auntie Anne's", + "address": "8500 Essington Ave, Ste B2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8760588, + "longitude": -75.2429838, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Fast Food, Food, Pretzels, Bakeries, Restaurants", + "hours": null + }, + { + "business_id": "924EISziV0FYIfxHnwGRyw", + "name": "Midas", + "address": "147 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0327869, + "longitude": -75.1783238779, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Automotive, Oil Change Stations", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "TFJPJghh45WawJ4ifA7CHQ", + "name": "Bambi Cleaners", + "address": "2439 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9194923, + "longitude": -75.1704529, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry, Sewing & Alterations", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "RsV2OtsZhoGcL1hDQ80ebQ", + "name": "Enterprise Rent-A-Car", + "address": "7001 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9010336821, + "longitude": -75.2269565463, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "NtO3fvhW6t9NZHG2hi9XhQ", + "name": "Fluid", + "address": "613 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411828, + "longitude": -75.1491621, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Nightlife, Dance Clubs", + "hours": null + }, + { + "business_id": "NleyQDY_jSxaNd114DFp4w", + "name": "Ron's Auto Repair", + "address": "1028 Cantrell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9230758, + "longitude": -75.163931, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "92LMum1uJoTi8l7p9rM_-w", + "name": "Victor Optical", + "address": "9863 Bustleton Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.092165, + "longitude": -75.031121, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Shopping, Eyewear & Opticians", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-15:0" + } + }, + { + "business_id": "sSxMbFH642HAM-NKCfBwGg", + "name": "On & Sons Seafood", + "address": "100 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.035085, + "longitude": -75.121695, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False" + }, + "categories": "Food, Seafood, Restaurants", + "hours": { + "Monday": "10:30-19:30", + "Tuesday": "10:30-19:30", + "Wednesday": "10:30-19:30", + "Thursday": "10:30-19:30", + "Friday": "10:30-20:30", + "Saturday": "10:30-20:30" + } + }, + { + "business_id": "RTsCMl4ifmjMzfGQg2d2pw", + "name": "Belgrade Deli", + "address": "339 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9732135557, + "longitude": -75.1322399904, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "HasTV": "True" + }, + "categories": "Convenience Stores, Grocery, Food, Restaurants, Sandwiches, Delis", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "yjXSQDwuI49poc3MA7AGdw", + "name": "Starbucks", + "address": "1201 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949001, + "longitude": -75.160647, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-20:30" + } + }, + { + "business_id": "LHNszxnsUkoZGrG0OxGsvg", + "name": "Testa & Pagnanelli", + "address": "1500 Jfk Blvd, Ste 1020", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9532012939, + "longitude": -75.1660690308, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Lawyers, Divorce & Family Law, Estate Planning Law", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "p1Y_oc_E32JfTN-ukqOU0Q", + "name": "Pizza Fresca by Lamberti", + "address": "703 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495434216, + "longitude": -75.152518, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "HasTV": "True", + "Caters": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Hawaiian, Italian, Restaurants, Pizza", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-17:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-22:0", + "Saturday": "11:0-22:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "qiWuEwOfZDhad1kdyCDAIA", + "name": "Community", + "address": "1200 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9375696, + "longitude": -75.17882, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Gastropubs, Pubs, Bars, Nightlife, Restaurants, American (New)", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "vZM0-WmQsr51tOoKAcOBFQ", + "name": "Popeyes Louisiana Kitchen", + "address": "5601 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9804117, + "longitude": -75.2340528, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False" + }, + "categories": "American (Traditional), Restaurants, Fast Food, Chicken Wings", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "2-8Z_qXHueAy2AgLNknEdA", + "name": "Lafayette Bistro", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963408, + "longitude": -75.146798, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Greek, Restaurants, Mediterranean", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "G-UGbGmZDM6jp_hWutqU5w", + "name": "La Rosas Cafeteria y Panaderia", + "address": "1712 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927561, + "longitude": -75.158995, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Bakeries, Food", + "hours": null + }, + { + "business_id": "sBJ6be1Oq4hxN_KKXDHmqA", + "name": "All Women Painting", + "address": "814 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9381252, + "longitude": -75.151742, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Painters, Drywall Installation & Repair, Home Services, Contractors, Professional Services, Waterproofing", + "hours": { + "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" + } + }, + { + "business_id": "ebPISCtao1kgMf31qkQzhw", + "name": "Philly Gainz", + "address": "6186 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0352732, + "longitude": -75.2174984, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Vitamins & Supplements", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "10:0-19:0", + "Wednesday": "11:0-20:0", + "Thursday": "10:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "BKdHppZ3APxm4fGiVcEdnQ", + "name": "King Eye Associates", + "address": "7252 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0353649, + "longitude": -75.0441503, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyewear & Opticians, Optometrists, Shopping, Health & Medical", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "jjbv4zbAoXoLQ80EdYmc1A", + "name": "Nail Lounge", + "address": "3981 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9995608, + "longitude": -75.209305, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "8HKdxS3a7a6y5X31GKoD0w", + "name": "Boris Sereda Jewelers", + "address": "128 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484336, + "longitude": -75.1526683, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Jewelry", + "hours": null + }, + { + "business_id": "vBXhE9sSxwSXnst_k_IntQ", + "name": "Shannon Winter", + "address": "226 Bainbridge St, Ste A, ShannonWinter Sirchie", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403282, + "longitude": -75.1470475, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Active Life, Counseling & Mental Health, Estheticians, Skin Care, Yoga, Life Coach, Beauty & Spas, Makeup Artists, Eyelash Service, Professional Services, Health & Medical, Medical Spas, Nutritionists, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "6bmVsTncY7MzLlbraU4aTg", + "name": "Hibachi Japanese Steakhouse & Sushi Bar", + "address": "325 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9570111, + "longitude": -75.1374815, + "stars": 2.5, + "review_count": 169, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Japanese, Restaurants", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-23:0", + "Saturday": "15:30-23:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "5tRxcP-pDVeZtcDU-FkQ9A", + "name": "Brown Street Pub", + "address": "795 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.969793, + "longitude": -75.176231, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Restaurants, Arts & Entertainment, American (Traditional), Bars, Shopping, Art Galleries, Pubs", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "Fay6yoOC6iitEt3QLkrcMQ", + "name": "Trios Fresh Italian", + "address": "342 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9698199, + "longitude": -75.1426312, + "stars": 3.5, + "review_count": 217, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Pizza, Food, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "mdiPHpJ9q6YcVjyIycvNaw", + "name": "Chestnut Hill College", + "address": "9601 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.085258, + "longitude": -75.228972, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Colleges & Universities, Education", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "4UN9D13O5tL0kWHxV4PNnQ", + "name": "Chef's Table Catering", + "address": "2900 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387267, + "longitude": -75.1923844, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Wedding Planning, Event Planning & Services, Caterers, Food, Food Delivery Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "wlXbnp783kdjgY9hXOdYEg", + "name": "iRepair4U", + "address": "2134 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923545, + "longitude": -75.170227, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Mobile Phone Repair, Electronics Repair, Local Services, IT Services & Computer Repair, Shopping, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "papbVEKch3cma_aN1KuopA", + "name": "Vibrant Coffee Roasters & Bakery", + "address": "222 W Rittenhouse Sq, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9491838372, + "longitude": -75.1733604446, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bakeries, Coffee Roasteries, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "6iywxcUAfylQhoR3-3q3ag", + "name": "Buzz Duzz", + "address": "4721 Van Kirk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0157431, + "longitude": -75.0610006, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Plumbing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "rOZbHxErnT_BRanPVYWJ_Q", + "name": "McNally's Tavern - Mayfair", + "address": "3300 Brighton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0357473, + "longitude": -75.0492389, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "American (Traditional), Nightlife, Pubs, Restaurants, Bars", + "hours": null + }, + { + "business_id": "GtbN0AYvJvRLa9GLV6x7Xw", + "name": "Manila Bay Bar & Grill", + "address": "6724 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.044089, + "longitude": -75.073384, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Bars, Restaurants, Filipino, Nightlife", + "hours": null + }, + { + "business_id": "Udzz7HMuk1GSLjeRAD109g", + "name": "Super Fratelli's Pizza", + "address": "7732 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0339538, + "longitude": -75.0281926, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "-HewctWQ0P3HqKCr76bU-g", + "name": "Dawson Street Pub", + "address": "100 Dawson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.018561, + "longitude": -75.2127855, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "HasTV": "True" + }, + "categories": "Nightlife, Pubs, Bars, Gastropubs, Restaurants", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "HCIMrCc5OBJyTwicV_7GQw", + "name": "Devil's Pocket Food & Spirits", + "address": "2425 Greys Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9428187, + "longitude": -75.1832428, + "stars": 4.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "Smoking": "u'no'", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "GoodForDancing": "False", + "Caters": "False", + "HasTV": "True", + "GoodForKids": "False", + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Diners, Bars, Restaurants, Pubs, American (New), Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "PEe6UidOMrc5FOvwY1n-Ew", + "name": "Pampered Nail Bar", + "address": "4446 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0137163477, + "longitude": -75.0868538395, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "axAp1wD2widcGW1rrD3mkA", + "name": "Prestige Auto Sales", + "address": "3970 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0283957, + "longitude": -75.1105041, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Automotive, Car Buyers, Car Dealers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "WHZCdHWAn50Xd5W8rxtklA", + "name": "Haunt", + "address": "1123 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948987982, + "longitude": -75.1600788161, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Pop-Up Restaurants, Restaurants, Nightlife, Bars", + "hours": null + }, + { + "business_id": "l4MAy7LGeyVWm_GeFSx3cw", + "name": "Pennsylvania Optometrics", + "address": "3600 Market St, Ste G-02", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558177, + "longitude": -75.1945728, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyewear & Opticians, Health & Medical, Optometrists, Shopping", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "cJH8u7KkuObO9m2Db-UfbQ", + "name": "Zoll Albert Textiles", + "address": "744 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393539, + "longitude": -75.1498453, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fabric Stores, Shopping, Arts & Crafts", + "hours": null + }, + { + "business_id": "3yl_F1v1FU-l7gDvJn30nw", + "name": "Lil' Pop Shop", + "address": "534 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418018, + "longitude": -75.1491551, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "b7CPijwM3X_0-OGXjQHN7A", + "name": "Top Notch Affordable Movers", + "address": "84 E Seymour St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0306726, + "longitude": -75.1621181, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Movers, Junk Removal & Hauling, Home Services, Professional Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "L2B9nMEFanEbWhkCLDtR_w", + "name": "Made In Philadelphia Holiday Market", + "address": "1 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9524886, + "longitude": -75.1651258, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Gift Shops, Flowers & Gifts, Home & Garden, Holiday Decorations, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "Wjp1mRAlzjpe8LdAsIbqzg", + "name": "Salsa On the Square", + "address": "2126 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9854331, + "longitude": -75.1212328, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "HappyHour": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "Nightlife, Sports Bars, Dance Clubs, Bars", + "hours": { + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "wVuY_KHHmKsXKIkZeiqIFg", + "name": "Dental Arts of Logan Square", + "address": "2 Franklin Town Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9569433, + "longitude": -75.1673414, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "r31Y2oLzaYYk30KkCub-6g", + "name": "Green Aisle Grocery", + "address": "2241 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450103176, + "longitude": -75.1800948941, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Food, Grocery, Specialty Food", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "VP8HMhVt-pKmqGNmDW4-TQ", + "name": "Nom Wah Philadelphia", + "address": "218 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956593, + "longitude": -75.160772, + "stars": 4.0, + "review_count": 414, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "Smoking": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "CoatCheck": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "None", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Desserts, Bars, Food, Coffee & Tea, Nightlife, Dim Sum, Restaurants, Cocktail Bars, Cantonese, Chinese", + "hours": { + "Monday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "g16aFG2n7xJtFzy1KpPjZA", + "name": "Plaza Pizza At Temple University", + "address": "1614 Cecil B. Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9789958465, + "longitude": -75.1617178816, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HappyHour": "False", + "WheelchairAccessible": "True" + }, + "categories": "Pizza, Wraps, Food, Breakfast & Brunch, Restaurants, Sandwiches, Chicken Wings, Cheesesteaks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-22:30", + "Wednesday": "10:0-22:30", + "Thursday": "10:0-22:30", + "Friday": "10:0-22:30", + "Saturday": "10:0-22:30", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "moCsUKON8hda7f8rnRXHLA", + "name": "Lloyd's Collision Service", + "address": "901 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0788086, + "longitude": -75.1826729, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "4zEqYybRD1FQssLGaJnNZA", + "name": "The Blockley", + "address": "3801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955636, + "longitude": -75.198965, + "stars": 3.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Nightlife, Gastropubs, Music Venues, Arts & Entertainment", + "hours": { + "Monday": "20:0-2:0", + "Tuesday": "20:0-2:0", + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "E1eGmRqgJ65Dby-BN5Gg_g", + "name": "Danny's Wok", + "address": "5675 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.038394, + "longitude": -75.119522, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "GoodForMeal": "None", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "None", + "HasTV": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Asian Fusion, Chinese, American (Traditional), American (New)", + "hours": { + "Monday": "11:0-23: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:30-22:0" + } + }, + { + "business_id": "HYjvyOUbkrF8z9MgII3K0g", + "name": "Keenan Auto Body, an ABRA company", + "address": "4436 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.958022, + "longitude": -75.210905, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Glass Services, Automotive, Body Shops, Windshield Installation & Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "Qnw-UjirboPsLIu9LcH-Yg", + "name": "The Level Room", + "address": "2102 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953616, + "longitude": -75.1753294, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Music Venues, Bars, Nightlife, Arts & Entertainment, Dance Clubs, Lounges", + "hours": null + }, + { + "business_id": "JT1hfGTlsb9Hht8O-0-5wg", + "name": "One Day Bath", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Painters, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "BV9qbgExWLPT2j-_w5zoNA", + "name": "Yummy Diner", + "address": "34 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9611001, + "longitude": -75.2248974, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "GI1uHsf8VOIJRO10GV4dpg", + "name": "Eddie's Auto Repairs", + "address": "1209 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9265706, + "longitude": -75.1661437, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "3eJMsl41qwhcYlvoTF1ElQ", + "name": "a.kitchen", + "address": "135 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950323, + "longitude": -75.170538, + "stars": 3.5, + "review_count": 441, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForKids": "False" + }, + "categories": "Food, Breakfast & Brunch, Modern European, Restaurants, Beer, Wine & Spirits, American (New)", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "k6xc8FiZp2hppWcQJzNVpQ", + "name": "CinCin Restaurant", + "address": "7838 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.069231, + "longitude": -75.199751, + "stars": 3.5, + "review_count": 199, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Event Planning & Services, Pan Asian, Venues & Event Spaces, Chinese, Caterers, Asian Fusion", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "xc2zZnZZykbxbbKP0aVAMA", + "name": "You Call We Haul", + "address": "123 E St Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 40.1481447032, + "longitude": -74.9981120482, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "j4DHb4tmK3QlK0gqpdnMeA", + "name": "Growlers", + "address": "736 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404603, + "longitude": -75.1561091, + "stars": 4.0, + "review_count": 127, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'" + }, + "categories": "Gastropubs, Food, American (Traditional), Restaurants, Bars, American (New), Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "1ap4i9AtWHttUdCiUcXsOQ", + "name": "Vietnam House", + "address": "901 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552967, + "longitude": -75.1545468, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "Caters": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "RIc-1co-CqV9uJPF1ZX9bw", + "name": "Naryan Auto Group", + "address": "7525 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0385127, + "longitude": -75.0350348, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "h2kkHQGhtVuFvMBlMY8NLw", + "name": "Pitchers Pub", + "address": "4326 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250055, + "longitude": -75.2230546, + "stars": 3.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Nightlife, American (Traditional), Bars, Restaurants, Pubs", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "OeO23GTZxF5tRnOXsYxCNA", + "name": "Starbucks", + "address": "200 Washington Square W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9479710165, + "longitude": -75.154148, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Breakfast & Brunch, Restaurants, Food, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "5:30-20:0", + "Sunday": "5:30-20:0" + } + }, + { + "business_id": "kv0orF3aeISZfxgRCKc0Uw", + "name": "Hot Looks Hair Salon", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0377276526, + "longitude": -75.0657405827, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons", + "hours": { + "Tuesday": "12:0-17:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "-rBLDkfHNXV8LzofwLcjHw", + "name": "Tony Luke's", + "address": "6716 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0321517, + "longitude": -75.0524823, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Sandwiches, Hot Dogs, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "tH3T3QZ43l3OPZrzlhsGjQ", + "name": "Di Bruno's Pizza", + "address": "8004 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0598020862, + "longitude": -75.052062021, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Pizza, Italian, Sandwiches", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "SPEXSaryxJmVpy8QoRz7Tg", + "name": "Vietnam Cafe", + "address": "816 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9481782, + "longitude": -75.2168865, + "stars": 4.0, + "review_count": 357, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "x0rHnGoppm_1yFSJkAbqFA", + "name": "Bull's BBQ", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9066430724, + "longitude": -75.1653687329, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': None}", + "GoodForMeal": "{u'breakfast': None, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Barbeque", + "hours": null + }, + { + "business_id": "t94UzoqQbuU0ntDqhQb60A", + "name": "Hugh's Towing", + "address": "3101 Hedley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.990203, + "longitude": -75.0717114, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "10:15-13:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "moVjKVRgVdMrGilqkDYwYg", + "name": "Hollywood Tans", + "address": "1107 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948996, + "longitude": -75.159343, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Tanning", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "G_VpU7J9do8ZRCLIblDBZA", + "name": "Han-Wool", + "address": "3608 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547256, + "longitude": -75.1951003, + "stars": 2.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Korean, Restaurants, Japanese", + "hours": null + }, + { + "business_id": "Mxcm7jI-R2X1Jk8nwR5iMg", + "name": "Blush Photography Studio", + "address": "2405 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9781369, + "longitude": -75.1243632, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Art Galleries, Beauty & Spas, Hair Salons, Event Planning & Services, Arts & Entertainment, Makeup Artists, Shopping", + "hours": null + }, + { + "business_id": "SFyVN0ysLZ39z1pjOqVcAA", + "name": "Trinity Massage Haven", + "address": "8618 Germantown Ave, Fl 1 rear", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0769374, + "longitude": -75.2083523, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Prenatal/Perinatal Care, Massage Therapy, Health & Medical, Nutritionists, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Friday": "10:0-15:0", + "Sunday": "11:0-16:30" + } + }, + { + "business_id": "9s06fF7u-sexdHIidhtStQ", + "name": "Michael McBride Insurance", + "address": "516 Green Ln, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034629036, + "longitude": -75.2153614908, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Life Insurance, Insurance, Home & Rental Insurance, Auto Insurance", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "HFmLKshpSesBsPPU7zGVSg", + "name": "York Street Cleaners", + "address": "2366 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97812, + "longitude": -75.1253, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Laundry Services, Local Services, Dry Cleaning, Sewing & Alterations", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "jhSCxk_tOPrD5xRdK4kglQ", + "name": "ReFocus Eye Health", + "address": "10160 Bustleton Ave, Ste F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1066342, + "longitude": -75.0281205, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "None" + }, + "categories": "Optometrists, Health & Medical, Shopping, Ophthalmologists, Doctors, Eyewear & Opticians", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-19:0", + "Friday": "8:30-16:30", + "Saturday": "8:0-13:30" + } + }, + { + "business_id": "7MdBb-thX76EwfBjipL49w", + "name": "Domain Real Estate Group", + "address": "5300-18 Wynnefield Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.991441, + "longitude": -75.2313653, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Services, Real Estate, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "2o4CRQ-FreATtbnhlLKWew", + "name": "The Pizza Place", + "address": "1648 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9278575, + "longitude": -75.1572629, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "WheelchairAccessible": "False", + "BYOB": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "sg7RckFfrTyXxyyBKY5TRQ", + "name": "The Radian", + "address": "3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95438424, + "longitude": -75.20134166, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "ZU0uAVRAACXmpy646M-8yQ", + "name": "Privรฉ", + "address": "246 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499982, + "longitude": -75.1455526, + "stars": 3.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "u'dressy'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "HappyHour": "True" + }, + "categories": "Food, Beer, Wine & Spirits, Mediterranean, Restaurants, Greek", + "hours": null + }, + { + "business_id": "5C7j2GEp_FVLTgxDorrTEw", + "name": "2nd Street Pizza", + "address": "812 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633868, + "longitude": -75.1411236, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "Ti02P-t0Tgnqsr_MT9tPUQ", + "name": "Wawa", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622846321, + "longitude": -75.1729156543, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Convenience Stores, Food", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "ZfAILO2iad90fCDtratcKg", + "name": "Machi Sushi Bar", + "address": "209 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499924, + "longitude": -75.1737316, + "stars": 3.5, + "review_count": 186, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:30", + "Saturday": "12:0-21:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "K8tLlUcLvCY4VZ-ITQ1sxA", + "name": "Penne Restaurant & Wine Bar", + "address": "3600 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534158468, + "longitude": -75.1959976532, + "stars": 2.5, + "review_count": 85, + "is_open": 0, + "attributes": { + "Caters": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "HappyHour": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Italian, Wine Bars, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "uniaRYYnx-Rj8RjyUTggqQ", + "name": "Stanley's Auto Repair", + "address": "5200 Gillespie St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0166945, + "longitude": -75.0711302, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "HUI4BzH9yfLB6PXnwgUX-A", + "name": "Society Hill Loan", + "address": "645 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423559, + "longitude": -75.1537395, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Pawn Shops", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "vWrudsXK0uIDHDsJymRPaQ", + "name": "Lela's Braiding Gallery", + "address": "5550 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9606154, + "longitude": -75.2322499, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Beauty & Spas, Hair Salons, Web Design", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "qxUTCnTv7TspftbUJFDMhw", + "name": "Vince Ovecka - State Farm Insurance Agent", + "address": "456 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9706565, + "longitude": -75.1285192, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Home & Rental Insurance, Auto Insurance, Life Insurance, Insurance", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "JUAhdg-Oh0teRhVBmccsig", + "name": "Central Nails & Spa", + "address": "264 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485414, + "longitude": -75.1744769, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage, Nail Salons, Skin Care, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "jckVvp0zctH3eqOgq7TZAg", + "name": "Groom & Board", + "address": "1733 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9338803, + "longitude": -75.1740893, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Dog Walkers, Pet Groomers, Pet Sitting, Pet Services, Pet Boarding", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-14:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "GSRBHi_05ZhYp3EROKL_rQ", + "name": "Haverford Grill & Soul", + "address": "6548 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.971993, + "longitude": -75.2505039, + "stars": 3.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True" + }, + "categories": "Barbeque, Soul Food, Restaurants", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "eLAd1Jw-g1NKymBx1XPDoA", + "name": "Stogie Joe's Tavern", + "address": "1801 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927559, + "longitude": -75.166057, + "stars": 3.5, + "review_count": 295, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "WiFi": "'no'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': None, 'video': False, 'karaoke': None}" + }, + "categories": "Burgers, Pasta Shops, Pizza, Pubs, Specialty Food, Restaurants, Food, Nightlife, American (New), Bars, Italian", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "e57HVMhbHJ37nQ363YAaYw", + "name": "Roosevelt Pub", + "address": "2220 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509902358, + "longitude": -75.1783608264, + "stars": 3.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "Caters": "False", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Pubs, Nightlife, Bars", + "hours": null + }, + { + "business_id": "bk52ZkcqWCqEaT6UWuxi0Q", + "name": "Sioux Zanne Messix", + "address": "54 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951649, + "longitude": -75.145417, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Used, Vintage & Consignment, Shopping, Accessories, Jewelry", + "hours": null + }, + { + "business_id": "manAb6QMB4aonhf4UJsMzQ", + "name": "C&D Appliance", + "address": "1121 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351023, + "longitude": -75.1568891, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Shopping, Appliances", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "CL1kpAsyhhb19w0aWDOLuw", + "name": "Old City Beer Garden", + "address": "240 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949699, + "longitude": -75.145341, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BYOB": "False", + "Corkage": "False", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "DogsAllowed": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Smoking": "u'outdoor'", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Bars, Nightlife, Beer Gardens, Restaurants", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "899SJQk-w9wXoy5RNeJjIg", + "name": "Catering By Design", + "address": "18 W Hortter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0497663, + "longitude": -75.1848614, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "oGAykAoB59YqGSbCpLmcwg", + "name": "Central Nail Salon", + "address": "42 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514311, + "longitude": -75.1689238, + "stars": 2.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "46V9suQHVtcxWrq9VIcJQg", + "name": "Phil's Live Crabs", + "address": "10 St And Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9159905, + "longitude": -75.164498, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Local Flavor, Specialty Food, Seafood Markets, Street Vendors", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "kkjEXWlkHKcNJizf1Dy_PA", + "name": "Sharon Berkowitz, DC", + "address": "1601 Walnut St, Ste 1326", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Chiropractors, Health & Medical", + "hours": null + }, + { + "business_id": "8UR3q3wu6UoOHauefSQpHg", + "name": "South Deli and Grocery", + "address": "1739 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9445311, + "longitude": -75.1715879, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Caters": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Delis, Spanish, Restaurants, Food", + "hours": { + "Monday": "8:0-20:30", + "Tuesday": "8:0-20:30", + "Wednesday": "8:0-20:30", + "Thursday": "8:0-20:30", + "Friday": "8:0-20:30", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "jxHXkkt2xiD2-d9sHFCEkQ", + "name": "Cranky Joe's", + "address": "3501 Indian Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0108613, + "longitude": -75.1882012, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Bars, Nightlife, Sports Bars", + "hours": { + "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" + } + }, + { + "business_id": "N8j1ONR4Fv1MrueBateDTQ", + "name": "Labcorp", + "address": "241 S 6th St, Ste 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94613, + "longitude": -75.15143, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "CPnJ1-2f3gJk-bN2cH_u4Q", + "name": "Restaurant Catracho", + "address": "1011 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619044, + "longitude": -75.1548915, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mexican, Honduran, Restaurants", + "hours": null + }, + { + "business_id": "0eiWm17ZfGDJT68k-nOoLw", + "name": "Carlo's Tire & Repairs", + "address": "842 Red Lion Rd, Ste 21", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1021573065, + "longitude": -75.0313069362, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Auto Repair, Body Shops", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "3wkSjqb5XI4rP5unMn8yJA", + "name": "Sears Appliance Repair", + "address": "7300 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0495034193, + "longitude": -75.0609334431, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Appliances & Repair, Water Heater Installation/Repair, Electronics Repair, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "q3DRL0fxjFskVygM3d4bHQ", + "name": "Marketplace at East Falls", + "address": "3747 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.002345, + "longitude": -75.1870785, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food", + "hours": null + }, + { + "business_id": "5ebgEvBg1-harVzszDA02g", + "name": "Bruegger's Bagels", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9533282, + "longitude": -75.1717764, + "stars": 3.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Food, Breakfast & Brunch, Bagels, Sandwiches", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "7:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "nDGVLplJiAlmXWUSMUCNUw", + "name": "Old Pine Community Center", + "address": "401 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430366, + "longitude": -75.1495216, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Amateur Sports Teams, Child Care & Day Care, Venues & Event Spaces, Local Services, Event Planning & Services, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-1:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "tVrv3if79QDhZXKX-rJpqA", + "name": "Papa John's", + "address": "1109 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374369, + "longitude": -75.1665332, + "stars": 2.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:15", + "Tuesday": "11:0-22:15", + "Wednesday": "11:0-22:15", + "Thursday": "11:0-22:15", + "Friday": "11:0-23:15", + "Saturday": "11:0-23:15", + "Sunday": "11:0-22:15" + } + }, + { + "business_id": "hyoISt9KEVt5BcTQXDg7DA", + "name": "Great Bear Car Wash", + "address": "6500 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.034789, + "longitude": -75.064593, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Car Wash, Automotive", + "hours": null + }, + { + "business_id": "IKLm7PJDrtFdZE2N_D3mUQ", + "name": "T-Mobile", + "address": "1201 Market St, Ste 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9522987434, + "longitude": -75.1609475661, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True" + }, + "categories": "Mobile Phones, Electronics, Telecommunications, Shopping, Local Services, IT Services & Computer Repair, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "1nXNyhtAS2y-e4O14LJBRQ", + "name": "Bimini Juice Bar", + "address": "1815 John F Kennedy Blvd, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544535, + "longitude": -75.1704118, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wraps, Coffee & Tea, Salad, Restaurants, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "LxIUCkxSa7YnUCipS43Dbg", + "name": "Coup de Taco", + "address": "40TH St Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951647, + "longitude": -75.202795, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Mexican, Food Stands", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "cT2uLApb2zxAclAk40723A", + "name": "AAAA Hubcap Heaven", + "address": "5107 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0381956, + "longitude": -75.2389501, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Antiques, Automotive, Wheel & Rim Repair, Auto Parts & Supplies, Shopping, Auto Repair", + "hours": { + "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": "9:0-14:0" + } + }, + { + "business_id": "28UW-qsL6AukSUvGnyPlwg", + "name": "Remedy Spa & Wellness", + "address": "6139 Germantown Ave, Ste 302", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0419804, + "longitude": -75.1794128, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Skin Care, Hair Removal, Massage, Active Life, Massage Therapy, Laser Hair Removal, Fitness & Instruction, Yoga, Health & Medical, Day Spas, Beauty & Spas", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "IcLm9Z1zphLnzUvrFK6aiA", + "name": "Erawan Thai Cuisine", + "address": "123 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951799, + "longitude": -75.178213, + "stars": 3.5, + "review_count": 411, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTableService": "False", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "BikeParking": "False" + }, + "categories": "Thai, Restaurants", + "hours": { + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-20:30", + "Saturday": "16:0-20:30", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "Sip4hzT-4ybbzElDhCNcqw", + "name": "Tony Roni's - City Line", + "address": "4504 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0030401, + "longitude": -75.2218196, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants, Pizza, Event Planning & Services, Caterers", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "dpiaAGgEMm9Lf8dbx0yEJQ", + "name": "Soup Kitchen Cafe", + "address": "2146 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9798199, + "longitude": -75.129822, + "stars": 4.0, + "review_count": 314, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Sandwiches, American (New), Cafes, Soup, Restaurants", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "pqN11loWgNHqSWxESd4Uwg", + "name": "Kostas Bar Restaurant", + "address": "15 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689515, + "longitude": -75.134916, + "stars": 4.0, + "review_count": 112, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForDancing": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "Caters": "False", + "GoodForKids": "False", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Smoking": "u'outdoor'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "Restaurants, Bars, Greek, Nightlife", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "fV3KwcRb0GWwHJinisbKpg", + "name": "Judd Greenberg - State Farm Insurance Agent", + "address": "1546 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439164, + "longitude": -75.1686798, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Financial Services, Insurance, Life Insurance, Auto Insurance, Home & Rental Insurance", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:30" + } + }, + { + "business_id": "gQUMqcT1sV1KlYUMLP3iEQ", + "name": "American Mortals", + "address": "2101 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9415659187, + "longitude": -75.1777928727, + "stars": 4.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "uB1w_bPf6557-dVQaqxfZA", + "name": "Municipal Services Building", + "address": "1401 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9538327918, + "longitude": -75.1641762257, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "S0dQ8Vks0IR-PZPLoBHKRA", + "name": "McCormick & Schmick's Seafood & Steaks", + "address": "1 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951353, + "longitude": -75.1634754, + "stars": 2.5, + "review_count": 387, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "WiFi": "u'free'", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': None}", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}", + "DogsAllowed": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}", + "HappyHour": "True" + }, + "categories": "Seafood, Restaurants, Southern, Steakhouses, American (Traditional)", + "hours": { + "Monday": "15:30-21:0", + "Tuesday": "15:30-21:0", + "Wednesday": "15:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "52aKJGUzVV5JmJop5uAcdQ", + "name": "Barkadelphia", + "address": "614 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94098, + "longitude": -75.1478059, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pet Training, Pet Stores, Pets, Pet Sitting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "f8rm9WZvDFWcb4in5GaZew", + "name": "One Call Appliance Repair Inc", + "address": "2924 Fanshawe St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0341178, + "longitude": -75.0597567, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Appliances & Repair, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "434A83c2ig6QxsZjrjclpQ", + "name": "Las Margaritas", + "address": "2538 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0726066, + "longitude": -75.0341246, + "stars": 3.5, + "review_count": 511, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "HappyHour": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Mexican, Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "1an1iRHmUZLui_qDaDBMSg", + "name": "Independence Dental Group", + "address": "29 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949808, + "longitude": -75.1521645, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, General Dentistry, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "wJDWYnlaRgYNeas08Tz0cQ", + "name": "A-1 Appliance Repairs", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358382, + "longitude": -75.174734, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Handyman, Plumbing, Appliances & Repair, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "LCPfWX2npD_vSsxi0oS19Q", + "name": "Drews Iron & Fencing Services", + "address": "2001 N 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9843758, + "longitude": -75.1646225, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fences & Gates, Home Services", + "hours": null + }, + { + "business_id": "bwP1yWP2r1Y8KrAiRZaIFg", + "name": "How Property Management", + "address": "3221 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9635213, + "longitude": -75.189512, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Property Management, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "7HznGpvXxOP3ILOvBxG8hg", + "name": "Dunkin'", + "address": "7970 Dungan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0683677, + "longitude": -75.0683925, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:30-21:30" + } + }, + { + "business_id": "Og32VlJ-InIa6y_O9cgR8Q", + "name": "Tuscany Cafe", + "address": "230 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484263, + "longitude": -75.1652545, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsTableService": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False" + }, + "categories": "Cafes, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "FlRWGkChmDpPOY-lTaEIWw", + "name": "Borders Books Music & Cafe", + "address": "1 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511994, + "longitude": -75.1634867, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bookstores, Music & DVDs, Shopping, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "HZN82-Qh5UUi14nIS-qPlg", + "name": "Royal Custom Tailor & Alteration", + "address": "123 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494491, + "longitude": -75.1629247, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "WtfRKJ70a02KQU801cO9ew", + "name": "Rocco's Italian Sausage", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'" + }, + "categories": "Street Vendors, Food", + "hours": null + }, + { + "business_id": "uGBDL0PeAmUjxjZRtR_hUA", + "name": "Towey's Tavern", + "address": "7829 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0694934, + "longitude": -75.1992541, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Bars, Nightlife", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "N1Ju3Uv-ALtIXJobgaiu_A", + "name": "Mizu Sushi Bar", + "address": "220 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949788, + "longitude": -75.144524, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "N2g0Com0YXFgRLIR4KLEuQ", + "name": "Fatou & Fama", + "address": "4002 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955381, + "longitude": -75.202544, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Caters": "True" + }, + "categories": "Soul Food, Restaurants, Ethiopian", + "hours": null + }, + { + "business_id": "mUhiQEWtLepWRSIGXK1sHw", + "name": "New Acropolis Restaurant", + "address": "1200 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9701228, + "longitude": -75.1344535, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "7:0-21:30", + "Tuesday": "7:0-21:30", + "Wednesday": "7:0-21:30", + "Thursday": "7:0-21:30", + "Friday": "7:0-21:30", + "Saturday": "7:0-21:30", + "Sunday": "7:0-21:30" + } + }, + { + "business_id": "feuteFDW6XZhq3uVTLM93A", + "name": "Angel's Philly Nail Salon", + "address": "2331 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919514, + "longitude": -75.158742, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "O6xFfSeBd1qQEp4aJJqgVw", + "name": "Freshbae", + "address": "227 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562059, + "longitude": -75.1556190828, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Bubble Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "NI-rA8UWQvcIZK__o8U4aw", + "name": "Happy Tails of Philly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Sitting, Pet Services", + "hours": null + }, + { + "business_id": "nLFS95TBQv4hEXNt9mLwqA", + "name": "Extra Nail Salon", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessParking": "None" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "KOXS3nJm-e5E5MwQ6Pfrlg", + "name": "Starbucks", + "address": "2701 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.99103, + "longitude": -75.08929, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "EuG0fFtMLby-VejJORM_hg", + "name": "New Age Realty Group", + "address": "3070 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.962999, + "longitude": -75.187147, + "stars": 2.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Property Management, Real Estate, Home Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "mL5NrbO6lxHUeBrWtou5VQ", + "name": "Wells Fargo Bank", + "address": "1400 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9323779162, + "longitude": -75.1619165136, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0" + } + }, + { + "business_id": "5O-3-67pekvG-lNuoMa1NA", + "name": "Fishtown Hookah Lounge", + "address": "112 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9688540491, + "longitude": -75.1366276423, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "Smoking": "u'no'", + "GoodForDancing": "True", + "WiFi": "'free'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "False", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Lounges, Nightlife, Bars, Hookah Bars", + "hours": { + "Monday": "18:0-1:0", + "Tuesday": "18:0-1:0", + "Wednesday": "18:0-1:0", + "Thursday": "18:0-1:0", + "Friday": "18:0-1:0", + "Saturday": "18:0-1:0", + "Sunday": "18:0-1:0" + } + }, + { + "business_id": "Q-i4w_ooMXBVdQKc1xTGSg", + "name": "Lowenthal & Abrams", + "address": "1800 John F Kennedy Blvd, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539822, + "longitude": -75.1702575, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Lawyers, Employment Law, Professional Services, Personal Injury Law", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "9eQ6a3iKhJHiNJmHU9Vv1Q", + "name": "Marathon Embroidery Company", + "address": "11 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9551913, + "longitude": -75.1941444, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Screen Printing, Screen Printing/T-Shirt Printing, Local Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "zT98ZdtdWf0TTZMkKtHSeg", + "name": "Planned Parenthood - Elizabeth Blackwell Health Center", + "address": "1144 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9476121637, + "longitude": -75.1606623835, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Diagnostic Services, Obstetricians & Gynecologists, Reproductive Health Services, Medical Centers, Laboratory Testing, Health & Medical, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "TZoyr3-XrxT_uzY0ZzXCKA", + "name": "9Round 30 Minute Kickbox Fitness", + "address": "3967 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.999831, + "longitude": -75.209116, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "GoodForKids": "False" + }, + "categories": "Active Life, Gyms, Martial Arts, Kickboxing, Trainers, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-13:30", + "Wednesday": "16:0-19:0", + "Thursday": "16:0-19:0", + "Friday": "16:0-19:0", + "Saturday": "11:0-12:30" + } + }, + { + "business_id": "H3_30Yyf1Pjateg9tvh_OA", + "name": "TigAlex Appliance", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Appliances & Repair, Local Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "EvDZxSv_9UlAOH1NyKzb8Q", + "name": "Omkara Tattoo", + "address": "510 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934601, + "longitude": -75.152855, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "URZBu9dOuRYzpNZ1P0hhwg", + "name": "Pinnacle Painters", + "address": "744 South St, Ste 746", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94223, + "longitude": -75.1553019, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Decks & Railing, Drywall Installation & Repair, Painters", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Ghe9NE9-n46nCMdl-t8ktg", + "name": "Gratz Harris Dr", + "address": "807 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376717, + "longitude": -75.1482636, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "3x2-MlaERcq43sLy_TSfwQ", + "name": "Pennypack Park", + "address": "8635 Pine Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0897361, + "longitude": -75.0701876, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "GoodForKids": "True" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "FaLHFj3EF8HbsCkIhysgHA", + "name": "Mosaic Massage", + "address": "8618 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0769374, + "longitude": -75.2083523, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Health & Medical, Massage Therapy, Beauty & Spas, Massage", + "hours": { + "Monday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "9z5-4FkA8Vzx1VYkov7G2A", + "name": "Takka A's Grill & Pizza", + "address": "324 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0468447, + "longitude": -75.1255384, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Pizza, Cheesesteaks, Sandwiches", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "loHwOSvO_CFTgmUvzwodeA", + "name": "Chestnut Organic Cleaners", + "address": "2134 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952293, + "longitude": -75.176914, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry, Sewing & Alterations", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "AT7TxxCcOGCCC4zVFjS2ug", + "name": "WAG: Whole Animal Gym", + "address": "611 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407924, + "longitude": -75.1455198, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": null, + "categories": "Holistic Animal Care, Pets, Veterinarians, Animal Physical Therapy, Pet Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "vn8O00X_24FOLSTojp4Sdg", + "name": "Lithe Method", + "address": "255 S 17th St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481733, + "longitude": -75.1692883, + "stars": 4.0, + "review_count": 82, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Yoga, Fitness & Instruction, Pilates, Gyms, Barre Classes, Active Life", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "7:15-13:30", + "Sunday": "8:30-14:30" + } + }, + { + "business_id": "dACR4DqvhmNcT1DSyr_XIQ", + "name": "Power Events Catering", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Specialty Food, Event Planning & Services, Caterers, Party & Event Planning, Food", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "_-XpHIzBYNzEdNHX72l0Vw", + "name": "R & I Construction Company", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618676, + "longitude": -75.0465123, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Masonry/Concrete, Contractors, Painters, Handyman, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "Qftoe1XsMTXx1p2nXlTOOQ", + "name": "Barrco Plumbing Supply", + "address": "528 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9709387, + "longitude": -75.2453994, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Home Services", + "hours": null + }, + { + "business_id": "BvW13Bt772-wq6BXiF3nLQ", + "name": "Little Caesars Pizza", + "address": "1100 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9705254767, + "longitude": -75.1550137432, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "None", + "WiFi": "u'no'", + "HasTV": "True" + }, + "categories": "Food, Fast Food, Restaurants, Pizza", + "hours": null + }, + { + "business_id": "6aYI8PqQn3SH50XpgaXJrg", + "name": "Labcorp", + "address": "2715 S Front St, Unit 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9133357143, + "longitude": -75.1502357143, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Laboratory Testing, Medical Centers, Diagnostic Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30", + "Saturday": "7:0-11:0" + } + }, + { + "business_id": "4Rjs5IQKnGzHyZ6X3iqJBQ", + "name": "Woodmere Art Museum", + "address": "9201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0831862, + "longitude": -75.2194183, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Education, Jazz & Blues, Museums, Nightlife, Special Education, Art Museums", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "0KEMPs7BD_WHI6zGpDcKjw", + "name": "Food & Friends", + "address": "1933 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948257, + "longitude": -75.174199, + "stars": 4.0, + "review_count": 167, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False" + }, + "categories": "Specialty Food, Restaurants, Delis, Beer, Wine & Spirits, Fruits & Veggies, Grocery, Convenience Stores, Food", + "hours": { + "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:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "hxz-ZUqfwcueJu3eIGcBMA", + "name": "Lombard Cafe", + "address": "700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948517, + "longitude": -75.152606, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Coffee & Tea, Restaurants, Cafes, Food, Sandwiches", + "hours": { + "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": "8:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "MZpjAlcZKpw5JlJAhyO4-w", + "name": "ACME Markets", + "address": "1901 Johnston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9169266392, + "longitude": -75.1803405659, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Drugstores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "wxLEtkp7OIB1BaKwjYqWow", + "name": "Designer Eyes", + "address": "10th & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515279, + "longitude": -75.1567296, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Optometrists, Health & Medical, Ophthalmologists, Doctors", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "WaguE_aJsLBgrHJL44-lmQ", + "name": "Tide Cleaners", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laundry Services, Shoe Repair, Local Services, Dry Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "JEeDUd7ZrUO4jwy_jBnelg", + "name": "Santucci Square Pizza and Restaurant", + "address": "1710 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 40.0850972, + "longitude": -75.0389168, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "cVZdkfVcux5xGFXUOrEmzQ", + "name": "Szechuan King", + "address": "1916 Welsh Rd, Ste 16", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0811093, + "longitude": -75.0382522, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "HappyHour": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True" + }, + "categories": "Chinese, Restaurants, Szechuan", + "hours": { + "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": "12:0-20:30" + } + }, + { + "business_id": "WDm-Z705Wp93k-46PN_g9Q", + "name": "Talia's Grille", + "address": "122 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9688472, + "longitude": -75.1369912, + "stars": 4.5, + "review_count": 233, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "HasTV": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Mediterranean, Sandwiches, Bagels, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "ZForVw2ZTiwDGfZ0XvZsXQ", + "name": "Uncle Bobbie's Coffee & Books", + "address": "5445 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.034015, + "longitude": -75.1718436, + "stars": 4.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Cafes, Restaurants, Shopping, Food, Books, Mags, Music & Video, Bookstores, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "kVsZvPb43ZOuAEA1YyTX-g", + "name": "TD Bank", + "address": "3735 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536629937, + "longitude": -75.1978405631, + "stars": 1.5, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "OaddVySRpJcU9LNa8bkGMw", + "name": "Fire & Ice", + "address": "312 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949743, + "longitude": -75.146377, + "stars": 3.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "American (New), Nightlife, Restaurants, Bars, Asian Fusion, Lounges", + "hours": null + }, + { + "business_id": "lS42krxXMm-HIk7dntRsKQ", + "name": "Pattaya", + "address": "4040 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529055, + "longitude": -75.204785, + "stars": 3.5, + "review_count": 327, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Asian Fusion, Thai, Soup, Restaurants, French, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "FiEZbnwXKRfyUi43mEIHRg", + "name": "Boston Market", + "address": "4600 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0025179655, + "longitude": -75.2226631419, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "GoodForMeal": "None", + "RestaurantsTableService": "False", + "BikeParking": "False", + "WiFi": "'free'", + "HasTV": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': False}" + }, + "categories": "Restaurants, Event Planning & Services, American (Traditional), Comfort Food, Chicken Shop, Sandwiches, Caterers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "NY1uLdetawZpTqRnzbwJvw", + "name": "Julie's Cleaners", + "address": "9201 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0547794, + "longitude": -75.0042751, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry, Sewing & Alterations, Dry Cleaning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "ZNWox30LIv7hV5k5YP8tCQ", + "name": "Bar-Ly Chinatown", + "address": "101 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540709, + "longitude": -75.1576818, + "stars": 4.0, + "review_count": 380, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True" + }, + "categories": "Gastropubs, Food, American (New), Restaurants, Nightlife, Tapas Bars, Beer, Wine & Spirits, Bars, Sports Bars", + "hours": { + "Monday": "15:0-1:0", + "Tuesday": "15:0-1:0", + "Wednesday": "15:0-1:0", + "Thursday": "15:0-1:0", + "Friday": "15:0-1:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "SAi55UwRNKZbVJAXh0PFIA", + "name": "Fat Joe's", + "address": "746 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229103312, + "longitude": -75.1596473157, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "BikeParking": "False" + }, + "categories": "American (New), Breakfast & Brunch, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-2:0", + "Wednesday": "8:0-2:0", + "Thursday": "7:0-12:0", + "Friday": "8:0-4:0", + "Saturday": "8:0-4:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "gyqvFMq76IsqIZiDbwFKug", + "name": "Pillar To Post", + "address": "8001 Roosevelt Blvd, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0563121, + "longitude": -75.0453189, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Home Inspectors", + "hours": null + }, + { + "business_id": "hb4Viui0dPDUpFqN1PbRKA", + "name": "Hertz Rent A Car", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.880076, + "longitude": -75.243541, + "stars": 2.0, + "review_count": 359, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2" + }, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "kfe_xEH4ppG8AeAPdqqCaA", + "name": "City Fitness - Logan Square", + "address": "1819 JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95448, + "longitude": -75.169847, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cycling Classes, Gyms, Yoga, Fitness & Instruction, Active Life, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-1:0", + "Wednesday": "5:0-1:0", + "Thursday": "5:0-12:0", + "Friday": "5:0-12:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "c1c6AK8tMezO-Z3anZWCOg", + "name": "Apple Hostels", + "address": "32 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489146228, + "longitude": -75.145232422, + "stars": 4.0, + "review_count": 84, + "is_open": 1, + "attributes": null, + "categories": "Hostels, Hotels & Travel", + "hours": { + "Monday": "12:0-12:0", + "Tuesday": "12:0-12:0", + "Wednesday": "12:0-12:0", + "Thursday": "12:0-12:0", + "Friday": "12:0-12:0", + "Saturday": "12:0-12:0", + "Sunday": "12:0-12:0" + } + }, + { + "business_id": "swcfmflnWlhnbvPOHvPq_A", + "name": "Chabaa Thai Bistro", + "address": "4343 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025630123, + "longitude": -75.2234600857, + "stars": 4.0, + "review_count": 338, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Corkage": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "BYOBCorkage": "'yes_corkage'", + "Alcohol": "'none'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Thai, Noodles", + "hours": { + "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" + } + }, + { + "business_id": "01mP5a06zQpaYOakfaVBOQ", + "name": "Philly's Platinum Grille", + "address": "7719 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0727911933, + "longitude": -75.1949470435, + "stars": 2.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Caters": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BikeParking": "False" + }, + "categories": "Restaurants, Soul Food, American (New), Nightlife, Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ep_CRM3EQALDlEWURWc4rg", + "name": "Kaplan's New Model Bakery", + "address": "901 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9649893, + "longitude": -75.1422257, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Bagels, Desserts, Breakfast & Brunch, Bakeries, Restaurants, Food, Juice Bars & Smoothies", + "hours": { + "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-16:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "xFMjS1tZNcEkqsT_9bfRdg", + "name": "First Class Pharmacy", + "address": "7316 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037195125, + "longitude": -75.0401437202, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Drugstores, Pharmacy, Shopping, Home Health Care, Health & Medical", + "hours": { + "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-13:0" + } + }, + { + "business_id": "ACcP-66gbXKf4mrbpqWllg", + "name": "Wendy's", + "address": "5601 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.96074, + "longitude": -75.234234, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "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}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "85NrQo6GppPwiyGJRPEHnQ", + "name": "Philadelphia Animal Specialty & Emergency", + "address": "1920 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938708, + "longitude": -75.175651, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pets, Emergency Pet Hospital, Pet Services, Veterinarians", + "hours": { + "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" + } + }, + { + "business_id": "jXlSAclDY65C7RagshC0-A", + "name": "La Bella Vida", + "address": "124 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482233, + "longitude": -75.1434845, + "stars": 2.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Day Spas, Beauty & Spas", + "hours": { + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "u0NAXvm0bzES97r9IdF4Qg", + "name": "Bump", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477815, + "longitude": -75.162146, + "stars": 3.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "HappyHour": "True" + }, + "categories": "Nightlife, Gay Bars, Bars, Tapas Bars, Restaurants, Lounges, American (New)", + "hours": null + }, + { + "business_id": "0eGCiVf9kDhQ29xXXBSkAQ", + "name": "Pepper Lillie", + "address": "1536 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9305817, + "longitude": -75.1663896, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Web Design, Graphic Design, Marketing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "bVDjg4RNNr6g3jATN2Qr4A", + "name": "GPHA - Woodland Avenue Health Center", + "address": "5000 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.939606, + "longitude": -75.2139481, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Medical Centers, Local Services, Health & Medical, Behavior Analysts, Family Practice, Doctors, Dentists, Counseling & Mental Health, Pediatricians, Community Service/Non-Profit", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "WKTrjBhrx_SPZS7JVZnzFQ", + "name": "Cycles PHL", + "address": "1426 W Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.986267, + "longitude": -75.157447, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shopping, Bikes, Bike Repair/Maintenance, Sporting Goods", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "Y2mVo-tSjuj3VYzzKmvrqw", + "name": "Starr Heating and Air Conditioning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Professional Services, Water Heater Installation/Repair", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "4P6u1-EXiwVdGSZbYHD7GQ", + "name": "The HeadHouse Cafe", + "address": "122 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419336, + "longitude": -75.1447558, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sushi Bars, Restaurants, Bars, Gastropubs, Nightlife, Pubs", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "7pAgxBMUjrVPH7xh3fn-gw", + "name": "Oh Brother Philly", + "address": "206 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496989, + "longitude": -75.1441608, + "stars": 4.5, + "review_count": 511, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BYOB": "True", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Cheesesteaks, Sandwiches, Desserts, Burgers", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Ro7opPbuSZdL1igdatdTMw", + "name": "Crow and the Pitcher", + "address": "267 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482333, + "longitude": -75.1726396, + "stars": 3.5, + "review_count": 162, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Music": "{'dj': False}", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nightlife, Bars, Beer, Wine & Spirits, Wine Bars, French, Food, Gastropubs, Restaurants, Cocktail Bars, American (New)", + "hours": { + "Tuesday": "15:30-2:0", + "Wednesday": "15:30-2:0", + "Thursday": "15:30-2:0", + "Friday": "15:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "fSYXDavIpIhhIPdkCVfk3w", + "name": "City Cat Vets", + "address": "2210 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945243, + "longitude": -75.179012, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets, Pet Services, Pet Sitting, Pet Boarding", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "MRErvQSIzIGOg_28-PMNDA", + "name": "Gamestop", + "address": "9861 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0921542, + "longitude": -75.0311327, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Videos & Video Game Rental, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "E6AnAHwEXEWwjbaRw5xyUg", + "name": "Terrace Street Bakery & Cafe", + "address": "3862 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0206811, + "longitude": -75.2131047, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Bakeries, Food, Desserts, Cupcakes, Custom Cakes", + "hours": { + "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-12:0" + } + }, + { + "business_id": "icOMQGI2G2wTzYoMB6084A", + "name": "Manhattan Bagel", + "address": "6001 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0319191925, + "longitude": -75.2127872407, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "AgesAllowed": "u'allages'" + }, + "categories": "Bagels, Food, Sandwiches, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "rWM-uozynAKGxkI97twfrw", + "name": "Rite Aid", + "address": "164 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.032211, + "longitude": -75.177899, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Food, Drugstores, Convenience Stores, Photography Stores & Services", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "zLm2PaYrpHkcr63ekwvtBQ", + "name": "Philadelphia Bikesmith", + "address": "1822 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629683608, + "longitude": -75.1693575138, + "stars": 5.0, + "review_count": 123, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Bike Rentals, Shopping, Bikes, Fashion, Active Life, Bike Repair/Maintenance, Sporting Goods, Local Services, Sports Wear", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "LyYuQTyLwZbiXwIsqcAx0w", + "name": "CrossFit Supercharged", + "address": "1717 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.939225, + "longitude": -75.175842, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Interval Training Gyms", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0" + } + }, + { + "business_id": "YZ1MEd2mVm-76n47w44pHw", + "name": "Community Acupuncture of Mt Airy CAMA", + "address": "6782 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0543176, + "longitude": -75.1869009, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Acupuncture", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "11:30-20:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-14:0", + "Friday": "13:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "CDG9wwQI-miX2Q7mXAgPLw", + "name": "Best Buy Furniture", + "address": "2558 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.077962, + "longitude": -75.0248108, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Furniture Stores, Baby Gear & Furniture, Mattresses, Shopping", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-16:0", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "KxkPxl4mBD6wn9a74MPpMA", + "name": "Le sisters salon", + "address": "7206 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9147815, + "longitude": -75.2404542, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Permanent Makeup, Eyelash Service, Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "M9QxEIA25mnHHxuturwM_g", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "1112 Chestnet St, Ste 28", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950109, + "longitude": -75.159337, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "9Ebckj6z0EdXxDVcMfz_SA", + "name": "Toile", + "address": "1333 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.971161, + "longitude": -75.1341319, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Accessories, Bespoke Clothing, Fashion, Women's Clothing, Sewing & Alterations, Shopping, Men's Clothing, Local Services, Jewelry", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Ij4Qdluz22N4Ca9wVYbn_Q", + "name": "Ann's Nail Salon", + "address": "1555 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0804464, + "longitude": -75.1730976, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "SaUSOvz-YhFtGEP3w5SBZg", + "name": "Cafe Pier One", + "address": "4505 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9492216, + "longitude": -75.2133303, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "Corkage": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Caribbean, Restaurants, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "CbvpiYuWOHfPhU4eKGNf6A", + "name": "Vape O2", + "address": "411 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9704929, + "longitude": -75.1301263, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "Open24Hours": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Head Shops, Vitamins & Supplements, Shopping, Vape Shops", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "haIljRs6pruzNI_4fZrjJw", + "name": "Ice Moon", + "address": "7260 Frankford Ave, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.036723, + "longitude": -75.041313, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Juice Bars & Smoothies, Coffee & Tea, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "I5Bbg2aiQGRhe5V0E2DPXg", + "name": "Curiosity Doughnuts", + "address": "1615 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294531076, + "longitude": -75.1636243612, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Donuts, Food", + "hours": null + }, + { + "business_id": "RoNdO1IbukR81iULOGw3tw", + "name": "Chaura's Seafood", + "address": "1348 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9369374394, + "longitude": -75.1983113587, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Specialty Food, Restaurants, Seafood, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "UH-VMm0blK7EmVOAneDUMw", + "name": "West River - Martin Luther King, Jr Drive", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9865330887, + "longitude": -75.2050745487, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Public Services & Government", + "hours": null + }, + { + "business_id": "Zvm8Z_wo8mVcP0tH2AwxdQ", + "name": "Lanova Pizza Exp & Halal Grill", + "address": "2223 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9802551, + "longitude": -75.1717646, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "vDNjPeAgmSAXPNHt6U0mHg", + "name": "It Figures", + "address": "2901 Southampton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1036839, + "longitude": -74.9833597, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Nutritionists, Active Life, Trainers, Gyms, Yoga, Fitness & Instruction, Health & Medical, Weight Loss Centers", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "ol6Z_mQyAEKI3bW4Cd01sA", + "name": "7-Eleven", + "address": "917 Filbert Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9526978263, + "longitude": -75.1561993361, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Convenience Stores, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "V32bG99x8JRbwfBiqRDD4Q", + "name": "Barry John Commodore Club", + "address": "6815 Emlen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0499895, + "longitude": -75.1907886, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Nightlife", + "hours": null + }, + { + "business_id": "pORvWLJb_ioqIrNo-yacfw", + "name": "Pancho's Cafe", + "address": "152 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9690665, + "longitude": -75.1381918, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': None}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "WiFi": "'no'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True" + }, + "categories": "Food, Restaurants, Breakfast & Brunch, Mexican, Desserts", + "hours": { + "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" + } + }, + { + "business_id": "EMRzIdt7KeNETHsFo-RV7Q", + "name": "Leon's Jewelry", + "address": "801 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94885, + "longitude": -75.15421, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Shopping, Jewelry, Gold Buyers, Watches", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "_GameVII8zP9Ymtr7OePgQ", + "name": "matt-hair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Photographers, Arts & Entertainment, Performing Arts, Blow Dry/Out Services, Event Planning & Services, Hair Salons, Session Photography, Hair Stylists, Makeup Artists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0" + } + }, + { + "business_id": "GrRrxHK9dWgibvUpcotxtw", + "name": "Joe's Pizza", + "address": "122 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503868, + "longitude": -75.1675629, + "stars": 3.5, + "review_count": 183, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "2GtvyyeTfO2eJwsc-Caj0g", + "name": "Pretty Photo", + "address": "1017 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539861, + "longitude": -75.1570414, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Photography Stores & Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "6LYmMCltMzSMK-gMjqWTCw", + "name": "Zesty's", + "address": "4382 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257037, + "longitude": -75.2245921, + "stars": 3.5, + "review_count": 171, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "None" + }, + "categories": "Mediterranean, Seafood, Restaurants, Greek", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "6HG26o3ppHS39xPm0jYwBA", + "name": "Sunrise", + "address": "2048 S 18th St 1801 S Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9253162, + "longitude": -75.1761888, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Burgers, Pizza, Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:30", + "Saturday": "7:0-22:30", + "Sunday": "9:30-22:0" + } + }, + { + "business_id": "-63ytt5vkWof-M9NDGTkng", + "name": "Crown Fried Chicken", + "address": "1039 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619616, + "longitude": -75.1558838, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'" + }, + "categories": "Restaurants, American (Traditional), Chicken Wings", + "hours": null + }, + { + "business_id": "YCJWgTik2VIBuCBHh5tLKw", + "name": "Mary Anne Biehler", + "address": "143 W Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0381264, + "longitude": -75.1815786, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Colonics", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "kInq08hlieI89SCzXI69xA", + "name": "The Cocktail Party Chef", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Personal Chefs, Event Planning & Services, Caterers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "gajhaXGudlDgCz_-ik1g_w", + "name": "El Greco Pizza", + "address": "4301 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0174647, + "longitude": -75.140503, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Food, Pizza, Food Delivery Services", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "NpTJLiszMga9N9sxbzxNLg", + "name": "Casile Novelli General Contractor", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9170091538, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "sAEf2gPg15otqUS198Ilrw", + "name": "Union Jacks Pub Manayunk", + "address": "4801 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0325679, + "longitude": -75.2324257, + "stars": 4.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True" + }, + "categories": "Restaurants, Bars, Pubs, Nightlife", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "iTM-1uw7pF-4sgAXk5HR6w", + "name": "ConvenienTech", + "address": "2230 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0095527, + "longitude": -75.0695789, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Smog Check Stations, Auto Repair", + "hours": { + "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" + } + }, + { + "business_id": "mkeS_tVSmb4OKpQQ-O5Thw", + "name": "BLO/OUT Blow Dry Bar", + "address": "1804 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515786, + "longitude": -75.1706125, + "stars": 4.5, + "review_count": 413, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}" + }, + "categories": "Hair Stylists, Blow Dry/Out Services, Hair Extensions, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Ol-PcHaBaJIOOQtqRY5_DA", + "name": "Robert H Turchin, DMD", + "address": "1528 Walnut St, Ste 1704", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.1673521, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "IXyGZtmODsQZ2qfVzsd_eA", + "name": "Dunkin'", + "address": "532 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9920719, + "longitude": -75.1418142, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "CWtiEPVlirbiteeK9U60lA", + "name": "Happy Wok", + "address": "6507 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9221697, + "longitude": -75.2307433, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "AAvoBxeUwDnD5ThE9Cz6Fg", + "name": "L'anima", + "address": "1001 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394700802, + "longitude": -75.1711999252, + "stars": 4.0, + "review_count": 128, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "DogsAllowed": "True" + }, + "categories": "Italian, Seafood, Mediterranean, Restaurants", + "hours": { + "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-20:0" + } + }, + { + "business_id": "6XvhTZXv1Ugpe4EvYb0SJw", + "name": "Arising Home Inspection", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0729157, + "longitude": -75.1691305, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Home Inspectors, Real Estate Services, Real Estate", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:30" + } + }, + { + "business_id": "PN2rZwxD031zCW-KdzNReA", + "name": "The Enclaves Apartments", + "address": "3900 Gateway Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.902824, + "longitude": -75.1923396, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "5xPeWp-SR7RfRju2NWr8EA", + "name": "Tortas Frontera", + "address": "3601 Locust Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952099, + "longitude": -75.195154, + "stars": 3.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-20:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "z-BMYKp2XjdNdUArwj2BPw", + "name": "Loomen Labs", + "address": "620 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941258, + "longitude": -75.151073, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gift Shops, Candle Stores, Restaurants, Art Classes, Event Planning & Services, Shopping, Flowers & Gifts, Arts & Crafts, Education, Cafes, Home & Garden, Venues & Event Spaces", + "hours": { + "Monday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "zU5PPd9j4bYC_MepNSEDcA", + "name": "Dim Sum House", + "address": "3939 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557715, + "longitude": -75.2016544, + "stars": 4.0, + "review_count": 451, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "CoatCheck": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "Smoking": "u'no'", + "GoodForKids": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Chinese, Nightlife, Dim Sum, Event Planning & Services, Bars, Cantonese, Venues & Event Spaces", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "11:30-19:45", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "9qXd3Frdpw2NFesclk7nPg", + "name": "The Farmers' Cabinet", + "address": "1113 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948732, + "longitude": -75.1591786, + "stars": 3.5, + "review_count": 444, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsReservations": "True", + "BikeParking": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "GoodForDancing": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'" + }, + "categories": "American (New), Gastropubs, Bars, Nightlife, Food, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "ScM2XX4EAD4V1X4nSOTSTQ", + "name": "Kimberly Boutique", + "address": "123 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503382, + "longitude": -75.1672706, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Accessories, Women's Clothing, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "M1aBxVnAkqJxSp9Mx_5VYw", + "name": "Drexel Recreation Center", + "address": "3301 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9564974194, + "longitude": -75.1901721954, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Recreation Centers, Active Life, Weight Loss Centers, Health & Medical, Fitness & Instruction, Nutritionists, Massage Therapy, Gyms, Physical Therapy, Sports Clubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "5:30-22:0", + "Saturday": "8:0-22:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "gyRfeBAYTAx-Nh1xIoF50Q", + "name": "Lumpy Magee's Grub & Pub", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0722408, + "longitude": -75.0314294, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "None", + "WiFi": "'free'" + }, + "categories": "Restaurants, Pubs, Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "AzWwhJD-w91OJxpqUBnssA", + "name": "The Thirsty Soul", + "address": "1551 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9250862, + "longitude": -75.1727628, + "stars": 3.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "HasTV": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Restaurants, Cocktail Bars, Bars, Breakfast & Brunch, Southern", + "hours": { + "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" + } + }, + { + "business_id": "rsgCRaeN0eOIxIidvu6f8g", + "name": "Bella Medspa", + "address": "226 W Rittenhouse Square, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94889, + "longitude": -75.173129, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Health & Medical, Skin Care, Hair Removal, Massage Therapy, Acupuncture, Medical Spas, Laser Hair Removal, Beauty & Spas", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "1DwfadxGPydTonvpeU68Mw", + "name": "Sueep Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Home Cleaning, Office Cleaning, Professional Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "m-mAb_m76Esgu3rlSkGMuQ", + "name": "Waffles & Wedges", + "address": "1511 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9459585, + "longitude": -75.1672081, + "stars": 4.0, + "review_count": 126, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True" + }, + "categories": "Comfort Food, Breakfast & Brunch, Food, Desserts, Restaurants, American (New), American (Traditional), Gluten-Free", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-15:0", + "Friday": "11:0-20:0", + "Saturday": "9:0-15:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "ujJF9TpJGRSx07RmnEmxkA", + "name": "Ross Dress for Less", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.030637, + "longitude": -75.100221, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Department Stores, Discount Store, Shopping, Women's Clothing, Fashion, Home Decor, Home & Garden", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "39lNTydaNnOpCNNbMB0jkA", + "name": "B-Tan Tanning Salon Port Richmond", + "address": "2601 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9792561, + "longitude": -75.1181105, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Tanning Beds, Tanning, Spray Tanning", + "hours": { + "Monday": "0:0-0: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": "10:0-18:0" + } + }, + { + "business_id": "ja9fRwOsHhDS4iQByF53uQ", + "name": "The Lofts at 1835 Arch", + "address": "1835 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556694, + "longitude": -75.1708177, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "h7TO_IsmLCYmKKDVOOIeFw", + "name": "Fat Salmon", + "address": "719 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481318, + "longitude": -75.153395, + "stars": 4.5, + "review_count": 1089, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": { + "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": "16:0-21:30", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "bzG2ul_mhdPMvhxsn-8EEg", + "name": "Wawa", + "address": "12301 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0956946, + "longitude": -74.9761273, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sandwiches, Gas Stations, Convenience Stores, Food, Coffee & Tea, Restaurants, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "sJDQ0lr0TNTFUnmPLrSJAQ", + "name": "Handcraft Workshop", + "address": "6819 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.054836, + "longitude": -75.1652215, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Specialty Schools, Education, Fabric Stores, Arts & Crafts, Shopping", + "hours": { + "Tuesday": "19:0-21:0", + "Wednesday": "19:0-21:0", + "Thursday": "19:0-21:0" + } + }, + { + "business_id": "6CAP_o0s_Wfd8vQNWGf4OQ", + "name": "Ochatto Hot Pot", + "address": "3717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553287797, + "longitude": -75.1975267298, + "stars": 3.5, + "review_count": 70, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "WiFi": "'free'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Hot Pot, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "JYgsQrCI1P6iObIIqyD3zA", + "name": "Covered Beauty Hair Studio", + "address": "5524 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0346449, + "longitude": -75.1736734, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "8:0-13:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "7:0-16:30", + "Sunday": "7:0-13:30" + } + }, + { + "business_id": "tvOosamRSJFosNjmtKRA7Q", + "name": "The Duke Barber", + "address": "619 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614169, + "longitude": -75.1411158, + "stars": 2.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "70k0w5N-wv1tBDMQ23P6UA", + "name": "Talking Headz", + "address": "4922 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479458256, + "longitude": -75.2223617307, + "stars": 4.5, + "review_count": 166, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Hair Salons", + "hours": { + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "hvWdwNhbZgeL6UqEpqCKAw", + "name": "Todaro's Locksmith", + "address": "1511 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9361765, + "longitude": -75.1692714, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Auto Repair, Keys & Locksmiths, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "2Cmu7E34u1z07TIIECRNsw", + "name": "Renzo Gracie Philly", + "address": "2221 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9843893326, + "longitude": -75.137572065, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Martial Arts, Active Life, Gymnastics, Fitness & Instruction, Amateur Sports Teams, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "qoDCMcS3xKHsTNxQnuEZQQ", + "name": "RadioShack", + "address": "1616 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951082, + "longitude": -75.167996, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Electronics, Hobby Shops, Mobile Phones", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "9:0-20:0" + } + }, + { + "business_id": "6IIbYsrSlmTidfyg02qq2Q", + "name": "Awakenings Pole Dance Fitness", + "address": "4151 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0233743, + "longitude": -75.219441, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Dance Clubs, Specialty Schools, Nightlife, Dance Studios, Aerial Fitness, Yoga, Pole Dancing Classes, Education, Fitness & Instruction, Active Life", + "hours": { + "Monday": "9:0-21:45", + "Tuesday": "9:0-21:45", + "Wednesday": "9:0-21:45", + "Thursday": "9:0-21:45", + "Friday": "9:0-23:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "t7QIg4zhnzPnt5nzrXrkWA", + "name": "Main Street Music", + "address": "4444 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0263715, + "longitude": -75.226213, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "bRJLyB3ifiJXVwUh9c2UIQ", + "name": "HD Nail Salon & Spa I and II", + "address": "6321 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0489075348, + "longitude": -75.0961147395, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "X5irOgsp_G-tVjBwzQ7jug", + "name": "Jean's Nails", + "address": "1633 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947791, + "longitude": -75.169347, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:30" + } + }, + { + "business_id": "Gy6tBn6lrf4AN2Gr1I8Oyg", + "name": "2637brew", + "address": "2637 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974356, + "longitude": -75.18016842, + "stars": 4.0, + "review_count": 121, + "is_open": 1, + "attributes": { + "Smoking": "u'no'", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Music": "{u'dj': False, u'live': True, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "Caters": "True" + }, + "categories": "Nightlife, Cocktail Bars, Restaurants, American (Traditional), Bars, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "15:0-0:0", + "Friday": "14:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "4dzX0ejiALX1X77f4bu4_w", + "name": "The House Doctor Plumbing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Home Services, Contractors, Drywall Installation & Repair, Excavation Services, Flooring, Hydro-jetting, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "rgkRwY28yIhw7V7ji1WP9A", + "name": "Museum of the American Revolution", + "address": "101 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948212, + "longitude": -75.1455516, + "stars": 4.0, + "review_count": 156, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "aqBzwh8mDOSFastIow_PUQ", + "name": "Shaban Kabab & Curry", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'quiet'" + }, + "categories": "Pizza, Restaurants, Indian, Pakistani", + "hours": { + "Monday": "15:0-1:0", + "Wednesday": "15:0-1:0", + "Thursday": "15:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "YtMgMdZfjlK6ogDIGiOJSw", + "name": "First Wok", + "address": "129 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0332838, + "longitude": -75.1775528, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "e1nfM_rumu9l6dLCclprAw", + "name": "Cafe De Laos", + "address": "1117 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9366468, + "longitude": -75.161583, + "stars": 3.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Ethnic Food, Restaurants, Specialty Food, Thai", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0" + } + }, + { + "business_id": "l95E5e2n3wlOpMk4rWUB5w", + "name": "Sunoco A Plus Mini Market", + "address": "Ridge & Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0084608289, + "longitude": -75.1936703797, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Gas Stations, Specialty Food, Food, Automotive, Ethnic Food, Convenience Stores", + "hours": null + }, + { + "business_id": "uo2vHKTQr_aiK9hua8gohQ", + "name": "America's Best Contacts & Eyeglasses", + "address": "1851 South Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923491, + "longitude": -75.1405828, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Doctors, Health & Medical, Eyewear & Opticians, Optometrists, Ophthalmologists, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "InawP3IfShNTJjSeLMDmGg", + "name": "Wendy's", + "address": "7700 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9783091, + "longitude": -75.2724543, + "stars": 1.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "2vWlAJYCF11QmvRWBOQXDg", + "name": "Italian Express", + "address": "2641 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9744283, + "longitude": -75.1802791, + "stars": 3.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Sandwiches, Italian, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "gdH0yhCQaHjBQ6vd0rYiSA", + "name": "Krispy Krunchy Chicken", + "address": "1825-33 West Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9181629, + "longitude": -75.1789552, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Chicken Wings, American (New), Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "kJQJ3eV46tJR8sS_KdDKBw", + "name": "Charlie's Pub", + "address": "114 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9526349, + "longitude": -75.1452454, + "stars": 4.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HappyHour": "True", + "BYOBCorkage": "'no'" + }, + "categories": "Delis, Restaurants, American (Traditional), Pubs, Nightlife, Lounges, Bars", + "hours": null + }, + { + "business_id": "M311eVxkGB1k_i0DkJqJKg", + "name": "Grubaholics", + "address": "16 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96846, + "longitude": -75.1350433, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "None", + "Caters": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Ethnic Food, Food, Specialty Food, Food Trucks", + "hours": null + }, + { + "business_id": "un20fcU_7BEQzWueoVZT0w", + "name": "Oui", + "address": "160 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953816, + "longitude": -75.144975, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "None", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Coffee & Tea, Desserts, Food", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-17:30", + "Sunday": "8:30-17:30" + } + }, + { + "business_id": "WcrXzZ5XapK0c6s79MueNg", + "name": "Philly Pretzel Factory", + "address": "1903 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0522055, + "longitude": -75.0673431, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pretzels, Food, Restaurants, Bakeries, Hot Dogs", + "hours": null + }, + { + "business_id": "_l5ePCNk8mJXnEPtNQP8bQ", + "name": "Dominican Beauty Salon II", + "address": "1828 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.928425, + "longitude": -75.178843, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "Ch3YD5HfnjRHQ8kxRq5OFg", + "name": "US Post Office", + "address": "2311 Cottman Ave Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048025, + "longitude": -75.0584909, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Post Offices, Public Services & Government, Local Services, Shipping Centers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "ARCGfJ72tw8LW3e44UPCkQ", + "name": "American Apparel", + "address": "1611 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950047, + "longitude": -75.167995, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Fashion, Shopping, Women's Clothing, Accessories", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "-hCwC548xGJObF9NLeN5JA", + "name": "Little Lodge", + "address": "927 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553500963, + "longitude": -75.1552136381, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Ot3Uk-Y-AlWm7yobEv2wXA", + "name": "Elmwood Auto Repair", + "address": "6024 Elmwood Ave, Ste 38", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9264598656, + "longitude": -75.2240260318, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "j9jMPQwSsjubivM_DSIr1Q", + "name": "CenterSpace Pilates", + "address": "1420 Walnut St, Ste 1420", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95208, + "longitude": -75.16548, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Fitness & Instruction, Trainers, Active Life, Pilates", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "MOy8qGtBOoJzRnHnv3Y3JQ", + "name": "Ants Pants on 4th", + "address": "526 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419098, + "longitude": -75.1492366, + "stars": 4.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Coffee & Tea, Restaurants, Breakfast & Brunch, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "rPltlVa25codBAOoJO8g6g", + "name": "Francis J Smithgall, DMD", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": null + }, + { + "business_id": "UPdwDE6xWPkwMWbWxttYTQ", + "name": "Joe Hand Boxing Gym", + "address": "547 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611749, + "longitude": -75.1430566, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Active Life, Local Services, Community Service/Non-Profit, Fitness & Instruction, Boxing, Gyms", + "hours": { + "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": "8:0-12:0" + } + }, + { + "business_id": "giUvelDX9OPw7aiF7grvEA", + "name": "The Mรผtter Museum", + "address": "19 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953274, + "longitude": -75.176587, + "stars": 4.0, + "review_count": 777, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Arts & Entertainment, Museums, Local Flavor", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "7vg0q-N8e1olhWlj-d6oNA", + "name": "Castle Roxx", + "address": "105 Shurs Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0227275437, + "longitude": -75.2175221834, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Nightlife, Sports Bars, Bars, Pubs, Dive Bars", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "Gvi0ZAy2iuB2SHHMi-9jxw", + "name": "Salon Masaya", + "address": "2226 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.980297, + "longitude": -75.1290209, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Hair Removal, Men's Hair Salons, Beauty & Spas, Barbers, Blow Dry/Out Services, Hair Extensions, Hair Stylists, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "9S9uISLMyJTwh2r1bYa_yA", + "name": "Quick Stop 1", + "address": "2518 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9838399, + "longitude": -75.1255088, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "Srt2tq0z8AxP_4k4jPCDNA", + "name": "myDoc Urgent Care", + "address": "3717 Chestnut St, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9554263, + "longitude": -75.1972344, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Diagnostic Services, Laboratory Testing, Emergency Rooms, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "wddI5aXd5CNkuHbz3n3hRQ", + "name": "Hoagie Factory", + "address": "2121 72nd Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0645054, + "longitude": -75.1529533, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "oHOb3HK-caYzXq3JOA9NKQ", + "name": "Moonstruck Restaurant", + "address": "7955 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0762801367, + "longitude": -75.0849151957, + "stars": 4.0, + "review_count": 72, + "is_open": 0, + "attributes": { + "Caters": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Pizza, Italian, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "16:30-20:0" + } + }, + { + "business_id": "9NfNJYyMDaCV9qpknWzD6w", + "name": "Tuck Hing", + "address": "218 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9561137, + "longitude": -75.1559404, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "7Q07VkvcRKbxKW_NSpCXpw", + "name": "Old City T Shirts and Souvenirs", + "address": "233 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507999, + "longitude": -75.1451549, + "stars": 5.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Children's Clothing, Local Flavor, Screen Printing/T-Shirt Printing, Women's Clothing, Flowers & Gifts, Printing Services, Fashion, Gift Shops, Local Services, Men's Clothing, Souvenir Shops, Shopping, Discount Store", + "hours": { + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "_8SSuIhSyhsVl8p9CsLGCQ", + "name": "Chic Nails & Spa", + "address": "817 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963352, + "longitude": -75.1405973, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Hair Removal, Massage, Nail Salons, Waxing, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "bjcECORIsPgyyOhIQovmNA", + "name": "Pour The Core Hard Cider Festival", + "address": "4747 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8925890861, + "longitude": -75.1748307518, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Beer, Wine & Spirits, Food, Festivals", + "hours": null + }, + { + "business_id": "BcsRUZAeUiU6LSj7Ovtwxw", + "name": "The French Bakery", + "address": "8624 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770116, + "longitude": -75.208546, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Bakeries, Food, Restaurants", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "8:30-16:30", + "Sunday": "8:30-14:30" + } + }, + { + "business_id": "MfFuYEUEp9o6vIdLO5E3Ig", + "name": "University City Associates", + "address": "4104 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541507, + "longitude": -75.205635, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, University Housing, Apartments, Property Management, Colleges & Universities, Education, Real Estate Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "BO4L5vmX7pwwiQiIz7QbsQ", + "name": "sweetgreen", + "address": "1601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530218, + "longitude": -75.1675084, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Vegetarian, Salad, Restaurants, Soup", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0" + } + }, + { + "business_id": "3928XoRWMm6THfwFUYx7iQ", + "name": "US Post Office", + "address": "658 N 63Rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.973534389, + "longitude": -75.245270457, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Post Offices, Local Services, Public Services & Government, Shipping Centers", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "8:30-11:30" + } + }, + { + "business_id": "4INCRF2drQv6ivUZHkCIJA", + "name": "Tasty Donuts", + "address": "1552 Pratt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0224721, + "longitude": -75.0786441, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Donuts, Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-20:0" + } + }, + { + "business_id": "1qw5dIsQPNGLOwnuP7Wj1g", + "name": "South Bowl", + "address": "19 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9142928, + "longitude": -75.1471501, + "stars": 3.5, + "review_count": 249, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "OutdoorSeating": "True", + "Caters": "False", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "Music": "{'dj': True}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'" + }, + "categories": "American (Traditional), Bars, Nightlife, Restaurants, American (New), Sports Bars, Active Life, Bowling, Pizza", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "14:0-0:0" + } + }, + { + "business_id": "e4HGFwO2NV_yTLE5lDdlgg", + "name": "Stanton Custom Cleaners", + "address": "6112 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.033644, + "longitude": -75.215839, + "stars": 5.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Sewing & Alterations", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "EiVt-BHRX_VAFnwu_i2BbQ", + "name": "Il Cantuccio", + "address": "701 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962428, + "longitude": -75.1429472, + "stars": 3.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Italian, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "Js3nE43tlBkXvFkD3QOk-A", + "name": "Reserve", + "address": "123 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948553, + "longitude": -75.143952, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'dressy'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "OutdoorSeating": "False", + "GoodForKids": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Lounges, American (New), Nightlife, Bars, Seafood, Food, Steakhouses", + "hours": { + "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" + } + }, + { + "business_id": "PXNIcWp4xqtXllJlLseO3g", + "name": "For Eyes", + "address": "1711 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516527, + "longitude": -75.1692184, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Optometrists, Shopping, Eyewear & Opticians, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "FK51cKu1BDTG8NOQjZOsTg", + "name": "Atomic Tangerine Film Co.", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9472242342, + "longitude": -75.1534073582, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Video/Film Production, Professional Services, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "bNBi-RVlx71bugXY0GRLtQ", + "name": "Chestnut St. Cafe", + "address": "4403 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956725, + "longitude": -75.2099251, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Bubble Tea, Restaurants, Sandwiches, Vietnamese, Cafes", + "hours": { + "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-16:0" + } + }, + { + "business_id": "H7ViV-eL_t9XgOA8SeJYYw", + "name": "The Blind Pig", + "address": "702 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9622090959, + "longitude": -75.1412451012, + "stars": 4.0, + "review_count": 216, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Caters": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "Music": "None", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'" + }, + "categories": "Pubs, American (New), American (Traditional), Food, Restaurants, Nightlife, Beer, Wine & Spirits, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "65zqLOL1m658J8-9VLZx9w", + "name": "Lake Blue Gourmet Market", + "address": "8 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504832, + "longitude": -75.1457892, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Convenience Stores, Sandwiches, Food, Specialty Food, Grocery", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "rZre3HdC3fDO93pkvjpw8g", + "name": "Uptown BBQ and Grill", + "address": "8010 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0735583, + "longitude": -75.1585165, + "stars": 2.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "T95ldj9fBzsJQY50a9W_Dw", + "name": "Four Seasons Roofing & Siding", + "address": "4123 M St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0094481, + "longitude": -75.1000442, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Siding, Roofing, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "iWqidwRfktczkueMv1LAdg", + "name": "Evans Pest Control", + "address": "2858 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924915366, + "longitude": -75.1211655208, + "stars": 4.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Pest Control, Home Services, Gardeners, Local Services", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0" + } + }, + { + "business_id": "zcDWeF_u9Ur0DIyAOUkOmA", + "name": "Laundry On The Wheels", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "False" + }, + "categories": "Dry Cleaning, Laundry Services, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "LOaaDZ9NZnGlz0OCbNQE6Q", + "name": "Siam Lotus", + "address": "931 Spring Garden Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961891, + "longitude": -75.154075, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "Corkage": "False", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Thai", + "hours": null + }, + { + "business_id": "68miQTsCoUFRW2I7RfWE9Q", + "name": "Rec & Royal", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510007892, + "longitude": -75.16874, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "True", + "AgesAllowed": "u'21plus'", + "Smoking": "u'outdoor'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BYOB": "False", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Bars, Karaoke, Dance Clubs, Nightlife, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Tuesday": "20:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "fRYyVkbsiUntbUTCItwVeA", + "name": "Springfield Beer Distributor", + "address": "600 Schuylkill Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9459919, + "longitude": -75.186075, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:30", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "a1WBGjjhapPpdK1tg8DH8A", + "name": "Interior Concepts", + "address": "1701 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9285394, + "longitude": -75.1645249, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Fashion, Leather Goods, Furniture Stores, Home & Garden, Shopping", + "hours": null + }, + { + "business_id": "y0OOBEtZ64jqRTGpzNsmsA", + "name": "The Sample Rack", + "address": "918 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9444931, + "longitude": -75.1575339, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Bridal", + "hours": null + }, + { + "business_id": "tPEYLu0DNf1TL01fPLg_JQ", + "name": "Shirt Corner Plus", + "address": "259 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503105, + "longitude": -75.1455287, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Men's Clothing, Fashion, Leather Goods, Shopping", + "hours": null + }, + { + "business_id": "meyNI73KmiWd09ctARiVcw", + "name": "Disguiser Party Game Lounge", + "address": "3617 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9590456, + "longitude": -75.1941853, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False" + }, + "categories": "Food, Arts & Entertainment, Bubble Tea, Arcades, Social Clubs", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "4:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "gLpp7kjR9Zg6ypG2lRjAYg", + "name": "McCrossen's Tavern", + "address": "529 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630919, + "longitude": -75.1709203, + "stars": 4.0, + "review_count": 293, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "GoodForKids": "True" + }, + "categories": "Nightlife, Restaurants, Gastropubs, Bars, Pubs, American (Traditional)", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "PVVFos1LDfD7iETY0w4vaA", + "name": "Su Xing House", + "address": "1508 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950215, + "longitude": -75.166346, + "stars": 4.0, + "review_count": 417, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "BikeParking": "False", + "Alcohol": "'none'", + "WiFi": "u'no'", + "HappyHour": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Kosher, Chinese, Restaurants, Vegetarian, Vegan", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "6WVx6tc0LTBV3Ajze9j9VA", + "name": "Bonchon University City", + "address": "3836 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955017, + "longitude": -75.1999, + "stars": 3.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': None}" + }, + "categories": "Asian Fusion, Korean, Restaurants, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "s5fhYkNDZd2oyyD5M_S-4Q", + "name": "941 Theater", + "address": "941 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9639028, + "longitude": -75.1377991, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Music Venues, Nightlife, Active Life, Cinema, Arts & Entertainment", + "hours": null + }, + { + "business_id": "IXaeTjiYZEw6fukh_X57xg", + "name": "Chick-A-Boom", + "address": "4626 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9711355, + "longitude": -75.215612, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Shop, Restaurants", + "hours": null + }, + { + "business_id": "xufzUDqIr3-rc68Sv1zR1g", + "name": "Tapestry", + "address": "700 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409044, + "longitude": -75.1511107, + "stars": 4.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Nightlife, Bars, Gastropubs, Restaurants, Pubs", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "vWERGBrcoWgRBzWdd_yWWQ", + "name": "A & A Nail Salon", + "address": "1627 Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0815271204, + "longitude": -75.1719150148, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-20:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "DaTi7kaoHObInk2RzN3EMQ", + "name": "Laos Cafe", + "address": "2340 S Hemberger St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9228354, + "longitude": -75.184736, + "stars": 5.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Thai, Restaurants, Laotian", + "hours": null + }, + { + "business_id": "8-1vYscR7TNGF7LcJeNZBQ", + "name": "Tony Roni's Pizza Roxborough", + "address": "499 Domino Ln, Ste 4350", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0454066, + "longitude": -75.2327285, + "stars": 3.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "True", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Food, Italian, Restaurants, Event Planning & Services, Caterers, Cheesesteaks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "z7Tqhi2nA4ME_96mWmx3Rg", + "name": "Salhani Auto Service & Sales", + "address": "5201 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0288355, + "longitude": -75.0887849, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False" + }, + "categories": "Oil Change Stations, Used Car Dealers, Automotive, Auto Repair, Car Inspectors, Car Dealers", + "hours": { + "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" + } + }, + { + "business_id": "jMqEQYBIztLtcvnTujfHUA", + "name": "Hyatt Centric Center City Philadelphia", + "address": "1620 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493052, + "longitude": -75.1689368, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Event Planning & Services, Venues & Event Spaces, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "EXXi__X7nwWjI2hP862fwg", + "name": "UPS Customer Center", + "address": "15 E Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9142351768, + "longitude": -75.1448318283, + "stars": 1.5, + "review_count": 175, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Local Services, Couriers & Delivery Services", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30" + } + }, + { + "business_id": "0MEx9QE4UwII2hkxOtc8CQ", + "name": "Breathe SFS", + "address": "Loews Hotel, 1200 Market St, 5th Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517237, + "longitude": -75.1600938, + "stars": 3.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}" + }, + "categories": "Gyms, Fitness & Instruction, Hair Salons, Day Spas, Active Life, Beauty & Spas", + "hours": null + }, + { + "business_id": "C-JAsI-tgmf_eRmMXTp9Ew", + "name": "Shake Shack", + "address": "105 S 12th St, Unit 1-01", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502973, + "longitude": -75.1601048, + "stars": 3.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "American (Traditional), Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "luRbd__Ov-m8oegvZIMw1Q", + "name": "Lemon Hill Mansion", + "address": "1 Lemon Hill dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.970756, + "longitude": -75.187195, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": { + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Rg78k7uMMtMWJFUepJGdmg", + "name": "Sun Myst Tanning Spa", + "address": "124 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950308, + "longitude": -75.167585, + "stars": 4.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Eyelash Service, Tanning", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "6bzJ7Hc84lv5rEVEDaashQ", + "name": "Lowe's Home Improvement", + "address": "9701 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.081364, + "longitude": -75.024429, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Hardware Stores, Fashion, Home & Garden, Flooring, Furniture Stores, Shopping, Department Stores, Home Services, Local Services, Appliances, Appliances & Repair, Building Supplies, Nurseries & Gardening", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "-2vZHP5Ej9FroxJo8qYJXA", + "name": "Fashionably Ever After", + "address": "1701 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9126116, + "longitude": -75.1766718, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Fashion, Children's Clothing, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "k8vpeE0cDGBD9L7LGZqyDg", + "name": "What U Need", + "address": "5719 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.958559, + "longitude": -75.236226, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Body Shops, Towing, Automotive", + "hours": null + }, + { + "business_id": "Oei9PtX2MqO-ayjgxzjOYQ", + "name": "Alan D Halpern DDS", + "address": "1015 Chestnut St, Ste 417", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950393, + "longitude": -75.1575193, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oral Surgeons, Health & Medical, Dentists, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "zYDlxfKri-i9IXKPkukrVw", + "name": "Dew's Deli", + "address": "1710 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280752, + "longitude": -75.16197, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "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': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "k5fEjllBWcdKLrzpx8DBsw", + "name": "U-Haul Moving & Storage of Roxborough", + "address": "8300 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.060026, + "longitude": -75.238514, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Home Services, Self Storage, Truck Rental, Propane, Movers, Local Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "W2gSKulDUBGTfcSDk8kNvg", + "name": "McDonald's", + "address": "4163 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.012418, + "longitude": -75.119005, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Burgers, Restaurants, Fast Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "tsqyVhSaI72JTNpy4u7QGg", + "name": "Champagne Cafe", + "address": "21 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.036477, + "longitude": -75.1744883, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "NoiseLevel": "'very_loud'", + "RestaurantsReservations": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Cafes, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "XhdTyY6JKMFj29PEJx-zfw", + "name": "Clark Park", + "address": "43RD And Baltimore", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9495541, + "longitude": -75.2092403, + "stars": 4.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Flavor, Parks, Active Life", + "hours": null + }, + { + "business_id": "hukc2ci6jkqzqADNqqq-eQ", + "name": "Mike & Matt's Italian Market", + "address": "1206 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262649, + "longitude": -75.1659695, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Food, Grocery, Meat Shops, Specialty Food, Restaurants, Delis", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "8:30-16:0", + "Sunday": "8:30-13:0" + } + }, + { + "business_id": "uE_Ik45Sn9ych1XeO1KhdA", + "name": "AFC Urgent Care South Philadelphia", + "address": "1444 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9249962, + "longitude": -75.1710913, + "stars": 3.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Hospitals, Urgent Care, Medical Centers, Family Practice, Doctors, Walk-in Clinics", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "TdIkFrKgovD1pzJQjr3kgQ", + "name": "Salon Ricochet", + "address": "104 S 13 St, 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501161, + "longitude": -75.1619934, + "stars": 4.5, + "review_count": 68, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "JASlc6gfA2AJ-VaLXgPgUw", + "name": "El Coqui Panaderia", + "address": "3528 I St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0026550293, + "longitude": -75.1114578247, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Delis, Bakeries, Caterers, Event Planning & Services, Restaurants, Spanish, Food, Puerto Rican, Caribbean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "hJ7YF8ezCtOS48PXYYhAIw", + "name": "Vandele Design", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0149824, + "longitude": -75.1866396, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Contractors, Painters, Local Services, Interior Design", + "hours": { + "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-15:0" + } + }, + { + "business_id": "U1lUiDkzn4TbECX2tjbZrA", + "name": "Property Recovery 911", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Carpet Cleaning, Grout Services, Air Duct Cleaning, Damage Restoration, Home Services, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "dkxCH6f6-YXsmfWDEiZs-Q", + "name": "Hawthorn Suites By Wyndham Philadelphia Airport", + "address": "4630 Island Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8884, + "longitude": -75.230898, + "stars": 2.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": null + }, + { + "business_id": "5QtYMPUpaHz1H070KBjufg", + "name": "Paratha Roll", + "address": "3651 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9594117, + "longitude": -75.1949034, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsReservations": "False" + }, + "categories": "Fast Food, Specialty Food, Indian, Food, Ethnic Food, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "OqyaD0hEytrcfC_F-ugqMw", + "name": "Noir Restaurant & Bar", + "address": "1909 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263049, + "longitude": -75.167423, + "stars": 4.0, + "review_count": 154, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "HappyHour": "True", + "CoatCheck": "False", + "Smoking": "u'outdoor'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (Traditional), Salad, Pubs, Nightlife, Bars, Italian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "Xep8MogF-JeF_MAp7Kamtg", + "name": "Quigley Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Home Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "0SQPs-d2gauqscEKPgK7xg", + "name": "Express Gas & Super Soft Car Wash", + "address": "2419 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9939426, + "longitude": -75.0933036, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Car Wash", + "hours": null + }, + { + "business_id": "wtBnhvQdCsiqwUFW84qfdw", + "name": "Maya J", + "address": "4371 Main Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0259316, + "longitude": -75.224273, + "stars": 4.5, + "review_count": 53, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "False", + "BikeParking": "True" + }, + "categories": "Tapas/Small Plates, Bars, Nightlife, Restaurants, Cocktail Bars, American (Traditional)", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "vW8QL56poD7QxFbz8VY40A", + "name": "Philly Muscle Tees", + "address": "6216 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0359276, + "longitude": -75.2181648, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Wear, Shopping, Trophy Shops, Fashion, Sporting Goods", + "hours": { + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "10:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "X3NS8516o015Z1zcOwrqmQ", + "name": "Jansen", + "address": "7402 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0627073, + "longitude": -75.1931822, + "stars": 4.5, + "review_count": 139, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "Caters": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "None", + "RestaurantsTableService": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "17:0-20:0" + } + }, + { + "business_id": "YRuQmYciOL0UUZol-iLTNQ", + "name": "Roof Gurus", + "address": "431 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0770777, + "longitude": -75.0837417, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Roofing, Home Services, Siding", + "hours": null + }, + { + "business_id": "K8wywWf32hkkZ6fLP5iNqQ", + "name": "All In Time", + "address": "7948 Oxford Ave, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0757157, + "longitude": -75.0852741, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Watches, Shopping, Watch Repair, Jewelry, Home & Garden, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "mdSwEJaS_142TPGc66Al_g", + "name": "Ross Dress for Less", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.047617, + "longitude": -75.055176, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Accessories, Home Decor, Department Stores, Women's Clothing, Fashion, Shopping, Home & Garden, Discount Store, Men's Clothing", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "kcSS8bKAokzVOuAQwwSNjw", + "name": "Olde City Tattoo", + "address": "44 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488652, + "longitude": -75.1441344, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "xnmLIzRZEzOod7LPY64elw", + "name": "The Galley", + "address": "2500 E Norris St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97597, + "longitude": -75.1261528536, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'outdoor'", + "OutdoorSeating": "False", + "HappyHour": "True", + "Caters": "True", + "CoatCheck": "False", + "BYOB": "False", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Corkage": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Irish Pub, Restaurants, American (Traditional), Polish, Sports Bars, Chicken Wings, Irish, Nightlife, Bars, Local Flavor", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "B7qlIqvE3rxh11EMhXl1Vw", + "name": "Luminosity", + "address": "4167 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023655, + "longitude": -75.2199009, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Spray Tanning, Tanning, Beauty & Spas, Teeth Whitening", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "JDv3h1xRFIW8fXckqgTdRg", + "name": "Fuji Mountain", + "address": "2030 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520801, + "longitude": -75.1747619, + "stars": 4.0, + "review_count": 475, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}" + }, + "categories": "Restaurants, Karaoke, Bars, Nightlife, Japanese, Sushi Bars", + "hours": { + "Monday": "12:0-21:30", + "Tuesday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-22:30", + "Saturday": "13:0-22:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "8vssmQoUriFOtv1dmzAekA", + "name": "Super Fresh", + "address": "180 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968699, + "longitude": -75.139065, + "stars": 3.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Food, Drugstores, Grocery", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "HMFdn_aA3ASTKWqme7aMpQ", + "name": "Original 13 Ciderworks", + "address": "1526 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9745975872, + "longitude": -75.1402150467, + "stars": 4.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsReservations": "True", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (Traditional), Food, Restaurants, Bars, Pubs, American (New), Gluten-Free, Nightlife, Cideries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "2hCIzMXhSbgObLS4al82rg", + "name": "Applebee's Grill + Bar", + "address": "2501 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976856, + "longitude": -75.118897, + "stars": 2.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "HasTV": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "Smoking": "u'outdoor'", + "GoodForDancing": "False", + "HappyHour": "True", + "DriveThru": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nightlife, Restaurants, Steakhouses, Bars, Sports Bars, American (Traditional), Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "An7Ci_vupH18AjRBc_mlYA", + "name": "Skinner's Dry Goods Tavern", + "address": "226 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9499217, + "longitude": -75.1447539, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": null + }, + { + "business_id": "272WyYWPnH_pHOzrTvhzng", + "name": "ALDI", + "address": "1911 N 76th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9787458844, + "longitude": -75.2702441812, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Grocery, Specialty Food, Discount Store, Food, Fruits & Veggies, Beer, Wine & Spirits, Organic Stores, Shopping, Meat Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "Qbb6nFPzPgvyCDvCd7OHqA", + "name": "McDonald's", + "address": "2109 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.985224, + "longitude": -75.156029, + "stars": 1.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'loud'", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "True", + "HasTV": "True" + }, + "categories": "Fast Food, Coffee & Tea, Burgers, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "cKtFjzhAfd3DT_7G-kNK1g", + "name": "Saladworks", + "address": "1500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9623509, + "longitude": -75.1637363, + "stars": 2.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'free'", + "NoiseLevel": "u'quiet'", + "BikeParking": "True" + }, + "categories": "Soup, American (Traditional), Salad, Food, Restaurants, Sandwiches, Do-It-Yourself Food, Vegetarian, Fast Food", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30" + } + }, + { + "business_id": "mLdqrqgEXuUrCdgHLr30QQ", + "name": "Mango Mango Dessert", + "address": "1013 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546606, + "longitude": -75.156606, + "stars": 4.0, + "review_count": 234, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DriveThru": "False", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Desserts, Shaved Ice, Waffles, Restaurants", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "wLjKH79HxgqsNzKh-rMsvg", + "name": "Pretoria Salon & Spa", + "address": "2200 Benjamin Franklin Pkwy, Ste S0Z02", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960817, + "longitude": -75.1771153, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Eyelash Service, Hair Salons, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "eLW6dLoA1nFriXpzzPxvxg", + "name": "Ming River Side Walk House", + "address": "148 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550532, + "longitude": -75.1562368, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Specialty Food, Food, Ethnic Food, Imported Food, Restaurants, Chinese, Noodles", + "hours": null + }, + { + "business_id": "kO9X6EQklZBeshBQsVayuw", + "name": "Philadelphia Federal Credit Union", + "address": "5000 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9477811, + "longitude": -75.2234133, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "r_oscENLKdrF2KNyWP4oow", + "name": "Di Bruno Bros.", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491548072, + "longitude": -75.1555580299, + "stars": 4.0, + "review_count": 105, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "DogsAllowed": "False", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, American (New), Food, Beer Bar, Cheese Shops, Bars, Nightlife, Restaurants, Coffee & Tea, Meat Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "5l8v9CNdQOZtD2wKMqAGAA", + "name": "Giggles Gifts", + "address": "7400 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0380742, + "longitude": -75.0379556, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Flowers & Gifts, Gift Shops, Jewelry, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "UfNta35H6m-z2xN9XFI77g", + "name": "House of Thai Cuisine", + "address": "3520 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0372006, + "longitude": -75.0421226, + "stars": 4.5, + "review_count": 266, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "u'quiet'", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Thai", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "13:0-22:30", + "Sunday": "13:0-21:30" + } + }, + { + "business_id": "xjPie6OJg5lM3Q9oJsJoeA", + "name": "CVS Pharmacy", + "address": "1424 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9509666151, + "longitude": -75.1652825388, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Convenience Stores, Pharmacy, Food, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Pdl0Bdjo96XEWJqZ8-LRNw", + "name": "Crown Chicken and Grill", + "address": "7275 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0612109, + "longitude": -75.0837685, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": null + }, + { + "business_id": "k_xNR7103Sr652Uk2Sm7aw", + "name": "Tim's of Philadelphia", + "address": "1500 Market St, Ste c321, Concourse Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Barbers, Nail Salons", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "Bmyp9E2iedRAjv_oNmFVsw", + "name": "Wendy's", + "address": "2340 Oregon Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9191842, + "longitude": -75.1886001, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "DriveThru": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "g0UzHjer5gS0cCsNYAYO5A", + "name": "Ritual Shoppe ", + "address": "2003 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950741, + "longitude": -75.173949, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Used, Vintage & Consignment, Home Decor, Fashion, Art Galleries, Accessories, Spiritual Shop, Shopping, Arts & Entertainment, Home & Garden, Candle Stores, Jewelry, Women's Clothing", + "hours": { + "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", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "DVhGDwHM1J36SulNSKw6Ag", + "name": "Jeff Cold Beer", + "address": "1644 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9345922, + "longitude": -75.1723254, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food, Local Flavor", + "hours": null + }, + { + "business_id": "yhGRai3h-Qt_co9-zwc2Sw", + "name": "Lee's Hoagie House", + "address": "4034 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539941, + "longitude": -75.2042887, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "7aEU5hE5kKHhEmbCbFU-ig", + "name": "Rejuve Nail & Skin Day Spa", + "address": "4514 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002949, + "longitude": -75.222232, + "stars": 3.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Skin Care, Nail Salons, Massage", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "F6KGWi35Y79rC-x3LiISiA", + "name": "DELIcious Bites", + "address": "1603 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441568266, + "longitude": -75.1689964242, + "stars": 3.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "HasTV": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Food, Sandwiches, Restaurants, Convenience Stores, Delis", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "kK6rYQcyxW_FnuVh8oTT0g", + "name": "McDonald's", + "address": "3725 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9946018986, + "longitude": -75.0936814351, + "stars": 1.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "NoiseLevel": "'loud'", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Fast Food, Restaurants, Burgers, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "OQayieN2Y7JXMZwBZ-qUJg", + "name": "High End Car Stereo and Performance", + "address": "305 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9578869, + "longitude": -75.1583231, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Repair, Automotive, Car Stereo Installation, Auto Glass Services, Auto Detailing, Auto Customization", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "WQ1m-h4N3UoSwKFHa5zAwg", + "name": "Nineteen 26", + "address": "21 N Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530355, + "longitude": -75.1620625, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'paid'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "hoQhoinqBiNujYngk237EQ", + "name": "Nail & Hair Spa Bar", + "address": "609 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412714, + "longitude": -75.1490247, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "GoodForKids": "True" + }, + "categories": "Makeup Artists, Beauty & Spas, Nail Salons, Skin Care, Hair Salons, Waxing, Day Spas, Hair Removal", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "2TntcEfIoBFAKhRDI153_A", + "name": "Univest Bank and Trust Co.", + "address": "7226 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0606249, + "longitude": -75.1917917, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "SmGtuHmqlV2YWqhUecSU0w", + "name": "Mayfair Express Lube", + "address": "7114 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0350992, + "longitude": -75.0445967, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "1Z3ZxIKVGOXZCCXdlbkKAA", + "name": "Baked", + "address": "740 S 4th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9377112261, + "longitude": -75.1499712467, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Home Services, Spray Tanning, Teeth Whitening, Beauty & Spas, Tanning, Skin Care, Eyelash Service", + "hours": { + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "WaFQd1hZAvnOM6iV8RsNiw", + "name": "Modell's Sporting Goods", + "address": "2437 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9221230212, + "longitude": -75.1860394164, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Sporting Goods", + "hours": null + }, + { + "business_id": "aWx3pL5aHKAevBvEfSwsZQ", + "name": "Merritt Massage and Yoga", + "address": "200 W Northwestern Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.08366, + "longitude": -75.232925, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Reiki, Yoga, Active Life, Massage Therapy, Beauty & Spas, Massage, Fitness & Instruction, Health & Medical", + "hours": { + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-17:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "lYloPAiaWJwWgno4SdxD0Q", + "name": "Dolce Carini", + "address": "1929 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521232, + "longitude": -75.1729836, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "Caters": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False" + }, + "categories": "Food, Restaurants, Food Delivery Services, Italian, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-16:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "r5thRhSnNss1SabpD-varw", + "name": "Value Kia", + "address": "6915 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.905522, + "longitude": -75.224934, + "stars": 1.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Auto Repair, Car Dealers, Automotive", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "40O7uKX-uAG_JDrS-OM85w", + "name": "Umai Umai", + "address": "533 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9646735, + "longitude": -75.1741002, + "stars": 4.5, + "review_count": 488, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "HasTV": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "None", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Japanese, Sushi Bars, Asian Fusion, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "FV130V7ArLHiNRtkCPbEMw", + "name": "Denise's Soul Food Restaurant", + "address": "3025 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531112, + "longitude": -75.1846798, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'" + }, + "categories": "Food Stands, Food, Restaurants, Soul Food, Caribbean, Food Trucks", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "8do5XP-TDtTG4rnJgDZ4FA", + "name": "Nutmeg Cake Design", + "address": "220 Krams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0305853, + "longitude": -75.2256405, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Food, Desserts, Bakeries, Cupcakes", + "hours": null + }, + { + "business_id": "amjf4YaJ5yc68GC3fgQfzw", + "name": "AAA South Philadelphia", + "address": "2260 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9186011, + "longitude": -75.1857231, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Travel Services, Insurance, Automotive, Hotels & Travel, Towing", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "hXg5o5F2Q4YifUZY8eTDMQ", + "name": "Waxing The City", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07957962, + "longitude": -75.02739085, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "dwkI0-b5PM2-yn-v7j2Agg", + "name": "T cafe", + "address": "108 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480853, + "longitude": -75.1429316, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "DriveThru": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Desserts, Bubble Tea, Coffee & Tea, Restaurants, Breakfast & Brunch, Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "YDYrdg4nIRaJR7gO9JPHow", + "name": "Barristers Bar & Grille", + "address": "1823 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510408, + "longitude": -75.1714882, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sports Bars, Nightlife, Restaurants, Bars, Pubs, Burgers", + "hours": null + }, + { + "business_id": "dwJL0XiFv7EgCts-wjQpwg", + "name": "Star Pizza", + "address": "5801 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0162161, + "longitude": -75.0615677, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "DP01l73-ZinNADAv14rfww", + "name": "Mvp Nail Salon", + "address": "9550 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0868982, + "longitude": -75.036267, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "UGZZVg5iOT-Q9PfoST38oQ", + "name": "Main Garden Chinese Restaurant", + "address": "5150 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0300222, + "longitude": -75.1321794, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-3:0", + "Saturday": "11:30-3:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "rdGJPaAKsf2ZUK9MWC7wcA", + "name": "Tague Lumber Building Materials Distribution", + "address": "560 E High St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0459139, + "longitude": -75.1700425, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Building Supplies", + "hours": null + }, + { + "business_id": "Efq32INj5XQIX2CUUUQwzQ", + "name": "US Post Office", + "address": "555 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0347563, + "longitude": -75.2141304, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Post Offices, Public Services & Government, Shipping Centers, Local Services", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "i-qUPXA8sapTzCCF7YXpog", + "name": "Domino's Pizza", + "address": "4229 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0178351, + "longitude": -75.1486476, + "stars": 1.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "Caters": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza, Chicken Wings, Sandwiches", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "4FLz0ha5Gy4dKKl3UFVI6g", + "name": "The Market Tavern", + "address": "3000 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546024, + "longitude": -75.1838311, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, American (Traditional), Irish Pub, Pubs, Beer, Wine & Spirits, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "75Ela2MABxzZTs09OFSRsg", + "name": "China House II", + "address": "70th St & Grovers Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9107002, + "longitude": -75.2318729, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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" + } + }, + { + "business_id": "RU0UTD_beaENcS5e9EXH-w", + "name": "IHOP", + "address": "4310 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.03036, + "longitude": -75.10488, + "stars": 2.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "Corkage": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "ByAppointmentOnly": "False", + "CoatCheck": "False", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "American (Traditional), Burgers, Diners, Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-14:0", + "Saturday": "6:0-15:30", + "Sunday": "6:0-15:30" + } + }, + { + "business_id": "wAgw6Ufvgnnh6HoTzHvM1Q", + "name": "Plan-it EJ", + "address": "717 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9750701, + "longitude": -75.1269342, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Contractors, Local Services, Home Services, Bridal, Interior Design, Sewing & Alterations", + "hours": null + }, + { + "business_id": "pO8UfZRu1KfucoZgQyQIyQ", + "name": "Bliss Juices And Ice Cream", + "address": "4420 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954952, + "longitude": -75.211523, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "bic8O3P5BuiytH4EaEd0kg", + "name": "Cafe Hindh", + "address": "1336 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0031941, + "longitude": -75.151614, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "pKs2J9bigGVN1qxnOrDK8A", + "name": "South Garden", + "address": "220 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411247, + "longitude": -75.1465073, + "stars": 3.5, + "review_count": 70, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "0yNUjszQ0kOphvZs_kvvqA", + "name": "Scratch Biscuits", + "address": "1306 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506623443, + "longitude": -75.1620064822, + "stars": 3.0, + "review_count": 121, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Bakeries, American (Traditional), Fast Food, Breakfast & Brunch, Food, Restaurants, Southern, Sandwiches, Comfort Food", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "e27sItQBZuFbBPz_Ucq76A", + "name": "Tea Do", + "address": "3816 Chestnut St, Ste 36", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954682252, + "longitude": -75.1999465923, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "Caters": "True" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Food, Fast Food, Restaurants, Bubble Tea", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "lZX5_8qspEXtMJGFQ0-Mow", + "name": "Philadelphia Marriott Downtown", + "address": "1201 Market Street, (guest entrance at 1200 Filbert Street).", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952534, + "longitude": -75.160578, + "stars": 3.0, + "review_count": 595, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "WiFi": "u'paid'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Venues & Event Spaces, Hotels, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "toEYTrafM81UMo2GyCSxFw", + "name": "Cambria Hotel Philadelphia Downtown Center City", + "address": "219 South Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486052, + "longitude": -75.1640808, + "stars": 3.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "WgyhlYg3fnSgco4qLa20cg", + "name": "Almaz Cafe", + "address": "140 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506628, + "longitude": -75.1739332, + "stars": 4.0, + "review_count": 381, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "HasTV": "True", + "DogsAllowed": "False" + }, + "categories": "Ethiopian, Imported Food, Restaurants, Coffee & Tea, American (Traditional), Ethnic Food, Specialty Food, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "RbHZJdoy7kIXfGRmM-6sdw", + "name": "Station Bar & Grill", + "address": "1550 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9258604, + "longitude": -75.1725846, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "Smoking": "u'no'", + "RestaurantsDelivery": "True", + "CoatCheck": "False", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "Corkage": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Bars, Arts & Entertainment, Nightlife, Sports Bars, Restaurants, American (Traditional), Gastropubs, Music Venues", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "13:0-2:0", + "Thursday": "13:0-2:0", + "Friday": "13:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "G602l7e35ia6mOHzHaFV8g", + "name": "P & S Ravioli", + "address": "7051 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0278735, + "longitude": -75.0389938, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food", + "hours": null + }, + { + "business_id": "xObSX9_zzibtC53jCOSaig", + "name": "GLO Aesthetics", + "address": "1337 S 9th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9319842, + "longitude": -75.1591668, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Beauty & Spas, Medical Spas", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-13:0" + } + }, + { + "business_id": "r8fkTzV-yHIGKXvRm2NkzA", + "name": "Green Village Cleaners", + "address": "811 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9381755, + "longitude": -75.1530218, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services, Home Services", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "6glFzEDwOtT3MQRhtHIpTw", + "name": "Blaze Pizza", + "address": "1100 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979333, + "longitude": -75.1530332, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Ambience": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "HasTV": "True", + "DriveThru": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Gluten-Free, Restaurants, Salad, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "Nre140uX7xbHK2W80kzO6A", + "name": "Gachi Sushi and Noodle", + "address": "8000 Essington Ave, Terminal E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874253, + "longitude": -75.251319, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars, Noodles", + "hours": { + "Monday": "4:0-22:30", + "Tuesday": "4:0-22:30", + "Wednesday": "4:0-22:30", + "Thursday": "4:0-22:30", + "Friday": "4:0-22:30", + "Saturday": "4:0-22:30", + "Sunday": "4:0-22:30" + } + }, + { + "business_id": "ZNiwfEFDwzjA7r8EOTiW-w", + "name": "Somerton Animal Hospital", + "address": "13400 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1295215411, + "longitude": -75.0190781307, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": null + }, + { + "business_id": "hZyq5_bP6AHCPxGWapXS_A", + "name": "Writer's Block Rehab", + "address": "1342 Cypress St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463542742, + "longitude": -75.1635259249, + "stars": 4.0, + "review_count": 182, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "GoodForDancing": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Caters": "False", + "Smoking": "u'no'" + }, + "categories": "Lounges, Bars, Restaurants, Nightlife, Cafes, Cocktail Bars", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:30", + "Saturday": "14:0-23:30", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "1Qg-7eOwpE5gUApeSwnkxg", + "name": "Ballroom Bliss", + "address": "1336 Kater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430078243, + "longitude": -75.1649476, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Fitness & Instruction, Dance Studios, Wedding Planning, Event Planning & Services", + "hours": { + "Monday": "12:0-21:30", + "Tuesday": "12:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "13:0-21:30", + "Saturday": "9:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "KkdLjGfVsfGESNkE0ktURg", + "name": "Joe's Steaks + Soda Shop", + "address": "1 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969035, + "longitude": -75.134557, + "stars": 4.0, + "review_count": 392, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "DogsAllowed": "False", + "OutdoorSeating": "None", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Ice Cream & Frozen Yogurt, Cheesesteaks, Food, Sandwiches, American (Traditional)", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "gDg-stv1rn0I_AyELp2zNg", + "name": "University of Pennsylvania Bookstore", + "address": "3601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533422785, + "longitude": -75.1950286591, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Shopping, Books, Mags, Music & Video, Bookstores", + "hours": { + "Monday": "8:30-21:30", + "Tuesday": "8:30-21:30", + "Wednesday": "8:30-21:30", + "Thursday": "8:30-21:30", + "Friday": "8:30-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "SICdtxh-1DDOnSFJZlUxGw", + "name": "Taste of Mogul", + "address": "2226 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048274, + "longitude": -75.061865, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Indian, Restaurants", + "hours": null + }, + { + "business_id": "jFrnbbc8s6wgBQUgpZJ8fA", + "name": "Gardendale Social Club", + "address": "417 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590475, + "longitude": -75.1515738, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": { + "Thursday": "23:30-3:30", + "Friday": "23:30-3:30", + "Saturday": "23:30-3:30" + } + }, + { + "business_id": "pu_KrMPGn8cJQQMQLwa95A", + "name": "Campus Copy Center", + "address": "3907 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953993, + "longitude": -75.200582, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Couriers & Delivery Services, Shipping Centers, Printing Services, Local Services, Professional Services, Graphic Design", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "sn7Tig3_rVLYv0FRguh5oQ", + "name": "Garden's Pizza", + "address": "1902 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9724094819, + "longitude": -75.1676229023, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "lakMZT5PYQltSOjGXWnJ0g", + "name": "Lil' Pop Shop", + "address": "265 S 44th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533432722, + "longitude": -75.2103484422, + "stars": 4.5, + "review_count": 285, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "1EEL5DATdF7odIRhVpf48A", + "name": "Viet Bistro", + "address": "1640 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440531, + "longitude": -75.1701109, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Sandwiches, Vietnamese, Restaurants, Soup, Noodles", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "kegzuRTWVcIAfsmGmkfHeA", + "name": "The Parlour", + "address": "1339 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9713053, + "longitude": -75.1340836, + "stars": 4.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Waxing, Beauty & Spas, Hair Removal, Skin Care, Hair Salons", + "hours": { + "Tuesday": "13:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fhV1QLwgyuT7UG3Lmxk46A", + "name": "Mashwa", + "address": "413 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941751, + "longitude": -75.149596, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Mexican, Mediterranean, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "12:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "QUHXdH8vrJ6LSj3UxgeO8g", + "name": "PA Nail Salon and Spa", + "address": "1406 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9668474, + "longitude": -75.1607963, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "kc6GEK0fCptiqKy0l4l7kw", + "name": "Chi Mac", + "address": "5533 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0357569, + "longitude": -75.130303, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "Caters": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Pizza, Ethnic Food, Asian Fusion, Korean, Restaurants, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "P8RXed34d07PkQd4NH73VA", + "name": "Sergeant York", + "address": "2327 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9792884895, + "longitude": -75.12550883, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, American (Traditional), Restaurants, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "4:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "VG90jWMhlapW4gfO63jtHA", + "name": "Delilah's At The Terminal", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538018, + "longitude": -75.158459, + "stars": 3.0, + "review_count": 105, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': True, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Barbeque, Soul Food, Ethnic Food, Specialty Food", + "hours": null + }, + { + "business_id": "fivoAD6x6jXJRiEZwhpcEQ", + "name": "Amis Trattoria", + "address": "412 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9448680216, + "longitude": -75.1632501141, + "stars": 4.0, + "review_count": 762, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Wine Bars, Tapas/Small Plates, Nightlife, Restaurants, Italian, Cocktail Bars, Pizza, Bars", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "NK1jJ0H_blEikmuqJdWrYg", + "name": "Tall Ships Festival", + "address": "121 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9525531, + "longitude": -75.1397163, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "7jYC4dxkoiAULgENY7hbMA", + "name": "Mondo Dei Dolci", + "address": "11903 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1214999657, + "longitude": -75.0160301104, + "stars": 4.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "WiFi": "'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "WheelchairAccessible": "True" + }, + "categories": "Food, Bakeries, Restaurants, Coffee & Tea, Cafes, Breakfast & Brunch", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "gvD09Ev1aOmphtlq07zYEA", + "name": "El Rancho Viejo", + "address": "942 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936282, + "longitude": -75.152142, + "stars": 5.0, + "review_count": 110, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "14:0-22:0" + } + }, + { + "business_id": "Li07UPjvEgT0pVybLDOIPw", + "name": "Travelex Currency Services", + "address": "1800 Jfk Blvd, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539914, + "longitude": -75.1699969, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Hotels & Travel, Currency Exchange, Travel Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "UlckmYD4vBcd2GBI5FXy0w", + "name": "I Tea", + "address": "1537 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96306, + "longitude": -75.164148, + "stars": 4.0, + "review_count": 163, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Ice Cream & Frozen Yogurt, Tea Rooms, Japanese, Food, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "UEh4Jqc29tHs1TEgX9UTxA", + "name": "Careda's Caribbean Cuisine", + "address": "51 north 12th street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953194, + "longitude": -75.159407, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Caribbean, Cooking Classes, Restaurants, Arts & Crafts, Event Planning & Services, Shopping, Personal Chefs, Caterers", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Qkn7xSYIsKYmGmlhJZQJcg", + "name": "China King", + "address": "922 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953346, + "longitude": -75.1555641, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "L7VeVSnIal7qyy2yMg7T2A", + "name": "Cleaners 48", + "address": "4801 PIne St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9528132, + "longitude": -75.2185259, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "9n4LqdxVDc7gNW4gdvj5Lw", + "name": "Telstar Jewelers", + "address": "1410 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9243361675, + "longitude": -75.170224045, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Watches, Shopping, Jewelry, Gold Buyers", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "8-0t76fS3LNlLERzJR9aUQ", + "name": "Lo Spiedo", + "address": "4503 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8966225443, + "longitude": -75.1754220157, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "HasTV": "True", + "NoiseLevel": "'average'", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Salad, Barbeque, American (Traditional), American (New), Sandwiches", + "hours": { + "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": "17:0-22:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "pog-n68Vw_8tvHPHB51rZQ", + "name": "Love City Brewing Company", + "address": "1023 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9603099077, + "longitude": -75.1554151252, + "stars": 4.5, + "review_count": 162, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HappyHour": "True", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "DriveThru": "False", + "WheelchairAccessible": "True" + }, + "categories": "Brewpubs, Breweries, Nightlife, Bars, Food, Bar Crawl", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "EiwbnjJzn4KQ1hkZORn4fg", + "name": "Graham's Pub", + "address": "8919 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0694581, + "longitude": -75.2398389, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Pubs, Nightlife, Dive Bars", + "hours": { + "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" + } + }, + { + "business_id": "qNeQK4ZJxIxUn-FXqKUaJQ", + "name": "Liberty Tax", + "address": "6175 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0353394, + "longitude": -75.2168609, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Professional Services, Tax Services, Accountants", + "hours": { + "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-16:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "9ZNfxLA-McUlIep4UM5mqA", + "name": "Jean Madeline Aveda Institute Salon", + "address": "315 Bainbridge St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940641, + "longitude": -75.14848, + "stars": 3.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Hair Removal, Education, Nail Salons, Specialty Schools, Beauty & Spas, Cosmetology Schools, Hair Salons", + "hours": { + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "EAF4MLS6x7mzq8CDpOcXXA", + "name": "Wendy's", + "address": "901 Cottman Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0623573, + "longitude": -75.084702, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "3TKvav2zyNnyGaHC3MEAow", + "name": "Tuman W Michael, DMD", + "address": "7111 Lincoln Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0547182, + "longitude": -75.1941397, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Endodontists, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:30", + "Wednesday": "6:30-18:30", + "Thursday": "6:30-18:30", + "Friday": "6:30-18:30", + "Saturday": "7:0-12:0" + } + }, + { + "business_id": "oxhsxEcRQqRSxs6Arg222A", + "name": "Dolly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Junk Removal & Hauling, Movers, Local Services, Couriers & Delivery Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "CVJsqDS_XmI0CGbLC1EclQ", + "name": "Mr Wish", + "address": "6846 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0417146, + "longitude": -75.064734, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsTableService": "False", + "NoiseLevel": "'very_loud'", + "HasTV": "True", + "OutdoorSeating": "False", + "BikeParking": "False" + }, + "categories": "Juice Bars & Smoothies, Cocktail Bars, Bars, Cafes, Bubble Tea, Restaurants, Nightlife, Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "ChZvQI5Uatk8W4MFduMa8w", + "name": "Lawrence Heating & Air", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 40.0445783753, + "longitude": -75.1596814754, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "RFddL08HCwooz6oXutg4ag", + "name": "Deuce Restaurant & Bar", + "address": "1040 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672329, + "longitude": -75.1401103, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "lv4LvYepg4aVjLcrUrLdOw", + "name": "International Floral Design", + "address": "1531 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9123810638, + "longitude": -75.1750807936, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Flowers & Gifts, Event Planning & Services, Florists, Shopping, Floral Designers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "fdfMYT67xUYY2IqCEnIS2A", + "name": "Chicks Cafe & Wine Bar Inc", + "address": "614 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941738, + "longitude": -75.154264, + "stars": 4.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'" + }, + "categories": "French, Wine Bars, Italian, Nightlife, American (New), Tapas Bars, Bars, Beer, Wine & Spirits, Food, Restaurants", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "LxM8hN8jRG0rGhlDJhd8XA", + "name": "El Azteca", + "address": "6613 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.030807, + "longitude": -75.053964, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Salad, Restaurants, Mexican", + "hours": null + }, + { + "business_id": "ab5hOCoFF0Jm4UvP6F5QwQ", + "name": "Mipals Deli", + "address": "2300 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9222656, + "longitude": -75.1737245, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches, Delis", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:30-17:30", + "Sunday": "9:0-15:30" + } + }, + { + "business_id": "XIqdHDlmzFeM4tXmArC3XA", + "name": "Shari Leavitt, DMD", + "address": "3901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9574429, + "longitude": -75.2007276, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "Bmoc9P_qcjuPvVzwOWIXJg", + "name": "King of Pizza", + "address": "3633 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0084534, + "longitude": -75.1503539, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "C6fwGCGAEMMNzAPkeAgQyQ", + "name": "3rd Element Spa & Salon", + "address": "7175 Ogontz Ave, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0640764, + "longitude": -75.1526683, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Massage, Day Spas, Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "HDvB3LN8R8EWd4WmFdbdng", + "name": "Sophie's Yarns", + "address": "739 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9392953, + "longitude": -75.1495268, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Knitting Supplies, Arts & Crafts, Shopping", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "qoX8zXR3pAF8hoaAYOfxNg", + "name": "Takka Grill", + "address": "418 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0205029, + "longitude": -75.1174964, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Salad, Grocery, Steakhouses, Food, Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-0:30", + "Saturday": "11:0-0:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "ZynowAYBV6-mBBJb7dWN8w", + "name": "Hummingbird Diner", + "address": "1530 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0795109, + "longitude": -75.173133, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'free'", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "9Qe5ib0bCgRITjYn-iA-Bg", + "name": "Legal Sea Foods", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876009, + "longitude": -75.242965, + "stars": 4.0, + "review_count": 326, + "is_open": 0, + "attributes": { + "WiFi": "u'paid'", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "Caters": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Nightlife, Food, Beer, Wine & Spirits, Restaurants, Breakfast & Brunch, Bars, American (New), Seafood, Gluten-Free", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "_x_4r6wNkvWjxjeUQ0jRKw", + "name": "Cafe Soleil", + "address": "3535 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563664, + "longitude": -75.1937554, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "C_Rv9_R41_8qAz1TA3kW7A", + "name": "215 Tv Wall Mounting Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Local Services, Home Services, Home Theatre Installation, TV Mounting, Lighting Fixtures & Equipment, Security Systems", + "hours": { + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "BjVRG3OIeEp8X_x5tv8h5w", + "name": "City Sports", + "address": "1608 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496657, + "longitude": -75.1680264, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sporting Goods, Shopping, Fitness/Exercise Equipment, Outdoor Gear", + "hours": { + "Monday": "8:0-21:30", + "Tuesday": "8:0-21:30", + "Wednesday": "8:0-21:30", + "Thursday": "8:0-21:30", + "Friday": "8:0-21:30", + "Saturday": "8:0-21:30", + "Sunday": "10:0-20:30" + } + }, + { + "business_id": "amqruwbDGCcyu55p2pTjMA", + "name": "Flying Fish Crafthouse", + "address": "1363 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9775836, + "longitude": -75.1853081, + "stars": 3.0, + "review_count": 129, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "CoatCheck": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "OutdoorSeating": "True" + }, + "categories": "Food, Breweries, Restaurants, Bars, Beer Bar, American (Traditional), Nightlife", + "hours": { + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "DJujODX9OTMuveKxMEL0zg", + "name": "Mask and Wig", + "address": "310 S Quince St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946013, + "longitude": -75.160521, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Social Clubs, Bars, Venues & Event Spaces, Performing Arts, Event Planning & Services, Nightlife, Arts & Entertainment, Comedy Clubs, Local Flavor", + "hours": { + "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" + } + }, + { + "business_id": "IBXxheRBebb5lyrPGIWshw", + "name": "Gardenia", + "address": "251 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482034, + "longitude": -75.171023, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "HappyHour": "True" + }, + "categories": "Buffets, Arts & Entertainment, Art Galleries, Restaurants, American (Traditional), Shopping", + "hours": { + "Tuesday": "11:30-14:30", + "Wednesday": "11:30-14:30", + "Thursday": "11:30-14:30", + "Friday": "11:30-14:30", + "Saturday": "11:30-14:30", + "Sunday": "11:30-14:30" + } + }, + { + "business_id": "vVfP0O7SvcBphLYQ6CFNKg", + "name": "Tangier Restaurant", + "address": "1801 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9456047, + "longitude": -75.1717901, + "stars": 3.5, + "review_count": 95, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "OutdoorSeating": "True", + "WiFi": "'no'", + "HasTV": "True", + "RestaurantsTableService": "True", + "Alcohol": "'full_bar'", + "Smoking": "u'no'", + "HappyHour": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), American (Traditional), Nightlife, Bars, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "-fCB9irkaglTWG7rBhcODg", + "name": "Teaful Bliss Cafe", + "address": "918 N 28th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.973752, + "longitude": -75.182216, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Cafes", + "hours": { + "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": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "xQE1fuwKCXJEBcJgSSCNbw", + "name": "Urban Farmer Philadelphia", + "address": "1850 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957207, + "longitude": -75.1699827, + "stars": 4.0, + "review_count": 597, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "GoodForKids": "True" + }, + "categories": "Steakhouses, Restaurants, American (Traditional)", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-20:30", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "YPXZROwDFVwusuOE4Wmvzg", + "name": "Unleashed", + "address": "180 W Girard Ave, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969161098, + "longitude": -75.1392539133, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "HasTV": "False", + "HappyHour": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Pet Training, Pet Groomers, Pets, Pet Services, Pet Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "9:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "55drQjnFXJnNcgjmFdti1Q", + "name": "Free Library of Philadelphia - Richmond Branch", + "address": "2987 Almond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9829919, + "longitude": -75.1085595, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "ulHc-1mOdSWkO3E5a0efbQ", + "name": "Sunflower Hair Salon", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937015, + "longitude": -75.1619177, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "4hrSAuYn1W7xDBzb9Lcw6g", + "name": "Fox Chase Lock & Key", + "address": "7936 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0754329, + "longitude": -75.085264, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "CNMKf5yd-2KO-3frB4uWfg", + "name": "PennDOT Driver License Center", + "address": "801 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534084, + "longitude": -75.153361, + "stars": 3.0, + "review_count": 92, + "is_open": 1, + "attributes": null, + "categories": "Departments of Motor Vehicles, Public Services & Government", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "Hilkfh2JgsyxSWrlqIyAeg", + "name": "Sankhya Yoga School & Wellness Center", + "address": "725 N 4th St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634204, + "longitude": -75.1442734, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Yoga, Active Life, Fitness & Instruction", + "hours": { + "Monday": "18:0-19:30", + "Tuesday": "11:0-21:0", + "Wednesday": "18:0-19:30", + "Thursday": "18:0-19:30", + "Saturday": "11:0-12:30", + "Sunday": "11:0-12:30" + } + }, + { + "business_id": "7pbRnwFWoeHqMMAzBO924A", + "name": "Squire Tavern", + "address": "11708 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1195696886, + "longitude": -75.0182037312, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Arts & Entertainment, Nightlife, Restaurants, Bars, Cheesesteaks, Sandwiches, Music Venues, American (Traditional)", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "RrqYj-7fUAvRhz5iNXGXXg", + "name": "Volpe Real Estate Inc.", + "address": "701 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9438452, + "longitude": -75.1750697, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ZRFj7Yjj3GRXTHsXDktOzw", + "name": "Strive Physical Therapy & Sports Rehabilitation", + "address": "2 Penn Center 1500 Jfk Blvd, Ste 450", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534021, + "longitude": -75.1657179, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Physical Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-19:0", + "Wednesday": "7:0-15:15", + "Thursday": "11:30-19:0", + "Friday": "7:0-13:30" + } + }, + { + "business_id": "eKxKm6fK0-tO_WM4D2_5xg", + "name": "Dunkin'", + "address": "1600 JFK Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953656, + "longitude": -75.167008, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "OPY3LH0XkYrczLk0NcmRig", + "name": "Tu's Tea & Banh Mi Northeast Philly", + "address": "5520 Whitaker Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0356633, + "longitude": -75.1006256, + "stars": 4.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Vietnamese, Restaurants, Food, Asian Fusion, Sandwiches, Bubble Tea, Vegetarian", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "ylx4no0IDC8xtS1yM8c5Ig", + "name": "Absolute Abstract", + "address": "141 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493073, + "longitude": -75.1618333, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Home Decor, Home & Garden, Arts & Entertainment, Art Galleries, Shopping", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "CQkbjIY5Jb9qJyHbTADMDA", + "name": "Avenue Scoop", + "address": "932 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9371964, + "longitude": -75.1548121, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Ice Cream & Frozen Yogurt, Coffee & Tea, Cafes, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "LSGDvJrw_sWQQ9P-fFPhaQ", + "name": "The Flavor Spot", + "address": "6417 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0498721, + "longitude": -75.0950258, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Caribbean, Cajun/Creole, Soul Food, Event Planning & Services, Caterers, Chicken Wings, Sandwiches", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30" + } + }, + { + "business_id": "_UqJySZJOiZs4ifHNP1cgQ", + "name": "The Browtique Philly Microblading Studio", + "address": "2301 N 9th St, Ste 308", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9868777, + "longitude": -75.1471045, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Permanent Makeup, Eyebrow Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-13:0", + "Wednesday": "10:30-16:30", + "Thursday": "10:30-13:0", + "Friday": "10:30-16:30", + "Saturday": "10:30-13:30" + } + }, + { + "business_id": "JqOS1yDmOdhx2SLopAoo9w", + "name": "Philadelphia Hand to Shoulder Center", + "address": "834 Chestnut St, The Franklin, Suite G114", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Physical Therapy, Health & Medical, Doctors, Orthopedists", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "IBIp-yVFl2PxYS-rgc19Yg", + "name": "Independence Visitor Center", + "address": "599 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509761191, + "longitude": -75.1500126909, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Breakfast & Brunch, Landmarks & Historical Buildings, Hotels & Travel, Local Flavor, Museums, Public Services & Government, Restaurants, Travel Services, Arts & Entertainment, Ticket Sales, Visitor Centers", + "hours": { + "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" + } + }, + { + "business_id": "XW6au3uZjka4goKDMWuJFA", + "name": "North Shore Beach Club", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664073, + "longitude": -75.1386733, + "stars": 3.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Swimming Pools", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "T9xqrycUmpbwX_bMSo_vRw", + "name": "Pretty Princess Jersey", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Party & Event Planning, Talent Agencies, Face Painting, Event Planning & Services, Clowns", + "hours": { + "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" + } + }, + { + "business_id": "jjC5v7FU-WNKuiqGIustRQ", + "name": "BBQ Town", + "address": "7711 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0712058, + "longitude": -75.1571146, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Soul Food, Restaurants, Barbeque, Chicken Wings, Seafood", + "hours": { + "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:15-22:0" + } + }, + { + "business_id": "EpFFiPHKx9yP-WqOCuxRCw", + "name": "Mayfair Diner", + "address": "7373 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037444, + "longitude": -75.0382294, + "stars": 3.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "DriveThru": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': True}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Burgers, Diners, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "-qWhas31o61V6vC6yo6NWw", + "name": "Arch Gourmet", + "address": "2200 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9560712, + "longitude": -75.1769425, + "stars": 3.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Convenience Stores, Event Planning & Services, Caterers, Food, Restaurants, Delis, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "5tGyHP_XPlboQWlsFj2rtw", + "name": "Holy Sepulchre Cemetery", + "address": "3301 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0837907, + "longitude": -75.1747377, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-16:30", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "iZ9fg8Dm3SsHa5BqXktGtw", + "name": "Aya Asian Fusion", + "address": "7313-15 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0368091, + "longitude": -75.0399005, + "stars": 3.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Japanese, Chinese, Thai, Food, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "7z16CBc74GhbyqalwZrJUQ", + "name": "Ting Wong Restaurant", + "address": "138 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954754, + "longitude": -75.156191, + "stars": 4.0, + "review_count": 461, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "None", + "HappyHour": "False", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True" + }, + "categories": "Noodles, Asian Fusion, Restaurants, Chinese, Seafood", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "_2QdM7o6rlhUeAeAEdN4MQ", + "name": "Dress Right Tailor", + "address": "1420 Locust St, Unit R2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9479549, + "longitude": -75.1658968, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "a9ePy2AtjjvFivMUuUSbAA", + "name": "Eviama Life Spa", + "address": "109 S 13th St, Ste 2N", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500715248, + "longitude": -75.1617475965, + "stars": 4.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Acupuncture, Day Spas, Waxing, Health & Medical, Hair Removal, Reiki, Massage", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "zmyfGGhj4SiHept2dDAsSg", + "name": "Little Baby's Ice Cream at Franklin's Table", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529913, + "longitude": -75.1922872, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Vegan, Ice Cream & Frozen Yogurt, Restaurants, Desserts, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "12:0-20:30", + "Friday": "12:0-20:30", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "WltG6PWu0zRTTUpWne3W8w", + "name": "Imperial Inn", + "address": "142 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954918, + "longitude": -75.156144, + "stars": 3.5, + "review_count": 230, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Dim Sum, Restaurants, Asian Fusion, Chinese", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "SaJHvbrvy-ndxLf85mAVXA", + "name": "High Point Cafe", + "address": "7210 Cresheim Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0575169, + "longitude": -75.1946237, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Food, Bakeries", + "hours": { + "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" + } + }, + { + "business_id": "t97vounr2-uNHEs59sNO9g", + "name": "Arch Street Lighting", + "address": "120 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9516018, + "longitude": -75.1424488, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Lighting Fixtures & Equipment, Home Services", + "hours": { + "Tuesday": "10:0-16:45", + "Wednesday": "10:0-16:45", + "Thursday": "10:0-16:45", + "Friday": "10:0-16:45", + "Saturday": "10:0-16:45" + } + }, + { + "business_id": "sl0d5izjrMrJuDZY4V_-gw", + "name": "George Maynes - BHHS Fox & Roach, Realtors", + "address": "2451 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675774, + "longitude": -75.178467, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate, Real Estate Agents", + "hours": { + "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" + } + }, + { + "business_id": "OQqBFuA5tcxdHog8YgMRcQ", + "name": "Ross Dress for Less", + "address": "424 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139274, + "longitude": -75.1493895, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Fashion, Department Stores, Women's Clothing, Discount Store, Home Decor, Children's Clothing, Shopping, Shopping Centers, Home & Garden", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "MomBieFKSwjqW48H8hh93g", + "name": "Philadelphia Federal Credit Union", + "address": "12800 Townsend Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1067723, + "longitude": -74.9790503, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "k8VM6pZwoMSY6cwYd-B1SA", + "name": "Famous Dave's Bar-B-Que", + "address": "1936 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921683, + "longitude": -75.142522, + "stars": 3.5, + "review_count": 142, + "is_open": 0, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "Corkage": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Comfort Food, Barbeque, Caterers, Event Planning & Services, Bars, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "C6cOQD3ELF38AeYgtfw0Dw", + "name": "Nile Cafe", + "address": "6008 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.039489, + "longitude": -75.1780373, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "HasTV": "False", + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "True" + }, + "categories": "Vegetarian, Soul Food, Vegan, Restaurants", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "2GhWfhXbrnMhSBu7x4u7FQ", + "name": "Frankford Auto & Truck", + "address": "1831 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9775831, + "longitude": -75.1310734, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Auto Repair, Automotive", + "hours": { + "Monday": "14:30-20:0", + "Tuesday": "14:30-20:0", + "Wednesday": "14:30-20:0", + "Thursday": "14:30-20:0", + "Friday": "14:30-20:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "5W-NqjJCh6RiVghyDszfMg", + "name": "Happy Tayls", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Sitting, Pet Services, Pet Boarding", + "hours": { + "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" + } + }, + { + "business_id": "9xquyp6UTgo0bpDRsYpM5A", + "name": "Beer City", + "address": "701 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9722502, + "longitude": -75.1258509, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:30-22:0", + "Tuesday": "9:30-22:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:30", + "Saturday": "9:30-22:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "pgCwVL3uVQqWv5fsWk3w3g", + "name": "Drexel University College of Medicine: Dermatology Associates", + "address": "219 N Broad St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 40.0195895849, + "longitude": -75.1803116867, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dermatologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "FgYpzGx02P2danClOzrHPQ", + "name": "Safian & Rudolph Jewelers", + "address": "701 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94881, + "longitude": -75.1527009, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "DogsAllowed": "True" + }, + "categories": "Jewelry, Shopping, Watches, Bridal", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:45", + "Saturday": "10:0-17:15" + } + }, + { + "business_id": "dr6qbfu8nTHA0pAPf8z6_A", + "name": "Ease", + "address": "1518 Walnut St, Ste 1000", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494239, + "longitude": -75.1669032, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Acupuncture, Massage Therapy", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-18:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "363TZjV4ODqQAl4bcA28wA", + "name": "Tire Giants", + "address": "8301 Torresdale Ave, Unit 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037293, + "longitude": -75.015238, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Wheel & Rim Repair", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "gzFn31AFVSsEqU1_mGKppQ", + "name": "Hutchinson's Classic Bakery", + "address": "13023 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1239074, + "longitude": -75.014565, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "Caters": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-19:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "DIz7ET7IDNsfvYp7p5RZyA", + "name": "The Stand", + "address": "1844 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0137755, + "longitude": -75.1579013, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Steakhouses, American (New), Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0" + } + }, + { + "business_id": "pWy12daEVhWnYBoQUblV2Q", + "name": "Palmer Doggie Depot", + "address": "35 E Palmer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976028, + "longitude": -75.133136, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Parks, Dog Parks, Active Life", + "hours": null + }, + { + "business_id": "pE8tkSTXw7_RIiQMkutPCg", + "name": "Shanghai Bazaar", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553667, + "longitude": -75.1566319, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Shopping, Department Stores", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "tRe6boBlOhabw10U1yCGEQ", + "name": "Retro Moving", + "address": "1120 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19101", + "latitude": 39.9352207, + "longitude": -75.1570744, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Professional Services, Movers, Home Services", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "Yj3r1lewEi8U3jjoEsfZ1w", + "name": "Fireman's Hall Museum", + "address": "147 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9532769, + "longitude": -75.1427035, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Landmarks & Historical Buildings, Museums, Public Services & Government, Arts & Entertainment", + "hours": { + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-16:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:30", + "Saturday": "10:0-16:30" + } + }, + { + "business_id": "zsTObJbtOgEgbSRTvyWleg", + "name": "Extra Space Storage", + "address": "116 Fountain St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.03228, + "longitude": -75.234104, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "4B62BlwlY2fb9asInI2vkg", + "name": "Wingo Taco Truck", + "address": "13TH And Norris", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829283, + "longitude": -75.1547321, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "HasTV": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "u'none'" + }, + "categories": "Mexican, Korean, Street Vendors, Food, Food Trucks, Restaurants", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "XHUdKqKQOzXUkImZvMbiBA", + "name": "Dunkin' Donuts", + "address": "Holme Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.057846, + "longitude": -75.014107, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "WiFi": "'free'", + "Caters": "False", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Donuts, Coffee & Tea, Bagels, Food", + "hours": null + }, + { + "business_id": "oj2U74gBq_x98N1TpVNqOA", + "name": "Logan Floral Designs & Gifts", + "address": "5807 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0371204, + "longitude": -75.1755971, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:15-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "CSAJxLa_LeuIDe-lHrC03w", + "name": "McDonald's", + "address": "6470 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0223296507, + "longitude": -75.0507590175, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "Caters": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "HasTV": "True", + "BikeParking": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fast Food, Restaurants, Coffee & Tea, Food, Burgers", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-1:0", + "Sunday": "5:0-1:0" + } + }, + { + "business_id": "tzcryXhKROS0PTXopJc6kg", + "name": "Petite Passion", + "address": "2300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538379, + "longitude": -75.1781589, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BikeParking": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False" + }, + "categories": "American (New), Restaurants", + "hours": { + "Wednesday": "19:0-19:0", + "Thursday": "19:0-19:0" + } + }, + { + "business_id": "1IHHPsg_ljjjs4LoKemvRg", + "name": "Valentina Custom Design", + "address": "704 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940426, + "longitude": -75.149675, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fabric Stores, Arts & Crafts, Shopping", + "hours": null + }, + { + "business_id": "LtLbT776NOAjva1ttA2h3w", + "name": "The QUICK FIXX", + "address": "1511 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944064, + "longitude": -75.1676029, + "stars": 4.0, + "review_count": 324, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Pizza, Vegetarian, Salad, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "w-1f4fPybV9MfVqDnCsTdA", + "name": "Mineralistic", + "address": "319 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416217, + "longitude": -75.1482333, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Jewelry, Gemstones & Minerals, Shopping", + "hours": { + "Monday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "qPMyI7vtwLXCeWYCxgfU3A", + "name": "Philadelphia Sightseeing Tours & Transportation", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497654425, + "longitude": -75.1487727165, + "stars": 3.0, + "review_count": 108, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Buses, Tours, Airport Shuttles, Hotels & Travel, Party Bus Rentals, Transportation", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "p1Y8bMd0ixx1dzj9oTjEOw", + "name": "A La Mousse", + "address": "1622 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439931, + "longitude": -75.1695751, + "stars": 5.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "HasTV": "False", + "DogsAllowed": "False", + "Caters": "True", + "OutdoorSeating": "None", + "Alcohol": "u'none'", + "BYOB": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Desserts, Food, Restaurants, Cafes", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "OQNX0hkbM7fgBnHcGNPPXw", + "name": "Shoo Fry", + "address": "200 East Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968883696, + "longitude": -75.1334736496, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Fast Food, Poutineries, Burgers, Food, Specialty Food, Restaurants", + "hours": null + }, + { + "business_id": "fGawcocJqcj3wXjHj7YXAg", + "name": "Strikes Bowling Lounge", + "address": "4040 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531411, + "longitude": -75.2048515, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Bowling", + "hours": null + }, + { + "business_id": "uQJNNTRWTj1SYtapTL0y_A", + "name": "Original Pete's Pizza and Wings", + "address": "7229 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.913708995, + "longitude": -75.2402606546, + "stars": 3.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BikeParking": "False", + "GoodForKids": "True", + "NoiseLevel": "'very_loud'", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Sandwiches, Restaurants, Pizza, Chicken Wings", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "d-s07Q3CxJQDf0rHI1-8kw", + "name": "Essence Nails And Spa", + "address": "6819 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0580419, + "longitude": -75.1489972, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas, Nail Technicians", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "mTIlFDcqPH-xdk-AaXcZLA", + "name": "Eagle Dumpster Rental", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953712, + "longitude": -75.1695865, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Dumpster Rental, Junk Removal & Hauling", + "hours": { + "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-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "zEa5L-ctmIJzc1aN582EOQ", + "name": "$5.00 Car Wash", + "address": "1402-1406 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9338864, + "longitude": -75.1676434, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Car Wash", + "hours": null + }, + { + "business_id": "9DEHXZfOO1kY_be0nRK-ng", + "name": "Philly Steak & Gyro", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.874920347, + "longitude": -75.2412520904, + "stars": 2.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Caters": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Mediterranean, Sandwiches, Restaurants, Delis, Steakhouses, Greek, American (Traditional)", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "wMSpjI-SmWlhdOyU4vOs7g", + "name": "Superior Pasta Company", + "address": "905 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391539, + "longitude": -75.1580381, + "stars": 5.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caterers, Event Planning & Services, Food, Restaurants, Pasta Shops, Italian, Specialty Food", + "hours": { + "Monday": "9:0-17: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-15:0" + } + }, + { + "business_id": "WdS4JMt-sSS5pZkeHIpahg", + "name": "Maureen's Flowers", + "address": "3826 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0641219, + "longitude": -74.9867453164, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Flowers & Gifts, Florists", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "31Bd5gl1hbwWfNtiFbVUbw", + "name": "The Moving Boys", + "address": "1237 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9710474, + "longitude": -75.1427418, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Movers, Vehicle Shipping, Home Services, Local Services, Automotive, Self Storage", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "l5nQUiJmfzg-SGR0YrXtdA", + "name": "Green Air Heating & Cooling", + "address": "1203 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9771200984, + "longitude": -75.1821899414, + "stars": 5.0, + "review_count": 141, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "G5ovf32QlclDiBbOD7sx-g", + "name": "Laff House", + "address": "221 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411250379, + "longitude": -75.1463019848, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Entertainment, Nightlife, Comedy Clubs, Performing Arts", + "hours": { + "Thursday": "20:30-22:30", + "Friday": "8:30-0:30", + "Saturday": "20:0-1:30" + } + }, + { + "business_id": "n3AfTDppXYAd4lQtnEJtoQ", + "name": "Indy Auto Wash", + "address": "3700 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9958173837, + "longitude": -75.0932361558, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive", + "hours": null + }, + { + "business_id": "mcJjFdv_Umt3tp72S3tFvg", + "name": "Sage Salon", + "address": "1301 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931615, + "longitude": -75.149062, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "HTA_BhZ9ptTTurDlm-cxew", + "name": "Just Jackies Food Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9915379, + "longitude": -75.2187346, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food Trucks, Food Delivery Services, Street Vendors, Food", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "-LmyoKvQ3WPptdXTtVtwmw", + "name": "The Renaissance Company", + "address": "30 S 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.959638, + "longitude": -75.229063, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "EcIutPxzAKh4dBPh_vsgrA", + "name": "Philadelphia Juice Bar", + "address": "1730 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513713, + "longitude": -75.1700434, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Live/Raw Food, Fitness & Instruction, Gyms, Food, Vegetarian, Restaurants, Organic Stores, Vegan, Juice Bars & Smoothies, Active Life", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "7:0-20:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "6zyM8TsJAedm1tuQsmHO3A", + "name": "Magee Rehabilitation Hospital", + "address": "1513 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9566591, + "longitude": -75.1651633, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Hospitals, Rehabilitation Center, Health & Medical, Physical Therapy", + "hours": { + "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" + } + }, + { + "business_id": "vhLb7LMjg3C0lvP7cBQXdg", + "name": "Laundromat of Pine Street", + "address": "309 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9529818, + "longitude": -75.2180909, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Laundry Services, Laundromat, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "FsWEzgnPsARCH0qmKkWLNQ", + "name": "Wawa", + "address": "9201 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0547654, + "longitude": -75.0042035, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "None", + "BikeParking": "True" + }, + "categories": "Food, Coffee & Tea, Convenience Stores, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "NxK_gpPmX4_2RgDD2m64fw", + "name": "Front Street Dive", + "address": "10 S Front S, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493463, + "longitude": -75.1423488, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "AgesAllowed": "u'21plus'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Music": "{'dj': True, 'background_music': True, 'jukebox': False, 'live': True, 'video': True, 'karaoke': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "HappyHour": "True" + }, + "categories": "Karaoke, Nightlife, Dance Clubs, Bars, Dive Bars", + "hours": { + "Thursday": "21:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "oOHklSxf0hvMx_IhZTDlZA", + "name": "Mr. D's Drain Cleaning & Plumbing Service", + "address": "6001 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0449874, + "longitude": -75.1007511, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Plumbing, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "adgThekUMoNlAYwQ96388w", + "name": "Northern Liberties Auto Clinic", + "address": "1360 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9812999034, + "longitude": -75.1426237535, + "stars": 4.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Automotive", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "ZLKLshuZ2HcwbPDpb3l-AQ", + "name": "Ba Le Bakery", + "address": "606 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9349047, + "longitude": -75.1543101, + "stars": 3.5, + "review_count": 234, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries, Restaurants, Vietnamese, Sandwiches", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "8:30-19:30", + "Sunday": "8:30-19:30" + } + }, + { + "business_id": "h-cUfr_s3U7XP2DpPkoJqg", + "name": "Saudia Shuler's Country Cookin'", + "address": "2836 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9981226, + "longitude": -75.1672837, + "stars": 3.5, + "review_count": 178, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "LWAeI5Slp8mCiJstJ9U4EQ", + "name": "Mattress Firm Roxborough-Manayunk", + "address": "7100 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0446449739, + "longitude": -75.2329356797, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mattresses, Home Services, Shopping, Home Decor, Home & Garden, Furniture Stores, Shades & Blinds", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "dt3tbG5HHSdTCft8Bf0DwQ", + "name": "KingZ Hand Wash & Detail Center", + "address": "1207-09 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9339142, + "longitude": -75.1582178, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'" + }, + "categories": "Automotive, Car Wash, Auto Detailing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "K1h1Cwy1VSGdjKuw-GM9Iw", + "name": "Matcha Cafe Maiko", + "address": "923 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555635, + "longitude": -75.1551081, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Caters": "False", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': None, u'validated': None}" + }, + "categories": "Cafes, Food, Desserts, Coffee & Tea, Shaved Ice, Restaurants, Japanese, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "11:0-19: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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "rD85GRZ7VA1ImLdyKDqsZQ", + "name": "Southside Chicken & Seafood", + "address": "1508 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.933172, + "longitude": -75.181012, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "8enntsQajwJBEuvTVFws5g", + "name": "Roof Works Construction", + "address": "4540 Miller St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0035696, + "longitude": -75.0726587, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Snow Removal, Professional Services, Gutter Services, Roofing, Local Services, Roof Inspectors, Contractors, Home Services, Siding", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "CJf5X5h0OrUdqi7eC2P8CQ", + "name": "Phone Repair Philly - Northern Liberties", + "address": "612 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9613629946, + "longitude": -75.1413961288, + "stars": 4.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Computers, Electronics Repair, IT Services & Computer Repair, Mobile Phones, Mobile Phone Repair, Shopping, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "aoAYNQA6yArEaCGBf9zxCw", + "name": "Jade Nail Salon", + "address": "2700 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.984244, + "longitude": -75.1028186, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "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": "9:30-19:30" + } + }, + { + "business_id": "Bb3gOleSBIq9CYtVtfmvUw", + "name": "Press And Release Printing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9795244, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Screen Printing/T-Shirt Printing, Marketing, Local Services, Printing Services, Screen Printing, Professional Services, Graphic Design", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "u8cO0HLJKLt0rTWD3-hYhw", + "name": "Amy Orloff, DO", + "address": "634 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9438881, + "longitude": -75.153113, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Family Practice, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "i-clumHx1gMhf5B8MROyHA", + "name": "Falafel Bar", + "address": "1513 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512554, + "longitude": -75.166098, + "stars": 3.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'free'", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Falafel, Restaurants, Middle Eastern, Mediterranean, Vegetarian", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-17:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "KVpCAZY9quNGHSwtoWPlBw", + "name": "AC&T Hardwood Floors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Refinishing Services, Home Services, Contractors, Flooring", + "hours": { + "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-15:0" + } + }, + { + "business_id": "GDKBK8buUM_4S8kSndweXw", + "name": "Drive Here", + "address": "6729 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.909514, + "longitude": -75.2239311, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Car Dealers", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "Ml4mcHCnfJPjKcFv926Png", + "name": "Taste Garden", + "address": "1418 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.971327, + "longitude": -75.1604797, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "12:0-1:0", + "Tuesday": "12:0-1:0", + "Wednesday": "12:0-1:0", + "Thursday": "12:0-1:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "Z2Y5YA5JhP0ehvOAoyHJUg", + "name": "Priscilla Costa Bridal", + "address": "810 N Hancock St, Unit 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96316, + "longitude": -75.143365, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Shopping, Sewing & Alterations, Bridal, Bespoke Clothing", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "RJBiEleMH9ZjPFba26-uMA", + "name": "Perfumes of Venus", + "address": "622 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420288, + "longitude": -75.1530664, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply", + "hours": { + "Monday": "14:0-21:0", + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "14:0-21:0" + } + }, + { + "business_id": "0HDWFQ0PtF-BSDy1JMyQKg", + "name": "Mi & Yu Noodle Bar", + "address": "21 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498515913, + "longitude": -75.1482060179, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Noodles, Restaurants, Soup", + "hours": null + }, + { + "business_id": "M4y3CIkX3uG9HPN4ZNqD_g", + "name": "The Franklin Residences", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True" + }, + "categories": "Hotels, Event Planning & Services, Home Services, Real Estate, Apartments, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "Tae8gmerFgAp75o930eDSA", + "name": "Maxx's Produce", + "address": "255 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487482, + "longitude": -75.1739753, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Fruits & Veggies, Specialty Food, Food, Grocery", + "hours": { + "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-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "q0KEAcD45KrL5umtdYp59w", + "name": "Cottman Animal Hospital", + "address": "1012 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0606868, + "longitude": -75.0831184, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "9:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:30-14:0", + "Saturday": "8:30-13:0" + } + }, + { + "business_id": "BYTyDKOBdCxI1TkkscNpIQ", + "name": "Hearth & Stove", + "address": "1719 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444801, + "longitude": -75.170983, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Appliances, Home & Garden, Chimney Sweeps, Shopping, Home Services, Fireplace Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-13:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0" + } + }, + { + "business_id": "etCUkzk02xjyNMyo6hn3eA", + "name": "Jefferson Hospital Radiology", + "address": "111 S 11th St, Ste 3350", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496912, + "longitude": -75.1571239, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Diagnostic Imaging, Diagnostic Services, Health & Medical, Radiologists, Doctors", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "838bEDzZSPveDkAGrhVWYQ", + "name": "Ocean Harbor", + "address": "1023 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9557218, + "longitude": -75.1567726, + "stars": 3.0, + "review_count": 524, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "BikeParking": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese, Dim Sum, Seafood", + "hours": { + "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:0-22:30", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "xlhc-wi6T7i-xxWTPMwaHA", + "name": "Salon Vanity", + "address": "1701 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950592, + "longitude": -75.16919, + "stars": 4.0, + "review_count": 153, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "jAPXUVeCS_LKFS57FtO-5A", + "name": "Empire Hair Studio", + "address": "12039 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1230985, + "longitude": -75.0152481, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Salons, Hair Stylists, Barbers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "bClXlvpht9aKk23olgmxSg", + "name": "Planet Fitness", + "address": "6219 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0362368, + "longitude": -75.2175266, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Weight Loss Centers, Trainers, Beauty & Spas, Tanning Beds, Health & Medical, Tanning, Gyms, Fitness & Instruction", + "hours": { + "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" + } + }, + { + "business_id": "tVo28-PBAuXb5BPS4NBGag", + "name": "Pari Cafe Creperie", + "address": "3417 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509979678, + "longitude": -75.1934281799, + "stars": 4.0, + "review_count": 93, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Corkage": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "WiFi": "'free'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "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': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Creperies, Food, Desserts, French, Restaurants", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "FUMAvaQ04H4yV12gCsVD-A", + "name": "Pete's Auto Service Center", + "address": "7832 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0592249, + "longitude": -75.0590385, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive, Towing", + "hours": null + }, + { + "business_id": "pt57u94p1YsiSJhGafkcmg", + "name": "Milestone Relocation Solutions", + "address": "2259 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 40.096919, + "longitude": -75.415858, + "stars": 1.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "dV7t9cVUPfhv0FHe5-n-FQ", + "name": "Philadelphia Parking Authority Residential Permit Parking", + "address": "35 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9523979, + "longitude": -75.153215, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "t4nMLWojFFBbWVgO88DwPQ", + "name": "Bamboo Bar", + "address": "927 North Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631185, + "longitude": -75.1353987, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "GoodForDancing": "True" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "OUqo9hcgVVgUoh_qvw68EA", + "name": "Scott & Judy's Produce", + "address": "S 9th St & Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389685, + "longitude": -75.1578536, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "Pl60oIKDhIY5v2zSBBbVAw", + "name": "Nu Look Car Wash", + "address": "7930 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0560219, + "longitude": -75.04825, + "stars": 2.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Car Wash, Auto Detailing, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "RMM_JZ9RRwjtDTjRe5xMZg", + "name": "McCoy's Moving Company & Janitorial", + "address": "7233 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Office Cleaning, Handyman, Junk Removal & Hauling, Movers, Local Services, Carpeting, Home Services, Carpet Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "CCKeeDP1tdA873cM8AVlJQ", + "name": "Michael's Place", + "address": "1142 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9261892, + "longitude": -75.1654027, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "BikeParking": "True" + }, + "categories": "Nightlife, Bars, Dive Bars", + "hours": null + }, + { + "business_id": "ZyM2QfGnMqQvY2SuHeE9OQ", + "name": "Edward Weintraut Jeweler", + "address": "735 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481963, + "longitude": -75.1539338, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Watch Repair, Local Services, Shopping, Jewelry Repair", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:30" + } + }, + { + "business_id": "ZUTtU6qn1UQwzJbee25Clg", + "name": "Murphy Roofing", + "address": "6238 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0362695547, + "longitude": -75.2180381188, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Snow Removal, Local Services, Contractors, Roofing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "MmDwOS74IeHja_v4jzfAgQ", + "name": "Assembly", + "address": "1840 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9568477, + "longitude": -75.1697412, + "stars": 3.5, + "review_count": 193, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "CoatCheck": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "GoodForDancing": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "3", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Lounges, Bars", + "hours": { + "Tuesday": "16:0-22:30", + "Wednesday": "16:0-22:30", + "Thursday": "8:0-22:30", + "Friday": "16:0-22:30", + "Saturday": "16:0-22:30" + } + }, + { + "business_id": "NZd4LDR6pYmKyyB5cKoNTw", + "name": "Mary Cassatt Tea Room", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949901, + "longitude": -75.173049, + "stars": 4.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}" + }, + "categories": "Tea Rooms, Coffee & Tea, Food", + "hours": { + "Monday": "14:0-17:0", + "Tuesday": "14:0-17:0", + "Wednesday": "14:0-17:0", + "Thursday": "14:0-17:0", + "Friday": "14:0-17:0", + "Saturday": "14:0-17:0", + "Sunday": "14:0-17:0" + } + }, + { + "business_id": "-RckAAIJ-_KH0AzqrekYuw", + "name": "M2O Burgers & Salads", + "address": "701 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403662, + "longitude": -75.1508793, + "stars": 4.0, + "review_count": 111, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Juice Bars & Smoothies, Salad, Restaurants, Food, Burgers, American (Traditional)", + "hours": { + "Monday": "10:30-20:30", + "Tuesday": "10:30-20:30", + "Wednesday": "10:30-20:30", + "Thursday": "10:30-20:30", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "wJxy5gsCOIHoIH20yV80ng", + "name": "The Musical History Tours", + "address": "6TH St And Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507334382, + "longitude": -75.1501874998, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Tours, Historical Tours, Hotels & Travel, Bus Tours", + "hours": { + "Monday": "14:0-17:0", + "Tuesday": "14:0-17:0", + "Wednesday": "14:0-17:0", + "Thursday": "14:0-17:0", + "Friday": "14:0-17:0", + "Saturday": "14:0-17:0", + "Sunday": "14:0-17:0" + } + }, + { + "business_id": "tVDGkK9AVU0ad-24Phrahg", + "name": "Alhambra Cafe", + "address": "609 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941086, + "longitude": -75.1474328, + "stars": 3.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "Caters": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Food, Hookah Bars, Juice Bars & Smoothies, Salad, Bars, Coffee & Tea, Middle Eastern, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0" + } + }, + { + "business_id": "Mk5XqkzfLRReD8PhAeok7w", + "name": "P3 Dental of Northeast Philadelphia", + "address": "10000 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0953084839, + "longitude": -75.0154319801, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Cosmetic Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "qETpOF88MbmtSyOWEDaD_A", + "name": "Duross & Langel", + "address": "117 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499363, + "longitude": -75.1616923, + "stars": 5.0, + "review_count": 249, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "WiFi": "u'no'", + "RestaurantsDelivery": "None", + "BikeParking": "False" + }, + "categories": "Home & Garden, Personal Shopping, Beauty & Spas, Shopping, Cosmetics & Beauty Supply, Skin Care, Candle Stores, Gift Shops, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "CdiIirSjwWzfX7XsSCk-1g", + "name": "Ruby Tuesday", + "address": "8680 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8877891, + "longitude": -75.2470401, + "stars": 2.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "DriveThru": "False", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "WiFi": "'free'" + }, + "categories": "American (Traditional), Restaurants, Burgers", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "pLdndiCKtUT6RkbJYoWT9Q", + "name": "Reiter Roofing", + "address": "4951 Wellington St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.025628, + "longitude": -75.0330267, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Roofing, Home Services, Contractors", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "uNyEsYeoKT3H4AUjrcsvCg", + "name": "Knickerbocker Properties", + "address": "2118 Washington Ave, Ste 2000", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9391831, + "longitude": -75.1792988, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Real Estate Services, Apartment Agents, Apartments, University Housing, Property Management, Home Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-13:30" + } + }, + { + "business_id": "NO6TE15OtuKUo5l5bHFiCw", + "name": "Spice Terminal", + "address": "Reading Terminl Market, 1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538018, + "longitude": -75.158459, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Specialty Food, Food", + "hours": null + }, + { + "business_id": "-m4JBdAxvzOlGFZMjSQMMA", + "name": "Headhunters Hair Design", + "address": "1718 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92838, + "longitude": -75.1655315, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "WiFi": "u'paid'" + }, + "categories": "Hair Salons, Eyebrow Services, Eyelash Service, Makeup Artists, Hair Removal, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "Mn0_NGE7E3EniIqAnXcpcQ", + "name": "Clocks Watches Jewelry Sale & Repair International", + "address": "14 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567872, + "longitude": -75.2021637, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Jewelry, Jewelry Repair, Shopping, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "CCO4JGE0K88eeK0RzBu96w", + "name": "Oxsun Natural Hair Salon & Boutique", + "address": "1010 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936592, + "longitude": -75.155512, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "CXC1QLCiF7eTyP8_4JVuKg", + "name": "Taco Bell", + "address": "7855 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0732939, + "longitude": -75.0842045847, + "stars": 2.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DriveThru": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Mexican, Tacos, Restaurants, Tex-Mex, Breakfast & Brunch, Fast Food", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "IMJhGf4nyvrL58964xB54A", + "name": "Schenk's Family Bakery", + "address": "7951 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0722475, + "longitude": -75.0761885, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "LstEK47rU1CBTlTmUm0XkQ", + "name": "China Gourmet", + "address": "6391 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0442874, + "longitude": -75.0877403, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cantonese, Chinese, Restaurants", + "hours": null + }, + { + "business_id": "w85pPE4Hy6TNf99vg3jeVg", + "name": "A Lin Kitchen", + "address": "1942 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924614, + "longitude": -75.161195, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chinese, Restaurants, American (New), Asian Fusion, American (Traditional)", + "hours": { + "Monday": "18:0-0:30", + "Tuesday": "12:0-0:30", + "Wednesday": "12:0-0:30", + "Thursday": "12:0-0:30", + "Friday": "12:0-0:30", + "Saturday": "12:0-0:30", + "Sunday": "12:0-0:30" + } + }, + { + "business_id": "2PWmnUV2Leb2Loj0TqxCMA", + "name": "Mad Mex - University City", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533493175, + "longitude": -75.193518705, + "stars": 3.0, + "review_count": 601, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Caters": "True", + "HasTV": "True", + "HappyHour": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False" + }, + "categories": "Tex-Mex, Mexican, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "a2Wxj6aHA_q9lUoNWXyvHw", + "name": "I Brewster Company", + "address": "606 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9609845, + "longitude": -75.1495125, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Art Galleries, Shopping, Framing, Arts & Crafts", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "ZhJFchXszw-FflEylvjjyw", + "name": "Car Wash Express", + "address": "2224 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9215253, + "longitude": -75.1844223, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Wash", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "PYDx7It-T8PrjU9A3OuIZw", + "name": "Philly Home Investor", + "address": "620 N 2nd St, 1F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961569, + "longitude": -75.141544, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate Services, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "-mxgEmVaB0Izs2-qaWJZ1A", + "name": "Sprint Store", + "address": "9181 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0764356927, + "longitude": -75.0312030315, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Electronics, Local Services, Shopping, Mobile Phones, Mobile Phone Accessories, Telecommunications, IT Services & Computer Repair", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "DaZr4BeqPsFozFmwKytq4Q", + "name": "David A Iddenden, MD", + "address": "2301 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9214613, + "longitude": -75.1695865, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Doctors, Health & Medical", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-13:0" + } + }, + { + "business_id": "gjcAXxw5YuLo6Hs6mFwWVA", + "name": "Marshalls", + "address": "2000 S Swanson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224155, + "longitude": -75.1467853, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Department Stores", + "hours": { + "Monday": "9:30-21:30", + "Tuesday": "9:30-21:30", + "Wednesday": "9:30-21:30", + "Thursday": "9:30-21:30", + "Friday": "9:30-21:30", + "Saturday": "9:30-21:30", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "O2Ne4Eb3dTf8VIztA9qI5A", + "name": "Uncle Oogie's", + "address": "36 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9209324, + "longitude": -75.1465573, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "Corkage": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BYOB": "True" + }, + "categories": "Italian, Food, Restaurants, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "fWMdHjV4G6z8jFW-hf-mIw", + "name": "Tselaine", + "address": "1927 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506182324, + "longitude": -75.1735063642, + "stars": 4.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hats, Fashion, Bridal, Jewelry, Shopping, Accessories", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ZdeOc4WckE7jnF-eT-C8OQ", + "name": "Philadelphia Public Auto-Auction", + "address": "5618 Woodland Ave, Ste 42", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9333485, + "longitude": -75.2228996, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shopping, Auction Houses", + "hours": { + "Wednesday": "18:0-21:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "bZ9y54ian0Uin6nar0VkcQ", + "name": "Eye Encounters", + "address": "3853 Armingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9967988, + "longitude": -75.0904488, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Shopping, Eyewear & Opticians, Optometrists", + "hours": null + }, + { + "business_id": "880CBnInNNpxm_26vamRWQ", + "name": "Hai Tien Restaurant", + "address": "1603 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9380377, + "longitude": -75.1714104, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants, Vietnamese", + "hours": { + "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" + } + }, + { + "business_id": "xl-HIG2kRB8f7ZR2H_bHnQ", + "name": "Nonopreps", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'paid'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Personal Chefs, Food, Event Planning & Services, Caterers, Food Delivery Services", + "hours": { + "Monday": "9:0-12:30", + "Thursday": "8:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "uIlFxzyoJy7ud9j12aK7MA", + "name": "DJ Kitchen", + "address": "4040 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0074349, + "longitude": -75.2124437, + "stars": 4.5, + "review_count": 117, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "HappyHour": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Chinese, Noodles, Dim Sum, Bubble Tea, Food, Szechuan", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "12:45-23:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "AvzL0RmCg5YrLKlBit664A", + "name": "Shoo Fry", + "address": "132 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950487468, + "longitude": -75.1692130789, + "stars": 4.0, + "review_count": 172, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Food, American (Traditional), Burgers, Specialty Food, Restaurants, Poutineries", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "jPG_BuIKf0KBCFY6u00h-A", + "name": "Love Park Pizza and Chicken", + "address": "1402 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9667319342, + "longitude": -75.1605951414, + "stars": 3.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "Caters": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': True}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False" + }, + "categories": "Chicken Wings, Pizza, Cheesesteaks, American (New), Sandwiches, Restaurants, Salad", + "hours": { + "Monday": "10:0-3:30", + "Tuesday": "10:0-3:30", + "Wednesday": "10:0-3:30", + "Thursday": "10:0-3:30", + "Friday": "10:0-3:30", + "Saturday": "10:0-3:30", + "Sunday": "15:0-3:30" + } + }, + { + "business_id": "tPSA-dvionisI6hEC8J2KQ", + "name": "Andy's Deli", + "address": "3843 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9961972, + "longitude": -75.0901557, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Delis, Breakfast & Brunch, Restaurants", + "hours": { + "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": "8:0-14:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "neuKYeWkI4nqrNwn77259A", + "name": "Hair Buzz", + "address": "1575 N 52nd St, Ste 704", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9795824, + "longitude": -75.2248884, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Cosmetics & Beauty Supply, Beauty & Spas, Wigs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-18:0", + "Friday": "9:0-20:30", + "Saturday": "9:0-20:30" + } + }, + { + "business_id": "9iF5ALxAskaBFRzqoG7SNQ", + "name": "Bottoms Up 215", + "address": "2515 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9124398684, + "longitude": -75.2427401394, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Nightlife, Arts & Entertainment, Social Clubs, Restaurants, Hookah Bars, American (New), Bars", + "hours": { + "Tuesday": "17:30-2:0", + "Wednesday": "17:30-2:0", + "Thursday": "17:30-2:0", + "Friday": "17:30-2:0", + "Saturday": "17:30-2:0" + } + }, + { + "business_id": "R7IoE-Th9OOAAPDNKtVRKg", + "name": "Saved Me", + "address": "2609 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938939, + "longitude": -75.187296, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": null, + "categories": "Pets, Animal Shelters, Pet Stores, Pet Adoption", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "3EtNXxtPK6N-bPTBjoPHTw", + "name": "Echo Nails & Spa", + "address": "4305 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0249799, + "longitude": -75.2220394, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Waxing, Massage, Hair Removal, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "fyHua7e0AnjDmuuLXg1cLw", + "name": "Kelliann's Bar & Grill", + "address": "1549 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630941, + "longitude": -75.1645294, + "stars": 4.0, + "review_count": 111, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Nightlife, Restaurants, Bars", + "hours": { + "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" + } + }, + { + "business_id": "I2Yt2mJp0TJkdOnIpuOwew", + "name": "Tres Jalapenos", + "address": "744 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938423, + "longitude": -75.1561589, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "fY8ox6lTXIkA_QVr3IhcMg", + "name": "Debbie's Place", + "address": "2617 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9865516, + "longitude": -75.1007814, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "NCG3ErZ3CWUb0M2yOw51qg", + "name": "Dutton Road Veterinary Clinic", + "address": "10901 Dutton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0888495, + "longitude": -74.9900794, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Veterinarians, Pet Services, Pets, Pet Cremation Services", + "hours": { + "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" + } + }, + { + "business_id": "mzTkvRgoKkXxb3HBFQNSMQ", + "name": "Upstares At Varalli", + "address": "1343 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481142, + "longitude": -75.1637236, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "PExwqa8qpwZ8riFp2Tuy_w", + "name": "Northeast Racquet Club & Fitness Center", + "address": "9389 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0886202, + "longitude": -75.0435547, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Sports Clubs, Martial Arts, Gyms, Tennis, Fitness & Instruction, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-14:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "rI8yDXsFbVfc-rw3po5XFA", + "name": "Magic Pot", + "address": "2818 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04379, + "longitude": -75.05347, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'", + "HappyHour": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BYOB": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Corkage": "False" + }, + "categories": "Restaurants, Asian Fusion, Hot Pot, Tapas/Small Plates", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "11:0-21:0", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30", + "Saturday": "7:30-15:30", + "Sunday": "7:30-15:30" + } + }, + { + "business_id": "bHvNJegrjgid_cPntfS-6w", + "name": "Advance Auto Parts", + "address": "2201 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9189188457, + "longitude": -75.1850438118, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Auto Parts & Supplies, Automotive", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "QlWXdAl0XYJHBN9aqqIMKg", + "name": "FedEx Ship Center", + "address": "3600 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939701, + "longitude": -75.202592, + "stars": 1.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Notaries, Shipping Centers, Signmaking, Couriers & Delivery Services, Packing Supplies, Packing Services, Printing Services, Shopping, Professional Services, Home Services", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "HQYCwGVhgp2sahAATJbnFA", + "name": "Kyoto Japan", + "address": "37 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9217799, + "longitude": -75.1465813, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "HasTV": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "GoodForKids": "True" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "dk9Ye4ixSe54Sc6Q2kF3jA", + "name": "The Grill", + "address": "1080 N Delaware Ave, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.965831, + "longitude": -75.1327524, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "Caters": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, American (New), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "AHtX7vm26KgfX4Mcx8M6pA", + "name": "Tranzilli Real Italian Water Ice", + "address": "5901 Belfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.045108251, + "longitude": -75.1700755888, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "1Ro-D1owLupjxyjqwOl-yg", + "name": "Moving Specialist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Couriers & Delivery Services, Movers, Local Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "3yW8-dUi1wwCEf0URxUA7A", + "name": "Kung Fu Tea", + "address": "1006 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95349, + "longitude": -75.156748, + "stars": 3.5, + "review_count": 314, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Alcohol": "u'none'", + "WiFi": "'free'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Taiwanese, Bubble Tea, Juice Bars & Smoothies, Food, Coffee & Tea", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "TR-xcpxjeog1MO7cV11tuA", + "name": "Bill Ball", + "address": "1601 Market St, 19th Fl, Philadelphia Home Collective", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673521, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Agents", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "qVfXOR_ZQchCCqj5VRz8tA", + "name": "South Street Sounds", + "address": "1531 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.944146, + "longitude": -75.168183, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Musical Instruments & Teachers, Shopping", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "QfBSk7-AyvvGRyHC0ddiGA", + "name": "Vietnam Palace", + "address": "222 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562988, + "longitude": -75.1574339, + "stars": 4.0, + "review_count": 161, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Caters": "True", + "WiFi": "u'free'", + "CoatCheck": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Smoking": "u'no'", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vietnamese, Bars, Nightlife", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "sMdB3cNDCArRJEjb3Er1OQ", + "name": "Green Leaf Restaurant", + "address": "7522 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9774795, + "longitude": -75.2663405, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (Traditional)", + "hours": null + }, + { + "business_id": "lQwSrnzTxhssWHRGyq5rvQ", + "name": "Wyndham Philadelphia Historic District", + "address": "400 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9520404, + "longitude": -75.147515, + "stars": 2.5, + "review_count": 211, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "oiiRk6q1FvcyWIejCWQhPA", + "name": "Nic Grooming Barber shop", + "address": "1600 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.946115, + "longitude": -75.168544, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Barbers, Men's Hair Salons, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "hsslqZAVtu093rkguSpltA", + "name": "Punch Line Philly", + "address": "33 E Laurel St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965141, + "longitude": -75.135429, + "stars": 3.5, + "review_count": 273, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'outdoor'", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForDancing": "False", + "CoatCheck": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "Music": "{}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Nightlife, Restaurants, Arts & Entertainment, Comedy Clubs, Performing Arts, Bars", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "cqzAz9oBzPNvJccZ2MNmbA", + "name": "Kidari Sushi Yatai", + "address": "1824 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944303, + "longitude": -75.172771, + "stars": 4.0, + "review_count": 58, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "XPuoRtlerDOWp37lIJPbyQ", + "name": "Planet Fitness", + "address": "9950 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.095486, + "longitude": -75.017727, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Tanning, Fitness & Instruction, Gyms, Beauty & Spas, Active Life, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "Xy-UbIRcPfkX_v2opyunTg", + "name": "Sushi Ya", + "address": "1418 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.971422823, + "longitude": -75.1604533705, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "2fiMDI6nQ_sCEtvUG9UCsA", + "name": "Alden Park", + "address": "5500 Wissahickon Ave Ofc", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.027079, + "longitude": -75.184032, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "OiQ1eoqXMPyEUptpUX9JQA", + "name": "Thomasena's Restaurant", + "address": "2374 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0052393, + "longitude": -75.0781847, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Southern, Cafeteria, Soul Food", + "hours": null + }, + { + "business_id": "LPZz_elCEcTTBokuQWDWcg", + "name": "Golden Nugget Jewelers III", + "address": "800 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494093, + "longitude": -75.1541276, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Watches, Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "_eKF42et6OGeej3bZUAsPQ", + "name": "Passyunk Dental Group", + "address": "1507 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925349, + "longitude": -75.1715565, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Cosmetic Dentists, Dentists, Health & Medical, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "tmr5jPAescECoAcsGlChDA", + "name": "Maglio Sausage", + "address": "3632 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9015752, + "longitude": -75.1554563, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Caterers, Event Planning & Services, Meat Shops, Restaurants, Specialty Food, Cheese Shops, Food, Italian", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "GiYgZueGSUdTfG4wXek0gg", + "name": "Toppers Frozen Yogurt", + "address": "2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-21:30", + "Tuesday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "-ilTnXu41RrxQITuolQhmQ", + "name": "Starbucks", + "address": "3218 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552445, + "longitude": -75.188658, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Restaurants, Sandwiches, Food", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "zZo62mlKnFgerNx1pXq7Ng", + "name": "Cherry Street Tavern", + "address": "129 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9570188, + "longitude": -75.1758021, + "stars": 4.0, + "review_count": 152, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': True}" + }, + "categories": "Beer Bar, Sandwiches, Nightlife, Bars, Restaurants, Pubs", + "hours": { + "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-23:0" + } + }, + { + "business_id": "mcC5K0YNP2npx5HSyDgofg", + "name": "No 1 Chinese Restaurant", + "address": "639 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423106, + "longitude": -75.1535829, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "Caters": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "VjiPyjyk6_fr-HO85u174g", + "name": "Bombay Royal Indian Cuisine", + "address": "517 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.970533, + "longitude": -75.1457099, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Restaurants, Indian", + "hours": null + }, + { + "business_id": "sixH4iwDJPWAPSId1qpxNw", + "name": "Rosewood Tex-Mex", + "address": "1302 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948862, + "longitude": -75.162365, + "stars": 4.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Tex-Mex, Mexican", + "hours": null + }, + { + "business_id": "gWV1k7XO9DSAodAlanESFA", + "name": "San Miguelito Mexican Cuisine", + "address": "2654 S Sixth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9153804, + "longitude": -75.1583858, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "RSojqmaMUcX49Ta42H0WGg", + "name": "Viet Kitchen", + "address": "600 Washington Ave, Unit 18C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93465, + "longitude": -75.15465, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False" + }, + "categories": "Asian Fusion, Hot Pot, Restaurants, Buffets, Vietnamese", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "lLFv8caNBqZ_UmtvVGMBrQ", + "name": "The Blue Anchor", + "address": "401 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.941663724, + "longitude": -75.141329895, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Food Stands, Burgers, Restaurants", + "hours": null + }, + { + "business_id": "V_jy9Aemc3kjznqhbsu_Dg", + "name": "MilkBoy", + "address": "1100 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950125, + "longitude": -75.1587931, + "stars": 3.5, + "review_count": 383, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, American (New), Arts & Entertainment, Nightlife, Music Venues, Restaurants, Bars", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "xg2BYY0tswiEDz2HvTRq2w", + "name": "McDonald's", + "address": "7500 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9800469722, + "longitude": -75.2686112683, + "stars": 1.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False" + }, + "categories": "Food, Burgers, Coffee & Tea, Restaurants, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "e3v336LEOpoZedoFAdQoXg", + "name": "Stephanie's Flowers", + "address": "1430 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9310517, + "longitude": -75.159771, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Flowers & Gifts, Florists, Shopping, Event Planning & Services, Party Characters, Floral Designers, Party Equipment Rentals", + "hours": { + "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-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "9ujreFoSYcURn43VkCkIhQ", + "name": "Agno Grill", + "address": "2104 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521626, + "longitude": -75.1758478, + "stars": 4.0, + "review_count": 225, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Gluten-Free, Mediterranean, Vegan", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "pS2qdeEPrKHWzDHu1tNdEQ", + "name": "Room Escape Adventures", + "address": "3502 Scotts Ln, Bldg 18", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078334, + "longitude": -75.1860604, + "stars": 5.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "False" + }, + "categories": "Performing Arts, Escape Games, Active Life, Challenge Courses, Arts & Entertainment", + "hours": { + "Monday": "16:30-18:30", + "Wednesday": "18:30-20:30", + "Thursday": "18:30-20:30", + "Friday": "18:30-20:30", + "Saturday": "16:30-18:30", + "Sunday": "12:30-14:30" + } + }, + { + "business_id": "zSlWMn4h_7tKP7ErrCD_6A", + "name": "China House", + "address": "6001 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0321044, + "longitude": -75.2130364, + "stars": 3.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "o0PKw37TadgqG41jFCJRxg", + "name": "VIP Fashion", + "address": "1455 Franklin Mills Cir, Unit 217", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0917057996, + "longitude": -74.9584084765, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Bridal, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "k_P5YTnlxWq1qUT3QDF_KA", + "name": "Pen and Pencil", + "address": "1522 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9479224, + "longitude": -75.167236, + "stars": 3.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "True" + }, + "categories": "Bars, Nightlife, Dance Clubs", + "hours": { + "Monday": "18:30-3:0", + "Tuesday": "18:30-3:0", + "Wednesday": "18:30-3:0", + "Thursday": "18:30-3:0", + "Friday": "18:30-3:0", + "Saturday": "19:0-3:0", + "Sunday": "19:0-3:0" + } + }, + { + "business_id": "cVJlAMHzPATaA1rCm1Ks9Q", + "name": "Xm Satellite Radio", + "address": "6945 Scotforth Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.041438, + "longitude": -75.2046977, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations", + "hours": null + }, + { + "business_id": "xfS0MaeCdPKrWZ277H7xzg", + "name": "Overseas Motor Works", + "address": "1501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673292, + "longitude": -75.1622696, + "stars": 5.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Dealers, Body Shops, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "NYEnxprWir7g8duRKwqCXA", + "name": "Kristin DiPasquo - Compass Realty", + "address": "1619 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate Services, Real Estate, Real Estate Agents", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "pWYk93WSXc5ffnyNWb-WfQ", + "name": "SEPTA Girard Station", + "address": "1200 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9689758, + "longitude": -75.1362561, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Public Transportation, Transportation", + "hours": null + }, + { + "business_id": "oQ1RYrpB4Vf821L-LXg-eQ", + "name": "Wong Wong Chinese Restaurant", + "address": "941 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9556016, + "longitude": -75.155701, + "stars": 3.5, + "review_count": 143, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "ITCclruFXqB7r24N-CUTUw", + "name": "Central Bark - Philadelphia", + "address": "2501 Wharton St, Ste F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9366636473, + "longitude": -75.1863060727, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pet Services, Pet Boarding, Pets, Pet Training, Pet Groomers, Pet Sitting", + "hours": { + "Monday": "6:45-18:30", + "Tuesday": "6:45-18:30", + "Wednesday": "6:45-18:30", + "Thursday": "6:45-18:30", + "Friday": "6:45-18:30", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "cNbFLxDe-wAsIboUCbtCdQ", + "name": "Greene Street", + "address": "4313 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250629, + "longitude": -75.2223805, + "stars": 3.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Used, Vintage & Consignment, Women's Clothing, Fashion, Men's Clothing", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "qF67yjt2u_iL2D9RaqA4JA", + "name": "Chestnut Hill Cleaners", + "address": "8101 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0723149, + "longitude": -75.2016621, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "wMOc7AiJXXKbtvVe8JQo7Q", + "name": "John Neill Plumbing and Heating", + "address": "256 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694292, + "longitude": -75.1319253, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Home Services, Heating & Air Conditioning/HVAC, Professional Services", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "mFtAM2b3eUIT1v9I0OonMQ", + "name": "Walk A Crooked Mile Books", + "address": "Mt. Airy Train Station, 7423 Devon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.065127, + "longitude": -75.1915418, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Books, Mags, Music & Video, Bookstores", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-18:30", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "UQZ4p6xb_7gY7UXHmBzceg", + "name": "Tom's Dim Sum", + "address": "59 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532889, + "longitude": -75.1578543, + "stars": 3.5, + "review_count": 587, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True" + }, + "categories": "Restaurants, Chinese, Shanghainese, Dim Sum", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "El5a7GaPDqIszZh6MRvJgg", + "name": "Freddie's Auto Body", + "address": "3585 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9926212, + "longitude": -75.0968392, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "l2pI-rFzP987wR9FNm_d2w", + "name": "United States Post Office", + "address": "8227 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0739084, + "longitude": -75.202924, + "stars": 1.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Post Offices, Public Services & Government", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "ZtjQub4hsEbltiofZyllRA", + "name": "Moju's Family Pizzeria", + "address": "2501 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9883251094, + "longitude": -75.1025135815, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "True", + "WiFi": "'paid'", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "HappyHour": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "RDn9X7jN9dXba3ZePxy70w", + "name": "Modell's Sporting Goods", + "address": "1528 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9508356, + "longitude": -75.1669007, + "stars": 2.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Sporting Goods", + "hours": { + "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": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "j2KaVn7nl36MqqXwvVGOGA", + "name": "Roxette Dominican Hair Salon", + "address": "5962 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0421203358, + "longitude": -75.1266098768, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "gi0dWVLEMdHum2FUFODnVg", + "name": "Cut Hair Salon", + "address": "204 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486588, + "longitude": -75.162506, + "stars": 5.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Massage, Skin Care, Hair Salons, Men's Hair Salons, Barbers", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "sf8_MU8-Xr2PQ2DCDAYZoA", + "name": "Urban Athlete", + "address": "7112 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0586011, + "longitude": -75.1899463, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Fitness & Instruction, Trainers, Gyms, Active Life", + "hours": null + }, + { + "business_id": "nGlzOiDnj9V31sYwrVCT9w", + "name": "Papa John's Pizza", + "address": "2100 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9540135, + "longitude": -75.1766744, + "stars": 2.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "NKYguP2dJdd6ng5UxxLVHg", + "name": "3rd Base Bar and Grill", + "address": "6802 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0423577624, + "longitude": -75.2264970168, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "CoatCheck": "False", + "Music": "{'dj': True}", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Bars, American (Traditional), Nightlife, Sports Bars", + "hours": null + }, + { + "business_id": "iKtbbhgloyUkVNlxh-qrdA", + "name": "Berner Klaw & Watson", + "address": "1528 Walnut St, Ste 1100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494912, + "longitude": -75.1673083, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Divorce & Family Law, Professional Services, Lawyers", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "faWQ77xTj5xZ2PqQuEOEDQ", + "name": "St Monica Center For Rehabilitation & Healthcare", + "address": "2509 S Fourth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9166115, + "longitude": -75.154082, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Rehabilitation Center, Health & Medical", + "hours": null + }, + { + "business_id": "kUupARORPvA2tgRERyR74Q", + "name": "The Chocolate Works Apartments", + "address": "231 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955023, + "longitude": -75.144037, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "uwbjoS3Iq8TqQ-Pc17iCGw", + "name": "Amrita South", + "address": "2306 South St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9453778, + "longitude": -75.1800545, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Health & Medical, Massage Therapy, Active Life, Day Spas, Beauty & Spas, Pilates, Fitness & Instruction, Yoga", + "hours": null + }, + { + "business_id": "xSPRSi7rsLBKF63s7FBbyg", + "name": "Medical Guardian", + "address": "1818 Market St, Ste 2000", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529493, + "longitude": -75.1710235, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Health Care, Health & Medical", + "hours": null + }, + { + "business_id": "8CGgpZ49D3eJJp9HUTaE5A", + "name": "Pop Up Cafรฉ", + "address": "802 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9385067392, + "longitude": -75.1565579, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Vietnamese", + "hours": null + }, + { + "business_id": "S1QynCi7mchgNvMvrskLdA", + "name": "Nitty's Tavern", + "address": "1720 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.914962, + "longitude": -75.1766207, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Italian, Sports Bars, Nightlife, Bars", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "gcWi3-cpoF19TZeegfV1Pw", + "name": "West Philadelphia YMCA", + "address": "5120 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9579535, + "longitude": -75.2242958, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Child Care & Day Care, Gyms, Fitness & Instruction, Local Services", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "RxLdmFo8itf7Xqtlm1WK3Q", + "name": "El Cantinflas", + "address": "110 W Dauphin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9848878, + "longitude": -75.1328971, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Ethnic Food, Dive Bars, Food, Restaurants, Specialty Food, Nightlife, Bars, Puerto Rican, Spanish, Caribbean", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "9et7QjF10EXw_IBz3jv-ww", + "name": "RAW at the Piazza", + "address": "1050 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9663242, + "longitude": -75.1389061, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "cAgokhC70lhtn5jyyM8enA", + "name": "Baklava Cafe", + "address": "627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422703, + "longitude": -75.1533299, + "stars": 3.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'" + }, + "categories": "Desserts, Restaurants, Mediterranean, Food, Ethiopian, Bakeries, Middle Eastern, Fast Food, Cafes", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "tg8mH91AaGjLL93Eg8mL0A", + "name": "Popeyes Louisiana Kitchen", + "address": "122 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0333871422, + "longitude": -75.1769684332, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Chicken Wings, Restaurants, Southern, American (Traditional)", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "CO9r8EOwyuAdgKHkr36lqg", + "name": "Family Chrysler Dodge Jeep RAM", + "address": "6735 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9085709, + "longitude": -75.2239311, + "stars": 2.5, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Car Dealers, Auto Repair, Automotive", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "jolbq-Xux8Tdh_dxmD7M6w", + "name": "Primary Plant Based", + "address": "56 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486327681, + "longitude": -75.1441173255, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New), Vegan, Pop-Up Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "LvNlZHG876TFbI5HTarbIQ", + "name": "Sherman Mills", + "address": "3502 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078745, + "longitude": -75.1860145, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Shared Office Spaces, Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "a91aP-mBmKnsEPAIKU3-OQ", + "name": "Citrus Hair Salon", + "address": "241 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457770115, + "longitude": -75.1514391565, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists, Barbers, Nail Salons", + "hours": null + }, + { + "business_id": "U8132XZJ1CcobSBxpUTFRw", + "name": "Philly Flavors", + "address": "1928 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260184, + "longitude": -75.1681975, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Shaved Ice", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "6wfau_vjc4Btio3J8_n9iw", + "name": "Philadelphia Limousine", + "address": "2336 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9858806, + "longitude": -75.13607, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Limos, Hotels & Travel, Transportation", + "hours": { + "Monday": "0:0-23:30", + "Tuesday": "0:0-23:30", + "Wednesday": "0:0-23:30", + "Thursday": "0:0-23:30", + "Friday": "0:0-23:30", + "Saturday": "0:0-23:30", + "Sunday": "0:0-23:30" + } + }, + { + "business_id": "Eh3IqKQPxdaL4CC248JuVQ", + "name": "ALDI", + "address": "3101 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9760595143, + "longitude": -75.1868677139, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "Caters": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Fruits & Veggies, Shopping, Specialty Food, Discount Store, Food, Beer, Wine & Spirits, Organic Stores, Meat Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "lVp0Dc_nIPbI28mdoHxtyw", + "name": "Otto's Brick and Stone Pointing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Waterproofing, Heating & Air Conditioning/HVAC, Masonry/Concrete, Home Services", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "VEsI9_aDFzIrk8wh0QCOAw", + "name": "Hilton Philadelphia City Avenue", + "address": "4200 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.004346, + "longitude": -75.21854, + "stars": 2.5, + "review_count": 126, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "DogsAllowed": "False" + }, + "categories": "Event Planning & Services, Hotels & Travel, Restaurants, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "jZNH8L77UKb68bTniUoo_g", + "name": "Fishtown Rivercity Festival", + "address": "1199 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9664442, + "longitude": -75.130128, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Local Flavor, Festivals", + "hours": null + }, + { + "business_id": "OPj2p9tYr4g2wWpe0aV7cg", + "name": "Clear Internet Store - Clearwire", + "address": "540 S South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418027, + "longitude": -75.1522351, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Internet Service Providers, Professional Services", + "hours": null + }, + { + "business_id": "nmbrMcMOZd-DQ-cM-x00tA", + "name": "CVS Pharmacy", + "address": "3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9540268882, + "longitude": -75.2008754014, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Shopping, Health & Medical, Pharmacy, Convenience Stores, Drugstores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "znx1v_c2IPKOXlYAbqFYvg", + "name": "Philly Cupcake", + "address": "1132 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500834, + "longitude": -75.1600675, + "stars": 3.5, + "review_count": 285, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bakeries, Food, Desserts", + "hours": { + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "EjvIyyvUGJ-l4G4QLdRbWg", + "name": "Ultra Hair Studio", + "address": "718 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682249, + "longitude": -75.1769848, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "QYaF6HBhT2PGpJzVUDnG6g", + "name": "Penn Urgent Care - South Philadelphia", + "address": "1930 S Broad St, Ground Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9260605603, + "longitude": -75.1694667918, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Urgent Care, Health & Medical", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "KiUa4mgYeMGXT6dwiDp04A", + "name": "Frida Cantina", + "address": "1000 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9208815, + "longitude": -75.1635559, + "stars": 4.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "None", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Bars, Nightlife, Mexican, Restaurants", + "hours": { + "Monday": "16:0-23:45", + "Tuesday": "16:0-23:45", + "Wednesday": "16:0-23:45", + "Thursday": "16:0-23:45", + "Friday": "16:0-23:45", + "Saturday": "16:0-23:45", + "Sunday": "16:0-23:45" + } + }, + { + "business_id": "zagPCH-flhfOjjTGGBgjkg", + "name": "Kaya Aerial Yoga", + "address": "225 Quarry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9536146, + "longitude": -75.144425, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Arts & Entertainment, Active Life, Yoga, Nutritionists, Fitness & Instruction, Health & Medical, Performing Arts", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "76iDBB4NrMvKSAuiUrRzMw", + "name": "Penn Sports Medicine", + "address": "235 South 33rd St, Weightman Hall, 1st floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950492, + "longitude": -75.191199, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Medicine, Doctors, Rehabilitation Center, Orthopedists, Health & Medical", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "p8JGaGU0bKzngOKGjnaH3g", + "name": "Philadelphia International Airport - Terminal F", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951784, + "longitude": -75.2279726, + "stars": 2.5, + "review_count": 146, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Airports, Hotels & Travel, Airport Terminals", + "hours": { + "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" + } + }, + { + "business_id": "u0JoeemMc9fKDG5yYaV4_A", + "name": "David Schwartz Contracting", + "address": "12511 Fedor Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1037985, + "longitude": -74.9787206, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Contractors, Home Services", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "5:30-21:0" + } + }, + { + "business_id": "ZNSvj373MyzTbYJl3iNt7g", + "name": "Aqua Vida", + "address": "301 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9433022, + "longitude": -75.1416318, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True" + }, + "categories": "Pilates, Paddleboarding, Yoga, Boot Camps, Boating, Active Life, Fitness & Instruction, Meditation Centers", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "jUOhse36Yw56KXxGmva2Ug", + "name": "Moonshine Philly", + "address": "1825 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9249989, + "longitude": -75.151605, + "stars": 4.0, + "review_count": 223, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bars, Nightlife, Pubs, Gastropubs, Restaurants", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:0", + "Saturday": "16:0-20:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "ZEaq54Katl70R1QK4Evd0A", + "name": "Garden Fresh Produce & Deli", + "address": "2244 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671151, + "longitude": -75.1753414, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Delis, Food, Sandwiches, Grocery", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "9xVhnWoBDBtWu6-XDnl-uw", + "name": "Bottom of the Sea", + "address": "700 N 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9647145, + "longitude": -75.2095669, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Seafood, Restaurants", + "hours": null + }, + { + "business_id": "IJjBbfsG4Frje0v8_jQ4vg", + "name": "Excel Endodontics of Pennsylvania", + "address": "1500 Walnut St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Endodontists, Dentists", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "LmgIeoy78oFqJpX7wtd5JA", + "name": "Today's Eyewear", + "address": "3200 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080151, + "longitude": -74.994366, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Optometrists, Eyewear & Opticians, Shopping, Health & Medical, Sunglasses", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "CaUkiaJhMKUgPg3Dm7sRwQ", + "name": "Verizon Authorized Retailer - Wireless Zone", + "address": "322 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413962161, + "longitude": -75.1483949795, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mobile Phones, Professional Services, Internet Service Providers, Home Services, Shopping, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "dqS2qXTYUpF7S-DeHhYfYg", + "name": "Maria's Dominican Unisex Salon", + "address": "3808 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0111947, + "longitude": -75.1510494, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "Di-P4tJTGSUt3BPY4w2gSQ", + "name": "Kongs Auto Repair", + "address": "1218 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9334095, + "longitude": -75.1575444, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "-TW-0EqgnzUNHzV9VPSLoQ", + "name": "Nori Ramen & Poke Bowl", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0796573592, + "longitude": -75.0272364667, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Seafood, Ramen, Restaurants, Hawaiian, Japanese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "iB3p_H5xAL1PkRKXnhIbMA", + "name": "Wine Thief", + "address": "7152 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059513092, + "longitude": -75.1908340454, + "stars": 3.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "HappyHour": "True" + }, + "categories": "Restaurants, Food, American (Traditional), American (New)", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "mfMb53r8mEtLtoqSOkDxXg", + "name": "New Golden House", + "address": "5833 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0377555, + "longitude": -75.1761754, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Chinese, American (New), Restaurants", + "hours": null + }, + { + "business_id": "fpSWzQY6CAfIFMpkIsY8RA", + "name": "La Sushi", + "address": "712 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701516, + "longitude": -75.1488375, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "Corkage": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Latin American, Bars, Restaurants, Japanese, Nightlife, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:15-21:0", + "Wednesday": "12:15-21:0", + "Thursday": "12:15-21:0", + "Friday": "11:15-21:0", + "Saturday": "11:15-21:0" + } + }, + { + "business_id": "u5RCQuZa_-deZvcWnioecw", + "name": "Wendy's", + "address": "1101 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488858, + "longitude": -75.159144, + "stars": 1.5, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "BikeParking": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DriveThru": "False" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": null + }, + { + "business_id": "Y1il7un36AYb_1ZU8AzUSQ", + "name": "Far East Descendant", + "address": "251 N Clarion St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.957109757, + "longitude": -75.1608705747, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HasTV": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Cantonese, Restaurants, Speakeasies, Bars, Nightlife, Chinese, Lounges", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "AWXIXCNv-UlMIrksJNfzXg", + "name": "The Pet Mechanic", + "address": "1416 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.972267, + "longitude": -75.134571, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "zuEdIZKAYBDfPjyFg6B34Q", + "name": "Mandarin House", + "address": "3 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689697589, + "longitude": -75.1346291263, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "WheelchairAccessible": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "xWqNG_nnuwBqlS7XBZ3aEg", + "name": "Gil Travel", + "address": "1511 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498661, + "longitude": -75.1664629, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Travel Services, Hotels & Travel", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "C6K2OcRaErd1sYxBRLLQ7g", + "name": "Mayer's Vanagon Repair", + "address": "4715 Decatur St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0341788, + "longitude": -75.0250398, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wheel & Rim Repair, Transmission Repair, Automotive, Auto Repair, Body Shops, Tires", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0" + } + }, + { + "business_id": "2F3LdqM2gX2-jOM7WCZDxA", + "name": "Royal Farms", + "address": "2501 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.002488, + "longitude": -75.081327, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Automotive, Gas Stations, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "iTG7S72m4PYnK5OL7CgSaQ", + "name": "Javies Beverages", + "address": "4901 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0349157, + "longitude": -75.2346321, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:30", + "Saturday": "9:0-22:30", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "ZjY66xNmxOtrSJPgXpleYw", + "name": "Staples", + "address": "1500 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9508653, + "longitude": -75.1658994, + "stars": 3.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Printing Services, Local Services, Office Equipment, Mobile Phone Repair, IT Services & Computer Repair, Shopping, Shipping Centers", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "332MG0dFd8d2JUcszdRdYw", + "name": "Delightful Garden", + "address": "906 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532839, + "longitude": -75.1552661, + "stars": 3.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "False", + "HasTV": "True", + "HappyHour": "False", + "WiFi": "'no'", + "Alcohol": "'none'" + }, + "categories": "Food, Chinese, Karaoke, Nightlife, Desserts, Restaurants, Szechuan", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "ma22PNe1QrOW5Xey7W2VNg", + "name": "Temptations Banquet Facility", + "address": "220 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0309609, + "longitude": -75.1796304, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "BikeParking": "False" + }, + "categories": "Nightlife, Venues & Event Spaces, Arts & Entertainment, Event Planning & Services, American (New), Music Venues, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "hL76rhaLE86ZJvZBuMeb6Q", + "name": "Yanako", + "address": "4345 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256009, + "longitude": -75.2234981, + "stars": 4.0, + "review_count": 276, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "uVrs80OO1U6d21zG21VHVQ", + "name": "High Tech Hair Studio", + "address": "13023 Bustleton Ave, Ste 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1239074, + "longitude": -75.014565, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "27vq4HJXfx8TQL0-p5H2JA", + "name": "Mint Condition Fitness", + "address": "956 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9655937, + "longitude": -75.1405714, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Fitness & Instruction, Active Life, Gyms", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "7:0-13:0" + } + }, + { + "business_id": "t2vxEpIP8ntB4OBHrNAcVw", + "name": "Tiffany's Bakery", + "address": "1001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952841, + "longitude": -75.157056, + "stars": 3.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Coffee & Tea, Event Planning & Services, Bakeries, Caterers, Food, Restaurants, Desserts, Patisserie/Cake Shop, Cupcakes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "F3YfPvpUazeOHya5vwl7RQ", + "name": "Philadelphia Home Collective", + "address": "1601 Market Street 19th, Compass Real Estate", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673521, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Home Staging, Real Estate, Real Estate Agents", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "NbE1Y8RBRwtbpSsqrZVBVQ", + "name": "Colosseo Pizzeria", + "address": "1501 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9628456, + "longitude": -75.1631989, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "48xFBazZoaP-sOacT6WlHQ", + "name": "True Color Nail & Spa", + "address": "3346 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0678354, + "longitude": -75.0060166, + "stars": 3.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:30-17:30" + } + }, + { + "business_id": "oep1GPIUZQMoEJBEoYnXTg", + "name": "Wine & Spirits Stores", + "address": "32 South 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491526, + "longitude": -75.1441494, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "3XEOkGgFi0T5IBJBHEeBQw", + "name": "In the Loop Cafe", + "address": "7950 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0758794, + "longitude": -75.085379, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "4A-nE9Vz-0gs0OwAYAilpw", + "name": "Passyunk Market", + "address": "1407 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.931496, + "longitude": -75.161266, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "levWd9FBoz8XNPC4NMfpyQ", + "name": "Joan of Arc", + "address": "Kelly Dr & N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9664883266, + "longitude": -75.1791696022, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Public Art, Local Flavor", + "hours": null + }, + { + "business_id": "qPPBosvZZnHCgZKMq0wvgg", + "name": "Four Seasons Nails", + "address": "1103 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9529745, + "longitude": -75.1583757, + "stars": 4.0, + "review_count": 128, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0" + } + }, + { + "business_id": "mnE8PSW_Rv8-sBGxZu1ZXg", + "name": "2nd St Festival", + "address": "1127 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672731963, + "longitude": -75.1400004893, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "ZqTx8mLynWWm8F2PPCPmAA", + "name": "The Philly Apartment Company", + "address": "728 S Broad St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.942, + "longitude": -75.166065, + "stars": 2.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "AcZdQshFqzrFUR0bfM_5hA", + "name": "El Sabor De Maria", + "address": "4903 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.029653, + "longitude": -75.132293, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Latin American, Restaurants, Colombian", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "osqUOYJ1GR833udf6XCSHA", + "name": "Tokyo Hibachi Steakhouse & Sushi Bar", + "address": "1613 Walnut St, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499339, + "longitude": -75.1681041, + "stars": 3.0, + "review_count": 59, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Steakhouses, Restaurants, Sushi Bars, Japanese", + "hours": { + "Monday": "17:0-22:30", + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-22:30", + "Saturday": "15:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "95zCLYe9zas0wJpBHZfpcA", + "name": "Wagner Free Institute of Science", + "address": "1700 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.980651, + "longitude": -75.16287, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Education, Museums, Arts & Entertainment, Public Services & Government, Landmarks & Historical Buildings, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-16:30", + "Wednesday": "9:30-16:30", + "Thursday": "9:30-16:30", + "Friday": "9:30-16:30" + } + }, + { + "business_id": "0AS0Ru_5pg_4FgvFBWXOYw", + "name": "Neat Receipts", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895016, + "longitude": -75.229028, + "stars": 1.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "IT Services & Computer Repair, Local Services", + "hours": null + }, + { + "business_id": "nA4by92WDrSbxooQOe5rMQ", + "name": "East Falls Beverage", + "address": "4024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0073061816, + "longitude": -75.1896571599, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "nkkvK6eJEEfkjz5iY5R8Sw", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "2040 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9534197, + "longitude": -75.1746479, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "NvAHCSRi9KaJ_JuFLXh8uw", + "name": "Macy's", + "address": "2399 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.046695, + "longitude": -75.054709, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Women's Clothing, Department Stores, Men's Clothing, Shopping, Fashion, Shoe Stores", + "hours": { + "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": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "7V7cxGLM-xZ7C44-1DfvSw", + "name": "Chubby crab", + "address": "5717 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0416423, + "longitude": -75.1058717, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fish & Chips, Burgers, Restaurants, Seafood", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "4PyqPHAiFopyZZlLcLQuVg", + "name": "Doliva Evoo Pizza & Grill ", + "address": "1009 N Bodine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672300847, + "longitude": -75.1409808273, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "Corkage": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "American (Traditional), Italian, Restaurants, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "9_ltcP8mvAVgZZqJNM5-6A", + "name": "Chickieโ€™s & Peteโ€™s", + "address": "28 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9524726878, + "longitude": -75.1578589408, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "HasTV": "True" + }, + "categories": "Restaurants, Fast Food, Seafood", + "hours": null + }, + { + "business_id": "im5KFKRQB36c2Z--LKCdTQ", + "name": "DAPR Grooming Parlour", + "address": "125 S 18th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950797, + "longitude": -75.1703389, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Barbers, Beauty & Spas, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "8:30-18:0" + } + }, + { + "business_id": "vAjNHtuCm1Pwu47PEOTwXA", + "name": "Extended Stay America - Philadelphia - Airport - Tinicum Blvd.", + "address": "9000 Tinicum Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8840025672, + "longitude": -75.2481961274, + "stars": 1.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "DGFmJcw2kmkLR4v4elw9NQ", + "name": "Dottie's Dinette", + "address": "1080 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9657490188, + "longitude": -75.132576531, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "gEm_IbhZycJKlppK8s2Gcw", + "name": "Beaux Arts Vintage", + "address": "1000 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9460343584, + "longitude": -75.1580579875, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Videos & Video Game Rental, Home Decor, Home & Garden, Shopping, Books, Mags, Music & Video, Antiques, Furniture Stores", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eoR7g773B74AwcAeP_x01A", + "name": "Dollar Rent A Car", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8782233525, + "longitude": -75.2459742349, + "stars": 1.5, + "review_count": 211, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "NZ4BGhQBVw_9MSuTqG4YRQ", + "name": "Ritz Diner", + "address": "8000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0572052, + "longitude": -75.0471055, + "stars": 3.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Breakfast & Brunch, Diners, Restaurants", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "-Cf4TdTeHqdk3ZmK9_4p3w", + "name": "Nobility Nail Salon", + "address": "7590 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.979253, + "longitude": -75.268775, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "oGMwCmV1EQZgCdylAbK9ow", + "name": "Rex at the Royal", + "address": "1524 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437809, + "longitude": -75.1681729, + "stars": 4.5, + "review_count": 471, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Southern, Restaurants, Seafood, Salad, American (New)", + "hours": { + "Monday": "11:0-15:30", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "12rhY0NEtsiy_9S0oug2mA", + "name": "Alex's Pizzeria", + "address": "400 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0340479, + "longitude": -75.2208998, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Tuesday": "15:0-23:0", + "Wednesday": "15:0-23:0", + "Thursday": "15:0-23:0", + "Friday": "12:0-0:30", + "Saturday": "12:0-0:30", + "Sunday": "15:0-23:0" + } + }, + { + "business_id": "LGcIlVav6GFEPWfvBlJ93A", + "name": "Independence Blue Cross", + "address": "1901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536085526, + "longitude": -75.171789386, + "stars": 1.0, + "review_count": 106, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Health & Medical, Insurance, Health Insurance Offices", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Dp-LA9EkHwXMpfnygOzPxw", + "name": "SK Pastrami & Things", + "address": "24 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524016, + "longitude": -75.1704199, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "HasTV": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Burgers, Food, Sandwiches, Bagels, Restaurants, Breakfast & Brunch, Delis, Desserts", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "x9GVxPYqwLNsBLBI_ZIxYw", + "name": "Bruskin Hardware & Lock", + "address": "2451 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.917589, + "longitude": -75.155919, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Knife Sharpening, Local Services, Home Services, Keys & Locksmiths, Shopping, Home & Garden, Hardware Stores", + "hours": { + "Monday": "10:30-15:0", + "Tuesday": "10:30-15:0", + "Wednesday": "10:30-15:0", + "Thursday": "10:30-15:0", + "Friday": "10:30-15:0", + "Saturday": "11:0-15:30" + } + }, + { + "business_id": "3BqE-WzMvq-tuJwbjjpJmg", + "name": "Primp and Play", + "address": "249 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468869, + "longitude": -75.157476, + "stars": 3.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Massage, Day Spas, Nail Salons, Cosmetics & Beauty Supply, Beauty & Spas, Shopping, Children's Clothing", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "y0bamNPKpnciqIgozYxrLw", + "name": "Pho & More 2", + "address": "571 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19454", + "latitude": 40.0362104, + "longitude": -75.1086409, + "stars": 3.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "HasTV": "False", + "GoodForKids": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Thai, Restaurants, Vietnamese", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "jgRdqUmTAouFctEs7VVehA", + "name": "Philabundance", + "address": "3616 S Galloway St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9026933398, + "longitude": -75.1566333002, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Community Service/Non-Profit, Local Services", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "7i6jnQ8kP9oMzizv28L1bQ", + "name": "Evsquisite Mobile Detailing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'no'" + }, + "categories": "Automotive, Auto Detailing, Car Wash", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "uDjIsTgU7TWUdtHTkelGcw", + "name": "The Polish Nail Lounge", + "address": "2403 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675481, + "longitude": -75.1771733, + "stars": 4.0, + "review_count": 137, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tanning, Spray Tanning, Nail Technicians, Beauty & Spas, Waxing, Nail Salons, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "JM4gj4650BCmjM3sGbTDHg", + "name": "Never Too Spoiled", + "address": "57 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519038, + "longitude": -75.1452012, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "BikeParking": "False", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, Accessories, Shopping, Cards & Stationery, Fashion, Arts & Crafts, Flowers & Gifts, Women's Clothing, Jewelry", + "hours": null + }, + { + "business_id": "OChSrnaj5tQ1-wm7zoVT4w", + "name": "Gyu-Kaku Japanese BBQ", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9607160127, + "longitude": -75.1701319521, + "stars": 3.5, + "review_count": 569, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "HasTV": "True", + "BikeParking": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Tapas/Small Plates, Restaurants, Barbeque, Japanese, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "Ma2M-_bf88ZyzrQU3SVyag", + "name": "Kitchen Kapers", + "address": "213 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495062, + "longitude": -75.1691002, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Shopping, Specialty Food, Appliances, Kitchen & Bath, Food, Electronics, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "MQyMu2BNQAg2I9aD2FIuLQ", + "name": "Frankford Lofts", + "address": "1045 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9672399, + "longitude": -75.134218, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Agents, Home Services, Real Estate Services, Real Estate, Apartments", + "hours": { + "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" + } + }, + { + "business_id": "I39Gnp-se1D8-mvv_MumOw", + "name": "Chili's", + "address": "1239 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532903753, + "longitude": -75.1610183611, + "stars": 2.0, + "review_count": 152, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "American (New), Tex-Mex, Restaurants, Nightlife, Bars, American (Traditional)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "3Ag-nKpEIYcHusV3iDYdOw", + "name": "Dentex Dental at Bustleton and Red Lion", + "address": "10108 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.104087, + "longitude": -75.0285085, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Dentists, Periodontists, Cosmetic Dentists, Health & Medical, Orthodontists", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "hdtnpHXn-iIFTzPLvoOK0Q", + "name": "The Dutch", + "address": "1527 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9288513959, + "longitude": -75.1521847471, + "stars": 4.0, + "review_count": 334, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HasTV": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "None", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsBitcoin": "False", + "Caters": "False" + }, + "categories": "Salad, Breakfast & Brunch, Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "tyFuhfn1BDGHWpmwpkwBAQ", + "name": "Wawa", + "address": "2600 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.077368, + "longitude": -75.023674, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': True, u'validated': None}", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Gas Stations, Food, Automotive, Restaurants, Convenience Stores, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "bOiqEaLdZwy1ISul-xXMig", + "name": "La Fuente Pizzateria", + "address": "517 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936529, + "longitude": -75.155448, + "stars": 4.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Vr9tcjBw4Zo5ffhrQiQrMA", + "name": "Klipper's Hair Studio", + "address": "443 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.076945, + "longitude": -75.0830393, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:30-15:30" + } + }, + { + "business_id": "VXoFO5UrS4WFa8lfgMq-DA", + "name": "No 1 China", + "address": "8743 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0481891, + "longitude": -75.0126365, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "afkVsyaop-ojmY6d75V9pQ", + "name": "No-1 China", + "address": "7596 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9794563, + "longitude": -75.2688406, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "zgc7Ctq8cRe8o3VS1Vfy5A", + "name": "Accent On Animals", + "address": "533 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616584, + "longitude": -75.1476835428, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Pets, Pet Services, Pet Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "PkIYhUjvpsPpJVJv4WcPTg", + "name": "Philadelphia Sports Clubs", + "address": "220 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94573, + "longitude": -75.150099, + "stars": 2.5, + "review_count": 144, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Gyms, Active Life, Trainers, Sports Clubs", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "7:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "RHOGJNNPeCohAxzWMmsmPQ", + "name": "Christian Food Market", + "address": "2243 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9419768, + "longitude": -75.1808491, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Convenience Stores", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "G0MgcqZAUlV_kaCha054UQ", + "name": "Lorraine", + "address": "1502 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968118407, + "longitude": -75.1623112238, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "ByAppointmentOnly": "False", + "GoodForDancing": "False", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'outdoor'" + }, + "categories": "Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "-VEGatH4Ea3anbCS4wjgIQ", + "name": "Jade Harbor", + "address": "6863 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0413621, + "longitude": -75.0643869, + "stars": 3.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}" + }, + "categories": "Dim Sum, Chinese, Cantonese, Restaurants", + "hours": { + "Monday": "16:0-2:30", + "Tuesday": "16:0-2:30", + "Wednesday": "16:0-2:30", + "Thursday": "16:0-2:30", + "Friday": "16:0-3:30", + "Saturday": "16:0-3:30", + "Sunday": "16:0-3:30" + } + }, + { + "business_id": "kTYSCRwCH8Cbq-GAI-04EQ", + "name": "Pit Stop HQ", + "address": "838-842 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388854, + "longitude": -75.1576044, + "stars": 4.5, + "review_count": 65, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pet Stores, Pet Training, Dog Walkers, Pet Services, Pets, Pet Sitting", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "Yr5l7ClItsGW7Xi-u865cg", + "name": "63rd St Pizza", + "address": "6300 Wheeler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9246525, + "longitude": -75.2286375, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pizza, Fast Food", + "hours": null + }, + { + "business_id": "hPxN3gywmaHnn5nGvL9-Ww", + "name": "Joseph Spina CPA", + "address": "2220 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671423, + "longitude": -75.1745777, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Professional Services, Accountants", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "11:0-13:0" + } + }, + { + "business_id": "2vIw_EuAcham4RFKh5ctIw", + "name": "Bath & Body Works", + "address": "1625 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515833509, + "longitude": -75.1680058117, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Home & Garden, Cosmetics & Beauty Supply, Accessories, Women's Clothing, Candle Stores, Perfume, Beauty & Spas, Gift Shops, Flowers & Gifts, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "SZ4lt-1ZQOsQJbTf6CMFRQ", + "name": "Prestige Nail Salon", + "address": "1633 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9476882, + "longitude": -75.1693813, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "egFo1PkGkKM-lPli61raiA", + "name": "El Provocon Restaurant II", + "address": "141 W Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0220092, + "longitude": -75.1261474, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "hat1r86VEqsUR4kghisKpw", + "name": "Rudy's Shoe Repair", + "address": "7236 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0363634, + "longitude": -75.0423024, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "DcI-bOmfwZpy-9cE3F9aRA", + "name": "I Mobile Tech", + "address": "41 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504182, + "longitude": -75.1585467, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Mobile Phone Repair, Shopping, Electronics Repair, Mobile Phones, IT Services & Computer Repair", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "tMtI6ECD6hwM-nFp2kXLKQ", + "name": "Tea Do", + "address": "132 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954605, + "longitude": -75.156209, + "stars": 4.0, + "review_count": 835, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Juice Bars & Smoothies, Bubble Tea, Food, Coffee & Tea", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "9z3He4TXeDB8aPcGYyqUQQ", + "name": "Percy Street Barbecue", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9426470869, + "longitude": -75.1575208479, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Sandwiches, Restaurants, Barbeque", + "hours": null + }, + { + "business_id": "yBbxaE9I25Ui_EcagN1H7w", + "name": "Ruby's Cajun", + "address": "1100 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932169, + "longitude": -75.1445882, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Seafood, Cajun/Creole", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "_UqbqUREVLgjYu0s06HWJg", + "name": "China Panda", + "address": "6421 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0499552, + "longitude": -75.0949117, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "WMkiheTT-8kRslImVLWMVw", + "name": "Standard Tap", + "address": "901 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96414, + "longitude": -75.1405144, + "stars": 4.0, + "review_count": 785, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "Corkage": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForDancing": "False", + "WheelchairAccessible": "True", + "Caters": "False", + "DogsAllowed": "False", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "DriveThru": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "CoatCheck": "False", + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Local Flavor, American (Traditional), Restaurants, Burgers, Desserts, Breakfast & Brunch, Food, American (New), Gastropubs, Beer, Wine & Spirits, Nightlife, Bars, Pubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "HtEd7ZDKlR0nQZbc_QWn0A", + "name": "South Street Pizzeria", + "address": "1410 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9435634, + "longitude": -75.1660525, + "stars": 1.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-3:0", + "Tuesday": "11:0-3:0", + "Wednesday": "11:0-3:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "12:0-3:0" + } + }, + { + "business_id": "-b6YqNf1yR1ZJbDCsygrxQ", + "name": "Wendy's", + "address": "1708 N Broad St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9791553507, + "longitude": -75.1580804849, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "Odx1CHHhQICCehpWMg1w4g", + "name": "The Ranchito", + "address": "4745 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0228625, + "longitude": -75.1242773, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HasTV": "True", + "WiFi": "'no'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Latin American, Restaurants, Dominican, Caribbean, Mexican", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "Ea4G-2lAbodTM7FBaSO-tQ", + "name": "Del Rossi's Cheesesteak", + "address": "538 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615077, + "longitude": -75.1450865, + "stars": 3.5, + "review_count": 338, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True" + }, + "categories": "Cheesesteaks, Burgers, Restaurants, Pizza, Caterers, Food Delivery Services, Food, Event Planning & Services", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "TonEJAE3BIpui1qLvcmVCQ", + "name": "Pizza Bar", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9667352, + "longitude": -75.1401308, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Nightlife, Pizza, Restaurants, Beer, Wine & Spirits, Bars, Food", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "eSp-Ip1ySg7sEWibMtakww", + "name": "Modena Salon", + "address": "2654 S Jessup St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9163832, + "longitude": -75.1667587, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "TpPzbw1nW7InNBNu-VS4kA", + "name": "Mercados Landscaping & Tree Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tree Services, Gardeners, Landscape Architects, Masonry/Concrete, Landscaping, Home Services", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0" + } + }, + { + "business_id": "kgkgKLxZOGwtTSzyo8wRSQ", + "name": "RediClinic - Hamilton Street", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9620251, + "longitude": -75.1722359, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Food, Urgent Care, Drugstores, Convenience Stores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "RajKQBW6DEVdblVhSO7uiw", + "name": "Sunset Social", + "address": "129 S 30th St Roof", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952458, + "longitude": -75.183692, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': True, u'classy': None, u'upscale': None}" + }, + "categories": "Burgers, Restaurants, Nightlife, Bars", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "3:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "609Lr-Hvo3sr9amdiimOJA", + "name": "Inspired Brews", + "address": "263 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9557476, + "longitude": -75.144334, + "stars": 5.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Organic Stores, Kombucha, Food, Cafes, Breweries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "Q2K0jBf9ybRRL_hODT04mw", + "name": "Bow Wow & Meows Grooming Spa", + "address": "801 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9699835, + "longitude": -75.1762476, + "stars": 4.5, + "review_count": 71, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Groomers, Pet Services", + "hours": { + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "8O5-0IYYTc9qjx3mxQkiXA", + "name": "Washington Ave Animal Hospital", + "address": "1920 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938708, + "longitude": -75.175651, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "N1HTXm1UWrfBWjhqHwcHEg", + "name": "ACME Markets", + "address": "309 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9443112761, + "longitude": -75.149967231, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Shopping, Food, Drugstores, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "ITfY9vBKaaI6guN0ewhD2A", + "name": "The Dapper Dog", + "address": "2nd & Poplar", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.964138, + "longitude": -75.140706, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Hot Dogs, Food Trucks, Specialty Food, Restaurants, Food Stands, Food", + "hours": { + "Friday": "21:30-2:30", + "Saturday": "21:30-2:30" + } + }, + { + "business_id": "bxIg8rETZIXAUc9gRTVRoQ", + "name": "Silvana Cumani, DMD", + "address": "2200 Montrose St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941054, + "longitude": -75.1796408, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Pediatric Dentists, Cosmetic Dentists, Orthodontists, Health & Medical, Doctors, Dentists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "X4ADd5nru1D90MLy_sx_bQ", + "name": "Six Fishes Neighborhood Acupuncture", + "address": "2308 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945047, + "longitude": -75.1803019, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Traditional Chinese Medicine, Acupuncture, Health & Medical, Massage Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "kaoDMrIYG6iDU8AhT-G-0g", + "name": "Mealey's Furniture Oulet", + "address": "8812 Frankfrod Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0507365264, + "longitude": -75.0126888021, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Mattresses, Shopping, Home Decor, Furniture Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "XSAAxFlV5XQq3m3a91R4vg", + "name": "Orlando's Bakery", + "address": "6540 Lebanon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9772005, + "longitude": -75.2512904, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Donuts, Custom Cakes, Bakeries, Coffee & Tea", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "sHumMO208xz2rMKYD-TrPA", + "name": "Keystone Concierge", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Personal Assistants, Event Planning & Services, Home Cleaning, Home Services, Hotels & Travel, Professional Services, Notaries, Local Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "5T-jq06UkT4Z1DJwityUmg", + "name": "Campus Park & Ride", + "address": "1600 S Warfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9342093252, + "longitude": -75.2018901365, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Parking, RV Parks, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "uWJx0gRuynGEjgRtxUu-dw", + "name": "Passero's Coffee Roasters", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496785559, + "longitude": -75.1548227944, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "DogsAllowed": "True", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cafes, Coffee Roasteries, Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0" + } + }, + { + "business_id": "ff6JGMw73KLQ_IkAsah8cg", + "name": "Tall Cow Cards & Goods", + "address": "616 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409074, + "longitude": -75.1477406, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Event Planning & Services, Shopping, Home Decor, Cards & Stationery, Arts & Crafts, Home & Garden", + "hours": null + }, + { + "business_id": "n57B4y1clYVK5O_DH9W-tg", + "name": "iRepair Works", + "address": "1358 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9434409, + "longitude": -75.1651689, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Computers, Local Services, Electronics Repair, Mobile Phones, Mobile Phone Repair, IT Services & Computer Repair", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "lwWBgCvUoKug4Ruja42V3g", + "name": "Cactus Collective", + "address": "739 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9392953, + "longitude": -75.1495102, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Women's Clothing, Jewelry, Used, Vintage & Consignment, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "W8TR-CouNLUrRUCnMPX08A", + "name": "Afton Family Dental", + "address": "1815 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9275704, + "longitude": -75.1686517, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Cosmetic Dentists, Dentists", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "10:0-19:0", + "Wednesday": "9:30-18:30", + "Thursday": "9:0-18:30", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "LRhONqwTJivxeC74p66uMw", + "name": "Uncle's Seafood", + "address": "1915 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0139965, + "longitude": -75.1585169, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Seafood, Restaurants", + "hours": null + }, + { + "business_id": "1FCxJuEH_3tmxUDVPv1qfw", + "name": "Poe's Sandwich Joint", + "address": "1710 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9773029, + "longitude": -75.1436018, + "stars": 4.0, + "review_count": 122, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "BYOB": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Corkage": "False", + "Caters": "True" + }, + "categories": "Sandwiches, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "f83xbZRHJBKmxHuvqmhAjw", + "name": "Modells Sporting Goods", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sporting Goods, Shopping", + "hours": null + }, + { + "business_id": "YEQh4F5rDIQFKdUvSIVuWg", + "name": "Philadelphia Federal Credit Union", + "address": "1108 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950037, + "longitude": -75.1589387, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "W_3ULUCHwEcvtOgqLovdrQ", + "name": "All Garage Door Services", + "address": "4734 Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0000719, + "longitude": -75.0657249, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Door Sales/Installation, Home Services, Garage Door Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "lAs8Of4nxvJ30uCz_hPtVw", + "name": "The Dolphin Tavern", + "address": "1539 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930595, + "longitude": -75.168127, + "stars": 3.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Dance Clubs, Bars, Adult Entertainment, Nightlife", + "hours": { + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0" + } + }, + { + "business_id": "9JJzExdkd6fvATS0dkHFgg", + "name": "The Woodlands Cemetery Company", + "address": "4000 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9484334685, + "longitude": -75.2014280432, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "dX8dnwxVTpUvHXHlOXjgcw", + "name": "Melange Tea & Spice", + "address": "1042 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447177, + "longitude": -75.1596677, + "stars": 5.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "DogsAllowed": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "False" + }, + "categories": "Food, Coffee & Tea, Specialty Food, Herbs & Spices", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "zmUzj5kSZueQB-H8WxatCg", + "name": "Dollar Tree", + "address": "7104 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0443328, + "longitude": -75.2306267, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Discount Store", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "WIYMl1aBJpCS1ed1e53GGw", + "name": "Masala Kitchen: Kati Rolls & Platters", + "address": "2004 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951890375, + "longitude": -75.1738043, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-3:30", + "Wednesday": "12:0-0:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "tY5UAPaV-wCW7VczqG1eWA", + "name": "John F. Byrne Golf Course", + "address": "9550 Leon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.060202, + "longitude": -74.997896, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Golf", + "hours": null + }, + { + "business_id": "o4gT7fMheja86ur9PVb2Iw", + "name": "District Taco", + "address": "1140 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516488, + "longitude": -75.1591482, + "stars": 3.0, + "review_count": 74, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "OutdoorSeating": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "3i3NUv_G6O6h-BYNnLa9Qg", + "name": "AT&T Store", + "address": "3584 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9934214249, + "longitude": -75.0978934765, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Mobile Phones, Shopping, Mobile Phone Accessories, Local Services, Telecommunications, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "7w2mvWBmvY-49MmTxQ-OhA", + "name": "Mood Indian Restaurant", + "address": "423 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9703256, + "longitude": -75.1440831, + "stars": 3.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "11:30-1:0", + "Tuesday": "11:30-1:0", + "Wednesday": "11:30-1:0", + "Thursday": "11:30-1:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-1:0" + } + }, + { + "business_id": "UaJEbU86wjE-5cUfpTTEEg", + "name": "Golden China", + "address": "6000 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0368847, + "longitude": -75.0884941, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "fbH6tCBIDYRARQSPNxJvmg", + "name": "Coco Blue Nail & Spa", + "address": "8611 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0768683, + "longitude": -75.2076789, + "stars": 3.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-18:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "upONXUUs6xQwdlgbtRSjrw", + "name": "Economy Drain Cleaning & Plumbing", + "address": "2424 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9855862877, + "longitude": -75.1285192, + "stars": 5.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Plumbing, Water Heater Installation/Repair, Home Services, Heating & Air Conditioning/HVAC, Hydro-jetting", + "hours": { + "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" + } + }, + { + "business_id": "PwvhqTRx1MIouDT0IHVPwA", + "name": "Dakini Tattoo Art Collective", + "address": "1203 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924126, + "longitude": -75.166154, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "UDOcMEgRKfoCc-BikZJFhg", + "name": "Maha Yoga", + "address": "2030 Sansom St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950648, + "longitude": -75.169185, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Yoga, Active Life, Massage, Beauty & Spas", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "9:0-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "FJ6kN_0lFg0bNa0iSBRiAA", + "name": "Mike's Auto Body and Glass Center", + "address": "9357-59 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0820698, + "longitude": -75.037895, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Auto Glass Services, Windshield Installation & Repair, Auto Detailing, Automotive, Body Shops, Car Stereo Installation", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "NUExM8_IQMh1csfeWs3PyQ", + "name": "Hi Kori", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552705, + "longitude": -75.1566243, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Music": "None" + }, + "categories": "Bars, Japanese, Restaurants, Nightlife", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "wHCIR3lqhsYcX2cMu0fUsA", + "name": "Cresson Street Tattoo", + "address": "4371 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0267201, + "longitude": -75.2241147, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Tattoo, Arts & Entertainment, Beauty & Spas, Piercing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "ceg9MFssNC3dlr-Ra4zfrw", + "name": "Water Works Presented By Cescaphe Event Group", + "address": "640 Water Works Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9660351, + "longitude": -75.1834918, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, Wedding Planning, Venues & Event Spaces", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "nszscbhz1Ftq-zlH5km0Aw", + "name": "TONI&GUY Philadelphia Academy", + "address": "9902 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0934643, + "longitude": -75.0197124, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Specialty Schools, Beauty & Spas, Cosmetology Schools, Hair Salons, Education, Vocational & Technical School", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "aEZjIELPNa5jDoAq7lJWDw", + "name": "Central Parking Systems", + "address": "925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19023", + "latitude": 39.948741, + "longitude": -75.157026, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "waafKhA-LtJSZXlECyfEXw", + "name": "New York Gyro Halal Food Cart", + "address": "SE Corner Of 11th St And Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948694, + "longitude": -75.1589575, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Food Stands, Food", + "hours": null + }, + { + "business_id": "qCA5c4RsKrT90NYSUlidDw", + "name": "Shangold Mona, MD", + "address": "1601 Walnut St, Ste 1200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 1.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "NV8fdSx1BHtwP1mC2eedSQ", + "name": "B-Side Complex", + "address": "939 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.948674, + "longitude": -75.145814, + "stars": 2.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False" + }, + "categories": "Seafood, Dance Clubs, Nightlife, Restaurants, Bars, Lounges, Hookah Bars", + "hours": { + "Monday": "20:0-2:0", + "Tuesday": "20:0-2:0", + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "Krtxh1w4-vgZikis6LkAMQ", + "name": "Elixr Coffee", + "address": "3675 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566794, + "longitude": -75.1951199, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Coffee Roasteries", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "44Xh-IjWDSn7XTw1hzO50g", + "name": "Dutch Eating Place", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534618209, + "longitude": -75.1593213069, + "stars": 4.5, + "review_count": 796, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "Caters": "False", + "WiFi": "u'no'", + "HappyHour": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants, Juice Bars & Smoothies, Food, Breakfast & Brunch", + "hours": { + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "4z6BtXauqoJBKjM8J-MvtQ", + "name": "Extremely Sharp Barbershop", + "address": "271 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9463506, + "longitude": -75.1577661, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "9:0-21: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" + } + }, + { + "business_id": "WzQ6OM-4iPAsQbYiFxJm3g", + "name": "City Decks", + "address": "526 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932338, + "longitude": -75.153965, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate, Decks & Railing, Home Services, Contractors", + "hours": null + }, + { + "business_id": "1JGfNy-SMPQK86PNWPjJvA", + "name": "Wawa", + "address": "901 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427160282, + "longitude": -75.1572520117, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Convenience Stores, Sandwiches, Restaurants, Food", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "2CvbV_ChCveXzg076b4TMA", + "name": "V Marks the Shop", + "address": "1515 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9260333, + "longitude": -75.171741, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "None", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Specialty Food, Food, Grocery, Convenience Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "uv83YXO4hZQpp-nY3H3Hrw", + "name": "Uncle's Bar", + "address": "1220 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9476464, + "longitude": -75.1615291, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Nightlife, Gay Bars, Bars", + "hours": null + }, + { + "business_id": "2-hB3XuoGWsBH4RnEY4FTw", + "name": "Judy's Kitchen", + "address": "3300 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957619986, + "longitude": -75.1893085241, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Soul Food", + "hours": { + "Monday": "5:0-5:0", + "Tuesday": "5:0-5:0", + "Wednesday": "5:0-5:0", + "Thursday": "5:0-5:0", + "Friday": "5:0-5:0", + "Saturday": "5:0-5:0", + "Sunday": "5:0-5:0" + } + }, + { + "business_id": "iErS6C2sUShAQs4F7qa-1A", + "name": "Academia del Caffe", + "address": "1 S Penn Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951347, + "longitude": -75.1629446, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "Iy5NjdEmvreKhE43k5nV1g", + "name": "7-Eleven", + "address": "1835 Arch St, Space B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556688, + "longitude": -75.1708177, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "n97hN9132VDm9lb77-Vihg", + "name": "Temptation", + "address": "407 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417867, + "longitude": -75.1494578, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Accessories, Watches, Women's Clothing, Fashion, Shopping", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "LJ4gWbiKjZLQ1RZhOzi1IA", + "name": "Union Taco", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023539, + "longitude": -75.2197385, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Tacos, Desserts, Nightlife, Food, Mexican, Salad, Restaurants, Bars", + "hours": { + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "HHUnRJeJDPQaV38IWBoyng", + "name": "Car Optics Window Tinting", + "address": "9523 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0855939, + "longitude": -75.0361757, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Car Window Tinting, Vehicle Wraps, Auto Glass Services, Automotive, Auto Security", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-15:30", + "Saturday": "8:0-15:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "lfIQztu4b_W4b7uCMzmyLA", + "name": "Mekong River", + "address": "1120 - 1124 Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9318952885, + "longitude": -75.1462325355, + "stars": 4.0, + "review_count": 121, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, American (New), Vietnamese", + "hours": { + "Monday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:30-22:30", + "Saturday": "10:30-22:30", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "XjT5SB3cAzPWKGdjf8MCyA", + "name": "Race Street Pier", + "address": "Race St & N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9532324138, + "longitude": -75.1398003101, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "fbnFSTmZwct_YXnr5u2bRg", + "name": "B & J Nail and Spa", + "address": "1128 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935628, + "longitude": -75.15882, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "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": "9:30-19:30" + } + }, + { + "business_id": "x7qsWsEF77C2UMDVRSwryg", + "name": "Alvin M Levin & Son Inc", + "address": "700 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942049, + "longitude": -75.1607628, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Property Management, Home Services", + "hours": null + }, + { + "business_id": "l70mhw7g5p-tBNitFtr5mA", + "name": "Central Parking", + "address": "1001 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9521221119, + "longitude": -75.166053772, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "EUlSBUUuaPVQ7NftUbyf8A", + "name": "Charlies Country Ribs", + "address": "2528 W Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9870884, + "longitude": -75.1758676, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "BYOB": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HasTV": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sandwiches, Soul Food, Barbeque, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-15:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "7-g0NewgXVtOxQhxVNQWxg", + "name": "Philly Christmas Trees", + "address": "1 Lemon Hill Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9707543, + "longitude": -75.1871948, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True" + }, + "categories": "Christmas Trees, Nurseries & Gardening, Home & Garden, Pop-up Shops, Shopping, Home Decor, Cultural Center, Arts & Entertainment", + "hours": null + }, + { + "business_id": "-qAsm0KkOERjvIMUynPTtA", + "name": "Blokes Barbershop & Gentleman's Emporium", + "address": "151 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953643, + "longitude": -75.1446532, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': True}", + "WiFi": "u'free'" + }, + "categories": "Men's Hair Salons, Beauty & Spas, Shopping, Barbers, Hair Salons", + "hours": { + "Monday": "11:0-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-19:30", + "Saturday": "9:30-17:0", + "Sunday": "10:30-15:0" + } + }, + { + "business_id": "1hiDEOPijnrWhDdx1z1yAQ", + "name": "Fame's Famous Pizza", + "address": "1835 N 12th St, Ste 99", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9809158, + "longitude": -75.153284, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Caters": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "dG-gZOWzn8iO1Rvv_fbXxA", + "name": "Silk City Diner & Lounge", + "address": "435 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9613271, + "longitude": -75.1460328, + "stars": 4.0, + "review_count": 940, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Caters": "False", + "GoodForKids": "True", + "GoodForDancing": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': None}", + "OutdoorSeating": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "DogsAllowed": "False", + "AgesAllowed": "u'allages'" + }, + "categories": "Dance Clubs, Bars, Diners, Breakfast & Brunch, Lounges, Restaurants, Nightlife, American (New)", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "uR6GtB-sT4IlkI27tlx73g", + "name": "Lulu.ish", + "address": "520 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417834, + "longitude": -75.1516536, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Shopping", + "hours": { + "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-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "djtnqoRyGJNC0BL8B2OTkw", + "name": "Island Taste Restaurant", + "address": "5518 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0355548, + "longitude": -75.1310164, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "8:30-22:0", + "Tuesday": "8:30-22:0", + "Wednesday": "8:30-22:0", + "Thursday": "8:30-22:0", + "Friday": "8:30-23:0", + "Saturday": "8:30-23:0" + } + }, + { + "business_id": "JYmRXNPd9hlp72ycpl4dtQ", + "name": "Bao & Bun Studio", + "address": "5401 Tacony St, Bldg 39", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0089527, + "longitude": -75.0640806, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsTableService": "False", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Taiwanese, Pan Asian, Street Vendors, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0" + } + }, + { + "business_id": "8JgG48eiEWNal5aVI_au0Q", + "name": "Revive Fitness", + "address": "1529 Walnut St, 5th Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499354, + "longitude": -75.1639831, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Sports Clubs, Trainers, Fitness & Instruction", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-18:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "HguxlcVKp23-NdBGstw9Hw", + "name": "Royal Villa Cafe", + "address": "1700 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9236019, + "longitude": -75.1749492, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Italian, Cafes, Bars, Restaurants", + "hours": null + }, + { + "business_id": "ca6Q-AHcdO6bYwU-sGsKjg", + "name": "Luke's Bar", + "address": "2434 Cedar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978882, + "longitude": -75.123824, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Nightlife", + "hours": { + "Monday": "13:30-2:0", + "Tuesday": "13:30-2:0", + "Wednesday": "13:30-2:0", + "Thursday": "13:30-2:0", + "Friday": "13:30-2:0", + "Saturday": "12:0-2:0" + } + }, + { + "business_id": "Oq9q_rkLfmf-10cjyEpv6w", + "name": "Magical Tailoring & Cleaners", + "address": "516 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420239, + "longitude": -75.147629, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Sewing & Alterations, Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "ttO8cgM35BgAPcpZupwmKg", + "name": "Central Nails", + "address": "1802 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515054, + "longitude": -75.1705783, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "U3L1vOwZwrqTyBDPxiyIJQ", + "name": "Rubb", + "address": "4311 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250895, + "longitude": -75.2221742, + "stars": 4.0, + "review_count": 72, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "BikeParking": "True" + }, + "categories": "Comfort Food, Bars, Restaurants, Barbeque, Gastropubs, Nightlife, Cocktail Bars", + "hours": { + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "Hp2MjhmTbBMiQ1Ez8LKfdg", + "name": "Sit & Spin Records", + "address": "2243 S Lambert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9235926, + "longitude": -75.1807465, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Books, Mags, Music & Video, Shopping, Vinyl Records, Music & DVDs", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "DV08ZJKq_hPS_6Q8GKt0pg", + "name": "Philly Fry Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Street Vendors, Event Planning & Services, Food, Restaurants, Caterers, Food Trucks, American (Traditional)", + "hours": null + }, + { + "business_id": "bgHVKRpZ6xotlAuw9VSLZQ", + "name": "Pret A Manger", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955651, + "longitude": -75.182149, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Bakeries, Restaurants, Coffee & Tea, Food, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:30", + "Thursday": "7:30-15:30", + "Friday": "7:30-15:30" + } + }, + { + "business_id": "crvCdEjWgsSQSsX-VKs9ew", + "name": "Young Alfred", + "address": "1700 Market St, Ste 1005", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952669, + "longitude": -75.169109, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Pet Services, Auto Insurance, Insurance, Home & Rental Insurance, Pet Insurance, Pets", + "hours": { + "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" + } + }, + { + "business_id": "wRknFYxBMmcN12ABgyLb8g", + "name": "Q Builders", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9955072, + "longitude": -75.1720488, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tiling, Painters, Home Services, Contractors, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "1yJPs54BqmU46nqI1Htuhw", + "name": "Body Restoration Spa", + "address": "1611 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950047, + "longitude": -75.167995, + "stars": 4.5, + "review_count": 175, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Skin Care, Massage, Waxing, Massage Therapy, Day Spas, Hair Removal, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "6F_pMpmU4WDycwY8B8T9Fg", + "name": "Italian Bistro of Center City", + "address": "211 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94898, + "longitude": -75.1640456, + "stars": 2.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "evfpWyT7mG9rICUyCAGwmw", + "name": "Alliance Francaise de Philadelphie", + "address": "1420 Walnut St, Ste 700", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492642, + "longitude": -75.1654596, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Adult Education, Arts & Entertainment, Local Services, Community Service/Non-Profit, Language Schools, Specialty Schools, Education", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30" + } + }, + { + "business_id": "ZyDCgfTgmfS8R0yjdV1cjg", + "name": "Ansill", + "address": "627 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406161, + "longitude": -75.147675, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "Corkage": "True", + "GoodForKids": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Modern European, American (New), Restaurants", + "hours": null + }, + { + "business_id": "T_RxcKeWnU7s86KH2qLrbQ", + "name": "Flowers & Company", + "address": "119 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95124, + "longitude": -75.171935, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BikeParking": "True" + }, + "categories": "Flowers & Gifts, Shopping, Florists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "8mk6q7HjyJzhEMUR22kRDQ", + "name": "Liquid Charm", + "address": "1207 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560231, + "longitude": -75.1593004, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "American (New), Nightlife, Bars, Lounges, Restaurants", + "hours": null + }, + { + "business_id": "9qWnlyBzoKqwyqDeun7zBw", + "name": "Palmer Distilling", + "address": "376 Shurs Ln, Bldg A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0252219822, + "longitude": -75.2132789304, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer, Wine & Spirits, Food, Distilleries", + "hours": null + }, + { + "business_id": "vs74TKPvUn41cCTb9Odjpg", + "name": "Teahouse Nails & Spa", + "address": "6711 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0535256, + "longitude": -75.0914331, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Removal, Eyelash Service, Nail Salons, Waxing", + "hours": { + "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-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "4KJqpqPuD887Nwlrn-aZHw", + "name": "AJ's Cell Phone Repair Shop", + "address": "1625 Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.081391, + "longitude": -75.1721558, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobile Phone Repair, Restaurants, Food Court, IT Services & Computer Repair, Local Services", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "7FZ0XYOqjaPHRFzmEcaesQ", + "name": "Teppanyaki Grill & Supreme Buffet", + "address": "2920 Roberts Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0104725648, + "longitude": -75.1761489362, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False" + }, + "categories": "Restaurants, Buffets, Sushi Bars, Seafood, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "u3zqvp4BYUjzJD7tzx3Jbg", + "name": "JB Plumbing and Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 398, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Water Heater Installation/Repair, Excavation Services, Contractors, Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "ifxZ_RT_TSZwdCzI2FS22w", + "name": "Scrub Pro", + "address": "817-819 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031557, + "longitude": -75.104094, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Men's Clothing, Fashion, Accessories, Shopping, Women's Clothing", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "SR2r6SrUNys7lX3z5ZbgdA", + "name": "Architeqt Salon and Gallery", + "address": "265 South 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946522, + "longitude": -75.157756, + "stars": 5.0, + "review_count": 146, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Men's Hair Salons, Beauty & Spas, Hair Salons, Makeup Artists, Hair Stylists, Hair Extensions, Blow Dry/Out Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "9:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Wn1SAo4TMyKnFOA74GmI0w", + "name": "The Tabas Center for Advanced Dentistry", + "address": "2534 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9185695, + "longitude": -75.171285, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Pediatric Dentists, Cosmetic Dentists, Health & Medical, Dentists, Periodontists, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "12:0-20:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "fsJObQwdxVz5Tfh1CjhfuQ", + "name": "The Toothless Cat Gallery", + "address": "1050 N Hancock St, Ste 54", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9664438, + "longitude": -75.139576, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": null + }, + { + "business_id": "JfQ1HCK2Iv900P9pKZfMVg", + "name": "Rustic Music", + "address": "333 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9457132, + "longitude": -75.1628325, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Music & DVDs, Musical Instruments & Teachers, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "pNf55jk_wLt8KO6yuz70MA", + "name": "Wawa", + "address": "518-520 South 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941882, + "longitude": -75.1457641, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Caters": "False", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Sandwiches, Restaurants, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "y2f1eQ3UR-5Wi64TJP617g", + "name": "HeaD AreA", + "address": "238 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473677, + "longitude": -75.1593948, + "stars": 5.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "QcxuKH9V6iacdi_nfRCE6w", + "name": "Sprint Store", + "address": "200 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9139259615, + "longitude": -75.1518527372, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4" + }, + "categories": "Mobile Phone Accessories, Shopping, IT Services & Computer Repair, Mobile Phones, Electronics, Local Services, Telecommunications", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "tPwlA-aW8yYA-p8jEko9HA", + "name": "RIDGE WASH LLC", + "address": "6722 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0405981, + "longitude": -75.2251391, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Car Wash, Auto Detailing, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:30" + } + }, + { + "business_id": "4wnILSUsxXtvgynbkn0cxw", + "name": "Spectrum Scientifics", + "address": "4403 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0260721, + "longitude": -75.2247858, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Toy Stores, Shopping", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "IZl9xDTwW462FKkwEg7EDQ", + "name": "CO-OP Restaurant & Lounge", + "address": "20 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544058, + "longitude": -75.1900591, + "stars": 3.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, American (New), Bars, Breakfast & Brunch, Coffee & Tea, Food, Cocktail Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "hSbwd-VP4THYYvSKQQr6Ow", + "name": "George's Famous Roast Pork and Beef", + "address": "1007 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373453, + "longitude": -75.1581179, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "7:30-15:0", + "Sunday": "7:30-15:0" + } + }, + { + "business_id": "4F3_gToW4jGAZMWi1407Vg", + "name": "Fight Firm", + "address": "461 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9604, + "longitude": -75.1528521, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Martial Arts, Fitness & Instruction, Brazilian Jiu-jitsu, Kickboxing, Boxing, Muay Thai, Amateur Sports Teams, Gyms, Active Life", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "J1VkNgVP-iNNZ2TNgC76cw", + "name": "Professional Nails", + "address": "1811 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9273734, + "longitude": -75.1662007, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "NXbsRaSCuPKbcCuTVHA57g", + "name": "Sawatdee Thai Restaurant", + "address": "534 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439767, + "longitude": -75.1673407, + "stars": 3.5, + "review_count": 206, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BYOB": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'" + }, + "categories": "Thai, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "A-yqzgOwLIfoT-rgILQSNg", + "name": "Doc Bresler's Cavity Busters", + "address": "1430 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9131266, + "longitude": -75.1554262, + "stars": 2.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pediatric Dentists, Health & Medical, Dentists, Cosmetic Dentists, Orthodontists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "r7PzCQmfs2jq-VmZjUwKjg", + "name": "Frank's Steaks & Burgers", + "address": "7161 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0357067, + "longitude": -75.0424596, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': False, 'casual': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False" + }, + "categories": "Delis, Sandwiches, Restaurants, Burgers, Cheesesteaks", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "E18dM4JF8MLlDzPo92vinA", + "name": "Metro Mens Clothing", + "address": "1600 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929798, + "longitude": -75.163739, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Men's Clothing, Shopping, Local Services, Fashion, Personal Shopping", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-17:0" + } + }, + { + "business_id": "sMQOvU3Io0sAQbZLG8Hzlg", + "name": "The Laundry Cafe", + "address": "5675 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0369979, + "longitude": -75.1185985, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundromat, Laundry Services", + "hours": { + "Monday": "7:0-7:0", + "Tuesday": "7:0-7:0", + "Wednesday": "7:0-7:0", + "Thursday": "7:0-7:0", + "Friday": "7:0-7:0", + "Saturday": "7:0-7:0", + "Sunday": "7:0-7:0" + } + }, + { + "business_id": "_cIXeeVsxpwzTRj9TKW6-w", + "name": "Ray's Happy Birthday Bar", + "address": "1200 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9340955, + "longitude": -75.1584681, + "stars": 3.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "True" + }, + "categories": "Nightlife, Bars, Dive Bars", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "5AGVyIa1_XVUqXGbQXRmiQ", + "name": "Heritage", + "address": "914 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9645949, + "longitude": -75.1408296, + "stars": 4.0, + "review_count": 297, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "True", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WiFi": "u'no'", + "HasTV": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, American (New), Arts & Entertainment, Jazz & Blues, Nightlife, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "WxB8498ejPtHE7wFa89_fA", + "name": "The Continental Mid-town", + "address": "1801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519308, + "longitude": -75.1704529, + "stars": 3.5, + "review_count": 1682, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BYOBCorkage": "'no'", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForKids": "False", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsTableService": "True" + }, + "categories": "Breakfast & Brunch, Lounges, Bars, Cocktail Bars, Nightlife, American (Traditional), American (New), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "2pMdDOWl14rU4jdAH4oZXw", + "name": "Union Trust", + "address": "717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495137, + "longitude": -75.1529959, + "stars": 4.0, + "review_count": 138, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'dressy'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': True, 'casual': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "4", + "GoodForKids": "False", + "WiFi": "u'no'" + }, + "categories": "Steakhouses, Seafood, Restaurants, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "8B_xigUkb_HxDvkXVa3LRw", + "name": "Webb Cam", + "address": "241 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9568936, + "longitude": -75.1586081, + "stars": 4.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Photography Stores & Services, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "vdZx3b6EFdzBUefn5sEnrg", + "name": "Beneluxx", + "address": "33 S 3rd St, Basement Speakeasy Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "HasTV": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Wineries, Fondue, Specialty Food, Wine Bars, Belgian, Bars, Nightlife, Food, Restaurants, Arts & Entertainment", + "hours": null + }, + { + "business_id": "ezx3NdQHaCAxmtRje5sz9Q", + "name": "CHOP Karabots Pediatric Care Center - West Philadelphia", + "address": "4865 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9595901, + "longitude": -75.2175494, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Medical Centers, Pediatricians, Family Practice, Health & Medical", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Vj28PSL29SUCUzGfkZpaDg", + "name": "Asia Supermarket", + "address": "143 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9551451, + "longitude": -75.1574436, + "stars": 3.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Chinese, Grocery, Cantonese, Restaurants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "wEsDniqTgAc3MNb0p-RznA", + "name": "Vape Scorpion", + "address": "10859 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1104904, + "longitude": -75.0239261, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Shopping, Head Shops, Local Flavor, Bars, Vape Shops, Nightlife, Tobacco Shops, Lounges", + "hours": { + "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" + } + }, + { + "business_id": "gujO7uy-VeqqEj9eNxSXIg", + "name": "Chipotle Mexican Grill", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0742819, + "longitude": -75.0331506, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "None", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, Restaurants, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "wxO1S4NuUTX7M2BfSvkRhQ", + "name": "Tri Ky Quan - Vietnamese Restaurant", + "address": "2526 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9883529, + "longitude": -75.128797, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea, Sandwiches, Restaurants, Vietnamese, Juice Bars & Smoothies, Vegetarian", + "hours": null + }, + { + "business_id": "u5_y_iOUMjbvqSwWXIx-5A", + "name": "La Famiglia Ristorante", + "address": "8 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494022, + "longitude": -75.1424185, + "stars": 4.0, + "review_count": 140, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "'dressy'", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "Caters": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "HappyHour": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "JJpkrCogVw1EK7xDo29H4g", + "name": "Rittenhouse Psychiatric Associates", + "address": "1528 Walnut St, Ste 1414, Philadelphia Health Services", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949486, + "longitude": -75.167352, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Psychiatrists, Doctors, Counseling & Mental Health", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "Sey5Zgrg9BU0CwdYTJ7CmA", + "name": "Intoxx Fitness", + "address": "123 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0291798, + "longitude": -75.2286857, + "stars": 2.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Gyms, Trainers, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "2eNFk3pP0nKt-VthtZDOqQ", + "name": "Philly Pretzel Factory", + "address": "3377 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9895469, + "longitude": -75.1017481, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Pretzels, Hot Dogs, Food, Restaurants", + "hours": null + }, + { + "business_id": "0knCwcE4p82vEyhpht7X4A", + "name": "The Hubble Bubble Hookah Lounge", + "address": "1000 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9834801, + "longitude": -75.1499321, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "BikeParking": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True" + }, + "categories": "Lounges, Local Flavor, Arts & Entertainment, Social Clubs, Hookah Bars, Nightlife, Bars", + "hours": { + "Tuesday": "20:0-2:0", + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-0:0" + } + }, + { + "business_id": "HiKFAocRpRHvZ-Wpg1ZjJg", + "name": "Taco Bell", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953173, + "longitude": -75.1928651, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Mexican, Fast Food, Tex-Mex, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "yOAZ47U67aDUwDXMrnv8UQ", + "name": "Spaghetti Warehouse", + "address": "1026 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961406, + "longitude": -75.155349, + "stars": 2.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'paid'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "Caters": "False" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "4mygX8lbSgi8Et7Dl2F37g", + "name": "Salumeria", + "address": "Reading Terminal Mkt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953327, + "longitude": -75.15874, + "stars": 4.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Delis, Sandwiches, Cheese Shops, Restaurants, Specialty Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "0CMLdEd7i9iqg7LyQxd43w", + "name": "Rittenhouse Skincare", + "address": "1601 Walnut St, Ste 903", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499239, + "longitude": -75.1677213, + "stars": 4.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Skin Care, Hair Removal, Day Spas, Eyelash Service, Beauty & Spas, Waxing", + "hours": null + }, + { + "business_id": "EjgQxDOUS-GFLsNxoEFJJg", + "name": "Rick's Steaks", + "address": "Liberty Place, 1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9616505601, + "longitude": -75.19993, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cheesesteaks, Steakhouses, Sandwiches, Restaurants", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "RAM10xXUjQnyRpwQMbTimQ", + "name": "The Lift At Juniper Street", + "address": "101 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500465393, + "longitude": -75.1627731323, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "InPU6eftzlVdKTu3897Zdg", + "name": "The Watermark at Logan Square", + "address": "Two Franklin Town Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9599509, + "longitude": -75.1681302, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Real Estate, Rehabilitation Center, Home Services, Health & Medical, Retirement Homes, Skilled Nursing", + "hours": { + "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" + } + }, + { + "business_id": "8fN1DiPUUWAhLsZW4xSSJQ", + "name": "Delicias", + "address": "35th & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9518175642, + "longitude": -75.1641074145, + "stars": 3.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Food Trucks, Food Stands, Restaurants, Spanish, Venezuelan, Food, Gluten-Free, Vegetarian, Latin American", + "hours": { + "Tuesday": "11:0-14:30", + "Wednesday": "11:0-14:30", + "Thursday": "11:0-14:30", + "Friday": "11:0-14:30" + } + }, + { + "business_id": "pXQzeEk90WRdHSMoIVZ9HA", + "name": "The Green Wasabi", + "address": "703 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949663, + "longitude": -75.152497, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False" + }, + "categories": "Ethnic Food, Japanese, Specialty Food, Food, Sushi Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Euf4yeAMDMnkLdboPHmVMg", + "name": "American Best Garage Doors", + "address": "2322 Margaret St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0070962, + "longitude": -75.0762974, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Garage Door Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "1iQpAAWmGp6yJCNr-7DMRQ", + "name": "Greyhound Bus Lines", + "address": "1001 Filbert Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528071, + "longitude": -75.1570006, + "stars": 1.5, + "review_count": 230, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Public Transportation", + "hours": { + "Monday": "5:30-23:59", + "Tuesday": "5:30-23:59", + "Wednesday": "5:30-23:59", + "Thursday": "5:30-23:59", + "Friday": "5:30-23:59", + "Saturday": "5:30-23:59", + "Sunday": "5:30-23:59" + } + }, + { + "business_id": "RtN_zLXMCrbB8E5GJsGqcA", + "name": "Verizon Fios Store", + "address": "7646 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.977617, + "longitude": -75.272471, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Television Service Providers, Professional Services, Internet Service Providers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "jUaI9jFz1g0N4x8zt3Vx8A", + "name": "AJ Pickle Patch and Salads", + "address": "12th St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9539376, + "longitude": -75.159431, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Sandwiches, Delis, Restaurants", + "hours": { + "Wednesday": "8:0-15:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "FIDLmYEuCtSj_rc8lqaKFw", + "name": "Saffron Patch - Authentic Indian Restaurant", + "address": "1849 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9230489, + "longitude": -75.1780791, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Chicken Shop, Vegetarian, Restaurants, Indian, Seafood, Halal", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "zdvUHIeAQrDcTWNT7GWsmA", + "name": "Judy Moon and Associates", + "address": "829 Spruce St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945965, + "longitude": -75.155886, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Reflexology, Reiki, Health & Medical, Beauty & Spas, Massage Therapy, Day Spas, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-15:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "68d_MsPklM5cwIKc_FJmgw", + "name": "Sharkey's Grill And Ale House", + "address": "7401 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0272541026, + "longitude": -75.0284319977, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Caters": "True", + "BYOB": "False", + "RestaurantsDelivery": "False" + }, + "categories": "American (Traditional), Restaurants, Seafood", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "ncESfuN4AYX9C1T6ZtkErQ", + "name": "Powelton Pizza", + "address": "3635 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.959232, + "longitude": -75.194484, + "stars": 3.5, + "review_count": 44, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Corkage": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "U2VoQtxyKir6HME18yDMuA", + "name": "Occasionette", + "address": "1825 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9270933, + "longitude": -75.1663861, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Gift Shops, Cards & Stationery, Toy Stores, Flowers & Gifts, Shopping, Jewelry, Arts & Crafts, Event Planning & Services, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "Q1iEA9dSaiCUpVOBh9OK3Q", + "name": "U-DO-IT Laundry", + "address": "1513 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9474626, + "longitude": -75.1670555, + "stars": 4.0, + "review_count": 86, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Sewing & Alterations, Laundromat, Dry Cleaning & Laundry, Local Services, Dry Cleaning, Professional Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-21:30" + } + }, + { + "business_id": "4jMcQREZ9774-dOGH5p4QA", + "name": "Dwight's Southern Bar-B-Que", + "address": "4345 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9687504, + "longitude": -75.2110717, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "False", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "YAHtkgVQncpWBmJogOXkVQ", + "name": "Ultra Clean Laundromat", + "address": "4620 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485467, + "longitude": -75.2161134, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Laundry Services, Local Services, Laundromat, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "02qFLwwFi8T804rHcYh7Zw", + "name": "Higher Grounds", + "address": "631 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620702366, + "longitude": -75.1429857686, + "stars": 4.0, + "review_count": 159, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "ME7JHq_xsjmt3c2aQaWnOg", + "name": "Vick B's Painters Plus", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0018403, + "longitude": -75.0669552, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Handyman, Painters, Home Services, Contractors", + "hours": null + }, + { + "business_id": "u6r5eXG_-Bod_aXVprI09Q", + "name": "Marathon", + "address": "200 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9538635, + "longitude": -75.2027651, + "stars": 2.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Breakfast & Brunch, Lounges, Bars, Nightlife, Restaurants, Dance Clubs", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "V8zZ4f_KxOS64wXjH58GtQ", + "name": "Le'nails", + "address": "1001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9519835, + "longitude": -75.1571648, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "Iggez45FOelUEv00EznD8Q", + "name": "Free Library of Philadelphia - Walnut Street West", + "address": "201 South 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953812, + "longitude": -75.20246, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Libraries", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "CMVw6Q4k-k5-ZOhA03AShw", + "name": "Cafe Old Nelson", + "address": "1435 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9547834, + "longitude": -75.1646992, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "WiFi": "'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Food, Restaurants", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "Y9dpqyJ6WZTQ-3SBo27X5w", + "name": "600 on Broad", + "address": "1440 Mt. Vernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96444, + "longitude": -75.162364, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "pZGUnFYoXr2ccOxWr-F9Cw", + "name": "Fresh Garden", + "address": "2812 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0438485, + "longitude": -75.0536586, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "NoiseLevel": "'very_loud'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Japanese, Asian Fusion, Sushi Bars, Restaurants, Chinese, Thai", + "hours": { + "Monday": "11:0-22:30", + "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" + } + }, + { + "business_id": "1GgAouXbrim6ZmvaymRqtg", + "name": "Super Shuttle", + "address": "3111 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396758, + "longitude": -75.1956916, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Airport Shuttles, Transportation", + "hours": null + }, + { + "business_id": "i2PYiMC6zATn-FEuKnZ74A", + "name": "K-9 Training & Behavioral Therapy", + "address": "127 Catharine St, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376045, + "longitude": -75.1458846, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Services, Pet Stores, Animal Shelters, Pet Training", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "E9L_2tPvLBag5SheNTfNvg", + "name": "Barbera Autoland", + "address": "7810 Roosevelt Blvd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0543461328, + "longitude": -75.05019, + "stars": 2.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Car Dealers", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0", + "Saturday": "8:30-21:0" + } + }, + { + "business_id": "lYMJ_lraMXqKPJycdD3_7Q", + "name": "Kings & Queens African Cuisine", + "address": "4830 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9408737, + "longitude": -75.2122684, + "stars": 4.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "African, Vegetarian, Halal, Restaurants", + "hours": { + "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": "13:0-20:0" + } + }, + { + "business_id": "Gnn3GHyNiMHk4A7FiGgrOA", + "name": "Saladworks", + "address": "8500 Henry Ave, Store 29, Andorra Shopping Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0643007751, + "longitude": -75.2374119507, + "stars": 3.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False", + "WheelchairAccessible": "True", + "BYOB": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "American (Traditional), Vegetarian, Soup, Salad, Do-It-Yourself Food, Restaurants, Sandwiches, American (New), Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "11:0-17:0", + "Friday": "10:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "QTjtz-bfm8Yrrv6t0PP0FQ", + "name": "Knockbox Cafe", + "address": "405 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9514434, + "longitude": -75.2123412, + "stars": 4.0, + "review_count": 115, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False" + }, + "categories": "Coffee & Tea, Bagels, Food, Restaurants, Sandwiches, Bakeries", + "hours": { + "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-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "-XIkgyZ3Uk1-Jp3zBFuapQ", + "name": "On Demand Urgent Care", + "address": "6060 Ridge Ave, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.032856, + "longitude": -75.2148906, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Urgent Care", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "Bcsx_BkUCJxkZ0IlvOmBzQ", + "name": "Frankford Plating", + "address": "2505 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0026293, + "longitude": -75.0765915, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Customization, Automotive", + "hours": { + "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-12:0" + } + }, + { + "business_id": "8iiI_v2E9V4xXByGce05QQ", + "name": "Pelicana Chicken", + "address": "6201 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0452787399, + "longitude": -75.1172783944, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Chicken Shop, Korean, Chicken Wings, Restaurants", + "hours": null + }, + { + "business_id": "X3EN7epXYeCBzpMAAOQAUA", + "name": "Skin Palette", + "address": "126 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950955, + "longitude": -75.172387, + "stars": 5.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Skin Care, Tanning", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "I7reDf2Lh1wk2LzcoUFK_w", + "name": "Hungry Bear Cafe", + "address": "4700 States Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9850167, + "longitude": -75.2162246, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, American (New), Southern, Breakfast & Brunch", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "OI8BCJhQpWWg4N8VVvb6WA", + "name": "Phila Auto Tag", + "address": "9865 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0922822, + "longitude": -75.0310643, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Registration Services, Notaries, Automotive, Public Services & Government, Local Services, Insurance, Auto Insurance, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "29ThPh6IA69V-SfcwfV9Dg", + "name": "Starbucks", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952227, + "longitude": -75.160863, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "5:30-20:0", + "Sunday": "5:30-20:0" + } + }, + { + "business_id": "RNgb844JJbo6vO1iUod8vA", + "name": "LongHorn Steakhouse", + "address": "2120 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9194120965, + "longitude": -75.1411938987, + "stars": 2.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Steakhouses, American (Traditional), Barbeque", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Q-dmOJiyBS0u53n1DAA1lA", + "name": "Declaration House", + "address": "599 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9516507, + "longitude": -75.1526783, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Parking, Public Services & Government, Landmarks & Historical Buildings, Local Flavor, Automotive", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "Vru0RfOG_WoXUcoMwyx4Nw", + "name": "Plaza Pizza & Restaurant", + "address": "337 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961319, + "longitude": -75.144573, + "stars": 2.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "5Ynl2kbPc53lnA4XPwnlyQ", + "name": "KFC", + "address": "9201 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0774731491, + "longitude": -75.0312192836, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessParking": "None", + "HasTV": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Chicken Shop, Food, Restaurants, Chicken Wings, Fast Food", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "fYC2jJAcOsikNoKrYTPv1Q", + "name": "Fuel", + "address": "1650 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9548937713, + "longitude": -75.1679209578, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "HasTV": "False" + }, + "categories": "Juice Bars & Smoothies, Sandwiches, Food, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "FVy-ciRsXtvhrXaolbvAHQ", + "name": "ESC Escape Room", + "address": "325 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9533842, + "longitude": -75.1461862, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Escape Games", + "hours": { + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "10:0-23:30", + "Saturday": "10:0-23:30", + "Sunday": "10:0-23:30" + } + }, + { + "business_id": "z0HCxBBwXc2_q1hUTIQUhg", + "name": "Tranquil & Serene Moments", + "address": "5899 Lancaster Ave, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9820410139, + "longitude": -75.2385398, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Massage Therapy, Skin Care, Day Spas, Massage, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-19:0", + "Friday": "19:0-21:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "UVNU74hwgtqBwwuiewh6sA", + "name": "Charles Santore Library", + "address": "932 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9370881, + "longitude": -75.1553151, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "mO_QmDdeC3mXzd1EVvL-JQ", + "name": "Dunkin'", + "address": "5051 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0199234, + "longitude": -75.1744427, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "None" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "2_MjeYAW1c3k1a2UInx-5w", + "name": "Ristorante Mezza Luna", + "address": "901 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383377, + "longitude": -75.1562457, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "ZX_vkr2NmX2_VO8MSQapng", + "name": "South Philly Day Spa", + "address": "2012-16 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9179627883, + "longitude": -75.1819237322, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Eyelash Service, Beauty & Spas, Day Spas, Health & Medical, Massage Therapy, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "dPBup9f9QMW-L9d7IQme0Q", + "name": "Prime Stache", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948013, + "longitude": -75.143017, + "stars": 4.0, + "review_count": 212, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Fvz2TL0BYYuBzzf8oEd4HQ", + "name": "Delaware County Professional Services", + "address": "3700 Market St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9560787, + "longitude": -75.1965788, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Counseling & Mental Health, Health & Medical", + "hours": null + }, + { + "business_id": "_NlrbmLTe929D4NbXh3WWg", + "name": "Ritz Cleaners", + "address": "2900 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9731431, + "longitude": -75.1839723, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "NXX5Ok24E52FjAv8_EaFtQ", + "name": "Springboard Media", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "TV Mounting, Local Services, Professional Services, Mobile Phones, IT Services & Computer Repair, Home Services, Shopping, Data Recovery, Home Theatre Installation, Electronics, Electronics Repair, Home Automation, Computers, Home Network Installation", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30" + } + }, + { + "business_id": "bvg9CWsF3FIA-oq00MulAQ", + "name": "Hong Kong Bakery Shop", + "address": "917 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553886, + "longitude": -75.154976, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": null + }, + { + "business_id": "RoooPc2JYvfBBV5C1C6RSw", + "name": "Super Thrift", + "address": "2403 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9752846, + "longitude": -75.1210166, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Thrift Stores, Shopping", + "hours": null + }, + { + "business_id": "XHr3rn4BhvPomAlr7YePiQ", + "name": "Dati's Homemade Water Ice & Ice Cream", + "address": "2235 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9228822, + "longitude": -75.1844549, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "btO6x9iGY4KiP4DpOf0TPg", + "name": "Dairy Queen", + "address": "609 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949507, + "longitude": -75.1512667537, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "DriveThru": "True", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Ambience": "None" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "11:0-17:30", + "Tuesday": "11:0-17:30", + "Wednesday": "11:0-17:30", + "Thursday": "11:0-17:30", + "Friday": "11:0-17:30", + "Saturday": "11:0-17:30", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "YJB79vHnL-DPR1dBFjXTjQ", + "name": "Two Percent To Glory", + "address": "2031 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.979186, + "longitude": -75.1296024, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment, Thrift Stores, Used, Vintage & Consignment, Fashion, Jewelry", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "pYyShHmDznH4b67OTuMmWA", + "name": "Tuscany Cafe", + "address": "222 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949176, + "longitude": -75.1734765, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Coffee & Tea, Food, Sandwiches, Restaurants, American (Traditional)", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "b0VSSVDDU1UhEQgFsF-Gqw", + "name": "Blue Sage Hair Wellness", + "address": "7598 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9795093, + "longitude": -75.2690128, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': False}" + }, + "categories": "Hair Stylists, Hair Salons, Hair Extensions, Beauty & Spas, Hair Loss Centers", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "5LepCpeOc8ioXx8EPrUdYQ", + "name": "Stella Dominican Hair Salon", + "address": "1107 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0605929, + "longitude": -75.0818865, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Blow Dry/Out Services, Hair Stylists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "lWy-v9Vk5XE0djJ9fc8-ww", + "name": "The Avenue at East Falls", + "address": "5450 Wissahickon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0247686, + "longitude": -75.1813335, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "GVZUe3iXg75_Zp9ZS91y9g", + "name": "El Fuego", + "address": "723 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481, + "longitude": -75.1535615, + "stars": 3.5, + "review_count": 258, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "Alcohol": "'none'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "BikeParking": "True" + }, + "categories": "Tex-Mex, Restaurants, Specialty Food, Mexican, Ethnic Food, Soup, Bars, Food, Nightlife", + "hours": { + "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": "12:0-17:0" + } + }, + { + "business_id": "k_43W3zbbEuvYuLZviSJKA", + "name": "&pizza - UPenn", + "address": "3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542356, + "longitude": -75.2011919, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "HasTV": "False", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True", + "Caters": "True", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'" + }, + "categories": "Vegetarian, Vegan, Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "hdBlIBo_iZozNTfhoG6tqQ", + "name": "Paloma", + "address": "763 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9395335, + "longitude": -75.1559574, + "stars": 4.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Caters": "False", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "False" + }, + "categories": "Restaurants, French, Mexican, Spanish", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "_k4vMisS6eCmp9hrvVArIQ", + "name": "Kilian Wm A Hardware", + "address": "8450 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0757532, + "longitude": -75.206449, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Home & Garden, Shopping, Hardware Stores", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "UMHuKs1sO-wq3XqKaejXeA", + "name": "Miss Rachel's Pantry", + "address": "1938 S Chadwick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9265148, + "longitude": -75.1737757, + "stars": 5.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "HappyHour": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Arts & Crafts, Food, Shopping, Food Delivery Services, Event Planning & Services, Cafes, Vegan, Restaurants, Caterers, Cooking Classes", + "hours": { + "Friday": "19:0-22:0", + "Saturday": "19:0-22:0" + } + }, + { + "business_id": "GQreqlUM6Jh4NVyCwExw5Q", + "name": "Presidential City Apts", + "address": "3900 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0081814, + "longitude": -75.2095613, + "stars": 1.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "tz5rytGzU6DsZpHUxTRhUw", + "name": "Milkboy", + "address": "401 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417193, + "longitude": -75.1492966, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "HappyHour": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bars, Venues & Event Spaces, Event Planning & Services, Music Venues, Party & Event Planning, Nightlife, Arts & Entertainment, Cocktail Bars, Beer Bar, Sandwiches, Restaurants", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "vlKGv6VOoNVwPDzqee6n9g", + "name": "Verizon Authorized Retailer, TCC", + "address": "1300 S South Christopher Columbus Blvd, Ste 11A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306445059, + "longitude": -75.1450359821, + "stars": 2.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Electronics, Internet Service Providers, Mobile Phones, Shopping, Mobile Phone Repair, Mobile Phone Accessories, IT Services & Computer Repair, Home Services, Professional Services, Local Services", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "FDifzPPJA9aZKxNQo61pfQ", + "name": "Green Eggs Cafe", + "address": "2800 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9741163, + "longitude": -75.1821029, + "stars": 3.5, + "review_count": 93, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}", + "BikeParking": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (New), Breakfast & Brunch, Restaurants, Diners", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "x_NMDVi_xZ6Bph0yuWycEw", + "name": "Sazz Vintage Clothing", + "address": "618 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.9414712646, + "longitude": -75.1525150131, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Used, Vintage & Consignment", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "YyyvB_walKJdHZupmSruzw", + "name": "R & R Produce Garden Center", + "address": "7100 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0443723777, + "longitude": -75.2301057589, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Specialty Food, Grocery, Food, Home & Garden, Fruits & Veggies, Local Flavor, Shopping, Nurseries & Gardening", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "v5iurptJZo_7xm2Qm-3lgQ", + "name": "Jet Rock Bar & Grill", + "address": "8000 Essington Ave, Terminal D- Gate 13, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8755341584, + "longitude": -75.2380645706, + "stars": 2.0, + "review_count": 244, + "is_open": 1, + "attributes": { + "Caters": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "jOgXXZdODiH-drcJYZkDnA", + "name": "Trattoria Moma", + "address": "7131 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0593185, + "longitude": -75.1900363, + "stars": 4.5, + "review_count": 136, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "waJ7fhSZaT-j2GvjoFZ7VQ", + "name": "Rittenhouse Veterinary Medical Center", + "address": "1618 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9459082, + "longitude": -75.1690735, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "14:0-17:30", + "Tuesday": "14:0-17:30", + "Thursday": "14:0-17:30", + "Friday": "10:0-14:0" + } + }, + { + "business_id": "4OnIsmWkjc7Adl1OmGqQdQ", + "name": "Drains R Us Plumbing and Drain Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0390934, + "longitude": -75.064035, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Plumbing, Contractors, Water Heater Installation/Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "Yu8S-WSQJ0SX5oOHGE1reQ", + "name": "Lucky's Chinese Take Out", + "address": "4710 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483198, + "longitude": -75.2173898, + "stars": 3.5, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'loud'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-3:0", + "Saturday": "14:0-3:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "CT7XiNIjnbx4zqjVYmtF9Q", + "name": "Akwaaba Philadelphia", + "address": "3709 Baring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9611006, + "longitude": -75.1961034, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bed & Breakfast, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "Dke3pFr3lAyj-K4rzdxjLQ", + "name": "The Knit With", + "address": "8226 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0738394, + "longitude": -75.2034401, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Knitting Supplies", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "h5Ir3MRD2p3LfYtMlsXQug", + "name": "The Pet Nanny", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Pet Services, Pet Sitting, Dog Walkers", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "30SveE-LXZ6a77oqBBBFEw", + "name": "Friends Hospital Healing the Mind", + "address": "4641 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0261684, + "longitude": -75.1010134, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Psychiatrists, Hospitals", + "hours": { + "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" + } + }, + { + "business_id": "vhqncPOiK-3_p_nu8dr5Sw", + "name": "2300 ", + "address": "2300 S Swanson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9178791679, + "longitude": -75.1470514704, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False", + "WiFi": "u'no'" + }, + "categories": "Arts & Entertainment, Active Life, Sports Clubs, Stadiums & Arenas", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "lxiciI5LMj1Kj4aTSxubKA", + "name": "Northern Liberties Auto Repair", + "address": "1555 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9752858, + "longitude": -75.1435245, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Auto Repair, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "i4ttU3qq_F30WCfzh3kjJw", + "name": "Kelly's Seafood", + "address": "9362 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0836156, + "longitude": -75.0382522, + "stars": 2.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "WiFi": "'free'", + "WheelchairAccessible": "True", + "BYOB": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Sandwiches, Soup, Seafood", + "hours": { + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "15:0-20:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "G0Gjr4iT6tEOlcH0SM79Eg", + "name": "Aramingo Lashes Nails and Spa", + "address": "2314 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9748298, + "longitude": -75.1219599, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Nail Salons, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "XonebKJ3m0m3MTRpLlGGgw", + "name": "PlayArts", + "address": "1241 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9699382, + "longitude": -75.1356283, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Kids Activities, Shopping, Education, Event Planning & Services, Venues & Event Spaces, Arts & Entertainment, Indoor Playcentre, Musical Instruments & Teachers, Art Classes, Active Life, Specialty Schools, Art Schools, Playgrounds", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-12:30", + "Saturday": "9:0-13:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "EreYgrQPuR7Sk_FKeZZg9g", + "name": "Talula's Daily", + "address": "208 W Washington Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9472825, + "longitude": -75.1536278, + "stars": 4.5, + "review_count": 368, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "American (Traditional), Food, Bakeries, Specialty Food, Restaurants, Bars, Ethnic Food, Cafes, Beer Bar, Coffee & Tea, American (New), Nightlife", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "eWbDxvMtmQR0zcKU6Drzsg", + "name": "Asian World of Martial Arts", + "address": "9400 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0697141, + "longitude": -75.0171955, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Martial Arts, Sporting Goods, Fashion, Sports Wear, Fitness & Instruction, Shopping, Active Life", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "10:30-15:0" + } + }, + { + "business_id": "6GePX4W6Cl8LD68zUq_MAA", + "name": "Rachael's Nosheri", + "address": "120 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951262, + "longitude": -75.172332, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Caterers, Kosher, American (Traditional), Restaurants, Delis, Breakfast & Brunch, Sandwiches, Event Planning & Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "_dbpVYr3GRiH9f-7PZ8ZnQ", + "name": "Erie Lanes", + "address": "1310 Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.005248, + "longitude": -75.101795, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Active Life, Bowling", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "7EIvsWIjK5EXhu-XURuTRA", + "name": "Malone's Back Room Cafe", + "address": "1739 Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9216198, + "longitude": -75.1767548, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Italian, Local Flavor", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "J4AkXVvFZ4xyvGIrPNPiRQ", + "name": "Medical Weight Loss", + "address": "7439 Frankford Ave, Ste B1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.038088, + "longitude": -75.036387, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False" + }, + "categories": "Weight Loss Centers, Health & Medical", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-13:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "VZqrQ1dEOUWp-A1hNsdZBw", + "name": "Encore", + "address": "4002 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9738587, + "longitude": -75.2045457, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Music": "{'dj': True, 'background_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': True}", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Smoking": "u'outdoor'", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "WiFi": "'free'", + "GoodForDancing": "True", + "RestaurantsReservations": "False", + "Corkage": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "Caters": "False" + }, + "categories": "Restaurants, Nightlife, Bars, Cocktail Bars, Dance Clubs, Chicken Wings, Lounges, American (New), American (Traditional)", + "hours": { + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0" + } + }, + { + "business_id": "rihNdO3UwfK9XljS0RlT3w", + "name": "Trader Joe's", + "address": "1324 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9541911, + "longitude": -75.1624335, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Organic Stores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "7Q2E0kpdCvDDkcM1dChJnA", + "name": "M. Cramer & Associates", + "address": "229 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565455214, + "longitude": -75.1586178, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "None", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Beauty & Spas, Professional Services, Cosmetics & Beauty Supply, Home Services, Lighting Fixtures & Equipment, High Fidelity Audio Equipment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "dr-xB6UZs5XPGa6sgVtnqA", + "name": "Ricci's Transport and Recovery", + "address": "2705 Black Lake Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1109641, + "longitude": -74.9823374, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Towing, Transmission Repair, Auto Repair", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "_PdmupHWKJrvVMgDu9I9nQ", + "name": "Robert A Wortman, OD", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Home Health Care, Optometrists", + "hours": null + }, + { + "business_id": "yy5-YZpI5cdV9NcnOrLLoQ", + "name": "Freshii", + "address": "51 N 39th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9572331458, + "longitude": -75.1994814724, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "NoiseLevel": "u'loud'" + }, + "categories": "Salad, Juice Bars & Smoothies, Food, Restaurants, Soup, Vegetarian, Fast Food", + "hours": { + "Monday": "6:30-22:30", + "Tuesday": "6:30-22:30", + "Wednesday": "6:30-22:30", + "Thursday": "6:30-22:30", + "Friday": "6:30-22:30", + "Saturday": "6:30-22:30", + "Sunday": "6:30-22:30" + } + }, + { + "business_id": "Qlh5vIweMlTk9ld6_V-ywg", + "name": "Pho Le", + "address": "1620 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9247139, + "longitude": -75.1737567, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "8nEFnaYMvc_Y-_IUf5zJjA", + "name": "Pub 1301", + "address": "1301 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95627, + "longitude": -75.160843, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "GoodForDancing": "False", + "NoiseLevel": "u'quiet'", + "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': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "WiFi": "'free'" + }, + "categories": "Food, Nightlife, Bars, Pubs", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "jGJc5eCBF_tQWiYInBelCg", + "name": "Shanks Original", + "address": "120 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505432, + "longitude": -75.1660506, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Steakhouses, Restaurants, Sandwiches, Salad", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "wg_2oIPo-3pIwj24qvYOaw", + "name": "Onyx Hookah Lounge", + "address": "842 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1030393, + "longitude": -75.0302343, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}" + }, + "categories": "Middle Eastern, Bars, Lounges, Egyptian, Restaurants, Nightlife, Hookah Bars", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-3:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "JTA1jw-qSYbcoGz1QFsv4w", + "name": "Rhino Bar", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478403, + "longitude": -75.1620995, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Gastropubs, Nightlife, Bars", + "hours": null + }, + { + "business_id": "wkoSjepdvk_tlkj7fi5NQg", + "name": "Getson & Schatz PC", + "address": "230 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484263, + "longitude": -75.1652545, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Immigration Law, Professional Services, Lawyers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "aKFs_M-L-kFJZ_mLBC35uA", + "name": "LashBee", + "address": "1126 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487806, + "longitude": -75.1602719, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Makeup Artists, Eyelash Service, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "10:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "U6gikR4uhRl4zU8q3j02oA", + "name": "The Artist Haus", + "address": "3401 Conrad St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.01156, + "longitude": -75.18862, + "stars": 5.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "None", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "3-ohG1LYG5gi_9pTjsAJew", + "name": "Royal Pizza", + "address": "4202 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9496595, + "longitude": -75.2074162, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Burgers, Restaurants, Pizza, Cheesesteaks", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "kiUoNdAS6DOUu0Fjqlla-A", + "name": "Edible Arrangements", + "address": "2371 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0471958, + "longitude": -75.0555362, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Chocolatiers & Shops, Florists, Food, Gift Shops, Flowers & Gifts, Specialty Food, Fruits & Veggies", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "j3yCJo6tcggWs_Z1-cZ1AQ", + "name": "Kaminsky Dental Assoc", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry, Cosmetic Dentists, Periodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "clG11uOkymL7Rem0PgpgZw", + "name": "Labcorp", + "address": "245 N Broad St Ground, Ground Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.957314, + "longitude": -75.162531, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Diagnostic Services, Medical Centers, Laboratory Testing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "VC5T6I44ye1aHkyBcHrkXg", + "name": "OnPoint Nutrition", + "address": "744 South St, Ste 132", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942269, + "longitude": -75.1553432, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Weight Loss Centers, Health & Medical, Nutritionists", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "KuBLONOp6RFann37XqbJGQ", + "name": "The Philadelphia Barber Co", + "address": "1106 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9675225913, + "longitude": -75.1367849415, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Barbers, Personal Shopping, Venues & Event Spaces, Shopping, Beauty & Spas, Event Planning & Services, Hair Salons, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "y-sX42MoA2AsGBmUrI0InQ", + "name": "New Pink Nail Salon", + "address": "6738 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.026184, + "longitude": -75.0435463, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Technicians, Nail Salons", + "hours": null + }, + { + "business_id": "ZJnYhFYxCdhySPh7bjVzmw", + "name": "ASAP Roadside and Towing", + "address": "10171 Bridle Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.108696, + "longitude": -75.0285773, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Truck Rental, Roadside Assistance, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "7:0-18:0" + } + }, + { + "business_id": "EmIrNcZkTUF3mhoWQAT6Bg", + "name": "Jyoti Indian Bistro", + "address": "2817 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974694, + "longitude": -75.182445, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Indian", + "hours": { + "Monday": "15:30-20:0", + "Tuesday": "15:30-20:0", + "Wednesday": "15:30-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "TwgRy3xS6NYUMRGqwx8ZQw", + "name": "Supercuts", + "address": "15200 Bustleton Ave, County Line Plaza", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.134036, + "longitude": -75.010442, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4" + }, + "categories": "Barbers, Cosmetics & Beauty Supply, Hair Salons, Beauty & Spas, Shopping, Men's Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "wTCA2ZJsssbOCjG0h0ZiGg", + "name": "Redcrest Fried Chicken", + "address": "1525 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9301356247, + "longitude": -75.162825, + "stars": 4.0, + "review_count": 152, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Alcohol": "'none'", + "Caters": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HappyHour": "False", + "RestaurantsTableService": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BYOB": "False", + "Corkage": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Chicken Shop, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "FKaGYKach4AVw6d7RzFaNw", + "name": "Arrow Motors", + "address": "2225 Wakeling St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0094418, + "longitude": -75.0718929, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Dealers, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "7q8YIzBANw7tJItu-jM0QA", + "name": "KicksUSA", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.901808, + "longitude": -75.241261, + "stars": 1.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Shoe Stores, Sporting Goods, Shopping, Sports Wear", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "mmlZz6ypFdgHROjt2AnSsw", + "name": "Hi-Tech Intelligent Services", + "address": "521 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9438382, + "longitude": -75.1652421, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "None", + "BikeParking": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "TV Mounting, Shopping, Event Planning & Services, Handyman, Professional Services, Kitchen & Bath, Print Media, Carpet Cleaning, Advertising, Home Organization, Home & Garden, Videographers, Local Services, Mass Media, Marketing, Contractors, Home Services, IT Services & Computer Repair, Furniture Assembly, Junk Removal & Hauling, Office Cleaning, Home Cleaning, Plumbing, Graphic Design", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "5tJ7ab1rVzkOtWXKmHU6og", + "name": "honeygrow Test Kitchen", + "address": "1601 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9745645449, + "longitude": -75.1343554628, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Noodles", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "9-WAA71NCOePL_OzM2lz-Q", + "name": "Michael's Glass Company", + "address": "4625 Knorr St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0256085, + "longitude": -75.0448282, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Shopping, Windows Installation, Automotive, Kitchen & Bath, Glass & Mirrors, Auto Glass Services, Home Services, Home & Garden", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "xy2FTOvVeVhkJQ2ilU8bBA", + "name": "Sulimay's Urban Salon", + "address": "1600 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.974239, + "longitude": -75.133541, + "stars": 5.0, + "review_count": 99, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Waxing, Skin Care, Hair Extensions, Hair Salons, Hair Stylists, Hair Removal", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "zAKk205BWtGY9xo_M98cqg", + "name": "Amerikick", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.064592, + "longitude": -75.238027, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Martial Arts, Fitness & Instruction, Active Life", + "hours": { + "Monday": "14:0-20:30", + "Tuesday": "14:0-20:30", + "Wednesday": "14:0-20:30", + "Thursday": "14:0-21:0", + "Friday": "14:0-20:30", + "Saturday": "8:0-14:0", + "Sunday": "9:0-11:0" + } + }, + { + "business_id": "eX3njv9GEPmr18YKhizBig", + "name": "Golden Crust Pizzeria", + "address": "7153 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0598969, + "longitude": -75.1906404, + "stars": 2.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "'average'", + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "o3EJlCFeZ4Jneis7dUScSA", + "name": "Strands Hair Salon", + "address": "25 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950987, + "longitude": -75.145258, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Makeup Artists, Nail Salons", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "5-nNDXuH0KUj31oo1RqQXQ", + "name": "Taco Mondo", + "address": "2965-2999 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954917, + "longitude": -75.1824258, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "ntlMq-CeKNlg04Vt_fLp0A", + "name": "Beauty Nails Spa", + "address": "6548 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0233508, + "longitude": -75.0487241, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyelash Service, Beauty & Spas, Hair Removal, Waxing, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "0u7UZC-5t_v8AS8AXTFASw", + "name": "About Hotpot", + "address": "125 Sansom Walkway", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947642, + "longitude": -75.143421, + "stars": 3.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "Caters": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Chinese, Hot Pot, Restaurants", + "hours": { + "Monday": "0:0-0: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": "12:0-22:0" + } + }, + { + "business_id": "66Lwl-YanL2TvHZc0mu6fw", + "name": "Visionworks", + "address": "3586 Aramingo Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9931895, + "longitude": -75.0974315, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Eyewear & Opticians, Health & Medical, Optometrists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "JVDHxMnKjif8XdXVFWiClg", + "name": "Dizengoff", + "address": "1625 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506511, + "longitude": -75.1683346, + "stars": 4.5, + "review_count": 725, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "WiFi": "'no'", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "BikeParking": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Beer, Wine & Spirits, Middle Eastern, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "PCttOP46zDnd7ar9aa2-aw", + "name": "Renee Yurovsky, DDS", + "address": "1880 John F Kennedy Blvd, Ste 1111", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9540941, + "longitude": -75.170973, + "stars": 2.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Cosmetic Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "Bg3hST859sBg302aXbGkyg", + "name": "M3 Printing", + "address": "440 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963882, + "longitude": -75.145885, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Web Design, Professional Services, Local Services, Screen Printing/T-Shirt Printing, Printing Services, Graphic Design", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "ZhAPdzBxhvvNInbhEPZ6jw", + "name": "KAMI Philadelphia", + "address": "3233 Arch St, #3299", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570641, + "longitude": -75.1825364, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Food Trucks, Korean, Street Vendors", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0" + } + }, + { + "business_id": "QuzyJkTBJFZg5Y0oDCQqcg", + "name": "Penn Foods Market", + "address": "840 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.061926, + "longitude": -75.085968, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "International Grocery, Grocery, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Qf9TysGjxolCipKa_B2vlg", + "name": "Popeyes Louisiana Kitchen", + "address": "3541 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.992755, + "longitude": -75.097634, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "GoodForMeal": "None", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "None", + "Alcohol": "'none'", + "OutdoorSeating": "False" + }, + "categories": "Burgers, American (Traditional), Chicken Wings, Restaurants, Fast Food", + "hours": { + "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-18:30", + "Sunday": "10:30-21:30" + } + }, + { + "business_id": "Go01QF-ljjsCpmFFd3cISg", + "name": "IFIXDIT", + "address": "1755 N 13th St, Ste 178", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9790436, + "longitude": -75.1550992, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Home Services, Septic Services, Local Services, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "5Md0YaxD5HiOoBmsnmIu7A", + "name": "Brandywine Pizza", + "address": "532 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9633082, + "longitude": -75.1631614, + "stars": 2.5, + "review_count": 111, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': True, u'dessert': False}", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "WheelchairAccessible": "False", + "Caters": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Cheesesteaks, Italian, Pizza, Sandwiches, Salad", + "hours": { + "Monday": "19:0-2:30", + "Tuesday": "19:0-2:30", + "Wednesday": "19:0-2:30", + "Thursday": "19:0-2:30", + "Friday": "19:0-3:30", + "Saturday": "19:0-4:0" + } + }, + { + "business_id": "DO_op-iq4qoaOBEhJH6EdQ", + "name": "Tsaocaa & BBQ Chicken", + "address": "938 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553444465, + "longitude": -75.1557137782, + "stars": 3.5, + "review_count": 160, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "DogsAllowed": "False" + }, + "categories": "Chicken Wings, Food, Bubble Tea, Korean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "hiP3H0wW45I0jZI7KafzZg", + "name": "Spicy Memory", + "address": "1105 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489468575, + "longitude": -75.1592379436, + "stars": 4.0, + "review_count": 128, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Szechuan, Restaurants, Chinese, Asian Fusion, Hot Pot", + "hours": { + "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:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "BtcOytu968lkyyO0IICv8w", + "name": "Wissahickon Brewing Company", + "address": "3705 W Schoolhouse Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0136369648, + "longitude": -75.2006627311, + "stars": 4.0, + "review_count": 95, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Pubs, Bars, Breweries, Food, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-23:0", + "Friday": "15:0-1:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "BryQISFnkCdcJET-tpAx3w", + "name": "Isot Mediterranean Cuisine", + "address": "622 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414231194, + "longitude": -75.1524895976, + "stars": 4.5, + "review_count": 448, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "DriveThru": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Corkage": "False" + }, + "categories": "Restaurants, Middle Eastern, Breakfast & Brunch, Turkish, Mediterranean, Halal", + "hours": { + "Monday": "16:0-22:30", + "Tuesday": "16:0-22:30", + "Thursday": "16:0-22:30", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "g2r9PgaijhtjyEAzd-vCOw", + "name": "Performance Kitchens and Home", + "address": "4429 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0264859, + "longitude": -75.225683, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home & Garden, Kitchen & Bath, Interior Design, Home Services, Shopping, Home Decor", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "QWBIszwwPcG6ZyNnyg7nVw", + "name": "Shear Design Hair Salon", + "address": "229 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969612, + "longitude": -75.133002, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Hair Stylists, Hair Salons", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "JuMiGeS_i9c611znnG27xA", + "name": "Angkor Restaurant", + "address": "5520 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.035518, + "longitude": -75.100398, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False" + }, + "categories": "Specialty Food, Restaurants, Ethnic Food, Cambodian, Food", + "hours": null + }, + { + "business_id": "Aa7R_GJsC3PKV6FLxn_kOQ", + "name": "Straight From the Heart Bookstore", + "address": "13500 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1296144, + "longitude": -75.0174861, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "19:0-19:30", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Sunday": "7:30-14:0" + } + }, + { + "business_id": "jt1TfLJQN20aoVskD_8DuQ", + "name": "Angelino's Restaurant, Fairmount- Philadelphia", + "address": "849 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9712971, + "longitude": -75.1776345, + "stars": 4.0, + "review_count": 205, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HappyHour": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Corkage": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "DriveThru": "False", + "DogsAllowed": "False", + "BYOB": "True", + "OutdoorSeating": "False" + }, + "categories": "Italian, Pizza, Restaurants, Nightlife, Beer Bar, American (Traditional), Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "TP3pTbusk-zHZFXLSSnwmQ", + "name": "Nails New Concept", + "address": "1100 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9319544441, + "longitude": -75.144860193, + "stars": 3.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Nail Salons, Hair Removal, Massage, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "6pT7TIyrhpeo-LjTlIZBDA", + "name": "Capriccio Cafe and Bar", + "address": "110 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9554292, + "longitude": -75.1664549, + "stars": 3.5, + "review_count": 121, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "False", + "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': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Caterers, Restaurants, Food, Breakfast & Brunch, Ice Cream & Frozen Yogurt, American (New), Cocktail Bars, Nightlife, Event Planning & Services, Coffee & Tea, Beer, Wine & Spirits, Bars", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-22:0", + "Thursday": "7:0-17:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "ksNOQbbUkbCUuQWmEopJqQ", + "name": "Local 215", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Food, Food Trucks, Caterers", + "hours": null + }, + { + "business_id": "CyZrPCmQqMbXdD6SX02f6w", + "name": "Jerry's Kitchen", + "address": "33RD And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957772, + "longitude": -75.188643, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "HappyHour": "False" + }, + "categories": "Event Planning & Services, Restaurants, Vegan, Food, American (Traditional), Caterers, Vegetarian, Food Trucks, American (New)", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "HcddEbhaQ3wgyEFoEZSeGQ", + "name": "Tamarind", + "address": "117 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412384, + "longitude": -75.14467, + "stars": 4.0, + "review_count": 309, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "Caters": "False", + "WiFi": "'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "QiSeZKQlyiALTLGK2YFTdQ", + "name": "The Wedding Factor", + "address": "57 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519038, + "longitude": -75.1452012, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Local Services, Wedding Chapels, Party & Event Planning, Sewing & Alterations, Shopping, Bridal, Wedding Planning, Event Planning & Services", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "DLasGNHo7wicO4XlEy5QyA", + "name": "Bills Market", + "address": "2117 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9886818, + "longitude": -75.2497975, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "tnavrkq5ap9hdshy-IRyvQ", + "name": "JFCS Thrift Boutique", + "address": "8948 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0513398, + "longitude": -75.0092635, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Community Service/Non-Profit, Thrift Stores, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "yLrvAaCYv1HH8wMSRpOI_g", + "name": "Carson Wood Furnishings", + "address": "3791 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0178722, + "longitude": -75.2132823, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Furniture Stores, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "z4QY7z6M4EC5cKa3CNRliQ", + "name": "Tee Vision Printing", + "address": "920 E Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0113478588, + "longitude": -75.109045704, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Screen Printing, Screen Printing/T-Shirt Printing, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0" + } + }, + { + "business_id": "L04Lh8fHIrfD_hijTAP9qw", + "name": "Julia Reynolds Masterman Laboratory and Demonstration School", + "address": "1699 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9632092128, + "longitude": -75.1658077289, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Middle Schools & High Schools, Education", + "hours": null + }, + { + "business_id": "eWGgUcck8_URDKehHqngOA", + "name": "Garden Restaurant", + "address": "2025 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9605194, + "longitude": -75.1725901, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "11:30-15:30", + "Wednesday": "11:30-15:30", + "Thursday": "11:30-15:30", + "Friday": "11:30-15:30", + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "3UBG2rwjgP-6ifTAuKl3Gg", + "name": "Steap and Grind", + "address": "1619 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9744402, + "longitude": -75.132947, + "stars": 4.0, + "review_count": 138, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Flowers & Gifts, Coffee & Tea, Restaurants, Food, Gift Shops, Shopping", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "-N1WjsJUama2LpA668ctbA", + "name": "Town Food Market", + "address": "428 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94455, + "longitude": -75.1636813, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery, Convenience Stores, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "LDZtTWgBKEsg3M0K0s2eBA", + "name": "The Rocky Statue", + "address": "2600 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9651747614, + "longitude": -75.179284802, + "stars": 4.0, + "review_count": 141, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "FOCh_0eocG1eI8bXvxCO5A", + "name": "Yunk's Cafe", + "address": "4101-05 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0224198, + "longitude": -75.2182531, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "12:0-2:0" + } + }, + { + "business_id": "_FT7g3fRJu_hpAGabBnHLg", + "name": "Revolution Cycle Jewelry or JenniferGreen Custom Jewelry", + "address": "115 S 8th St, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94992, + "longitude": -75.14664, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1fYDqAf9z66U_dpxbLz3qQ", + "name": "Planet Fitness", + "address": "2800 Fox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0087185946, + "longitude": -75.1764194994, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Fitness & Instruction, Gyms, Trainers, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "tY8Dll_MyoaqiCoUGLytSw", + "name": "Ritz Car Wash, Detail Center & Lube", + "address": "234 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9140618, + "longitude": -75.1523035, + "stars": 2.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Auto Detailing, Automotive, Oil Change Stations, Car Wash, Car Inspectors", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-14:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "1XQxLkCIN3FwNBnv3Sdw0Q", + "name": "Andorra Car Wash", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0628755, + "longitude": -75.2353265, + "stars": 1.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Wash", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "HHL5AD3DQo2DEoIE8xL62w", + "name": "AAA Philadelphia Northeast", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0793384617, + "longitude": -75.0275457745, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Hotels & Travel, Auto Repair, Car Rental, Travel Services, Financial Services, Tours, Insurance", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-15:0", + "Friday": "8:30-16:30", + "Saturday": "8:30-16:30" + } + }, + { + "business_id": "YUX8s4CD7NZ0N9I0ygi6hQ", + "name": "PPA Philadelphia International Airport Economy Lot", + "address": "440 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8851185638, + "longitude": -75.2409762517, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Transportation, Hotels & Travel, Airport Shuttles, Parking", + "hours": { + "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" + } + }, + { + "business_id": "tk80Mqi_jba71jJRcy-BeA", + "name": "Drexel Medicine Convenient Care Center", + "address": "1625 Chestnut St, Ste 172", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514970452, + "longitude": -75.1680707932, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Medical Centers, Health & Medical", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30" + } + }, + { + "business_id": "euNJ-Jp966Lfw49QPyDVkQ", + "name": "931 Skin Care & Beauty Center", + "address": "1005 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9555098, + "longitude": -75.1561031, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply, Makeup Artists, Skin Care, Day Spas", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "10:30-19:0" + } + }, + { + "business_id": "TfRyyMfqDxtC1KA1jLkmvg", + "name": "NEST Center City", + "address": "1301 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480439, + "longitude": -75.1616468, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "BikeParking": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Lounges, Venues & Event Spaces, Nightlife, Local Services, Arts & Entertainment, Event Planning & Services, Toy Stores, Day Camps, Specialty Schools, Parenting Classes, Fashion, Preschools, Party & Event Planning, Bars, Hair Salons, Shopping, Active Life, Kids Activities, Children's Clothing, Playgrounds, Special Education, Education, Baby Gear & Furniture, Local Flavor, Beauty & Spas, Child Care & Day Care", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "ydUCmSwy5Z15JzSPCFTCeQ", + "name": "Perez Agency", + "address": "3956 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.012034, + "longitude": -75.1381158, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Registration Services, Local Services, Financial Services, Tax Services, Automotive, Notaries", + "hours": null + }, + { + "business_id": "xh_eyrBGeAsMrEVC8Nurtw", + "name": "Almanac Market", + "address": "900 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9656888, + "longitude": -75.1439882, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Cheese Shops, Food, Specialty Food", + "hours": null + }, + { + "business_id": "Z4vlztrocJo9WWcL5TFeBA", + "name": "Dunkin'", + "address": "8902 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0509816, + "longitude": -75.0101204, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "DriveThru": "None", + "WiFi": "u'free'" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "8V5uZr92JiCrJ0jXjQCR0w", + "name": "Sgt. Nate Fitness", + "address": "204 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483821, + "longitude": -75.1610889, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Weight Loss Centers, Health & Medical, Gyms, Trainers, Active Life, Fitness & Instruction, Boot Camps", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-12:0", + "Saturday": "9:30-10:30" + } + }, + { + "business_id": "U4xHUeuJY6O8TN6hY6D_Cw", + "name": "Regency Park Apartments", + "address": "800 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0618254, + "longitude": -75.087943, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "ICE-U3f_bpDMlTQMeVvrGA", + "name": "Krewsin' Klean Carwash and Lube", + "address": "9201 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0840411, + "longitude": -75.0475847, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Car Wash, Automotive, Auto Detailing, Oil Change Stations", + "hours": { + "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": "8:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "RzDXwVOumsbRKps3UqVeCg", + "name": "Saladworks", + "address": "4600 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0025296, + "longitude": -75.2227004, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "Caters": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Salad, Soup, Food, American (Traditional), Vegetarian, American (New)", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "hW7a-QqCII6Bo6hRl47Aow", + "name": "Liberty Event Rentals", + "address": "2230 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.985556, + "longitude": -75.1467031, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Party Equipment Rentals", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "oH_eFvX6h1Z_Iu7nGkig0A", + "name": "Franklin's Table", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529926, + "longitude": -75.1922809, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Food Court, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "2b6BvccVTtPwElQreRtFYw", + "name": "Drinker's West", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549304, + "longitude": -75.2001318, + "stars": 3.5, + "review_count": 85, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Tex-Mex, Bars, American (Traditional), Restaurants, Sports Bars, Pubs, Gastropubs, Nightlife", + "hours": null + }, + { + "business_id": "a1RKfGZ5vQef6B3dlCHMZA", + "name": "Pink and White Nails", + "address": "6410 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.029823, + "longitude": -75.057218, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "jvdIWqRw2h0EtYZz6NEp9A", + "name": "New Heaven", + "address": "1119 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488839, + "longitude": -75.1599541, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "HasTV": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Thai, Japanese, Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-22:45", + "Thursday": "11:0-22:45", + "Friday": "11:0-23:45", + "Saturday": "11:0-23:45", + "Sunday": "12:0-22:45" + } + }, + { + "business_id": "gdyMIBAitsQubj0OEJoiMg", + "name": "Fairmount Pizza and Grill", + "address": "2000 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670886, + "longitude": -75.1703389, + "stars": 3.5, + "review_count": 222, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "Caters": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}" + }, + "categories": "Restaurants, Pizza, Italian, Sandwiches", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "rU1Vsh8WRfOw57_5VpuR8w", + "name": "Roost", + "address": "4529 Springfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948425, + "longitude": -75.213651, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Barbeque, Soul Food, Southern", + "hours": { + "Monday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "G7OKvrO8KAODyaM0schyqQ", + "name": "Colomy Paint Benjamin Moore", + "address": "210 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9693819, + "longitude": -75.1402142, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Decor, Shopping, Home & Garden, Paint Stores", + "hours": { + "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": "7:0-15:0" + } + }, + { + "business_id": "0xIhMfCFH94RXTFGx_Mhtw", + "name": "SUGA", + "address": "1720 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506686, + "longitude": -75.1696549, + "stars": 3.5, + "review_count": 166, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "Music": "{'dj': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "GoodForKids": "False", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Caters": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Bars, Soup, Restaurants, Cocktail Bars, Chinese, Coffee & Tea, Asian Fusion, Food, Nightlife", + "hours": { + "Monday": "14:0-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "12:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "wJAzMFdnvEAOAxQks4jwuA", + "name": "Bravo's Pizza", + "address": "6702 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0244906, + "longitude": -75.0465009, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "3BX2St2lFBoYlVD4evJ90A", + "name": "The Fresh Grocer of LaSalle", + "address": "5301 Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0430859, + "longitude": -75.1596595, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Food, Grocery, Beer, Wine & Spirits, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "k0CC6Ri9toGlBuBNeFBDhg", + "name": "Fat Shack", + "address": "3300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9661569, + "longitude": -75.1910622, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fast Food, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-3:0" + } + }, + { + "business_id": "35yoH8b__Uv8_QJxCAawLA", + "name": "Wawa", + "address": "7913-29 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0748203, + "longitude": -75.0843789, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Coffee & Tea, Food, Restaurants, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "kvRiDr9No5t9rPKf6t72Hw", + "name": "Pizza Hut", + "address": "6242 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.058689448, + "longitude": -75.1646590233, + "stars": 2.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Pizza, Restaurants, Italian, Chicken Wings", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "4W_lm9GC2NCBJMAqe_wVFg", + "name": "Joe's Clean Out And Hauling Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0400096442, + "longitude": -75.2299616581, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Couriers & Delivery Services, Junk Removal & Hauling, Home Services, Local Services, Demolition Services, Movers", + "hours": { + "Monday": "0:0-0: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-12:0" + } + }, + { + "business_id": "ZThYcKd99sKmxTkSADjlkw", + "name": "Pretty Green Terrariums", + "address": "1116 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429102, + "longitude": -75.1607799, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Nurseries & Gardening, Shopping, Home & Garden", + "hours": { + "Monday": "12:0-20:0", + "Wednesday": "13:30-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "5gYEoXfeJsoXyGq3aqnkzg", + "name": "Bill Clark & Son Landscaping", + "address": "7533 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.049687, + "longitude": -75.235639, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Landscaping", + "hours": null + }, + { + "business_id": "dnhfr6fk3qsxtCjPFPuBrg", + "name": "Parish Dermatology", + "address": "1845 Walnut St, Ste 1650", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506933, + "longitude": -75.1715016, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'paid'" + }, + "categories": "Skin Care, Doctors, Beauty & Spas, Dermatologists, Health & Medical, Cosmetic Surgeons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "A86GiokZwV2KgmFMnNC5ow", + "name": "Plantscapes U.S.A.", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Landscaping, Floral Designers, Event Planning & Services, Nurseries & Gardening, Home & Garden, Gardeners, Florists, Flowers & Gifts, Shopping, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "A8C1KXkiKSZytzo0h-hgNg", + "name": "Nuts To You", + "address": "721 Walnut St, Apt 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481606, + "longitude": -75.1534631, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Herbs & Spices, Honey, Specialty Food, Organic Stores, Candy Stores, Food", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "68KD674p59qJj4DX6NuTzQ", + "name": "Dunkin'", + "address": "221 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0146654, + "longitude": -75.130412, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "DriveThru": "None", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "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" + } + }, + { + "business_id": "8-K30ke9okV8agV5HdNytg", + "name": "Free Library of Philadelphia - Philadelphia City Institute", + "address": "1905 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949354, + "longitude": -75.173105, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-17:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "PLOBFil9pv4wiQxw6k0Dyg", + "name": "Gigi Italian Bistro", + "address": "4371 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257620872, + "longitude": -75.2238530293, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Event Planning & Services, Italian, Restaurants, Venues & Event Spaces", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30" + } + }, + { + "business_id": "ftCK0qmDE3yj8TT0RQh5rA", + "name": "7-Eleven", + "address": "1034-38 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9367631433, + "longitude": -75.1611158252, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "2m7aY4LC2Q_sasQxNBgXIw", + "name": "For Eyes", + "address": "2604 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0449831736, + "longitude": -75.0556633795, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Health & Medical, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "5K32Jy_YwW300mAdYK_Zdg", + "name": "Pho 75", + "address": "823 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0318697867, + "longitude": -75.1041882186, + "stars": 4.0, + "review_count": 146, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "SlfJo2ebEtNxcPGlcOx79A", + "name": "Spencer Eta Burger", + "address": "227 N 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591543, + "longitude": -75.1908344, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'upscale': False, 'divey': False, 'classy': False, 'trendy': False, 'hipster': False, 'casual': True}" + }, + "categories": "Restaurants, Fast Food, Burgers, Sandwiches, Food, Specialty Food, American (New)", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "tlUh_eK45HaOY5XMZkqUgg", + "name": "Right Way to Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Movers, Furniture Assembly, Home Cleaning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-23:0", + "Wednesday": "7:30-23:0", + "Thursday": "7:30-23:0", + "Friday": "7:30-23:0", + "Saturday": "7:30-23:0" + } + }, + { + "business_id": "hNlvlGJsTXLJxeJ4RPsaeA", + "name": "Alamodak Restaurant and Hookah Lounge", + "address": "161 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9763544, + "longitude": -75.1374359, + "stars": 4.0, + "review_count": 98, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "Smoking": "u'outdoor'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': True, 'video': False, 'karaoke': None}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "DriveThru": "False", + "DogsAllowed": "False", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': True, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Nightlife, Salad, Hookah Bars, Bars, Restaurants, Middle Eastern, Halal, Arabic, Beer Bar, Mediterranean", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-0:0", + "Thursday": "16:30-0:0", + "Friday": "16:15-1:0", + "Saturday": "17:0-1:0", + "Sunday": "16:30-0:0" + } + }, + { + "business_id": "9kuyu7R4T41gxapf7hO3Xg", + "name": "Salon SK", + "address": "1602 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9284417, + "longitude": -75.15375, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': True}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Stylists, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "7:0-13:0", + "Tuesday": "7:0-13:0", + "Wednesday": "7:0-13:0", + "Thursday": "7:0-13:0", + "Friday": "7:0-13:0" + } + }, + { + "business_id": "-k0SQn1uQVn0FN61uXYMsw", + "name": "Alba Pizza Of Philadelphia", + "address": "6200 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0420208, + "longitude": -75.1803247, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "DriveThru": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "False" + }, + "categories": "Cheesesteaks, Burgers, Pizza, Restaurants, Salad", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "CAuXO9K8MZFghhy0oJUL-A", + "name": "Falls Village Apartments", + "address": "2991 W School House Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0254612, + "longitude": -75.1863664, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "6lJLT9H7FjXioU5yCu-x2A", + "name": "Wok Street", + "address": "1518 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510652877, + "longitude": -75.1664147946, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Asian Fusion, Food, Chinese, Fast Food, Beer, Wine & Spirits, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "Ou-_OQUNvBcaAoRU0XPtaQ", + "name": "Jamonera", + "address": "105 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502082, + "longitude": -75.161844, + "stars": 4.0, + "review_count": 563, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "Caters": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Iberian, Wine Bars, Spanish, Nightlife, Latin American, Bars, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "bIGFd99r3iUNB0xshlZ5Sw", + "name": "Pumpkin", + "address": "1713 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444366, + "longitude": -75.1708063, + "stars": 4.0, + "review_count": 432, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'none'", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsTableService": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:30-22:0" + } + }, + { + "business_id": "O9uniPYbTpMfH0PyhtmnLw", + "name": "Oggi Salon & Spa", + "address": "1700 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486784, + "longitude": -75.1695068, + "stars": 4.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Day Spas, Massage, Beauty & Spas, Nail Salons", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "ErCpFI7z3eJc-Gun0tWVZA", + "name": "Ace Diner", + "address": "5517 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.980424, + "longitude": -75.233654, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': None, 'breakfast': True}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "ahnaBpvC29I66u_6JRzQFw", + "name": "Burger King", + "address": "2400 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9937194391, + "longitude": -75.0945379239, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-23:59", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "bjDV608ms3zLgHmqqe1LqA", + "name": "Queen Village Food Market & Deli", + "address": "629 South 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408249, + "longitude": -75.149193, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BikeParking": "True" + }, + "categories": "International Grocery, Delis, Food, Grocery, Sandwiches, Mediterranean, Bakeries, Organic Stores, Restaurants", + "hours": { + "Monday": "8:0-23:0", + "Tuesday": "8:0-23:0", + "Wednesday": "8:0-23:0", + "Thursday": "8:0-23:0", + "Friday": "8:0-1:0", + "Saturday": "9:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "OLkS4jfozQpUIUq0K6t_IQ", + "name": "Underdogs", + "address": "132 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504874, + "longitude": -75.1692131, + "stars": 3.5, + "review_count": 252, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HasTV": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "American (New), Restaurants, Hot Dogs", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "oZQi9ydIzDd-ly8eootTFA", + "name": "Festival Pier", + "address": "Columbus Boulevard & Spring Garden Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9585936534, + "longitude": -75.1368404447, + "stars": 2.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForDancing": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Music Venues, Arts & Entertainment", + "hours": null + }, + { + "business_id": "mzqjat86BihtW8larACfNA", + "name": "America's Best Contacts & Eyeglasses", + "address": "9171 Roosevelt Blvd, Ste G, Northeast Shopping Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.075633, + "longitude": -75.031659, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Optometrists, Eyewear & Opticians, Doctors, Ophthalmologists, Shopping, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "SUpamfXwI1zMYYYVNmQ57Q", + "name": "Alaska Airlines", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.878324, + "longitude": -75.24594, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Airlines, Hotels & Travel, Transportation", + "hours": null + }, + { + "business_id": "JWAej-k5kcci49ACkGCvdQ", + "name": "Spring Garden Laundromat", + "address": "327 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9610472, + "longitude": -75.1445871, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "SiNjpbB5Piup0HOnSVswFA", + "name": "Moore College of Art & Design", + "address": "20th St & The Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9572129035, + "longitude": -75.1719868183, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Art Schools, Specialty Schools, Adult Education, Colleges & Universities, Education", + "hours": null + }, + { + "business_id": "WI_GieAn-2omR_pWziqz_Q", + "name": "City Wide Realty", + "address": "818 N 4th St, Ste C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644603861, + "longitude": -75.144391, + "stars": 1.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Home Services, Real Estate, Property Management, Real Estate Agents", + "hours": null + }, + { + "business_id": "2x23uBEH3HjxJSkE3-WLOA", + "name": "Dudes Boutique", + "address": "646 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942029, + "longitude": -75.1536602, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Leather Goods, Fashion, Shopping, Shoe Stores, Fur Clothing", + "hours": { + "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" + } + }, + { + "business_id": "L0c6-mnkcV9fXLk0--dkWQ", + "name": "Fox and Hound", + "address": "1501 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94731, + "longitude": -75.166551911, + "stars": 2.5, + "review_count": 418, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "BYOBCorkage": "'no'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "None", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "American (Traditional), Bars, Sports Bars, Restaurants, Nightlife, Buffets, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-0:0", + "Wednesday": "15:0-0:0", + "Thursday": "15:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "jFm2I2vALvWz07_AWKQLlA", + "name": "Shakespeare & Co", + "address": "1632 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94980301, + "longitude": -75.1686595265, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bookstores, Books, Mags, Music & Video, Shopping, Coffee & Tea", + "hours": { + "Monday": "8:0-20: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": "10:0-18:0" + } + }, + { + "business_id": "dQz8GzXDTllj0XT3HVkYbg", + "name": "Pizza City", + "address": "7129 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0350957, + "longitude": -75.0436145, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'breakfast': False, 'brunch': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "16:0-0:30", + "Tuesday": "16:0-0:30", + "Wednesday": "16:0-0:30", + "Thursday": "16:0-0:30", + "Friday": "16:0-1:30", + "Saturday": "16:0-1:30", + "Sunday": "16:0-0:30" + } + }, + { + "business_id": "_alfsQK682Bke9MAfWRKdA", + "name": "Abekeโ€™s Kitchen", + "address": "6451 Grays Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9235932, + "longitude": -75.2317826, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "African, American (Traditional), Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "-L70iK2xSuBo1zsS9NP_Wg", + "name": "Philly's Famous Italian Ices", + "address": "1950 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9878363, + "longitude": -75.1237413, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False" + }, + "categories": "Pretzels, Food, Shaved Ice, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "3-rScHRALlmQnsbMz_XFTA", + "name": "BurgerFi", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95174, + "longitude": -75.155617, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Fast Food, Burgers", + "hours": null + }, + { + "business_id": "jZKoHLLeax-1KRWoUlnttg", + "name": "Meineke Car Care Center", + "address": "7600 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0508956338, + "longitude": -75.2365271888, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Oil Change Stations, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0" + } + }, + { + "business_id": "tK9rBMEepJGeaiwjti692Q", + "name": "Lindsay Docherty Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Session Photography, Professional Services, Shopping, Pets, Event Photography, Home Services, Event Planning & Services, Bridal, Photographers, Pet Services", + "hours": null + }, + { + "business_id": "617w8MQE3z1szmLvs0WfCw", + "name": "Bar Bombรณn", + "address": "133 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506592976, + "longitude": -75.1705476767, + "stars": 4.0, + "review_count": 734, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "HasTV": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "Caters": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Vegetarian, Latin American, Vegan", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "jf-jOKJ0rzFERNOfqS74Fw", + "name": "Villagio Pizza", + "address": "1817 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0531416, + "longitude": -75.0688028, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HappyHour": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "False", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Chicken Wings, Salad, Pasta Shops, Restaurants, Pizza, Greek, Specialty Food, Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "pg6RCapqdBVRGMg2kjoIxQ", + "name": "Harbor Seafood Garden", + "address": "5675 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0376621045, + "longitude": -75.1073226734, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Chinese, Dim Sum, Seafood, Restaurants, Cantonese", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "WFK-wCbfCDIXz5XKeT1bmQ", + "name": "Livy's Plant Based Foods", + "address": "3945 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558813, + "longitude": -75.2020031, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "HappyHour": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BYOB": "False", + "HasTV": "False", + "Caters": "True", + "RestaurantsTableService": "False" + }, + "categories": "Salad, Vegan, Vegetarian, Restaurants, Burgers", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "tkUQLPtSNzG7y9vXD7uj1Q", + "name": "Nailtopia", + "address": "842 Red Lion Rd, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1030610081, + "longitude": -75.0302763283, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Eyelash Service, Nail Salons, Beauty & Spas, Skin Care, Day Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "WS0UlqeYKLLXd_sgfKPszg", + "name": "Vital Records", + "address": "110 N 8th St, Ste 108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537754, + "longitude": -75.1531567, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "baF2ZFEtsIo2A1k61x3QSw", + "name": "Tio Flores", + "address": "1600 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440116, + "longitude": -75.1689925, + "stars": 3.5, + "review_count": 243, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "Smoking": "u'no'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Bars, Restaurants, Mexican, Food, Nightlife", + "hours": { + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "i7_3lQzM5SP8Cc2YT-X3BA", + "name": "Infinite Body Piercing", + "address": "626 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940967, + "longitude": -75.1494532, + "stars": 4.5, + "review_count": 405, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Tattoo, Piercing", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Npb5hRxgF0aVqAlex3VVPQ", + "name": "1601", + "address": "1601 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929485, + "longitude": -75.161378, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Bars, Restaurants, Gastropubs, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "LYPvkW2MvEbg-JIr91r1VA", + "name": "Valueguard Home Inspections", + "address": "600 Chestnut St, Ste 675", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949143, + "longitude": -75.150979, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Real Estate Services, Home Services, Environmental Testing, Local Services, Home Inspectors", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "jHZS9GIhW7s9r4w5w-0A0Q", + "name": "Darling's Diner", + "address": "1033 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9675198, + "longitude": -75.13981, + "stars": 2.5, + "review_count": 401, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Beer, Wine & Spirits, Food, Desserts, Breakfast & Brunch, Diners, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "B5eJm8A4eiuPLW5C6l75dQ", + "name": "Di Bruno Bros.", + "address": "930 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938041, + "longitude": -75.1582152, + "stars": 4.5, + "review_count": 250, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Cheese Shops, Meat Shops, Italian, Specialty Food, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "j3K9cWralvrxqOZrufcbdQ", + "name": "Blink Fitness - South Philly", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.912276, + "longitude": -75.154695, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Cardio Classes, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-22:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "-cLmu1wRg6DXCTl_MDo8EA", + "name": "Pole Haus", + "address": "1719 Chestnut St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517032, + "longitude": -75.1695169, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Fitness & Instruction, Active Life, Dance Studios", + "hours": { + "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" + } + }, + { + "business_id": "gyGGkSFjTyuddS1TM1xqBQ", + "name": "Nicole Miller At the Bellevue", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Women's Clothing, Accessories", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "BIxkykL8meGkcNszRNWSyA", + "name": "Talluto's Authentic Italian Food", + "address": "944 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9377201, + "longitude": -75.1582494, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "None", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Specialty Food, Italian, Food, Cheese Shops, Grocery, Ethnic Food", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0", + "Sunday": "8:30-15:0" + } + }, + { + "business_id": "OAdMiCSG0iamQ1MBhiZQuQ", + "name": "Fermentery Form", + "address": "1700 N Palethorp St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9763680823, + "longitude": -75.1375425607, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Breweries", + "hours": { + "Thursday": "17:30-22:0" + } + }, + { + "business_id": "aLJN5-DBnNM2C7FjPPQA2A", + "name": "Stoli's Steaks", + "address": "13023 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.123545, + "longitude": -75.014618, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "WiFi": "u'paid'", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Restaurants, Cheesesteaks", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "C73iFAmwEntIONkbd5fOuA", + "name": "Dunkin'", + "address": "6608 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0311843, + "longitude": -75.0547035, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "None" + }, + "categories": "Food, Coffee & Tea, Restaurants, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-23:0", + "Saturday": "4:30-23:0", + "Sunday": "4:30-22:0" + } + }, + { + "business_id": "syrs_wYCUgcmwZfhuUUYtQ", + "name": "Pete's Pizza", + "address": "5158 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9646209, + "longitude": -75.2240907, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "rpKsCkLKypkHsuwPyxPwKw", + "name": "Wendy's", + "address": "2940 Fox Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.010214149, + "longitude": -75.1756830748, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BikeParking": "False", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "2oO6flZBT-GIJpN50peMrw", + "name": "No. One China", + "address": "2900 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9850329, + "longitude": -75.1134098, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "HKybYRX9b-Qaobnojl7-6w", + "name": "Cozette Pizza", + "address": "443 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418866454, + "longitude": -75.1505933, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "mGiqxAK_jZKV0sfPcXB7Zw", + "name": "Victoria's Secret", + "address": "1721 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517382, + "longitude": -75.1696247, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Women's Clothing, Accessories", + "hours": null + }, + { + "business_id": "YAD6P8EQK_3ZaqoBP5VBDA", + "name": "Klatte Orthodontics", + "address": "6814 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0449879, + "longitude": -75.072546, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Orthodontists, Dentists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "vxWjLZMn3uzDQyOjAdwq3w", + "name": "The Bishop's Collar", + "address": "2349 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675571, + "longitude": -75.1768708, + "stars": 3.5, + "review_count": 248, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "Alcohol": "'full_bar'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, American (New), Burgers, Restaurants", + "hours": { + "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": "10:0-2:0" + } + }, + { + "business_id": "DWSucZb3RP2E_ox8hXJVug", + "name": "Henkel Roofing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Gutter Services, Roofing, Siding, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "neOgjzBJYrRBO_WnQkMLRg", + "name": "Fleur", + "address": "4250 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0245434237, + "longitude": -75.2217133822, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Floral Designers, Event Planning & Services, Flowers & Gifts, Florists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "4moCnH6Ik60oVGiY58_6hA", + "name": "Mint Lounge", + "address": "50 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.948789, + "longitude": -75.143985, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Dance Clubs, Lounges, Nightlife, Bars", + "hours": null + }, + { + "business_id": "6mqfUzxWRBnFErvwV0z3aQ", + "name": "Born Yesterday", + "address": "1901 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950648, + "longitude": -75.172537, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Toy Stores, Children's Clothing, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "eDZqkqNsTnlhrOox1Rh2lg", + "name": "Pennypack Beer Distributor", + "address": "8120 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0587912, + "longitude": -75.0454627, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "UCj7gEq3dkt7-oEdDJAL2w", + "name": "The Cut Bar", + "address": "532 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418037, + "longitude": -75.1492252, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "None" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "NSndzO4lI_PyuhS5W0VubQ", + "name": "Palo Santo Wellness Boutique", + "address": "1707 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9285531, + "longitude": -75.1648789, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage Therapy, Massage, Shopping, Active Life, Arts & Entertainment, Health & Medical, Acupuncture, Jewelry, Yoga, Fitness & Instruction, Beauty & Spas, Pilates", + "hours": null + }, + { + "business_id": "ZxiXWCu5L1rGEXDz8NR5PQ", + "name": "LocalStove", + "address": "1801 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536012, + "longitude": -75.1703161, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Caterers, Specialty Schools, Food Delivery Services, Education, Restaurants, Food, Community Service/Non-Profit, Local Services", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "gKmKv0mGYSBQ8yxKdAC6gA", + "name": "Petco", + "address": "8500 Henry Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0624, + "longitude": -75.2374, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "HappyHour": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False", + "Caters": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Pet Stores, Pet Services, Pet Training, Pet Groomers, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "YA944yzY3kAjU0UTkZPw0w", + "name": "Repo Records", + "address": "506 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416909, + "longitude": -75.151095, + "stars": 4.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Books, Mags, Music & Video, Vinyl Records, Music & DVDs", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "-SkwJp45TBbqxYzuYHcerA", + "name": "Kalaya Thai Market", + "address": "922 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9382628973, + "longitude": -75.1581519842, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Specialty Food, Food, International Grocery, Thai, Restaurants", + "hours": null + }, + { + "business_id": "s8P133LRpPSuypuVCwUzEA", + "name": "The Crab Shack 2", + "address": "5305 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0302047, + "longitude": -75.1179143, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True" + }, + "categories": "Food, Seafood, Seafood Markets, Restaurants, Specialty Food", + "hours": { + "Monday": "10:30-19:30", + "Tuesday": "10:30-19:30", + "Wednesday": "10:30-19:30", + "Thursday": "10:30-19:30", + "Friday": "10:30-19:30", + "Saturday": "10:30-19:30", + "Sunday": "10:30-19:30" + } + }, + { + "business_id": "saYkSeIquHi26AtRpl8atA", + "name": "Center City Dermatology", + "address": "1500 Walnut St, Ste 1240", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dermatologists, Health & Medical, Doctors", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "mWs28Coh4CRcxorUezApQA", + "name": "Robin's Book Store", + "address": "108 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950036, + "longitude": -75.162158, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Newspapers & Magazines, Books, Mags, Music & Video, Shopping", + "hours": null + }, + { + "business_id": "LuZNdY6isIgpmdtJY6CWNw", + "name": "Advanced Auto", + "address": "1826 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264935, + "longitude": -75.1640461, + "stars": 5.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "tXgha5gL-3VAAsoJlY50cw", + "name": "Allongรฉe", + "address": "219 Cuthbert St, 3rd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514479113, + "longitude": -75.1442976295, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Dance Studios, Pilates, Active Life, Barre Classes, Trainers, Gyms, Yoga", + "hours": { + "Monday": "6:0-21:30", + "Tuesday": "6:0-21:30", + "Wednesday": "6:0-21:30", + "Thursday": "6:0-21:30", + "Friday": "6:0-21:30", + "Saturday": "8:0-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "aIp7D41qhB-FgfBmYUgQTw", + "name": "Ka'Moon", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949663, + "longitude": -75.148134, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Egyptian, Vegan, Middle Eastern, Vegetarian, Halal, Wraps", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "vTu1LveMWZVjXlMzFvg_-w", + "name": "Butcher's Sew Shop", + "address": "800 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394915, + "longitude": -75.1562824, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Sewing & Alterations, Arts & Crafts, Specialty Schools, Local Services, Education", + "hours": null + }, + { + "business_id": "o0xKesgHna2vdjT_HuIUVQ", + "name": "Pizza Plus West", + "address": "4814 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9534452, + "longitude": -75.2187574, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Sandwiches, Burgers, Restaurants, Pizza", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "8LQjvERZE8x1aPfWS4eImw", + "name": "R & S Handyman Services", + "address": "2541 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9174018, + "longitude": -75.16241, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Handyman", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0" + } + }, + { + "business_id": "6UTCtOa2oit07DePqqCe1w", + "name": "American Airlines", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8758573235, + "longitude": -75.2439795292, + "stars": 1.5, + "review_count": 33, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Airlines", + "hours": null + }, + { + "business_id": "PkDM_nwfFhI2vzKZiaLdBA", + "name": "Fifth & Fitz", + "address": "501 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93956, + "longitude": -75.15138, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False" + }, + "categories": "Hair Removal, Waxing, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "12:30-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "X2JkEvWPO7_dEPHne7qJKg", + "name": "Dunkin'", + "address": "1401 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9317232, + "longitude": -75.1607954, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Donuts, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "POIzqhpZTRYVJq6xnfVbcg", + "name": "Ask Adam", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0600983661, + "longitude": -75.1838416949, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Education, IT Services & Computer Repair, Private Tutors, Local Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "3Hz1tjW2YqD5JPJTe2I09A", + "name": "Vincenzo's Deli", + "address": "1626 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928533, + "longitude": -75.160341, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BikeParking": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WheelchairAccessible": "False" + }, + "categories": "Restaurants, Delis, Cheesesteaks, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "tkk1sM0XOjHcuKG43FM7uQ", + "name": "TopDawg Groomers", + "address": "1936 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.937096, + "longitude": -75.1763122, + "stars": 5.0, + "review_count": 43, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pets, Dog Walkers, Pet Services", + "hours": { + "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-16:0" + } + }, + { + "business_id": "-e0akuVf-9zC6vBbQyT0Ng", + "name": "Crown Fried Chicken", + "address": "6342 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.059667, + "longitude": -75.165949, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Chicken Shop, Restaurants", + "hours": null + }, + { + "business_id": "jQnhYqA4jykPPdkyOFM4Lg", + "name": "City View Pizza and Grill", + "address": "3619 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0081853, + "longitude": -75.1511126, + "stars": 3.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza, Sandwiches, Burgers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "QpgTq2gsMLpq2sdqU7luPg", + "name": "The Printer's Place", + "address": "1310 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489904, + "longitude": -75.162649, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Screen Printing, Professional Services, Graphic Design, Printing Services, Local Services, Bookbinding", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-20:30" + } + }, + { + "business_id": "XVOb98_fgOqL0-CVDOizng", + "name": "Keystone Mini-Golf & Arcade", + "address": "161 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976326, + "longitude": -75.13739, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Arcades, Venues & Event Spaces, Event Planning & Services, Active Life, Arts & Entertainment, Party & Event Planning, Mini Golf", + "hours": { + "Thursday": "17:0-23:0", + "Friday": "17:0-1:0", + "Saturday": "13:0-1:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "w5Snu90GtjHct36NewoXwA", + "name": "Orthodox Auto Company", + "address": "5247 Unruh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0180276, + "longitude": -75.0392569, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Car Dealers, Hotels & Travel, Car Rental, Car Buyers, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "Op8RPQBkiix8nDWsFvhnqw", + "name": "Blume", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948408124, + "longitude": -75.1668265834, + "stars": 2.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BYOB": "False", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': None, 'hipster': True, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Cocktail Bars, Restaurants, Nightlife, Bars, American (New)", + "hours": { + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "KZIuyooXzm7Y0x78YO7n8Q", + "name": "Bonte Wafflerie & Cafe", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491826, + "longitude": -75.162953, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Desserts, Coffee & Tea, Food, Restaurants, Sandwiches, Bakeries, Belgian", + "hours": null + }, + { + "business_id": "j3cVDMMXhFScnHH04WeUTQ", + "name": "Brewerytown Beats", + "address": "1517 N Bailey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9790658, + "longitude": -75.1784746, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, High Fidelity Audio Equipment, Vinyl Records, Books, Mags, Music & Video", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "LecNsn6zR2_IFcl6wSTleQ", + "name": "TSA Checkpoint D - Philadelphia International Airport", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8771354, + "longitude": -75.2406682, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Airports, Airport Terminals, Public Services & Government, Hotels & Travel", + "hours": null + }, + { + "business_id": "paNYNJ-VFDgwLY201IrXCQ", + "name": "Sakana Omakasรจ Sushi", + "address": "616 S 2nd St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406940077, + "longitude": -75.1459503023, + "stars": 4.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "BYOB": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Corkage": "True" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:0-23:0", + "Wednesday": "18:0-23:0", + "Thursday": "18:0-23:0", + "Friday": "17:30-0:0", + "Saturday": "17:30-0:0" + } + }, + { + "business_id": "0OGyJbq8m_T6OX8AV0fhQA", + "name": "DeSortes Vacuum & Sew Center", + "address": "6153 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.96267, + "longitude": -75.24453, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Appliances & Repair, Local Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "8:0-15:30" + } + }, + { + "business_id": "Nz_xYe0qeU0z8uifDFZq5w", + "name": "US1 Car Stereo", + "address": "4331 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0292022, + "longitude": -75.1035224, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Parts & Supplies, Auto Customization, Car Stereo Installation", + "hours": { + "Monday": "9:45-18:30", + "Tuesday": "9:45-18:30", + "Wednesday": "9:45-18:30", + "Thursday": "9:45-18:30", + "Friday": "9:45-18:30", + "Saturday": "9:45-18:30" + } + }, + { + "business_id": "mjqFs-VDCulkZLvPTW6Ddg", + "name": "San Lucas Pizzeria", + "address": "2000 S Bouvier St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9262902, + "longitude": -75.1754459, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza, Cheesesteaks, Italian, Mexican", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "ZF0tt7hn6WK3-aNWgtLcFA", + "name": "Eastern State Penitentiary Historic Site", + "address": "2027 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9683684, + "longitude": -75.1726552, + "stars": 4.5, + "review_count": 827, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "poviu-6n3iaRE4gdQz6OYw", + "name": "Oyster House", + "address": "1516 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502216, + "longitude": -75.166553, + "stars": 4.0, + "review_count": 1407, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Restaurants, Steakhouses, Seafood", + "hours": { + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0" + } + }, + { + "business_id": "1H8ReY5GlGcHJz7umVidkg", + "name": "Jonathan Best Gourmet Grocer", + "address": "12th & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533121488, + "longitude": -75.1590312042, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "VPb3USr9Nm7JjtmsHPRo7g", + "name": "Old Nelson Food Company", + "address": "2955 Market St, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557501, + "longitude": -75.1819889, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Soup, Salad, Restaurants, Coffee & Tea, Sandwiches, Food", + "hours": { + "Monday": "5:30-20:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "7glaDklehs5KxuoCmR9V1Q", + "name": "Plaza Garibaldi", + "address": "935 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368243, + "longitude": -75.1593731, + "stars": 3.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "RlKxbcxLSUqjqL4tv4mOKg", + "name": "Square One Coffee", + "address": "1811 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544095198, + "longitude": -75.1702470705, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food, Coffee Roasteries", + "hours": { + "Monday": "7:0-16:0" + } + }, + { + "business_id": "y4ikdNkpUAU19Za9WInkDw", + "name": "Cozy Nails", + "address": "128 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940936, + "longitude": -75.14491, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "w54Lw6fQqJ-WKmTkizL2FQ", + "name": "Turkish Kabob House", + "address": "613 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412037996, + "longitude": -75.1493440423, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Turkish, Middle Eastern, Mediterranean, Wraps, Restaurants", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "TWIqq9pINaFTNTc6n4be5g", + "name": "4 Sisters Nail Salon", + "address": "141 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506723, + "longitude": -75.1736615, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "OTyqnhVR-ZWkLMlVnCPoCA", + "name": "Boston Market", + "address": "6350 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0355870565, + "longitude": -75.0711464882, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "American (New), Caterers, Chicken Shop, Event Planning & Services, Chicken Wings, Restaurants, Comfort Food, American (Traditional), Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "hywKw2XOooailmOLnvpP4A", + "name": "Julian Abele Park Farmers Market", + "address": "22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9409212937, + "longitude": -75.1793499006, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Farmers Market, Shopping, Food", + "hours": null + }, + { + "business_id": "N2mQaoGB2KZBh-kL74q_qg", + "name": "El Pueblo Dominican Hair Salon", + "address": "270 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.955146, + "longitude": -75.226156, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-17: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-14:30" + } + }, + { + "business_id": "4UZgIeaRWuOj3Z6LNMyaDA", + "name": "Morris House Hotel", + "address": "225 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9473689, + "longitude": -75.1542873, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services, Bed & Breakfast", + "hours": { + "Monday": "6:0-5:30", + "Tuesday": "6:0-5:30", + "Wednesday": "6:0-5:30", + "Thursday": "6:0-5:30", + "Friday": "6:0-5:30", + "Saturday": "6:0-5:30", + "Sunday": "6:0-5:30" + } + }, + { + "business_id": "venPzXm05ZfVFeN5PYA4Iw", + "name": "G & A Masonry", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 39.952278, + "longitude": -75.163605, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Masonry/Concrete, Pressure Washers, Stucco Services, Waterproofing", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "yqb4Nqa6HxOF347b0ZLBlA", + "name": "Salon Sugar", + "address": "711 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403419, + "longitude": -75.1509841, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "yDKf31OKa0HZrq31JK9EMg", + "name": "Fireside Tavern", + "address": "2701 S Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9150109943, + "longitude": -75.1585558434, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'" + }, + "categories": "Dive Bars, Sports Bars, American (Traditional), Nightlife, Sandwiches, Event Planning & Services, Venues & Event Spaces, Bars, Restaurants", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "MbFiVsqtIt75yrUNd8LT3Q", + "name": "Prince Music Theater", + "address": "1412 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950563, + "longitude": -75.164743, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Arts & Entertainment, Music Venues, Cinema, Performing Arts, Nightlife", + "hours": { + "Monday": "13:0-17:0", + "Tuesday": "13:0-17:0", + "Wednesday": "13:0-17:0", + "Thursday": "13:0-17:0", + "Friday": "13:0-17:0" + } + }, + { + "business_id": "DGmOEou-hKHkQlyOmtRz3g", + "name": "Santini's South Philly Grille", + "address": "8601 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0462521, + "longitude": -75.0150748, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Italian, Restaurants, Sandwiches", + "hours": { + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "5WiIU6hw3yJOTOQIPXDiig", + "name": "Project Basho", + "address": "1305 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9710458, + "longitude": -75.1408336, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Education, Art Schools, Specialty Schools, Arts & Entertainment", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "M-7oMEiSskwElF4PRh5UKg", + "name": "Smokes Poutinerie", + "address": "411 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418027, + "longitude": -75.1495444, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Chicken Shop, American (Traditional), Poutineries", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "e13n0Pdku0VjN5EEF7TujA", + "name": "All Seasons Car Wash & Lube", + "address": "6722 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.040495, + "longitude": -75.225261, + "stars": 2.0, + "review_count": 73, + "is_open": 0, + "attributes": null, + "categories": "Professional Services, Automotive, Car Wash, Oil Change Stations", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "_gklyXJFfyaZyavFXGfhBQ", + "name": "Meineke Car Care Center", + "address": "645 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9649285326, + "longitude": -75.16048, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Oil Change Stations, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "GfIk-0bOXYDR8yXZkDCM0Q", + "name": "Green Rock Tavern", + "address": "2546 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.979663, + "longitude": -75.116168, + "stars": 4.5, + "review_count": 109, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True" + }, + "categories": "Bars, American (Traditional), Pubs, Restaurants, Nightlife", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "u1U6SCaE_B9cvoY0qQkkpw", + "name": "Millionโ€™s Crab Boiled Seafood", + "address": "1025 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540272, + "longitude": -75.1573997, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Corkage": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Seafood, American (New), Cajun/Creole", + "hours": null + }, + { + "business_id": "W_AouNLoGZ7OPdyb7qUg3w", + "name": "Cafe Huong Lan", + "address": "1037 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936085, + "longitude": -75.15669, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'" + }, + "categories": "Vietnamese, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "dF1064EcYXPcJ1ENvLN83w", + "name": "Saxbys", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955466, + "longitude": -75.181911, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Coffee & Tea, Bagels, Food", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0" + } + }, + { + "business_id": "baWszNpfN8efCkneqi3fwA", + "name": "Gloria's Dressmaking", + "address": "258 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465873, + "longitude": -75.1580348, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Sewing & Alterations", + "hours": null + }, + { + "business_id": "6dZhYo_679osV1nNN7DREw", + "name": "Poochie's Place", + "address": "341 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701932, + "longitude": -75.1429246, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": null, + "categories": "Pet Sitting, Pet Groomers, Pet Services, Pet Training, Pet Stores, Pets", + "hours": { + "Monday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "U2y7fsqDgxAXskoJNVxbwg", + "name": "Happily Ever After", + "address": "230 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499567, + "longitude": -75.1449039, + "stars": 4.0, + "review_count": 358, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "Alcohol": "'none'" + }, + "categories": "Sandwiches, Coffee & Tea, Restaurants, Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "gaDtfs7fmBRraM8FyKNM4w", + "name": "Quiznos", + "address": "7717 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0721629, + "longitude": -75.1928984, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Sandwiches, Restaurants, Delis, Fast Food", + "hours": null + }, + { + "business_id": "5TPd08_WpGUpUIuSL3iDog", + "name": "Common Beat Music", + "address": "4916 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947833, + "longitude": -75.222013, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Electronics Repair, Comic Books, Musical Instruments & Teachers, Books, Mags, Music & Video, Shopping, Musical Instrument Services, Vinyl Records, Local Services, Music & DVDs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "caB6Jx4hxS_tzBQnxhleHQ", + "name": "She's Got The Muscle", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Junk Removal & Hauling, Local Services, Home Cleaning, Professional Services, Home Services, Office Cleaning, Home Organization", + "hours": { + "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" + } + }, + { + "business_id": "3kv7ToSuH1AtRdW4xpYxmQ", + "name": "Tran's Hardwood Floor", + "address": "5902 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.033552, + "longitude": -75.083513, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Flooring, Home Services", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "2dvXhxTHkBVs-n86RFkMdw", + "name": "Air Masters HVAC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9915379, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "8ZhC29t_mepcAQ4OlN15NQ", + "name": "Pure Fare", + "address": "1609 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9442178866, + "longitude": -75.1691865921, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Vegan, Restaurants, Food, Coffee & Tea, Breakfast & Brunch, Sandwiches, Salad", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "BWzxqBOeSYhO5PXPyl_1sA", + "name": "Missweet", + "address": "115 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539653, + "longitude": -75.1545551, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Desserts", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "12:30-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "d_2gSlgHT0dVEAH1tQ88NA", + "name": "Garage Passyunk", + "address": "1231 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9335406, + "longitude": -75.1589076, + "stars": 4.0, + "review_count": 184, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "HappyHour": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "Corkage": "True", + "BYOB": "False" + }, + "categories": "Bars, Beer Bar, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "3k05inIjD0WOQkd71_VNrQ", + "name": "Central Auto Service", + "address": "3917 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.962339, + "longitude": -75.200372, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Oil Change Stations, Body Shops, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30" + } + }, + { + "business_id": "sdgoSPed8xfctrR0NlRBHw", + "name": "LiceDoctors - Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19087", + "latitude": 40.0600713, + "longitude": -75.3995089, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Lice Services, Health & Medical, Home Health Care", + "hours": { + "Monday": "7:0-23:45", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-23:45", + "Friday": "7:0-23:45", + "Saturday": "7:0-23:45", + "Sunday": "7:0-23:45" + } + }, + { + "business_id": "8s6DHDQ_RSp2aLQLXGQPwg", + "name": "Aramingo Family Dentistry", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924676, + "longitude": -75.1013555, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Dentists, General Dentistry, Health & Medical", + "hours": null + }, + { + "business_id": "f-sxY-bMaYE9WtpbLhzbig", + "name": "Szechuan East", + "address": "744 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1050682, + "longitude": -75.0336146, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "MBXWooDbmhwUYDe8HWVRQA", + "name": "Ava Nail Spa", + "address": "9861 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0921542, + "longitude": -75.0311327, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Waxing, Skin Care, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "7Z93_XZ7VKes9uHymhFXuA", + "name": "Lucky Brand Jeans", + "address": "1634 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949653, + "longitude": -75.1689709, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Shopping, Fashion, Women's Clothing", + "hours": null + }, + { + "business_id": "uB12vX5p9T8z0g2Eq3bBBQ", + "name": "Marigold Kitchen", + "address": "501 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9501204, + "longitude": -75.2124323, + "stars": 4.0, + "review_count": 272, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': True, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "4", + "Caters": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsTakeOut": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New), Sandwiches, Tapas/Small Plates, Salad", + "hours": { + "Tuesday": "17:0-23:30", + "Wednesday": "17:0-23:30", + "Thursday": "17:0-23:30", + "Friday": "17:0-23:30", + "Saturday": "17:0-23:30", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "ODxEEgKQoacLOiiBsCKUzA", + "name": "Ivy Nails", + "address": "6830 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0429094, + "longitude": -75.2272701, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "zO3DCDa9l-AgVm3R8oXqXg", + "name": "Tree Tech", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Tree Services, Landscaping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "SXhPAG6C19kguKpTKE-5mw", + "name": "Snap Kitchen", + "address": "1109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490145, + "longitude": -75.1594886, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "False" + }, + "categories": "Food, Vegetarian, Convenience Stores, Health Markets, Breakfast & Brunch, American (Traditional), Salad, Gluten-Free, American (New), Specialty Food, Restaurants, Food Delivery Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "ltDKILnZ0VAq0FLa0fp3_g", + "name": "ยกJuice!", + "address": "2241 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944788, + "longitude": -75.180031, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "Caters": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Vegetarian, Restaurants", + "hours": { + "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": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "SJ3JA9EwBmQeQJXxC8T0vw", + "name": "Tea Bowl Shop", + "address": "643 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942317, + "longitude": -75.153707, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Poke, Restaurants, Bubble Tea, Sushi Bars, Fast Food", + "hours": { + "Tuesday": "12:30-21:30", + "Wednesday": "12:30-21:30", + "Thursday": "12:30-21:30", + "Friday": "12:30-23:0", + "Saturday": "12:30-23:0", + "Sunday": "12:30-23:0" + } + }, + { + "business_id": "drvcAOOScpy-txLfImR4JQ", + "name": "Home Gallery Furniture", + "address": "9173 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.075827, + "longitude": -75.031687, + "stars": 1.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Furniture Stores, Home & Garden, Mattresses, Discount Store, Shopping", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "NkYhL3h6wHI8aeFeWrgO_Q", + "name": "China Ruby", + "address": "1535 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0559507, + "longitude": -75.0738565, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "L9wRaPRmm6k3O1w9mEszYw", + "name": "Bistro Sorriso", + "address": "444 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9588922, + "longitude": -75.1458732, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "xSALjCBZUzmUlQh488VDKA", + "name": "Getaround", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Hotels & Travel, Car Share Services, Car Rental, Truck Rental", + "hours": { + "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" + } + }, + { + "business_id": "wLMKPkH0t9kN-RLIJ26ORQ", + "name": "Oath Pizza - Fashion District", + "address": "1101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9524675056, + "longitude": -75.1579776202, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "None", + "HasTV": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "hgGyfl_x1zf6uBrDxyPUKQ", + "name": "Promgirl", + "address": "4700 Wissahickon Ave, Bldg K", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.015517, + "longitude": -75.172468, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Sewing & Alterations, Jewelry, Formal Wear, Shopping, Accessories, Bridal, Local Services, Fashion, Shoe Stores, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "E-KO6_dNGEcuGy4vUL-QJQ", + "name": "Esthetique Dental Group", + "address": "1518 Walnut St, Ste 400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494239, + "longitude": -75.1669032, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists", + "hours": { + "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" + } + }, + { + "business_id": "bY7hmJIeP8lDequJWEgS3A", + "name": "US Post Office", + "address": "4130 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0080564, + "longitude": -75.1927947, + "stars": 1.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Local Services, Shipping Centers, Post Offices", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "1GtznWHocNxSCunIKUzcmg", + "name": "Broad Street Bullies", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9043795867, + "longitude": -75.1693441487, + "stars": 2.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForDancing": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "Smoking": "u'no'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False" + }, + "categories": "Pubs, Nightlife, Bars, Food", + "hours": null + }, + { + "business_id": "I4cEvMuHycbWp34Ayh57DQ", + "name": "Jc Bake Shop", + "address": "1730 Snyder St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924954, + "longitude": -75.175654, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False" + }, + "categories": "Bakeries, Food, Coffee & Tea, Desserts", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "5:0-17:0", + "Wednesday": "5:0-17:0", + "Thursday": "5:0-17:0", + "Friday": "5:0-17:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "RVNa2Uauy3C4aggmjlSc5Q", + "name": "Emerald Windows", + "address": "2301 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9868777, + "longitude": -75.1471045, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Home Services, Door Sales/Installation, Windows Installation", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-14:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "m-EmxI6FmscRNfyA85layA", + "name": "The Little Treehouse", + "address": "10 W Gravers Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0746650696, + "longitude": -75.2050476074, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Active Life, Playgrounds, American (Traditional), Restaurants", + "hours": { + "Tuesday": "9:0-12:0", + "Wednesday": "9:0-14:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "KUYLBfW9vRNmhBn5mmRSQg", + "name": "Adobe Cafe", + "address": "800 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406141993, + "longitude": -75.1559723333, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "BikeParking": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'outdoor'", + "BYOB": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Corkage": "False", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Wraps, Nightlife, Tex-Mex, Bars, Sandwiches, Breakfast & Brunch, Mexican", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "WPZFuRKFvT-Xy9FPPX9CpA", + "name": "Primo Burgers", + "address": "6718 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0321695, + "longitude": -75.0524332, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Pizza, Restaurants, Sandwiches, Breakfast & Brunch, Burgers, Cheesesteaks", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "D8NEBGvh1DVHbyEs2cWVAQ", + "name": "McDonald's", + "address": "5020 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.999385686, + "longitude": -75.229440406, + "stars": 1.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Coffee & Tea, Burgers, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "OliqvG_1thS-T0xQrHZueg", + "name": "Chix & Chicks", + "address": "32 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9562595, + "longitude": -75.202346, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Chicken Wings, Restaurants, Chicken Shop, Wraps, Sandwiches", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "RlLS1Z76GTXh2cjGAdLaQA", + "name": "Sweet Charlie's", + "address": "711 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481172, + "longitude": -75.1531016, + "stars": 4.0, + "review_count": 270, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "1U7T6r0LiwvD_fZEcp3JBQ", + "name": "Warby Parker at Art in the Age", + "address": "116 North 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952701, + "longitude": -75.145382, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Shopping", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "dvYS0Y_RHFGyR4Q29rqm3g", + "name": "Dibbs BBQ", + "address": "5617 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.980720001, + "longitude": -75.2344698831, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "QlTsoRTRxMztgkB0CAvYYA", + "name": "The Cutting Point", + "address": "1642 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9171496, + "longitude": -75.1760886, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Skin Care, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "brBBW8wLh4Q3BXmKtSELCQ", + "name": "The Center For Growth", + "address": "233 S 6th St, Ste C33", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9461302467, + "longitude": -75.1501000415, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Counseling & Mental Health, Psychologists, Doctors, Health & Medical, Psychiatrists", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "HRwwyvm2RiMdaTWOwzhpTg", + "name": "BJ's Wholesale Club", + "address": "2044 Red Lion Rd.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0993506, + "longitude": -75.0242411, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Wholesale Stores, Shopping, Grocery, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "F6WK9qGM3WH2HiGmDt4YtA", + "name": "Greg Stefan Studios", + "address": "2193 Pratt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0108314, + "longitude": -75.0709932, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Education, Art Classes, Home Services, Glass & Mirrors", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "yh_Rgiw_GPR9ZJWQjtDJhg", + "name": "Beadworks", + "address": "619 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412423, + "longitude": -75.1503653, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Fashion, Accessories, Education, Arts & Crafts, Jewelry, Art Classes, Art Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "12:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "ByeT-qLkYOT5pSOFt9iDkA", + "name": "Steven's Dry Cleaners", + "address": "2002 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670612, + "longitude": -75.1704301, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Dry Cleaning, Laundry Services, Local Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "UG5PDzdKA2n3jd854QJpiQ", + "name": "Ruby Chinese Restaurant", + "address": "7140 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0442199194, + "longitude": -75.2320256442, + "stars": 3.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "zyMkbavgHASQtqVwaock9A", + "name": "3 J's Cafe", + "address": "1822 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962976, + "longitude": -75.169315, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Caterers, Internet Cafes, Event Planning & Services, Food, Sandwiches, Coffee & Tea, Delis, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "FWr8f-mfdoDu6BdNh8Q8QA", + "name": "CVS Pharmacy", + "address": "6150 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0453119728, + "longitude": -75.1288, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Drugstores, Health & Medical, Food, Shopping, Convenience Stores, Pharmacy, Photography Stores & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "CQhY6tuC5lztz-7uosT_5A", + "name": "Pure Tacos", + "address": "1935 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521533479, + "longitude": -75.1731691223, + "stars": 2.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Ethnic Food, Mexican, Food, Specialty Food, Gluten-Free", + "hours": { + "Monday": "11:30-21:0", + "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": "12:0-20:0" + } + }, + { + "business_id": "lEIf_o32rRWcpAeV6pshmA", + "name": "Revel Ride", + "address": "1632 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441019, + "longitude": -75.1698829, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cycling Classes, Gyms, Fitness & Instruction, Active Life", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "8:0-12:0", + "Friday": "9:0-12:30", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "wtL_W_OZ_JMqGBdt1oAJ3Q", + "name": "Momma Mia's Pizzeria", + "address": "15002 Endicott St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1202564, + "longitude": -74.995131, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BYOB": "False", + "WiFi": "u'no'", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Pizza, Chicken Wings, Cheesesteaks, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "LAx7f7-pG9-8U399x9Tp2A", + "name": "TaKorean", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Mexican, Asian Fusion, Korean, Restaurants", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "12:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "QqOKPUl7aNiW4IN_Ij2mBg", + "name": "Cafรฉ Bustelo", + "address": "1075 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967345, + "longitude": -75.139348, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "ANmX99M5KtNWi5g39TFIKw", + "name": "Noobar", + "address": "8500 Essington Ave, Level 2, Terminal B, Gate B3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.875104, + "longitude": -75.243642, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "American (New), Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "EDdK4fWHafdU74GF00Xbew", + "name": "Broad Street Cleaners", + "address": "1541 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9305342, + "longitude": -75.1680019, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "0uWnByfZNCs0MU1Ag10ujw", + "name": "Popeyes Louisiana Kitchen", + "address": "501 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0391044, + "longitude": -75.107755411, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Fast Food, Southern, Chicken Wings, American (Traditional), Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "oXr3EhnQCqA8SNWIZ3H4Fg", + "name": "Little Spoon Cafe", + "address": "1500 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437411, + "longitude": -75.1673474, + "stars": 4.0, + "review_count": 358, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "'none'", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Cafes, Coffee & Tea, Food, Restaurants", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "ugRlYwSaNwlAjld-eUWKIg", + "name": "Freedom Church", + "address": "1412 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9508334, + "longitude": -75.164683, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Sunday": "11:0-12:30" + } + }, + { + "business_id": "Np8pLMEE-V_E1ZduSQAJ1w", + "name": "Somerton Beverage", + "address": "13510 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1287703647, + "longitude": -75.0141438805, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Convenience Stores, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "bIBa32BEOIASBRDe0kIHag", + "name": "DICK'S Warehouse Sale", + "address": "20 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.08545516, + "longitude": -74.96743817, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Sporting Goods, Fashion, Sports Wear, Outdoor Gear, Fitness/Exercise Equipment", + "hours": { + "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": "10:0-19:0" + } + }, + { + "business_id": "cvMWtPYhhVfgi4Pc6wFpNQ", + "name": "Ten Six Club", + "address": "1709 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950249, + "longitude": -75.169489, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Nightlife, Dance Clubs, Bars", + "hours": { + "Tuesday": "20:0-2:0", + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0" + } + }, + { + "business_id": "iGwpAmEWTxattlhkuG6eDQ", + "name": "Steak 'Em Up", + "address": "2600 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9174052, + "longitude": -75.1660073, + "stars": 3.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Sandwiches, Pizza, Cheesesteaks, Steakhouses, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "x3eNFvMD1LaqpBnJSD6A9Q", + "name": "P N B Breakfast", + "address": "6003 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.042693, + "longitude": -75.1288987, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Food", + "hours": null + }, + { + "business_id": "lz14YVILCrnI1ij6FJ3ItQ", + "name": "Wings To Go Roxborough", + "address": "6001 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0321044, + "longitude": -75.2130364, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "HwtynrR0JtrHBzqLUfqRUw", + "name": "Kobawoo Express", + "address": "W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.980046, + "longitude": -75.156439, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Food Trucks, Korean, Food", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "KFkTHcQ_jlebGV_WigGadQ", + "name": "The Punk Rock Flea Market-Dome", + "address": "461 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9604, + "longitude": -75.1528521, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Flea Markets, Arts & Crafts, Shopping", + "hours": null + }, + { + "business_id": "7pe_s16qSxYytikyOgrzxQ", + "name": "Illuminare", + "address": "2321 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675, + "longitude": -75.176079, + "stars": 3.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "HappyHour": "True" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "6JNQFy_qdIQ9Wd8rcnhcZA", + "name": "Regal Ballroom", + "address": "5411 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0305267, + "longitude": -75.0846958, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Food Delivery Services, Food, Venues & Event Spaces", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "VM4QU1KR0dmW2IFTkmFTIw", + "name": "Joe Coffee Company", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953671, + "longitude": -75.1884001, + "stars": 4.0, + "review_count": 81, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Coffee Roasteries, Food, Coffee & Tea", + "hours": { + "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": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "mLDc_u44EiqJCSR3L4nQZw", + "name": "Attic Brewing Company", + "address": "137 Berkley St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0229869, + "longitude": -75.1616977, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food, Nightlife, Brewpubs, Bars, Beer Bar, Breweries", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "fiIoC-QwgqOBbeL7NPu0bA", + "name": "Taco Bell", + "address": "4430 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0212001438, + "longitude": -75.1488108184, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsReservations": "False", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Mexican, Fast Food, Tacos", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "hN6huRd198jplKWFIPjJmQ", + "name": "Funari Public Adjusters", + "address": "2951 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.913695, + "longitude": -75.174821, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Public Adjusters, Insurance, Plumbing, Contractors, Home Services, Professional Services, Financial Services", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "EIMdpFSVbzITAn89Ha1eoA", + "name": "Ulta Beauty", + "address": "9173 Roosevelt Blvd, Spc 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0751943, + "longitude": -75.0321215, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Beauty & Spas, Skin Care, Cosmetics & Beauty Supply, Hair Salons", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "ELMF8I3FN52Rokd8eK1hhQ", + "name": "Rent Campus", + "address": "1414 W Oxford St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9773292542, + "longitude": -75.1595001221, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Apartments, Real Estate, Home Services, University Housing, Real Estate Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "-XFGOFiHD8AE3ihfErB-uQ", + "name": "Wellington Apartments", + "address": "135 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507194, + "longitude": -75.1720032, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": null + }, + { + "business_id": "lDJsJI1Ixe3tjPxoHC_Lvw", + "name": "Hot Spot Pizza", + "address": "7000 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9169871, + "longitude": -75.237389, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Cheesesteaks, Pizza, Delis, Restaurants", + "hours": null + }, + { + "business_id": "K9cXWQFJrYL4AN9RCCPjJw", + "name": "Surf And Turf Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068629, + "longitude": -75.0026972, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Food Trucks, Seafood, Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "No_76chEpbjTWS-6x3xGXw", + "name": "Shenanigans Under The El", + "address": "1624 N Front St, Kensington area", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9749451, + "longitude": -75.1345665, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "GoodForDancing": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Nightlife, Sandwiches, Sports Bars, Restaurants, Gastropubs, Bars", + "hours": { + "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" + } + }, + { + "business_id": "NxB8M1wnJQ5xoXDiUgqmIg", + "name": "Burger King", + "address": "1401-1415 W Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0246776, + "longitude": -75.1486949, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Burgers", + "hours": null + }, + { + "business_id": "Fv6EIYsJaUCqyvvAr6kLew", + "name": "Evergreen Cheese Chestnut Hill", + "address": "184 E Evergreen Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.07697, + "longitude": -75.2065329, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Grocery, Specialty Food, Food, Cheese Shops", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "45qdGcVB516AzDYyPDiY0g", + "name": "Subway", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9923232025, + "longitude": -75.0998242303, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Sandwiches, Restaurants, Fast Food", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "9:0-21:30" + } + }, + { + "business_id": "jvPFC9WqnuC39MJTDMprVA", + "name": "Bank of America Financial Center", + "address": "1600 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536094233, + "longitude": -75.166853425, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "ZaqQ-iU_Axwp8w8OptKgWw", + "name": "SPIN Community & Fitness", + "address": "10980 Norcom Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0986948, + "longitude": -74.9973108, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Recreation Centers, Tai Chi, Amateur Sports Teams, Fitness & Instruction, Boot Camps", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-20:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "-gWSPVXmvDBbOA0f-hIaeA", + "name": "Rose 4 U Florist", + "address": "116 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553405, + "longitude": -75.1577416, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "xLgVWOSAeT19zKb9Xo60KQ", + "name": "George's Corner", + "address": "2223 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528641354, + "longitude": -75.1779057312, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Cheesesteaks, Restaurants, Street Vendors, Greek, Food", + "hours": { + "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" + } + }, + { + "business_id": "fK_Fd8-KmGV-ASIIjJwfdQ", + "name": "Sugar Philly Truck", + "address": "N 38th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9656946, + "longitude": -75.1978319, + "stars": 4.5, + "review_count": 174, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'" + }, + "categories": "Food, Food Stands, Desserts, Restaurants, Street Vendors", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "FppRGRWQxEs0BkA75MmsxA", + "name": "The Chilly Banana", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Food, Desserts", + "hours": null + }, + { + "business_id": "uIkucEmug8n1Rpp0DyyAcg", + "name": "LA Fitness", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0488144782, + "longitude": -75.0576928592, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Gyms, Fitness & Instruction, Trainers, Yoga", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "iI2ZEeSHaPOhXdCauhYNMg", + "name": "Winchester Walk Apartments", + "address": "2600 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0711134095, + "longitude": -75.0325586827, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate, Property Management", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "iTn6lKqyEmKXyvRFQ32UfQ", + "name": "PHA Adult Medicine", + "address": "1740 South St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944259, + "longitude": -75.171701, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Drugstores, Health & Medical, Doctors, Shopping, Internal Medicine", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "2Gn_WhIitWsxYrDb45VCLQ", + "name": "N & E Agora Gourmet", + "address": "917 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.052641, + "longitude": -75.0802098, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'" + }, + "categories": "Delis, Grocery, Ethnic Food, Specialty Food, Food, Greek, Restaurants", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "I1pRPU_OB8-gzgKOSl9zFg", + "name": "Society Hill Society", + "address": "400 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428741, + "longitude": -75.1455204, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "HasTV": "False" + }, + "categories": "Restaurants, American (Traditional), American (New)", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "eY8exh1aLVVhW6z_M0u_Eg", + "name": "Pho Ha Saigon", + "address": "575 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0359369248, + "longitude": -75.107954232, + "stars": 3.5, + "review_count": 259, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "9:30-22:0" + } + }, + { + "business_id": "Fk7Ba6M0tPiVi_Tf3azO3w", + "name": "Gary Charles & Associates", + "address": "8035 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0778562, + "longitude": -75.0856163, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Salons, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Xck-KZiOi9ZWXG5hNuulLQ", + "name": "Sassafras Market", + "address": "163 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953898, + "longitude": -75.1446646, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "6_T2xzR74JqGCTPefAD8Tw", + "name": "Morimoto", + "address": "723 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496652299, + "longitude": -75.1532727008, + "stars": 4.5, + "review_count": 1914, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'dressy'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "4", + "Caters": "False", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': False}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "HappyHour": "False", + "BYOB": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Japanese, American (Traditional), American (New), Restaurants, Sushi Bars, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "16:0-21:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "hT9weRMZuJjl6Ca1EskmNA", + "name": "Pete's Famous Pizza", + "address": "116 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9563482, + "longitude": -75.1747505, + "stars": 3.5, + "review_count": 228, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Alcohol": "'beer_and_wine'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'" + }, + "categories": "Food, Restaurants, Specialty Food, Pasta Shops, Pizza, Chicken Wings, Food Delivery Services", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "eNeVdj_VqC3p5ofo7SKEyQ", + "name": "Wendy's", + "address": "501 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0391044, + "longitude": -75.107742, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "eov1KX7DORDFBPXqHbvGnw", + "name": "Glenloch Locks", + "address": "7142 Glenloch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0306338, + "longitude": -75.038971, + "stars": 5.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Furniture Assembly, Home Services, Landscaping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "zB2I7qEx_tg7a2imRCJokg", + "name": "Philadelphia Vintage & Consignment Shoppe", + "address": "111 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497589, + "longitude": -75.1603198, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Women's Clothing, Used, Vintage & Consignment, Accessories", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "DUob26H7hiDCM4ubXMsn5A", + "name": "Noah's Pizza", + "address": "4602 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9441492, + "longitude": -75.2096971, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "False" + }, + "categories": "Sandwiches, Cheesesteaks, Restaurants, Wraps, Gluten-Free, Pizza, Burgers", + "hours": { + "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:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "eazV3X8nptiyZk_w-LHXLA", + "name": "Miss Kathy's", + "address": "1412 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306716, + "longitude": -75.1533968, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BYOB": "True", + "Corkage": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "HasTV": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, American (New), Mediterranean", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "nk7fI9Vj7L-kKdXOB7cKIw", + "name": "The Irish Memorial Monument", + "address": "Front St And Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481737, + "longitude": -75.1424642, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "38nh08XWZYTHo7tb02Pdkw", + "name": "Philly Official Guide", + "address": "229 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9367535, + "longitude": -75.1647938, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Tours, Hotels & Travel", + "hours": { + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "su5d05lDCH9D32szc6xChg", + "name": "Top Cleaners", + "address": "1 Franklin Town Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.959546, + "longitude": -75.167307, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "r28TgTsWsmRH7nzrWEgVHQ", + "name": "Flat Rock Saloon", + "address": "4301 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024975, + "longitude": -75.221879, + "stars": 3.0, + "review_count": 67, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'no'", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True" + }, + "categories": "Bars, Nightlife, Pubs, Restaurants, American (Traditional)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "IjaRokBRNoiY2c9_nI-SaA", + "name": "Mike's Auto Body", + "address": "7116 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.048787, + "longitude": -75.0689172, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Auto Repair, Auto Detailing, Towing, Body Shops", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-11:30" + } + }, + { + "business_id": "UUegcQkfeZyMCW_BM01Z3A", + "name": "Degovanni Collision Experts", + "address": "5104 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0375386, + "longitude": -75.2390548, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Windshield Installation & Repair, Auto Repair, Auto Glass Services, Automotive, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "9o24I4GqjDBQQa0vK68cXQ", + "name": "Rothman Orthopaedics", + "address": "925 Chestnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502469, + "longitude": -75.1566358, + "stars": 2.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Sports Medicine, Physical Therapy, Doctors, Health & Medical, Orthopedists, Optometrists, Podiatrists", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "HW5LkI9qeqVDwHqhd00_8A", + "name": "The Happy Rooster", + "address": "118 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504391, + "longitude": -75.1675545, + "stars": 3.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Nightlife, American (New), Pubs, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "KGvGSfvlWzurRu247ckEPw", + "name": "Four Points by Sheraton Philadelphia City Center", + "address": "1201 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560366, + "longitude": -75.1591784, + "stars": 3.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "wkQb18eIMyb5Fvzg5LOlCg", + "name": "Health Grad Advantage", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Editorial Services, Career Counseling, College Counseling, Education, Professional Services, Test Preparation", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "8WGx4nyapGrL0p5sKKgPxQ", + "name": "Dantonio's Pizza", + "address": "4222 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0268363, + "longitude": -75.21633, + "stars": 3.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9: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" + } + }, + { + "business_id": "OBFrA7Xz3cS1JG3xMafplw", + "name": "Just To Serve You", + "address": "5622 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.970433, + "longitude": -75.2334805, + "stars": 2.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}" + }, + "categories": "American (Traditional), Restaurants, Event Planning & Services, Southern, Caterers", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "rrNikwFH9Gk31dbV332F4A", + "name": "Complete Nail Spa", + "address": "2100 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950487, + "longitude": -75.176018, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "xoHg2bSnRSnfLlSgnCQ_TQ", + "name": "Lavender Foot Spa", + "address": "9867 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.092384, + "longitude": -75.030973, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Reflexology, Massage, Health & Medical, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "A1njfi_pCHL8Tnx_OirENA", + "name": "PNC Bank", + "address": "701-703 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405841863, + "longitude": -75.150719583, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Mortgage Brokers, Real Estate, Investing, Banks & Credit Unions, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "0G4RIJw89Bj4FT7IWYnZ7A", + "name": "Brewerytown Bicycles", + "address": "2819 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9746537, + "longitude": -75.1825506, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Sporting Goods, Local Services, Bikes, Bike Rentals, Shopping, Active Life, Bike Repair/Maintenance", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "93K-xlLwLnwcFuV2r2MI6Q", + "name": "Thai Square Restaurant", + "address": "2521 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9425684, + "longitude": -75.1852973, + "stars": 4.0, + "review_count": 162, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "WiFi": "'no'", + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'quiet'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "EryhKE6cP5M_dZkp6DBNcQ", + "name": "Girard Auto Body", + "address": "3108 Fox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0023618, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Repair, Body Shops, Automotive", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0" + } + }, + { + "business_id": "n874MqUWsFiJ7NGxorBTUg", + "name": "Napoleon Burger", + "address": "4229 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243322, + "longitude": -75.2207517, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Sandwiches, Ice Cream & Frozen Yogurt, Food, Burgers, Restaurants", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "EGqZQOR7R2Y_izHXiAx7Qw", + "name": "Chopstick & Fork", + "address": "2801 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9745695, + "longitude": -75.1819593, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "O0wAG9M_7HHs6sCS3w6lTA", + "name": "Zipf's Candies", + "address": "8433 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0759172, + "longitude": -75.2058563, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Candy Stores, Specialty Food, Desserts, Food, Caterers, Party & Event Planning", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "0gM31ZJkgi9pYfYrgbhj-Q", + "name": "Craig T Wakefield, DDS", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Oral Surgeons, Dentists, Cosmetic Dentists, General Dentistry", + "hours": null + }, + { + "business_id": "rjdUiKAXXYHIH20zVTcPXw", + "name": "19 Degrees", + "address": "1847 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9411822, + "longitude": -75.1741318, + "stars": 3.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "True" + }, + "categories": "Sandwiches, Restaurants, Delis, Cafes", + "hours": { + "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:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "Tl05Hzo5HvxMXwEZ_pnRnQ", + "name": "Zara", + "address": "1715 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950287, + "longitude": -75.169736, + "stars": 2.5, + "review_count": 96, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Men's Clothing, Shopping, Women's Clothing", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "dGyW8a78NJfwQZVllZ98wA", + "name": "The Crefeld School", + "address": "8836 Crefeld St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076471, + "longitude": -75.214651, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Middle Schools & High Schools, Education, Elementary Schools, Preschools", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "Y5S_AUSW8EjswVf9JAi-0w", + "name": "Horizons", + "address": "611 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418368, + "longitude": -75.1538396, + "stars": 4.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "HasTV": "False" + }, + "categories": "Vegetarian, Restaurants, Vegan", + "hours": { + "Tuesday": "18:0-22:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-23:0", + "Saturday": "18:0-23:0" + } + }, + { + "business_id": "-32hOCwsuKd04WO-HQyYFg", + "name": "Pine Street Pizza", + "address": "1138 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9449992686, + "longitude": -75.1612742477, + "stars": 3.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "False", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "6FrR7PxU3h6r4io6sCENJA", + "name": "Wyoming Pizza", + "address": "4515 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0207228296, + "longitude": -75.134012664, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "AfM_dYO_LTqQz33qHbT45A", + "name": "Mamoun's Falafel - Philadelphia, PA", + "address": "300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950037, + "longitude": -75.145843, + "stars": 4.0, + "review_count": 96, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Middle Eastern, Food, Greek, Restaurants, Vegan, Falafel, Caterers, Fast Food, Mediterranean, Event Planning & Services, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-15:30" + } + }, + { + "business_id": "LhWV3p52q4TXXoa2uJuiSw", + "name": "TD Bank", + "address": "121 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502258, + "longitude": -75.1637041, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "VRGS76RTMclRUD8n3H30yg", + "name": "South Philly Bar & Grill", + "address": "1235 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9333897, + "longitude": -75.1588072, + "stars": 3.0, + "review_count": 141, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Bars, Sports Bars, Nightlife, American (Traditional), Caterers, Event Planning & Services", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "12:0-19: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" + } + }, + { + "business_id": "nIQmsGI522L55aJa4vckXw", + "name": "Master Countertops", + "address": "1603 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9698148, + "longitude": -75.1247231, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Home Services, Countertop Installation, Building Supplies", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "-R8qYNbQq8g1abR5IpGgWw", + "name": "Best Handyman Services", + "address": "2733 Lefevre St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9991274, + "longitude": -75.071094, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Electricians, Glass & Mirrors, Painters, Handyman, Local Services, Appliances & Repair, Home Services", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "nlJJznD8hiNWylGgcQksxA", + "name": "Hello World", + "address": "3610 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953575, + "longitude": -75.196501, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Furniture Stores, Home Decor, Home & Garden, Accessories, Gift Shops, Fashion, Kitchen & Bath, Shopping, Flowers & Gifts", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "pdXEjhNzy5YERGk_wBA9Lw", + "name": "Avenue Cup Cafe", + "address": "932 E Passyunk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9372308477, + "longitude": -75.1548003, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Vegetarian, Cafes, Vegan, Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "OTAkh_bxR_i2rIH4dyU-xg", + "name": "Lapstone & Hammer", + "address": "1106 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950038, + "longitude": -75.159127, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Shoe Stores, Men's Clothing, Fashion, Accessories", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "h_NMnqT_HGZbJr2d8nDJEw", + "name": "Potbelly Sandwich Works", + "address": "1200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948684, + "longitude": -75.160755, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "g9doWs1fgSNHbQjbkrlTxA", + "name": "Virgin America", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8697995798, + "longitude": -75.240761575, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Airlines, Travel Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "0tamJjc_EA4uLJOhb9dtgw", + "name": "Beauty Shop Cafe", + "address": "2001 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94319, + "longitude": -75.175515, + "stars": 4.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "99v5aJGZRvEC1LOsVHafTQ", + "name": "Rita's Italian Ice", + "address": "1709 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0862265, + "longitude": -75.0380469, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shaved Ice, Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "uLFWNFkm6E7JIyq3T5PMYA", + "name": "Busybee Design", + "address": "350 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.945929, + "longitude": -75.1669531, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Furniture Reupholstery, Home Services, Interior Design, Local Services, Shopping, Real Estate, Real Estate Services, Home & Garden, Home Decor, Home Staging", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "hPu9RUh8v3WCFhJQu52VzA", + "name": "The Igloo", + "address": "1514 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9733793, + "longitude": -75.134038, + "stars": 4.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "AAYzFH0HjSUNL2nLScutxQ", + "name": "Wawa", + "address": "3222-48 Richmond St At Allegh", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9837179, + "longitude": -75.1007545, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False" + }, + "categories": "Food, Coffee & Tea, Automotive, Restaurants, Convenience Stores, Sandwiches, Gas Stations", + "hours": { + "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" + } + }, + { + "business_id": "gLy70C_C07OMDryHSdMJMg", + "name": "Wellfeet Spa", + "address": "Grant Shopping Ctr, 1900 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Day Spas, Massage, Health & Medical, Reflexology, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "D192-Jekm0LxaUzKYeynqg", + "name": "Sunoco", + "address": "4868-4898 Conshohocken Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0008598323, + "longitude": -75.2264848927, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "tf2nzjkP8XGIeU-lg767XA", + "name": "Tredici Enoteca", + "address": "114 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498038, + "longitude": -75.1620581, + "stars": 4.5, + "review_count": 352, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "Smoking": "u'no'", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "None", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "None", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Mediterranean, Restaurants, Wine Bars, Bars, Nightlife, Italian", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "bE21yS3xO1mb9m-4ck5Wlw", + "name": "Caring For Cats", + "address": "100 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296889, + "longitude": -75.2312699, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pet Services, Pet Sitting, Pets", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "gRDObeUJCIPYPUXya51TEw", + "name": "Ed's Barber Shop", + "address": "600 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97119, + "longitude": -75.12687, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Barbers, Beauty & Spas, Men's Hair Salons, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "HxqKo-FK8L_f_xPpBtebQQ", + "name": "Silence Dogood's Tavern", + "address": "216 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949973724, + "longitude": -75.1445580715, + "stars": 4.5, + "review_count": 111, + "is_open": 0, + "attributes": { + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BikeParking": "True", + "HappyHour": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "GoodForDancing": "False" + }, + "categories": "Nightlife, American (New), Gastropubs, Food, American (Traditional), Pubs, Local Flavor, Restaurants, Beer, Wine & Spirits, Bars", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "mgdXl0-Gl6rbcW5M0sqRpA", + "name": "HOWL Awareness Center", + "address": "6901 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0456203, + "longitude": -75.0710784, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "BikeParking": "True" + }, + "categories": "Hobby Shops, Meditation Centers, Supernatural Readings, Traditional Chinese Medicine, Reiki, Active Life, Arts & Entertainment, Fitness & Instruction, Psychics, Spiritual Shop, Health & Medical, Naturopathic/Holistic, Shopping, Doctors", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0" + } + }, + { + "business_id": "YCQ7T0IIggvI2Ed2q0PhvA", + "name": "Checker Cab Philly", + "address": "2301 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0056684, + "longitude": -75.082377, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Local Flavor, Automotive, Local Services, Taxis", + "hours": null + }, + { + "business_id": "9OhPfV0C3Q49l5tSre2MuQ", + "name": "Kabobeesh", + "address": "4201 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9564795, + "longitude": -75.2065288, + "stars": 3.5, + "review_count": 322, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}" + }, + "categories": "Food, Ethnic Food, Indian, Middle Eastern, Pakistani, Halal, Specialty Food, Barbeque, Restaurants", + "hours": { + "Monday": "11:0-23: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": "11:0-1:0" + } + }, + { + "business_id": "npeS6PPvWIQYGjydHLfliw", + "name": "1 Stop Smoke Shop", + "address": "10103 Verree Rd, Unit C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1060438, + "longitude": -75.0309749, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Vape Shops, Tobacco Shops, Shopping", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "3MIsXwx5zVmlwzRx9UnuFQ", + "name": "Perkins Restaurant & Bakery", + "address": "1681 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0869513242, + "longitude": -75.0390484929, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "DogsAllowed": "False" + }, + "categories": "Cafes, American (Traditional), Food, Restaurants, Breakfast & Brunch, Bakeries", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "iwgD5oRuzluhE6BeGrmx8w", + "name": "Vertical Maven Group", + "address": "1420 Walnut St, Ste 1207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491605, + "longitude": -75.1658003, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Bookkeepers, Professional Services, Payroll Services, Financial Advising, Local Services, Accountants, Financial Services, Tax Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "EQyFENS3MWYRuDt6Ty6QJQ", + "name": "Street Food Philly", + "address": "N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9610339, + "longitude": -75.1895661, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "HasTV": "False", + "BusinessParking": "None" + }, + "categories": "Restaurants, Food Stands, Street Vendors, Food, Event Planning & Services, Caterers", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "Lu9d6M-BqZfcP6MKYZL50w", + "name": "Verizon", + "address": "4000 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0071508, + "longitude": -75.2127724, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Professional Services, Mobile Phones, Internet Service Providers, Electronics, Home Services", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "n3aePf41-l4j7RlnvFoklA", + "name": "Ms Esthers Breakfast", + "address": "6053 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.04756, + "longitude": -75.1507415, + "stars": 2.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Caters": "False", + "Alcohol": "'none'" + }, + "categories": "Breakfast & Brunch, Comfort Food, American (New), Local Flavor, Restaurants", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "G-FrjKHpQVoH_P1saaMNRQ", + "name": "Kingston 11", + "address": "6405 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9264441817, + "longitude": -75.2335146815, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "DDFnIMsUjCHVOE72y86TfQ", + "name": "Dunkin'", + "address": "1345 W Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.039074, + "longitude": -75.1441337, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "4:0-20:0", + "Tuesday": "4:0-20:0", + "Wednesday": "4:0-20:0", + "Thursday": "4:0-20:0", + "Friday": "4:0-20:0", + "Saturday": "4:0-20:0", + "Sunday": "4:0-20:0" + } + }, + { + "business_id": "WX2exxux0FS2HwRVaRdhaQ", + "name": "Stone's Beer & Beverage Market", + "address": "1701 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674279, + "longitude": -75.1654141, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food, Beverage Store", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "NB4v-qVa5WiDPeVVrQzY5g", + "name": "Santander", + "address": "9200 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0772566, + "longitude": -75.0329354, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Advising, Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "3czT65zbslmUQSkzCPfp8Q", + "name": "Falafel Exotic Cuisine", + "address": "4403 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567776, + "longitude": -75.2098795, + "stars": 3.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "Middle Eastern, Restaurants, Food", + "hours": { + "Monday": "15:0-4:0", + "Tuesday": "15:0-4:0", + "Wednesday": "15:0-4:0", + "Thursday": "15:0-4:0", + "Friday": "15:0-4:0", + "Saturday": "15:0-4:0", + "Sunday": "15:0-4:0" + } + }, + { + "business_id": "5WsZsFzt1pvEuIKVo9zNOg", + "name": "Nigro Insurance Agency", + "address": "1010 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9658207, + "longitude": -75.1397163, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "sufuurZ3BVVSqxAthIxJiQ", + "name": "VaceTime", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358382, + "longitude": -75.174734, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "False" + }, + "categories": "Web Design, Home & Garden, Landscaping, Home Decor, Event Planning & Services, Home Services, Shopping, Professional Services, Interior Design, Furniture Assembly, Landscape Architects", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-21:0", + "Saturday": "6:0-20:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "QUSctIF_D2yv_NJeokhXFw", + "name": "Condesa", + "address": "1830 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524637, + "longitude": -75.171228, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "BYOB": "False", + "Corkage": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "CoatCheck": "True", + "DriveThru": "False", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BikeParking": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Mexican, Bars, Cocktail Bars, Nightlife, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0" + } + }, + { + "business_id": "QISVebCBgXX3AXog7Lex7g", + "name": "Burlington", + "address": "1563 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0873315, + "longitude": -74.9605139, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shopping, Department Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "mBgfK8HLthPOMPkEbYLW-A", + "name": "The Bottle Shop", + "address": "1616 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295023074, + "longitude": -75.1639770504, + "stars": 4.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "u'beer_and_wine'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "HappyHour": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForDancing": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bars, Food, Beer, Wine & Spirits, Nightlife", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "11:0-16:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "qNuF6SJ0VoxiMOVDxlG0oA", + "name": "AT&T Store", + "address": "1501 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949728463, + "longitude": -75.1660720018, + "stars": 2.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Mobile Phones, Mobile Phone Accessories, Shopping, Television Service Providers, Home Services", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "fz7lObwcS7UWJlSGxgGH_g", + "name": "Van's Nail", + "address": "2500 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0453897, + "longitude": -75.0563153, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "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-18:0" + } + }, + { + "business_id": "LaXtCyzVwvakxtf_ym2Gwg", + "name": "Never Give Up", + "address": "4368 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262436, + "longitude": -75.2240679, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Weight Loss Centers, Health & Medical, Boot Camps, Gyms, Active Life, Trainers, Fitness & Instruction", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "GPs4ssH_b7aG-xlI7_eung", + "name": "Wandas Dominican Unisex Hairstyling", + "address": "7258 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0469120788, + "longitude": -75.0605043781, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:30-20:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "GqFDqjsoyLGlxMJAWHjFmg", + "name": "DeTours Touring", + "address": "22 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509192, + "longitude": -75.1458608, + "stars": 5.0, + "review_count": 15, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Tours", + "hours": { + "Monday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "9hd07-PcvgF15zDFqgNsPA", + "name": "Lifesport Fitness Resource Center", + "address": "2112 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670669, + "longitude": -75.1727328, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Gyms, Trainers, Fitness & Instruction", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-21:30", + "Saturday": "8:30-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "-1DxQ1CxSc_JCxzKm9bglg", + "name": "British Airways", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876593, + "longitude": -75.243194, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Airlines, Transportation, Hotels & Travel", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "J-sxpWHWh8Q-85nEhcEYdw", + "name": "Jefferson Station", + "address": "1170 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952497, + "longitude": -75.158065, + "stars": 3.0, + "review_count": 66, + "is_open": 1, + "attributes": null, + "categories": "Public Transportation, Hotels & Travel, Public Services & Government, Transportation, Train Stations", + "hours": null + }, + { + "business_id": "C7-biE04ycMX_riCKIWLlA", + "name": "Fineline Auto Spa", + "address": "260 W Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0375894, + "longitude": -75.1861837, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Auto Detailing, Auto Glass Services, Automotive", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "pFR6-Py-CyIDiXyJer2aqQ", + "name": "Suprema Coffee Roastery", + "address": "1511 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9459299844, + "longitude": -75.1672374269, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee Roasteries, Coffee & Tea, Food", + "hours": { + "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": "8:0-13:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "1MbwLxXrQk7H1FOidg8hoA", + "name": "Yummy Pho", + "address": "2012 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.983751, + "longitude": -75.157055, + "stars": 4.5, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "HappyHour": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Soup, Thai, Asian Fusion, Coffee & Tea, Vietnamese, Bubble Tea, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "a9WQqkW7OOSwPRl-0gYOeQ", + "name": "Wrti-Jazz 90.1 FM", + "address": "13 Diamond", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.981733, + "longitude": -75.132983, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations", + "hours": null + }, + { + "business_id": "_aO_GP15Zrh7wcOuvaXnNw", + "name": "Rodin Museum", + "address": "2151 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9619653, + "longitude": -75.1739912, + "stars": 4.0, + "review_count": 170, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "0:0-0:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "7Oq3AI3omXpvcN9xDzNeLA", + "name": "Derek's", + "address": "4411 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262143, + "longitude": -75.2250793, + "stars": 3.0, + "review_count": 246, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Corkage": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "HasTV": "True", + "HappyHour": "True", + "Caters": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "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": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "ErcLBEFjqr4nGbF4ozrvgg", + "name": "Don Barriga Mexican Grill", + "address": "4443 Spruce St, Fl 1st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527859999, + "longitude": -75.2121258353, + "stars": 4.5, + "review_count": 109, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "BYOB": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Corkage": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "HappyHour": "False", + "WiFi": "u'free'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "IXA7wKzcL7A9dEJ0AStN9g", + "name": "Fashion District Philadelphia", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516409, + "longitude": -75.1557344, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2" + }, + "categories": "Outlet Stores, Shopping Centers, Shopping", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Q8qE2wKE1x8O2OuIjtP69g", + "name": "Philly Vespa", + "address": "201 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9609019, + "longitude": -75.1419355, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Motorcycle Dealers, Motorcycle Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "PCmoZ6i5fXLKti6SmykDNg", + "name": "Saxbys", + "address": "65 N 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9574168, + "longitude": -75.1907202, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Juice Bars & Smoothies, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "g0iCVzC9wUaELvX68ADrsg", + "name": "Thomas Maggiano Auto Repair", + "address": "5701 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0273318, + "longitude": -75.209354, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "ZzHq3-gBQtHsy9lZg2sy-Q", + "name": "Hertz", + "address": "5091 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0371658, + "longitude": -75.2378094, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel, Transportation, Public Transportation", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "2RBTyU9xrxEkyDBMuVvGxw", + "name": "U-Haul Moving & Storage of Overbrook", + "address": "6141 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.984183, + "longitude": -75.244621, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Local Services, Truck Rental, Self Storage, Propane", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "tvBz80VKCtWAVbA6VmJufg", + "name": "Four Points by Sheraton Philadelphia Airport", + "address": "4101A Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8915307681, + "longitude": -75.2326749154, + "stars": 2.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Airports, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "Z4-e40Yj68w_-XaNTp62LA", + "name": "Hamilton Court Apartments", + "address": "101 S 39th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954876, + "longitude": -75.199597, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "zJArQ1uARHmSDrW-ftRV5g", + "name": "La Lupe Restaurant", + "address": "1201 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342645, + "longitude": -75.1588578, + "stars": 3.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_corkage'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Corkage": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "9VUqkRrEpDFmnPUAZ6yqcA", + "name": "MATAN", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Handyman, Home Services, Contractors, Plumbing, Painters, Decks & Railing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-15:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "onAxL1mLxQb4TzZrJ2rYMg", + "name": "Harry G. Ochs & Sons", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9529722, + "longitude": -75.1595819, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Specialty Food, Meat Shops", + "hours": null + }, + { + "business_id": "GXM_Uitc3Ep8CvwEq_kpcQ", + "name": "City Garden Chinese Restaurant", + "address": "1801 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545699, + "longitude": -75.170513, + "stars": 2.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "Jg9kkOl4sx2AXJVohbpSiw", + "name": "South Philly Barbacoa", + "address": "1140 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935354, + "longitude": -75.158801, + "stars": 4.5, + "review_count": 593, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WheelchairAccessible": "False", + "HappyHour": "False", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "None", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "DriveThru": "None", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Barbeque, Coffee & Tea, Mexican, Cannabis Clinics, Event Planning & Services, Personal Chefs, Restaurants, Juice Bars & Smoothies, Food, Health & Medical", + "hours": { + "Saturday": "5:0-15:0", + "Sunday": "5:0-15:0" + } + }, + { + "business_id": "6mZ99K1Ge3vkXnygDYw1Jg", + "name": "Keating's River Grill", + "address": "201 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9453341, + "longitude": -75.1414441, + "stars": 2.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "NoiseLevel": "'average'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "HasTV": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Steakhouses, Seafood, Restaurants", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "yAwSBNIaS2OaRcwuPTJOoQ", + "name": "Ms D's Soulfood & BBQ", + "address": "730 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.04493, + "longitude": -75.1649769, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "'very_loud'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "HasTV": "True" + }, + "categories": "Food, Barbeque, Restaurants, Soul Food", + "hours": null + }, + { + "business_id": "mY-f_wX09rcopQczhHkGyw", + "name": "Fine Wine & Good Spirits - Premium Collection", + "address": "Top Of The Hill Shop Ctr, 8705 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0779591, + "longitude": -75.2087512, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "None" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "IEshRsQ4MJLy3urbWgURFQ", + "name": "Rittenhouse Instant Press", + "address": "1811 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951321, + "longitude": -75.1710001, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Local Services", + "hours": { + "Monday": "8:45-16:45", + "Tuesday": "8:45-16:45", + "Wednesday": "8:45-16:45", + "Thursday": "8:45-16:45", + "Friday": "8:45-16:45" + } + }, + { + "business_id": "ta8J3DO8Qq5v-BaHffwGBA", + "name": "Pickwick Pharmacy", + "address": "1700 Market St Lbby 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529471296, + "longitude": -75.1694129035, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "KZ2V1ZPnrwoT0zcJunyIQw", + "name": "Schlesinger's", + "address": "1521 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94867722, + "longitude": -75.1674140655, + "stars": 3.5, + "review_count": 258, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Wraps, Sandwiches, Restaurants, Delis, Breakfast & Brunch", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "FemC1HzXmvotxIxLZW06Cg", + "name": "Rimedio", + "address": "4443 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953125, + "longitude": -75.211986, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "9JnWIC8AxZB_WoQSqMudtA", + "name": "Philly's Nails and Spa", + "address": "2502 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9192784, + "longitude": -75.1711482, + "stars": 4.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Eyelash Service, Day Spas, Nail Salons, Beauty & Spas, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:30-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "h5jnFlvF55kDWC_GGlKMAQ", + "name": "Llama Tooth", + "address": "1033 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618638, + "longitude": -75.1556613, + "stars": 3.5, + "review_count": 243, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Bars, Beer Bar, Restaurants, American (New), Breakfast & Brunch, Food, Beer, Wine & Spirits", + "hours": { + "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": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "-rDhWLQJ28L2ttkaftdZNQ", + "name": "Martabak Ok", + "address": "1801 Washington Ave, Unit D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9390238158, + "longitude": -75.1732082292, + "stars": 4.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Alcohol": "u'none'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Bakeries, Food, Comfort Food, Asian Fusion, Pizza, Specialty Food, Indonesian, Desserts", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "8WgMeCwJZdgpM5g2eiCKVw", + "name": "Garfield Refining", + "address": "810 E Cayuga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0148416, + "longitude": -75.110479, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "None", + "RestaurantsPriceRange2": "1" + }, + "categories": "Gold Buyers, Local Services, Shopping", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "bnMFmRBMje1rcGHfrs_5Ug", + "name": "Iannelli's Bakery", + "address": "1155 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345, + "longitude": -75.1576049, + "stars": 4.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants, Italian, Bakeries, Food", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "HPHmPInnyYFbK8B6cYFaWw", + "name": "South Philadelphia Pediatrics", + "address": "1408 S Broad St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.932701, + "longitude": -75.1684237, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Pediatricians", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "14:0-17:0", + "Wednesday": "14:0-17:0", + "Thursday": "14:0-17:0", + "Friday": "14:0-17:0" + } + }, + { + "business_id": "cKLrTvokOdcgoEoHOXkfYg", + "name": "Sakura Japanese Cuisine", + "address": "1521 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96299, + "longitude": -75.1637314, + "stars": 3.5, + "review_count": 142, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True" + }, + "categories": "Salad, Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "bWJZiwXPWgtlmDDyt-YCEw", + "name": "Dunkin'", + "address": "12375 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0964613259, + "longitude": -74.975008, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "'free'", + "DriveThru": "None", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "4:30-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "jsL0EmA3k75npcRvleq2VA", + "name": "Food From The Heart", + "address": "8010 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0735447, + "longitude": -75.1585625, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Barbeque, Seafood, Soul Food, Restaurants", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "vgNNwYjdZ_waBvgUcwtefA", + "name": "The Dining Car & Market", + "address": "8826 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0501175, + "longitude": -75.0111494, + "stars": 3.5, + "review_count": 217, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "HasTV": "True", + "DogsAllowed": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "WiFi": "u'no'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Bakeries, Diners, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-22:0" + } + }, + { + "business_id": "mMhommZcOLN0iEMk2lGd-A", + "name": "Simple Dry Cleaners", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399345, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Dry Cleaning, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "Qhi17dmb6XCvP8axcJMYGA", + "name": "Wendy's", + "address": "2301 Cottman Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.047867, + "longitude": -75.059406, + "stars": 1.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-4:0", + "Saturday": "9:0-4:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "UgmNVN29KpOvzwwdUpTgbA", + "name": "Beer Cakes Philly", + "address": "517 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421864, + "longitude": -75.1505651, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Bakeries", + "hours": { + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "_evTKuGvzfQJzDlnf6FMdQ", + "name": "Green Line Cafe", + "address": "1650 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9546817, + "longitude": -75.1677625, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-14:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "BFyfkA4u8tmSIvoZmEN00Q", + "name": "Bentoulis Pizza", + "address": "1226 E Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0106236, + "longitude": -75.102975, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "'no'", + "HasTV": "False", + "BikeParking": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': None}", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants, American (Traditional), Italian", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "JFjEZFxZwBQx7DkmqzCk6A", + "name": "4 Fathers Philadelphia", + "address": "319 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504238, + "longitude": -75.1462103, + "stars": 3.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "GoodForKids": "False", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Music": "{}", + "RestaurantsTableService": "True", + "CoatCheck": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True" + }, + "categories": "Bars, Restaurants, American (New), Beer, Wine & Spirits, Food, Nightlife", + "hours": { + "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": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "50xXV9yxwkbcIcIb19X6vw", + "name": "Excel Medical Center", + "address": "521 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9705468, + "longitude": -75.1459806, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Family Practice, Internal Medicine, Surgeons, Doctors, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "nwpt_kMoqaQXHgRH67UWyg", + "name": "Swallow", + "address": "1030 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671988, + "longitude": -75.1410133, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "IhtoO_V7a9iNOew2cszvZQ", + "name": "Nori Sushi", + "address": "1636 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440412, + "longitude": -75.1700197, + "stars": 4.0, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "HasTV": "False", + "Corkage": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "cOKIKCLuUiWMUIb6Fp5N4w", + "name": "Original Village Pizza", + "address": "1006 Sandmeyer Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.107781, + "longitude": -75.036849, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "h2MaP8_ZJ3HqsgSPLeQNaw", + "name": "Evan's Pizza", + "address": "4311 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9540358, + "longitude": -75.2097583, + "stars": 3.0, + "review_count": 122, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "WiFi": "'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "E9pmORNtyX53ZLWEZx4N-w", + "name": "Tay's Soul Food", + "address": "901 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0322054, + "longitude": -75.0915367, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "Monday": "14:0-22:0", + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "14:0-23:0", + "Saturday": "14:0-23:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "bbanucGYOlGocn5HMioN5A", + "name": "The Packard Motor Car Building", + "address": "The Packard Motor Car Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9586737, + "longitude": -75.1620351, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "s9iwGRuF3MubGbFiuthmzA", + "name": "The Computer Fixer", + "address": "3944 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553943, + "longitude": -75.2021122, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Qznis2luMOIAnPoTmeIsNw", + "name": "East South Asian Cuisine", + "address": "647 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9192284429, + "longitude": -75.1589009911, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Asian Fusion, Cambodian, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "wWTeWMAhnHBSENOHxuz5iA", + "name": "dRemodeling", + "address": "7709 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.052239, + "longitude": -75.2358984, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Interior Design, Contractors, Home & Garden, Home Services, Shopping, Kitchen & Bath, Cabinetry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "UTVvCIMgSAbUx2stCRAJzQ", + "name": "Happy Sunshine Food Truck", + "address": "33RD And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9608733246, + "longitude": -75.1890082005, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Food Trucks, Street Vendors", + "hours": { + "Monday": "6:30-16:0", + "Tuesday": "6:30-16:0", + "Wednesday": "6:30-16:0", + "Thursday": "6:30-16:0", + "Friday": "6:30-16:0", + "Saturday": "7:0-15:0" + } + }, + { + "business_id": "SaUfATQQEIy1_d3d6CcKMw", + "name": "Christopher Baker Realtorยฎ - Coldwell Banker Preferred", + "address": "325 Chestnut St, Ste 1300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Agents, Real Estate, Real Estate Services", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "R7ph4P-3kc6Y545W4Cb1dA", + "name": "J Davis Printing", + "address": "7109 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0448138089, + "longitude": -75.2305735602, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Local Services, Printing Services, Graphic Design", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "tqfNtRsR1FJewqjcaD3mTw", + "name": "Penn Center Beauty Supply", + "address": "3 Penn Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95129, + "longitude": -75.162841, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "None", + "BikeParking": "True" + }, + "categories": "Wigs, Jewelry, Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:30" + } + }, + { + "business_id": "z3vQl4fABRCMe2x5_BjIfQ", + "name": "Skin Palette", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Skin Care, Beauty & Spas, Tanning, Spray Tanning", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "-qpFT-RgBE2QXVcSjq57lQ", + "name": "Spanish Island Restaurant", + "address": "6539 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0348997406, + "longitude": -75.0662507315, + "stars": 3.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BikeParking": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Restaurants, Spanish", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "SX8nc0jRY2zNF0uAWMCosA", + "name": "Dooey's Road", + "address": "2636 E Ann St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.981656, + "longitude": -75.1090849, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Food, Nightlife, Bars, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "DVcUOGr69wMY8-8n32KqsQ", + "name": "Audrey's Caribbean Kitchen", + "address": "7169 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0638853, + "longitude": -75.1524061, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "CJZbAeev7m4Ez414gqrU1g", + "name": "The Granary", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609219, + "longitude": -75.1706494, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "r0v7afVT1OHM6y_52xFJ2A", + "name": "Express", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951316, + "longitude": -75.16766, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Men's Clothing, Women's Clothing, Accessories, Shopping", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "kxkYTD1bslb5PsRwJknZPQ", + "name": "Chocolate City Hair Studio & Day Spa", + "address": "6217-19 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.927952, + "longitude": -75.231193, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Day Spas, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "12:0-16:0", + "Wednesday": "10:0-18:45", + "Thursday": "10:0-18:45", + "Friday": "10:0-18:45", + "Saturday": "10:0-16:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "_XM7-X5Lc-e_T1S71ri-GA", + "name": "Zhong Gang Bakery", + "address": "127 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9542944, + "longitude": -75.155929, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Food, Bakeries, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:30-15:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0", + "Saturday": "6:30-16:0", + "Sunday": "6:30-16:0" + } + }, + { + "business_id": "-54X2p-t4_toIoem4k_SvA", + "name": "Keystone Health Plan East Hmo Member Services", + "address": "1901 Market St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953758, + "longitude": -75.1718208, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Health Insurance Offices", + "hours": null + }, + { + "business_id": "ySbvdb9W5_Y5-T-LXGALOA", + "name": "East Falls Cleaners", + "address": "4035 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007874, + "longitude": -75.189284, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Sewing & Alterations, Dry Cleaning, Laundry Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "rnIvR9CYTr6mIe4BthsaMw", + "name": "Federal Reserve Bank of Philadelphia", + "address": "10 N Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9533258785, + "longitude": -75.1506866321, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:30-16:30", + "Tuesday": "9:30-16:30", + "Wednesday": "9:30-16:30", + "Thursday": "9:30-16:30", + "Friday": "9:30-16:30" + } + }, + { + "business_id": "-VH4B5o1sjZueC6go9FB1g", + "name": "Dorsey's", + "address": "500 Stevens Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8730203, + "longitude": -75.2747937, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "GoodForDancing": "False", + "BikeParking": "False", + "HasTV": "True", + "HappyHour": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Bars, American (New), Lounges, Nightlife", + "hours": null + }, + { + "business_id": "vtSisxaozZ7HWpBl_W7VaQ", + "name": "Time", + "address": "1315 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500001533, + "longitude": -75.1625513634, + "stars": 4.0, + "review_count": 565, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True" + }, + "categories": "American (New), Bars, Nightlife, Cocktail Bars, Arts & Entertainment, Lounges, Event Planning & Services, Venues & Event Spaces, Restaurants, Music Venues", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "R0yS7JKOouL5_sHZhK_CKw", + "name": "Ross Dress for Less", + "address": "2800 Fox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.008727, + "longitude": -75.176519, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Men's Clothing, Discount Store, Home & Garden, Shopping, Women's Clothing, Home Decor, Department Stores, Fashion", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "TspDezwYjRIlEPygYlDZeg", + "name": "Zanzibar Blue", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491834, + "longitude": -75.1647772, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "U5RKOpCrSDa2s1C_d8Uhng", + "name": "M S Mart", + "address": "222 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562088078, + "longitude": -75.1559177041, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Skin Care", + "hours": null + }, + { + "business_id": "0OVkfxmZg637nt-A5URM2Q", + "name": "AMC DINE-IN Fashion District 8", + "address": "1001 Market St, Ste 3050", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9519835, + "longitude": -75.1571648, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": null, + "categories": "Cinema, Arts & Entertainment", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "iujthokh-GWKGbRuAvaAQA", + "name": "iGenius", + "address": "2826 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0434977, + "longitude": -75.0530259, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shopping, Electronics Repair, IT Services & Computer Repair, Mobile Phone Accessories, Mobile Phone Repair", + "hours": { + "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-18:0" + } + }, + { + "business_id": "Xd4zuMFPSWcCsOQDXJBzWg", + "name": "Siani's Salvage", + "address": "3209 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 40.0015802, + "longitude": -75.1480851, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "FfIW_oKFGHJokwcdpu_Ijw", + "name": "Sugar Philly", + "address": "4409 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261433, + "longitude": -75.225026, + "stars": 4.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Macarons, Specialty Food, Food, Bakeries, Desserts", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "XoWuFNzK_1THFPevPjNZTw", + "name": "Healthy Bites to Go", + "address": "2521 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9425207, + "longitude": -75.1852682, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Do-It-Yourself Food, Restaurants, Caterers, Breakfast & Brunch, Event Planning & Services, Grocery, Food Delivery Services, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "goyOq9YY_IeKINMppe9Pqw", + "name": "Sweet Jane Vintage", + "address": "1820 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.927327, + "longitude": -75.166704, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Fashion, Shopping, Books, Mags, Music & Video, Used, Vintage & Consignment", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "LiHdRXlcj0GDm_e97oiwKw", + "name": "Pure Fare", + "address": "224 South Broad Street, Floor 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486228, + "longitude": -75.1647623, + "stars": 3.5, + "review_count": 225, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HasTV": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Sandwiches, Breakfast & Brunch, Food, Gluten-Free, Restaurants, American (New), Street Vendors, Soup, Coffee & Tea", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-18:0", + "Sunday": "7:30-18:0" + } + }, + { + "business_id": "OdHLRVHhMvrFHK0cGj4nCg", + "name": "Le Baobab", + "address": "5353 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9367524, + "longitude": -75.2188143, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "African, Restaurants", + "hours": { + "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": "11:0-1:0" + } + }, + { + "business_id": "eA3kfdDTOPAT3NfRhKOtiQ", + "name": "Romano's Catering", + "address": "1523 E Wingohocking St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0146878, + "longitude": -75.0958355, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Planning, Event Planning & Services, Venues & Event Spaces, Caterers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "hX_8ZUmIqWFWzjdiPrf23w", + "name": "Termini Bros Bakery", + "address": "1523 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9297933, + "longitude": -75.1580422, + "stars": 4.5, + "review_count": 380, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Bakeries, Restaurants, Food, Desserts", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "gDJJDfhnUSUNkVFlpPx9dw", + "name": "NFL Draft In Philadelphia", + "address": "2451 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647150453, + "longitude": -75.1797831646, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Professional Sports Teams", + "hours": null + }, + { + "business_id": "LNKcNCo6gMjEPggKAN8uTw", + "name": "Darren Essen Locksmith", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "T-W7Zn6hd3ChwseyccgZDg", + "name": "Baril", + "address": "267 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948253075, + "longitude": -75.1726286252, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "True", + "GoodForDancing": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "False" + }, + "categories": "Wine Bars, French, Nightlife, Bars, American (New), Restaurants", + "hours": { + "Tuesday": "16:30-2:0", + "Wednesday": "16:30-2:0", + "Thursday": "16:30-2:0", + "Friday": "16:30-2:0", + "Saturday": "16:30-2:0", + "Sunday": "16:30-2:0" + } + }, + { + "business_id": "VG1RKFwh_F8KX38Idnsy8g", + "name": "Liberty Pizza and Grill", + "address": "717 N 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644213, + "longitude": -75.1491314, + "stars": 2.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False" + }, + "categories": "Pizza, Seafood, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "9:30-23:0", + "Tuesday": "9:30-23:0", + "Wednesday": "9:30-23:0", + "Thursday": "9:30-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "AqX_5srdyAS1tNiqC3mDvg", + "name": "Noche", + "address": "1901 Chestnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952089, + "longitude": -75.1719899, + "stars": 3.0, + "review_count": 109, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Pizza, Restaurants, Nightlife, Lounges, Mexican, Mediterranean, Bars, American (New), Tapas/Small Plates, Italian", + "hours": { + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "LiENf54-IvO7aSSI_-j_Qg", + "name": "Bierstube German Tavern", + "address": "206 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498892802, + "longitude": -75.144053993, + "stars": 3.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "German, Nightlife, Restaurants, American (New), Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "jeYFaeEOxvbWKDTZMhKIFw", + "name": "Stephanie Nolt Photography", + "address": "261 East High St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0429777, + "longitude": -75.1744903, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Session Photography, Event Photography, Photographers", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "5IAssDyBqi9EQ_5sz5PZzg", + "name": "Ralph & Rickey's Pizza", + "address": "2700 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9151741, + "longitude": -75.1600788, + "stars": 3.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'beer_and_wine'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza, Cheesesteaks", + "hours": null + }, + { + "business_id": "jSMqQraH0LOipwu8Z3Srqg", + "name": "Sit & Spin Records", + "address": "1346 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9319244, + "longitude": -75.1595307, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vinyl Records, Shopping, Books, Mags, Music & Video, Music & DVDs", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "UzOO6YK3KfEotDGqjZvKzA", + "name": "Advanced Plumbing, Heating & Drain Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Plumbing, Home Services, Contractors, Heating & Air Conditioning/HVAC, Water Heater Installation/Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-22:0", + "Wednesday": "7:30-22:0", + "Thursday": "7:30-22:0", + "Friday": "7:30-22:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "mEXMu50bsQsMQcwmKXafqg", + "name": "A1 Salon", + "address": "11 Frankin Mill Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0861452, + "longitude": -74.9681136, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Hair Salons, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "st57zR7LGWsv8zIoOU5rkQ", + "name": "Sally's Flowers", + "address": "7944 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0756028, + "longitude": -75.08516, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Flowers & Gifts, Florists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "JAeJ7ziCPs64JlowBQyK_w", + "name": "Milk + Sugar", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Food Trucks, Bakeries, Caterers, Food, Event Planning & Services, Desserts", + "hours": null + }, + { + "business_id": "dGaidaNAdxm_leuUqYHNog", + "name": "The Six Pack Store", + "address": "7015 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0408875, + "longitude": -75.0572588, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "Fzd22oK4wFqGTU1BmMlSGw", + "name": "Mama's Wellness Joint", + "address": "1100 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446906, + "longitude": -75.159942, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Yoga, Fitness & Instruction, Massage Therapy, Active Life", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "-OPowcQMNgdjzofWhD9uvw", + "name": "Chinese Tai Chi Center", + "address": "212 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497349, + "longitude": -75.144266, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Massage Therapy, Health & Medical, Massage, Beauty & Spas, Occupational Therapy", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "fGC3F9m39I7TEvgrb3KQQw", + "name": "Cafe Nola", + "address": "414 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427445, + "longitude": -75.1454802, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "True", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Cajun/Creole", + "hours": null + }, + { + "business_id": "iyKFhga8A_KoHomOdaQC_w", + "name": "Core Inspection Group", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Inspectors, Home Services, Real Estate, Real Estate Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "54q7tvEh92SREvpgSSBSnw", + "name": "Palmera Coffee", + "address": "1140 Shackamaxon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9687745, + "longitude": -75.13376, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False" + }, + "categories": "Sandwiches, Restaurants, Coffee & Tea, Food, Vegetarian", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0" + } + }, + { + "business_id": "DRMEopD9Td8OoDk-JWm1Rw", + "name": "Xi'an Sizzling Woks", + "address": "902 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534173637, + "longitude": -75.1549591087, + "stars": 3.5, + "review_count": 215, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BYOB": "True", + "Corkage": "False" + }, + "categories": "Noodles, Diners, Restaurants, Chinese, Seafood, Soup", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "XyooQXUzZPRm_cJtVt8euQ", + "name": "Roxborough Auto Service", + "address": "4042 Mitchell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0256355, + "longitude": -75.2109394, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0" + } + }, + { + "business_id": "SQ5MGbrVvmI6aC9HvEVFVw", + "name": "Niji Sushi House", + "address": "522 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942275, + "longitude": -75.1509279, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "VCTI7doVpU094lugVBP_DA", + "name": "Boston Market", + "address": "31 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9217543725, + "longitude": -75.1462794724, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Ambience": "None", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Caterers, Comfort Food, American (Traditional), Event Planning & Services, Restaurants, Chicken Shop, Sandwiches", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "OSZBQXRzoW2qNkKzUWRuug", + "name": "Hook & Master", + "address": "1361 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.972311, + "longitude": -75.1387015, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Seafood, Bars, Pizza, Restaurants, Tiki Bars", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "s-3wrVMDgwj-Ts-y4BpG3g", + "name": "Barefoot Doctor Community Acupuncture Clinic", + "address": "618 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9713796, + "longitude": -75.1262941, + "stars": 5.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "9:0-13:0", + "Friday": "15:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "ZHYOgSeOUaJCy0PQ5tig-w", + "name": "Community College of Philadelphia", + "address": "1700 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962937, + "longitude": -75.166508, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": null, + "categories": "Education, Colleges & Universities", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "9-tZDrMjJYBbpCJoU3WXAQ", + "name": "Indian Restaurant", + "address": "1634 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440532, + "longitude": -75.1699635, + "stars": 3.5, + "review_count": 328, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "None", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "wYJxaGAGhSaAf_6UG7bD9g", + "name": "Downey's Restaurant", + "address": "526 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941126, + "longitude": -75.1441433, + "stars": 2.0, + "review_count": 152, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "y4VFp6qk_EFgNy9yKFlj3Q", + "name": "Moustaki Authentic Gyros", + "address": "161 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957553, + "longitude": -75.17403, + "stars": 4.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BikeParking": "True", + "Caters": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "None", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Mediterranean, Sandwiches, Breakfast & Brunch, Restaurants, Greek", + "hours": { + "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" + } + }, + { + "business_id": "wX-P6NJ6gHt28Xej5yY4nw", + "name": "Walmart Supercenter", + "address": "1 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0856324, + "longitude": -74.9677851, + "stars": 2.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Mobile Phones, Grocery, Discount Store, Department Stores, Food, Fashion, Shopping, Drugstores", + "hours": null + }, + { + "business_id": "6OJgPvJKM8RzEW_IsZsDNg", + "name": "Carlton Hair", + "address": "1228 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431152344, + "longitude": -75.1626663208, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "2O6daloCkf6fYhSTVIR9gw", + "name": "University of Pennsylvania", + "address": "3451 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533837, + "longitude": -75.1938205, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": null, + "categories": "Arts & Entertainment, General Dentistry, Health & Medical, Colleges & Universities, Pets, Performing Arts, Education, Veterinarians, Dentists", + "hours": null + }, + { + "business_id": "VRDrwPyOi1va70ckee7IaA", + "name": "Wawa Food Markets", + "address": "226 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94889, + "longitude": -75.173129, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Convenience Stores", + "hours": null + }, + { + "business_id": "U8dDDwrFZZ6VyNaWvv5EoQ", + "name": "Al's Auto Clinic", + "address": "150 W Thompson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.970543, + "longitude": -75.137769, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "YxQUHb9b4mREta5_Q012iA", + "name": "Kurant Brew & Brew", + "address": "436 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9706454592, + "longitude": -75.1293183441, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BikeParking": "True", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Smoking": "u'no'" + }, + "categories": "Cideries, Cocktail Bars, Nightlife, Food, Coffee & Tea, Bars", + "hours": { + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "wSuEwNNOTSH8LJcH1PJAYg", + "name": "Mina's World", + "address": "511 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9515981, + "longitude": -75.2263812, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Caters": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "HasTV": "False", + "OutdoorSeating": "False" + }, + "categories": "Bakeries, Vegan, Coffee & Tea, Food, Cafes, Restaurants", + "hours": { + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "CVwyghKKXFyWWQiI3ovaHQ", + "name": "Herman Realty Group", + "address": "4019 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533082, + "longitude": -75.2038049, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "O0jIkgflIoU-PYNydIuMeQ", + "name": "13 Restaurant", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952714, + "longitude": -75.160534, + "stars": 3.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True" + }, + "categories": "American (New), Nightlife, American (Traditional), Restaurants, Buffets, Bars, Steakhouses", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-22:0", + "Sunday": "6:30-22:0" + } + }, + { + "business_id": "OhSaEeJes7JLtk3MGMXXmg", + "name": "Maoz Vegetarian", + "address": "1115 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490546, + "longitude": -75.1597386, + "stars": 4.0, + "review_count": 225, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Vegetarian, Juice Bars & Smoothies, Middle Eastern, Restaurants, Food, Caterers, Event Planning & Services", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "FKK5ucMZVKr6qdU_SnUEuA", + "name": "Josh Bresler, DMD", + "address": "6801 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.042549, + "longitude": -75.226066, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Pediatric Dentists, Orthodontists, Dentists", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "10:0-19:0", + "Friday": "8:30-17:30", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "z9yUhsLHuqGWtods-8kibA", + "name": "Ashoka Palace", + "address": "38 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952362, + "longitude": -75.172065, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False" + }, + "categories": "Indian, Restaurants, Pakistani", + "hours": null + }, + { + "business_id": "dHG2xxIN5KDfoMFWpUuRQg", + "name": "Jim's Wholesale & Retail Soft Pretzel Bakery", + "address": "1890 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1115429, + "longitude": -75.0020581, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bakeries, Professional Services, Wholesalers, Food", + "hours": null + }, + { + "business_id": "E2pfdKBpou7ZdIBxyZo1PQ", + "name": "Ted's Pizza Express", + "address": "3741 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9603356, + "longitude": -75.1967328, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "34XCXNeK8Vgc954dl06vtA", + "name": "Wingstop", + "address": "2920 Roberts Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0106756, + "longitude": -75.1770646, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chicken Wings, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "MZAn29JqIF-qAdJU8sp2nA", + "name": "JP Tee's", + "address": "2930 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9797491, + "longitude": -75.1080385, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Local Services, Fashion, Men's Clothing, Screen Printing/T-Shirt Printing, Shopping", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "0IheZIsRS5tejvxocP18mQ", + "name": "NY Gyro Lunch", + "address": "1300 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9799378, + "longitude": -75.1554021, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Halal, Food Stands, Restaurants, Middle Eastern", + "hours": null + }, + { + "business_id": "B_npHzpQX8Tq1AQWbOXAMQ", + "name": "Chinatown", + "address": "North 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9768041498, + "longitude": -75.1544603971, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "j2ix9c4vxxoRgS_U6IBLvQ", + "name": "7 Boys Cafe", + "address": "5717 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9331233, + "longitude": -75.2239881, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "uDd4gRtYBEgAVmahTHKVWg", + "name": "D & D Thrift Store", + "address": "5456 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9575452, + "longitude": -75.2313314, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Thrift Stores", + "hours": null + }, + { + "business_id": "XaBpAWmqE-krpsYWz1GPJA", + "name": "Cedar Park Cafe", + "address": "2035 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9865012615, + "longitude": -75.2477756353, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "O2b7oDHHcP10zjcLy744Bg", + "name": "Visio Eyecare", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9371927, + "longitude": -75.1615058, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Eyewear & Opticians, Laser Eye Surgery/Lasik, Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "aMfVQdVbKJnZwdf-c1WNcQ", + "name": "Cosi", + "address": "1720 Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486928274, + "longitude": -75.1607324348, + "stars": 3.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "Caters": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Coffee & Tea, Nightlife, Sandwiches, Food, Bars", + "hours": { + "Monday": "6:30-23:0", + "Tuesday": "6:30-23:0", + "Wednesday": "6:30-23:0", + "Thursday": "6:30-23:0", + "Friday": "6:30-23:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "fJQzUesrvvoMUkjQBNxc6g", + "name": "Nail Spa Bar", + "address": "1807 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95192, + "longitude": -75.170621, + "stars": 3.5, + "review_count": 281, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Hair Removal, Eyelash Service, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "BHCR4ixknwzdB8EFiA6mbA", + "name": "Feast Your Eyes", + "address": "1750 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766436, + "longitude": -75.1342432, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers, Food Delivery Services, Food, Party & Event Planning", + "hours": null + }, + { + "business_id": "OveETXqo3YtPbxyA6MmNwg", + "name": "Young's Cleaners", + "address": "1106 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428392, + "longitude": -75.1605127, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "NEa3QfKlbLI-BFh9_DCPzw", + "name": "Chewy's Food Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591692932, + "longitude": -75.1984187251, + "stars": 4.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': True}" + }, + "categories": "American (New), American (Traditional), Restaurants, Food Stands, Food, Food Trucks, Street Vendors", + "hours": null + }, + { + "business_id": "6ZbW3BKaDZLriuOwCJY4xA", + "name": "Lawall Harry J & Son", + "address": "8028 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0420851, + "longitude": -75.027048, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Medical Supplies", + "hours": null + }, + { + "business_id": "Pf8c5eSvvSKgjqB53y82Mw", + "name": "US Post Office", + "address": "2955 Market St Lbby A, Lobby A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952781287, + "longitude": -75.1653073307, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Post Offices, Local Services, Public Services & Government", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "FSOGWOkjr_QI3X-2qmhSrA", + "name": "Pat's Auto Tags", + "address": "2536 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9860647, + "longitude": -75.1045443, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "eO_P3388eR4RGThdKfijWw", + "name": "Wax Downtown", + "address": "740 Sansom St, Ste 505 F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485785, + "longitude": -75.1539429, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "ByAppointmentOnly": "True" + }, + "categories": "Skin Care, Estheticians, Beauty & Spas, Waxing, Hair Removal", + "hours": { + "Wednesday": "10:0-12:0", + "Thursday": "12:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:30-13:30" + } + }, + { + "business_id": "73iEGnaQuHDMS51UAqP8ZA", + "name": "Diamond Pizza", + "address": "1700 N Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.985272, + "longitude": -75.161538, + "stars": 3.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'no'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Food Delivery Services, Pasta Shops, Food, Chicken Wings, Restaurants, Pizza, Specialty Food, Cheesesteaks, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:15", + "Wednesday": "11:0-22:15", + "Thursday": "11:0-22:15", + "Friday": "11:0-23:15", + "Saturday": "11:0-23:15", + "Sunday": "12:0-22:15" + } + }, + { + "business_id": "Ke7FEXPJc6q54_DvVg995g", + "name": "Hok Heng", + "address": "1716 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9791698, + "longitude": -75.1633686, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Chicken Wings, Restaurants, Chinese", + "hours": { + "Monday": "12:0-3:0", + "Tuesday": "12:0-3:0", + "Wednesday": "12:0-3:0", + "Thursday": "12:0-3:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "wSu5RMXnCjXGLvU4DEi5Ow", + "name": "Hudson Hardwood Floors", + "address": "410 Shurs Ln, Unit A303", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0260978, + "longitude": -75.2127299, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Refinishing Services, Flooring, Contractors, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "geEGL5YODdRIoIYfFcxVPA", + "name": "Bridgid's", + "address": "726 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968481, + "longitude": -75.176917, + "stars": 4.0, + "review_count": 244, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "American (New), Wine Bars, Sandwiches, Nightlife, Restaurants, Pubs, Gastropubs, Bars, Italian", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "TaZ1WAUCgQzWLv4OJ-wwsg", + "name": "RMA of Philadelphia", + "address": "1015 Chestnut St, Fl 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950184, + "longitude": -75.1574491, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Doctors, Obstetricians & Gynecologists, Health & Medical, Fertility", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-15:30" + } + }, + { + "business_id": "peeXG1Ra-DClPQv14jvKvg", + "name": "Square on Square", + "address": "274 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948333, + "longitude": -75.174521, + "stars": 3.5, + "review_count": 246, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True" + }, + "categories": "Seafood, Chinese, Restaurants, Tex-Mex, Asian Fusion, Sushi Bars, American (New), American (Traditional), Vegetarian, Italian", + "hours": { + "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:45", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "LzqBqmZY8JVV1iNDkBCiWg", + "name": "10Th Street Hardware Ace", + "address": "257 S 10Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466979, + "longitude": -75.1575707, + "stars": 4.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "bf2aAa_rP5B-QeOK1qybXA", + "name": "Rhawnhurst Animal Hospital", + "address": "7905 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.05687, + "longitude": -75.052804, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "l13B2broZhTkhKZRRS87OA", + "name": "George's Burgers, Steaks and Shakes", + "address": "1817 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0377140603, + "longitude": -75.0387135521, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "DriveThru": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Food, Restaurants, Cheesesteaks, Burgers, Sandwiches", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "y6BfLt9Gvrq2JsJvjkjdIQ", + "name": "ZARA HALAL GRILL", + "address": "1224 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084964279, + "longitude": -74.962529343, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Corkage": "False", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True" + }, + "categories": "Halal, Restaurants, Middle Eastern, Mediterranean", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "RL1mug4X2HghyPZwkd8lSA", + "name": "Midnight Iris", + "address": "1708 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945245, + "longitude": -75.170511, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BYOB": "False", + "HasTV": "True", + "Smoking": "u'outdoor'", + "GoodForKids": "False", + "Corkage": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "WiFi": "'free'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "DriveThru": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Nightlife, Restaurants, American (New), Bars", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "Bx0qUP8GYz2WOElBvwDNVQ", + "name": "Passport Health", + "address": "1500 Walnut St, Ste 305", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Medical Transportation, Medical Centers, Hotels & Travel", + "hours": null + }, + { + "business_id": "gyOiiM7g2ylYK_WT5vLFyw", + "name": "Wawa", + "address": "9377 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0878683379, + "longitude": -75.0441591069, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Sandwiches, Coffee & Tea, Convenience Stores, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "q3mSq7mq8fBi_PBQQWDUDA", + "name": "IM Laundromat", + "address": "526 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421565339, + "longitude": -75.1507697578, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Laundromat, Local Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "XG5-bigWGG_IFgbCvVs7xw", + "name": "Mubarak Shawarma", + "address": "225 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537711094, + "longitude": -75.2121602744, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Restaurants, African, Ethiopian, Coffee Roasteries", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "mFOCLmmLVeVB07v8g0B98Q", + "name": "Apex Accounting Tax & Insurance", + "address": "2500 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9187746, + "longitude": -75.1672904, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Payroll Services, Insurance, Professional Services, Financial Services, Accountants, Tax Services, Financial Advising", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "bD0ipeLR93L_p-NL4U6w1g", + "name": "El Tlaloc", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food Trucks, Restaurants, Caterers, Event Planning & Services, Street Vendors, Food, Mexican", + "hours": { + "Thursday": "20:0-0:0", + "Friday": "20:0-0:0", + "Saturday": "20:0-0:0" + } + }, + { + "business_id": "ePr10QLxW-vFVJBJ2WQKvg", + "name": "illexotics", + "address": "1724 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928225, + "longitude": -75.1656535, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nurseries & Gardening, Shopping, Home Decor, Home & Garden, Pets, Pet Stores, Reptile Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "8P8HIysyyGbG8_94cG1Jyg", + "name": "Entree BYOB", + "address": "1608 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440110213, + "longitude": -75.1691403878, + "stars": 4.5, + "review_count": 408, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "False", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': True, u'saturday': False, u'sunday': False}", + "CoatCheck": "False", + "ByAppointmentOnly": "True", + "GoodForDancing": "False", + "HasTV": "True", + "WheelchairAccessible": "True" + }, + "categories": "American (New), Bars, Wine Bars, Italian, Restaurants, Comfort Food, Seafood, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "rKggQN5KT6AtOlmuJ8NAZQ", + "name": "Cook and Shaker", + "address": "2301 E Albert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9826256, + "longitude": -75.1205402, + "stars": 4.5, + "review_count": 171, + "is_open": 1, + "attributes": { + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Nightlife, Comfort Food, Bars, Cocktail Bars, American (New)", + "hours": { + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "yZYhdTn8EDQeE6mYBY5vfQ", + "name": "Lavish", + "address": "4308 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.967741, + "longitude": -75.2101074, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': None}", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Tacos, Mexican, Restaurants", + "hours": null + }, + { + "business_id": "hvr1FhvVqDKkDCoS0GKvyQ", + "name": "Insomnia Cookies", + "address": "135 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494557, + "longitude": -75.1619979, + "stars": 4.0, + "review_count": 191, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "DogsAllowed": "False", + "WiFi": "u'no'" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Bakeries, Food, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "b8h0IxEnXRKJSCk2l7wfmA", + "name": "Faheem's Hands Of Precision", + "address": "20TH W Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9255027771, + "longitude": -75.179506, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "aXr74YWu67vUtWsbmICbag", + "name": "Rose Tattoo Cafe", + "address": "1847 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9607926479, + "longitude": -75.1698416252, + "stars": 4.0, + "review_count": 285, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Wine Bars, Desserts, Bars, Nightlife, American (Traditional), Food, American (New), Restaurants, Salad", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "yDS1XXAx43eHuONEy0SS4g", + "name": "Adventurers Mini Golf", + "address": "38 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9200584, + "longitude": -75.1473341, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True" + }, + "categories": "Arcades, Event Planning & Services, Venues & Event Spaces, Mini Golf, Arts & Entertainment, Active Life", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2evBYCbF_ygBW2Rl8rNJTw", + "name": "Lime Organic Cleaner", + "address": "1357 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932059, + "longitude": -75.1605847, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "gh81r-SZodvcty5QDaLyhg", + "name": "Curry Bird", + "address": "4604 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9441569667, + "longitude": -75.2098240703, + "stars": 3.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': True, 'casual': None}", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Thai", + "hours": { + "Monday": "15:0-1:0", + "Tuesday": "15:0-1:0", + "Wednesday": "15:0-1:0", + "Thursday": "15:0-1:0", + "Friday": "15:0-1:0", + "Saturday": "15:0-1:0", + "Sunday": "15:0-1:0" + } + }, + { + "business_id": "4UXA9y578vG94DIfoxLErQ", + "name": "Ateethi Locust", + "address": "930 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472059, + "longitude": -75.1572515, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "BYOB": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Indian", + "hours": { + "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" + } + }, + { + "business_id": "cSaoPFiZUzaTgnxM91KgXg", + "name": "All The Way Live", + "address": "6108 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0406391, + "longitude": -75.179048, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "'free'", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Vegan, Food Delivery Services", + "hours": { + "Thursday": "12:0-19:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "g3xvwZPyW95KThnc7tN79w", + "name": "Hajimaru Fishtown", + "address": "200 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9688731, + "longitude": -75.133491, + "stars": 4.5, + "review_count": 140, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BikeParking": "True", + "BYOB": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Japanese, Ramen", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "IkxaqBbo-cDZTpkdVvdUXg", + "name": "Philadelphia Flower Co.", + "address": "12343 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0960024, + "longitude": -74.9747663, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Florists, Flowers & Gifts, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "vcQeRiP1BCffzn73adUcJA", + "name": "Everclean Commercial Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19101", + "latitude": 39.95227, + "longitude": -75.1625311, + "stars": 1.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Home Services, Carpet Cleaning, Office Cleaning, Local Services, Home Cleaning", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "8U0qdUYe3_nG7nMug0-YAg", + "name": "Morris Refuge", + "address": "1242 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9441562, + "longitude": -75.1627693, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Animal Shelters, Pets", + "hours": null + }, + { + "business_id": "zxzDDlXdi1PmEudzemifRA", + "name": "St James Cleaners", + "address": "218 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947479, + "longitude": -75.154519, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "wu6SSj2rw9Cc9frUmexEng", + "name": "943", + "address": "943 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9381888, + "longitude": -75.1579923, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Restaurants, Argentine, Italian", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "azXvU8MUb4I6SkmPLpzjoA", + "name": "Creations Unisex Salon and Spa", + "address": "6632 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.031433, + "longitude": -75.054243, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0" + } + }, + { + "business_id": "p-MSh95si_sDdih94gyKuw", + "name": "Forsythia", + "address": "233 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487067926, + "longitude": -75.145394057, + "stars": 4.5, + "review_count": 123, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "Alcohol": "u'full_bar'", + "BYOB": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "Corkage": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, French, Modern European, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "YC5nBPPvrl2qF1vhrPHFhQ", + "name": "El Huarache Azteca", + "address": "1122-1124 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352068, + "longitude": -75.1572477, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Food, Ethnic Food, Specialty Food, Mexican", + "hours": null + }, + { + "business_id": "EJW0bbMyTGnmpALCer43AA", + "name": "Manayunk Dog Park of Pretzel Park", + "address": "4300 Silverwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255502, + "longitude": -75.2210708, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dog Parks, Active Life, Pets, Parks", + "hours": null + }, + { + "business_id": "WllnLf3kBK5lGyPoKWICXQ", + "name": "The Monkey & The Elephant", + "address": "2831 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9747335, + "longitude": -75.1829236, + "stars": 4.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Tuesday": "7:0-17:30", + "Wednesday": "7:0-17:30", + "Thursday": "7:0-17:30", + "Friday": "7:0-17:30", + "Saturday": "7:0-17:30", + "Sunday": "7:0-17:30" + } + }, + { + "business_id": "geeWmd8T39C2_cbVjmsaCA", + "name": "Pom Pom", + "address": "1425 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9729781261, + "longitude": -75.1338146254, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Vegetarian, American (Traditional), Restaurants, Vegan, Salad, Burgers", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "NaoRbCbuCwVjbmmV5ZzXiA", + "name": "Matteo Italian Food Products", + "address": "1138 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9199972, + "longitude": -75.1667435, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, Italian, Restaurants, Food", + "hours": null + }, + { + "business_id": "PeE2ybJFM4kTbPtF4R0s0Q", + "name": "Hair Gallery", + "address": "4160 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002622, + "longitude": -75.2134466, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Cosmetics & Beauty Supply, Jewelry, Fashion, Wigs, Accessories, Beauty & Spas", + "hours": { + "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-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "N_6lpdW1jhAx1EVcHJPK5g", + "name": "Franky Bradley's", + "address": "1320 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485357745, + "longitude": -75.1630648523, + "stars": 4.0, + "review_count": 215, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "Caters": "False", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "GoodForDancing": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Music Venues, American (Traditional), Bars, Arts & Entertainment, Restaurants, Nightlife", + "hours": { + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "IKOIffVmSTZj8HkJbY5D6w", + "name": "Bryn and Dane's", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493830332, + "longitude": -75.155130811, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Breakfast & Brunch, Juice Bars & Smoothies, Restaurants, Food, Acai Bowls", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "ulr3YRJDkSJ36tEQrSgUng", + "name": "Cibao Fried Chicken Restaurant", + "address": "3382 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9955238, + "longitude": -75.1057463, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "GoodForKids": "False" + }, + "categories": "Restaurants, Caribbean, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ce69k5JMl4pRF1i-hm9opA", + "name": "Cherry Blow Dry Bar", + "address": "713 Walnut St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481291, + "longitude": -75.1531928, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Makeup Artists, Hair Extensions, Hair Salons, Blow Dry/Out Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "-49SvmoGFrpZj5jmT1n4Sg", + "name": "The Wrap Shack", + "address": "142 N. 2nd Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9530747, + "longitude": -75.1431581, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "dKO6noW_4r1QbXUqegDsjg", + "name": "Pets and the City Philly", + "address": "1300 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92269, + "longitude": -75.168018, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Pet Services, Pet Groomers, Pet Sitting, Dog Walkers", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "c97s-dquA9D56fYAwA-ngg", + "name": "WFM Coffee Bar", + "address": "2101 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629749, + "longitude": -75.1742142, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "BikeParking": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Beer, Wine & Spirits, Food, Coffee Roasteries, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-17:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "ZUbyBcum99HzkLA3Z3CFQQ", + "name": "Eatible Delights Catering", + "address": "1540 Wadsworth Ave", + "city": "philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 40.079733, + "longitude": -75.172927, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "_vbXJl-NEbE6ph6Cq2-RzQ", + "name": "The Philadelphia School of Yoga & Bodywork", + "address": "2131 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9833359, + "longitude": -75.1377371, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Massage Therapy, Fitness & Instruction, Active Life, Health & Medical, Yoga", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "15:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "15:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "GhJ0L2bavp3FjOF9C9ghdA", + "name": "Pad Thai Shack", + "address": "127 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950761, + "longitude": -75.170345, + "stars": 1.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Alcohol": "'none'" + }, + "categories": "Thai, Restaurants", + "hours": null + }, + { + "business_id": "H2-IBgi37Dx9JM1SNJqY4g", + "name": "Perrys Pizzeria", + "address": "4221 Benner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0231713, + "longitude": -75.0615139, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "bEdPvL2DgIHOZs7OZQGlKQ", + "name": "Michael's California Detailing", + "address": "4436 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262284, + "longitude": -75.225914, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Wash, Auto Detailing", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "RnhLCG4N9MPy6ZRzq787Cg", + "name": "Devil's Alley Bar & Grille", + "address": "1907 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95214, + "longitude": -75.1722162, + "stars": 3.5, + "review_count": 825, + "is_open": 1, + "attributes": { + "Corkage": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Local Flavor, Nightlife, Bars, American (New), Restaurants, Breakfast & Brunch, Sports Bars, Pubs", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "LI1Bnfn0jPjkDBqv-dfnRQ", + "name": "Pulse Night Club", + "address": "1526 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502275, + "longitude": -75.1668635, + "stars": 2.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Dance Clubs, Lounges, Nightlife, Bars", + "hours": { + "Thursday": "22:30-3:0", + "Friday": "22:30-3:0", + "Saturday": "22:30-3:0", + "Sunday": "22:0-3:0" + } + }, + { + "business_id": "UK44Wjw3-OkIujTjnrqpyQ", + "name": "REMAX Premier", + "address": "130 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9527902, + "longitude": -75.1432736, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Real Estate, Commercial Real Estate, Home Services, Real Estate Agents", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "rJSLcfePsO1pdNMnauXg8A", + "name": "Kansai Japanese Cuisine", + "address": "1822 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630825, + "longitude": -75.1692673, + "stars": 4.0, + "review_count": 189, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Japanese, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "OH7EpZrKPnZwZDNKQ5S8iA", + "name": "Thai Kuu", + "address": "35 Bethlehem Pike, Ste 109A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0779684, + "longitude": -75.2083651, + "stars": 3.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "HappyHour": "False", + "Corkage": "True", + "DriveThru": "True", + "BYOB": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "HasTV": "False" + }, + "categories": "Thai, Asian Fusion, Restaurants, Soup", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "gHMUdZqJFLTGO7Lw-3h35A", + "name": "7-Eleven", + "address": "1100 South 10th St", + "city": "PHILADELPHIA", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365178, + "longitude": -75.1604358, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Convenience Stores, Food, Shopping, Gas Stations, Auto Repair, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "eQHk2EMRtkYZR6DH-xGQhA", + "name": "The Ugly American", + "address": "1100 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93249, + "longitude": -75.146176, + "stars": 3.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "HappyHour": "True" + }, + "categories": "American (New), Bars, Food, Beer, Wine & Spirits, Restaurants, Local Flavor, Nightlife, American (Traditional)", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "254xxXQMlVa9Na8iwuugpQ", + "name": "NONNO'S Gelato & Italian Ice", + "address": "12355 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0963106963, + "longitude": -74.9758663774, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Gelato", + "hours": { + "Monday": "15:0-20:0", + "Tuesday": "15:0-20:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "ZDdNEwBENLXBT3jjQD5STQ", + "name": "Giwa Korean Kitchen", + "address": "1722 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95071, + "longitude": -75.16971, + "stars": 3.5, + "review_count": 412, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HappyHour": "False", + "DogsAllowed": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Korean, Restaurants, Asian Fusion, Soup", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:30-21:0" + } + }, + { + "business_id": "FwvK-Xyi11yDeYmqmL6uSw", + "name": "Starbucks", + "address": "4040 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.007113834, + "longitude": -75.2125632763, + "stars": 2.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-21:0", + "Sunday": "5:30-22:0" + } + }, + { + "business_id": "6ZhR8G9TQcDJgILtH0xd6w", + "name": "Lincoln Pizza", + "address": "277 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0546098, + "longitude": -75.1939698, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "15:0-23:0", + "Saturday": "10:30-23:0" + } + }, + { + "business_id": "PcSiY8opJ_rdAJm1YLSGfA", + "name": "AT&T", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0631436, + "longitude": -75.2357443, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Mobile Phones", + "hours": { + "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-19:0" + } + }, + { + "business_id": "FD7gMovIYQmhdn23Iq91zQ", + "name": "Lorenzo & Sons Pizza", + "address": "305 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941596, + "longitude": -75.1478101, + "stars": 4.0, + "review_count": 657, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "WiFi": "u'no'", + "Alcohol": "'none'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Italian, Restaurants", + "hours": { + "Monday": "11:0-3:0", + "Tuesday": "11:0-3:0", + "Wednesday": "11:0-3:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-3:0" + } + }, + { + "business_id": "jA6v77xlx34i-j_RiiS6VA", + "name": "Design Within Reach", + "address": "1710 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949703, + "longitude": -75.169749, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Home & Garden, Furniture Stores, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "7KeAwV5jVU_wdR4oPpGZ6w", + "name": "CVS Optical", + "address": "6501 Harbison Ave", + "city": "PHILADELPHIA", + "state": "PA", + "postal_code": "19149", + "latitude": 40.034528, + "longitude": -75.0634393, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "DriveThru": "True" + }, + "categories": "Shopping, Drugstores, Food, Health & Medical, Convenience Stores, Pharmacy", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "9YQN8-jwI8EzvEi9F0gV6Q", + "name": "Thriveworks", + "address": "1518 Walnut St, Ste 804", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494321, + "longitude": -75.1668961, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Psychiatrists, Life Coach, Doctors, Professional Services, Counseling & Mental Health, Psychologists", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "yMpz1drhkXySohWbFpJEOQ", + "name": "Hubies Southern Style Cuisine", + "address": "4323 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9684242, + "longitude": -75.2103809, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Southern", + "hours": null + }, + { + "business_id": "2LfbIS6K7jusVVgYYFtNIA", + "name": "Hyon's Seafood & Restaurant", + "address": "5600 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9553977, + "longitude": -75.2341756, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Seafood", + "hours": { + "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" + } + }, + { + "business_id": "tkQfxEYkL-Fq3Al0hH9hKg", + "name": "The Cat Doctor", + "address": "535 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9648428484, + "longitude": -75.1741786994, + "stars": 4.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Veterinarians, Pets, Pet Services, Pet Sitting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "Lj-uBcIDSf8A48euLsoFQA", + "name": "Helen's Cleaners", + "address": "1306 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943271, + "longitude": -75.16369, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "oZXf53yjY7i-1tUHxSLayg", + "name": "Shaking Seafood", + "address": "243 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470334, + "longitude": -75.1574339, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "None", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Cajun/Creole, Restaurants, Seafood", + "hours": { + "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" + } + }, + { + "business_id": "KbzemSYcwRQ_KopAViUtzA", + "name": "We Clean Carpet", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068629, + "longitude": -75.0026972, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Carpet Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "6Xui-8o9hKngtkVmPbnNkg", + "name": "Home Genius Exteriors", + "address": "1 Winding Dr, Ste 207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0069325, + "longitude": -75.2079762, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Painters, Carpenters, Home Services, Roofing, Siding", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "kkSYxSQD3xKKKSafETpMRw", + "name": "The Chestnut Hill Cheese Shop", + "address": "8509 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0763731, + "longitude": -75.2065744, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Fruits & Veggies, Cheese Shops, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "nzyWbORYOI8NYA7cLKeENA", + "name": "The Nut Hut Saloon", + "address": "1873 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978781, + "longitude": -75.130266, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "Smoking": "u'outdoor'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "W-aDaCUUC5tMPj-ynFd23w", + "name": "El Nuevo Estilo", + "address": "4201 W 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0153125, + "longitude": -75.1371413, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists", + "hours": null + }, + { + "business_id": "XoYRjfl43dcBFTanwCuWJA", + "name": "Wan Sheng Supermarket", + "address": "917-921 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953773, + "longitude": -75.1556839, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "1RUStfReoIm_8NzWXKSbCA", + "name": "Lou Bird's", + "address": "500 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945722875, + "longitude": -75.1750066504, + "stars": 4.0, + "review_count": 161, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "3", + "CoatCheck": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': None}", + "WiFi": "u'free'", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Restaurants, Nightlife, Cocktail Bars, Bars, Breakfast & Brunch, American (New)", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Thursday": "16:0-1:30", + "Friday": "16:0-1:30", + "Saturday": "12:0-1:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "3ibADNXI0Jx29UJcQTO7jQ", + "name": "SAFE Driving School", + "address": "1802 Afton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0580175, + "longitude": -75.0649818, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Education, Specialty Schools, Driving Schools", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "Ippv_wErDDItMRwmu1de3g", + "name": "Nick's Charcoal Pit", + "address": "1242 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923904, + "longitude": -75.1674547, + "stars": 3.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "O67sNcnqhSBHVoCdMja0Ug", + "name": "East River Bank", + "address": "4341 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0102498, + "longitude": -75.1968953, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Mortgage Brokers, Financial Services, Banks & Credit Unions, Real Estate, Home Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "2cfEAFZZee8fq3Xx6yZ87w", + "name": "Starbucks", + "address": "3901 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953964, + "longitude": -75.20034, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Coffee & Tea, Food, Cafes", + "hours": { + "Monday": "5:30-20:30", + "Tuesday": "5:30-20:30", + "Wednesday": "5:30-20:30", + "Thursday": "5:30-20:30", + "Friday": "5:30-20:30", + "Saturday": "5:30-20:30", + "Sunday": "5:30-20:30" + } + }, + { + "business_id": "KftGp_AXC7FKvss-ow7jAg", + "name": "Paul's Idaho Fries", + "address": "429 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417572021, + "longitude": -75.1501998901, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Specialty Food", + "hours": null + }, + { + "business_id": "u2THoMNjQJU8eIv8AAQKTw", + "name": "Starbucks", + "address": "2401 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.974179, + "longitude": -75.120195, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:30-20:30", + "Tuesday": "5:30-20:30", + "Wednesday": "5:30-20:30", + "Thursday": "5:30-20:30", + "Friday": "5:30-20:30", + "Saturday": "5:30-20:30", + "Sunday": "5:30-20:30" + } + }, + { + "business_id": "3lgyTOyb7ouBlAQYSiOFPw", + "name": "O'Connor Pool", + "address": "2601 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.946135, + "longitude": -75.183334, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Swimming Pools", + "hours": { + "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": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "YlaS_HO1KG7dHKqaBgeFoA", + "name": "S & M Seafood", + "address": "6154 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9838456, + "longitude": -75.2451025, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Food, Seafood Markets, Seafood, Specialty Food", + "hours": null + }, + { + "business_id": "vufXnNdvRl_Y0wAj_wLzOg", + "name": "Chestnut 7", + "address": "8201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073702, + "longitude": -75.202618, + "stars": 3.0, + "review_count": 87, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "HasTV": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Pizza, American (New), Bars, Burgers, Nightlife, Pubs", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "TxYxXvC5RcRRCYR6rbJgEQ", + "name": "Aspen", + "address": "747 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687798, + "longitude": -75.1781543, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "zAxWNkDWBvgNfIwTAyCBMw", + "name": "Zio's Brick Oven Pizzeria", + "address": "111 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500908, + "longitude": -75.1617499, + "stars": 3.5, + "review_count": 193, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "WIfL5FlNJIjlN4gixWzDoQ", + "name": "H&M", + "address": "1530 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9509485, + "longitude": -75.1670638, + "stars": 3.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Children's Clothing, Women's Clothing, Fashion, Men's Clothing", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "xxL2_-oExRCwKs_Nyr0KiQ", + "name": "Fadรณ Irish Pub", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9483513654, + "longitude": -75.1666795343, + "stars": 3.5, + "review_count": 454, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Pubs, Restaurants, Bars, Nightlife, Irish, Irish Pub", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-1:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Af7NWqfoTszSyyuMRU6few", + "name": "Starbucks", + "address": "1600 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954724, + "longitude": -75.166689, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "f-UUhQPwzvvjMroMo5qqsw", + "name": "Indie Photo", + "address": "206 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9689325, + "longitude": -75.1332459, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Shopping, Printing Services, Professional Services, Photography Stores & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-14:0", + "Thursday": "10:0-14:0", + "Friday": "10:0-14:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "mqGtDoC2zgjcRZJ79iiBJA", + "name": "Joyce's Soulful Cuisine", + "address": "5934 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9601369, + "longitude": -75.2404909, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False" + }, + "categories": "Caterers, Soul Food, Chicken Wings, Event Planning & Services, Food, Salad, Restaurants", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "MxwBFQoTbNUiyv0NF9KqKw", + "name": "Marathon Pizza", + "address": "125 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296843, + "longitude": -75.228592, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "1CTNhKEqGbmG5r-sBbDoLg", + "name": "Tampopo", + "address": "104 S 21st St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518097, + "longitude": -75.1757389, + "stars": 4.0, + "review_count": 273, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Korean, Japanese", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "OnJVmUnu6ZoaA2X4K863wQ", + "name": "Philly Art Center Fairmount Location", + "address": "2333 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675993, + "longitude": -75.1765174, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Education, Specialty Schools, Art Classes, Event Planning & Services, Venues & Event Spaces, Summer Camps, Art Schools, Active Life", + "hours": null + }, + { + "business_id": "pTy5tFm9y8uzMjXhjWweFA", + "name": "Mr Joe's Cafe", + "address": "1514 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299417, + "longitude": -75.1584946, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "False", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Italian, Coffee & Tea, Restaurants, Food", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "P7f8_zKyP6uOBdj9vbQpzw", + "name": "Mikey's American Grill & Sports Bar", + "address": "3180 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536773, + "longitude": -75.1872159, + "stars": 2.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "HappyHour": "True" + }, + "categories": "Nightlife, American (Traditional), Sports Bars, Restaurants, Bars", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "EH2yDg_E61zwl-e19XTiFw", + "name": "Tuscany Ristorante", + "address": "2418 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0569781, + "longitude": -75.0478281, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "WiFi": "u'no'", + "Caters": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Mediterranean, Restaurants, Italian", + "hours": { + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-21:30", + "Saturday": "15:0-21:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "9QbyMC8G55Rf527DXm-I2w", + "name": "Happy Hour Headshot Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Photographers, Event Planning & Services, Session Photography", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "EqZhhuEpZawghU7MNazL5Q", + "name": "Studio North", + "address": "1420 Germantown Ave, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9729855, + "longitude": -75.141837, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False" + }, + "categories": "Fitness & Instruction, Health & Medical, Active Life, Trainers, Weight Loss Centers", + "hours": { + "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-18:0" + } + }, + { + "business_id": "4dsEskXvQeMu7g85LGBxJQ", + "name": "Liberty Vintage", + "address": "2212 Sepviva St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9796048, + "longitude": -75.1286788, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Motorcycle Repair, Automotive", + "hours": null + }, + { + "business_id": "KwL7F6vphwFlultFEE5SDg", + "name": "Palm Tree Market Fishtown", + "address": "1140 Shackamaxon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9687745, + "longitude": -75.13376, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, Specialty Food, Convenience Stores, Food", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "xdtJQYjoohuvzfZXiSEgRQ", + "name": "Golden Donut", + "address": "901 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388013, + "longitude": -75.1577645, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Donuts, Food", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "5:30-16:0", + "Wednesday": "5:30-16:0", + "Thursday": "5:30-16:0", + "Friday": "5:30-16:0", + "Saturday": "5:30-16:0", + "Sunday": "5:30-16:0" + } + }, + { + "business_id": "nDxRBNjEywNUd6iGRcmkzg", + "name": "Michael's Water Ice", + "address": "6188 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0354252073, + "longitude": -75.2173833103, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "0-7N3z_cb3Z1xMGDrbez6w", + "name": "Le Virtu", + "address": "1927 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926032, + "longitude": -75.1678, + "stars": 4.0, + "review_count": 389, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Caters": "False", + "WiFi": "u'no'", + "HappyHour": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "16:0-22:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "0wreSpWN2YuG4pLVDespcg", + "name": "Gul's Breakfast & Lunch Cart", + "address": "36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952932, + "longitude": -75.19483, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "French, Food Stands, Restaurants", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0", + "Saturday": "6:0-16:0" + } + }, + { + "business_id": "B_8-5zxTrGBVX4HZBdhWvA", + "name": "Foolish Waffles", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548187538, + "longitude": -75.1821353097, + "stars": 4.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "FbY5HjT_nCqfB8PiXX-fcQ", + "name": "Mattress Firm Snyder", + "address": "1944 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9215655, + "longitude": -75.1439712, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Home & Garden, Home Decor, Shopping, Mattresses, Home Services, Shades & Blinds, Furniture Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "gN-w5zqrN0-CNPy0H7BWwQ", + "name": "Open House", + "address": "107 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9501783, + "longitude": -75.1616131, + "stars": 4.0, + "review_count": 112, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home Decor, Kitchen & Bath, Home & Garden", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "U06K56fiCWYTtktwQkZ9TA", + "name": "McDonald's", + "address": "942 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951242, + "longitude": -75.15668, + "stars": 1.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": null + }, + { + "business_id": "c9YRV7jXGmE-NkqaohzgDg", + "name": "Weston Fitness", + "address": "1835 Market St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536876, + "longitude": -75.1710457, + "stars": 3.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gyms, Beauty & Spas, Trainers, Fitness & Instruction, Active Life, Massage", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-20:30", + "Saturday": "8:30-15:30", + "Sunday": "8:30-15:30" + } + }, + { + "business_id": "xb5NsCqvQw2uE5HoQyDr0g", + "name": "Stock's Bakery", + "address": "2614 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9789472091, + "longitude": -75.1153922414, + "stars": 4.5, + "review_count": 171, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food, Bakeries", + "hours": { + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "7:0-17:30" + } + }, + { + "business_id": "GZF6aC0nOhappc70jj5RJQ", + "name": "Steve Stein's Famous Deli", + "address": "1619 Grant Ave, Ste 39", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0880510602, + "longitude": -75.0376589, + "stars": 3.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Grocery, Event Planning & Services, Food, Caterers, Bakeries, Delis", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30", + "Sunday": "7:0-17:30" + } + }, + { + "business_id": "el71vYwT5M1bc6oFsBdqvQ", + "name": "Nhu Quynh Banh Mi Cafe", + "address": "1142 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936283, + "longitude": -75.161897, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": null + }, + { + "business_id": "JIBa5XxXMO2IVP_p_o1Kkg", + "name": "Xing Wang", + "address": "1844 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9408461, + "longitude": -75.1741989, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "qtyNbCXut-RQnnEQNJ9UzA", + "name": "Desi Chaat House", + "address": "501 S 42nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9496418, + "longitude": -75.2069391, + "stars": 4.0, + "review_count": 241, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'" + }, + "categories": "Indian, Food, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "LPPRHV1X9YmTdj7X5fcAag", + "name": "OpenBox Athletics", + "address": "1931 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9392697, + "longitude": -75.1757422, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Boot Camps, Interval Training Gyms, Active Life, Fitness & Instruction, Gyms, Pilates, Yoga", + "hours": { + "Monday": "5:30-20:30", + "Tuesday": "5:30-20:30", + "Wednesday": "5:30-20:30", + "Thursday": "5:30-20:30", + "Friday": "5:30-20:30", + "Saturday": "9:0-15:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "9keW-zFxaTmy6qVrEYyzoA", + "name": "Muscle Maker Grill", + "address": "1115 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491761, + "longitude": -75.159714, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Specialty Food, Health Markets, Wraps, American (New), Food", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "OMHZ1htcmFQLuTp06hLe2Q", + "name": "Phoebes BBQ", + "address": "2214 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451640668, + "longitude": -75.1791630685, + "stars": 2.5, + "review_count": 245, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False" + }, + "categories": "Barbeque, Restaurants, Buffets", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "0zJxOq0zaIilWFWR59YvfQ", + "name": "Mr Contractor", + "address": "2634 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9860612, + "longitude": -75.1236387, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Masonry/Concrete, Contractors, Home Services, Windows Installation", + "hours": { + "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" + } + }, + { + "business_id": "g482P5TcquJcLmruSl139w", + "name": "Spa Nails", + "address": "2533 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920551, + "longitude": -75.186333, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "eCFlRzJUc7Mk3bw7Sv1haQ", + "name": "First Decisions", + "address": "113 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552091, + "longitude": -75.202118, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "6lx0J27bQskQurz34ZeBSw", + "name": "Thai Xpress", + "address": "2223 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9209994, + "longitude": -75.1585669, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Food Delivery Services", + "hours": null + }, + { + "business_id": "SO8kTCSO5dP5KyaX1JHDiA", + "name": "Minute Suites", + "address": "Terminal A-B Link", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8789176098, + "longitude": -75.235748291, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BikeParking": "False", + "NoiseLevel": "u'quiet'", + "Open24Hours": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "'none'", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "True", + "Smoking": "u'no'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': None, u'validated': False}" + }, + "categories": "Travel Services, Airports, Rest Stops, Airport Lounges, Hotels & Travel, Hotels, Event Planning & Services, Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "JVZ_c3k01uAIas5B61iISg", + "name": "Hard Rock Cafe", + "address": "1113 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9520316095, + "longitude": -75.1596930614, + "stars": 3.0, + "review_count": 382, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "BikeParking": "True", + "HappyHour": "True", + "CoatCheck": "False", + "GoodForDancing": "False", + "Smoking": "u'no'", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': False}", + "NoiseLevel": "'loud'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DriveThru": "False" + }, + "categories": "Restaurants, Nightlife, Sandwiches, Music Venues, Arts & Entertainment, American (New), Cafes, Burgers, American (Traditional)", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "WHzeDa97M_eU1FEZaLJ_tw", + "name": "Wawa", + "address": "6800 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.055688, + "longitude": -75.090405, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Sandwiches, Convenience Stores, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "fneeyCOYV5-oVeQP0TACog", + "name": "Destination Dogs", + "address": "1111 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948898, + "longitude": -75.159717, + "stars": 4.5, + "review_count": 329, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "DriveThru": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "None", + "BikeParking": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}" + }, + "categories": "American (Traditional), Restaurants, Nightlife, American (New), Bars, Hot Dogs", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0" + } + }, + { + "business_id": "fw6PlWy2ghCzuUH24p9U5g", + "name": "Brushie-Land", + "address": "1916 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0811291, + "longitude": -75.038243, + "stars": 1.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pediatric Dentists, Health & Medical, Dentists", + "hours": null + }, + { + "business_id": "7hwH3wiWB17U9Nw4EjJo0A", + "name": "Xi'an Sizzling Woks", + "address": "4000 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553684, + "longitude": -75.2024372, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'very_loud'", + "Caters": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "BYOB": "True", + "RestaurantsDelivery": "True", + "Corkage": "False" + }, + "categories": "Chinese, Asian Fusion, Restaurants, Pan Asian, Noodles, Szechuan", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "m8ISlBOrLx8by-3iYrc3XA", + "name": "Two Brothers Pizza", + "address": "3322 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0034642, + "longitude": -75.1504223, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30" + } + }, + { + "business_id": "RDZYRd8JR6iD0ulSvzmsAA", + "name": "Citizens Bank", + "address": "134 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533661, + "longitude": -75.1922657, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": null + }, + { + "business_id": "kAmXP3e66dxu21-5_9sBsw", + "name": "Ugly Moose", + "address": "443 Shurs Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0257481663, + "longitude": -75.2117477909, + "stars": 4.0, + "review_count": 128, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "HasTV": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True" + }, + "categories": "Bars, Restaurants, Nightlife, American (New), American (Traditional)", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-2:0", + "Wednesday": "16:30-2:0", + "Thursday": "16:30-2:0", + "Friday": "16:30-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "_TpBAJ-ZYQjkJ47qYOkKwg", + "name": "J&A Arcos Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Handyman, Contractors, Home Services, Decks & Railing, Painters", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0" + } + }, + { + "business_id": "u5CjXTOVkp0xYWAFD-Ukdg", + "name": "Tuck Barre & Yoga", + "address": "1155 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9373904, + "longitude": -75.1765402, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Active Life, Pilates, Yoga, Barre Classes", + "hours": { + "Monday": "7:0-20:45", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:15-20:30", + "Friday": "7:0-17:30", + "Saturday": "9:0-13:45", + "Sunday": "11:15-12:45" + } + }, + { + "business_id": "_l9J1_7GAaJDDNtHBz99kQ", + "name": "Chic Cosmetique", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Makeup Artists, Beauty & Spas", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "6KpEhwks_1ZbdsGi0t7rjA", + "name": "The M Room", + "address": "15 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689304, + "longitude": -75.1350098, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WiFi": "u'no'" + }, + "categories": "Greek, Nightlife, Bars, Music Venues, Arts & Entertainment, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "MtEpw40QBJYMkDTbBBv5Ag", + "name": "Schuylkill Banks", + "address": "2501 Walnut St, Ste 206", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521288, + "longitude": -75.1807123, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Boating, Parks, Active Life, Hotels & Travel, Tours", + "hours": null + }, + { + "business_id": "dBvPiHAyfyVXRHY_SPSfjQ", + "name": "Luxe Home Philadelphia", + "address": "1308 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504056, + "longitude": -75.1623812, + "stars": 2.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Furniture Stores, Home & Garden, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "p6n22yw61I_8qOMb81Myig", + "name": "Out of Wack Jacks Bar & Grill", + "address": "3156 Willits Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0570165, + "longitude": -75.0145878, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Sports Bars, Bars, Nightlife, Restaurants, Barbeque, Beer Bar, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "X_AVbwQcF3dcSWP6TlErcw", + "name": "Independence Park Hotel, Bw Premier Collection", + "address": "235 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486694089, + "longitude": -75.145468139, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Vacation Rentals, Event Planning & Services, Hotels, Bed & Breakfast", + "hours": { + "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" + } + }, + { + "business_id": "PMa6lWoBCD-YvY2oMHXbBA", + "name": "Feders Fresh Produce", + "address": "1822 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962976, + "longitude": -75.169315, + "stars": 4.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fruits & Veggies, Food, Grocery, Specialty Food, Farmers Market", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "KR-Pb1-fxE9TrZijQWH0Qg", + "name": "Magic Carpet Foods", + "address": "36th & Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9507921, + "longitude": -75.1953032, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "GoodForKids": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "False" + }, + "categories": "Fast Food, Food Trucks, Restaurants, Vegetarian, Food", + "hours": { + "Monday": "10:30-15:0", + "Tuesday": "10:30-15:0", + "Wednesday": "10:30-15:0", + "Thursday": "10:30-15:0", + "Friday": "10:30-15:0" + } + }, + { + "business_id": "AhBeA8m8iNP_b5jRORMlyg", + "name": "Mayfair Beverage", + "address": "6500 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.029806, + "longitude": -75.056296, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "fsqlE7jhO64Q62VDI_uRFQ", + "name": "KoJa", + "address": "38th St and Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9543996, + "longitude": -75.1986355, + "stars": 3.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Caters": "False" + }, + "categories": "Food Stands, Japanese, Restaurants, Korean", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "xIVnWEdnztf7-2tI4U9ElQ", + "name": "St. Agatha - St. James Church", + "address": "3720 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548755962, + "longitude": -75.1981362102, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Churches", + "hours": null + }, + { + "business_id": "X-sCb_2Q46W5H2wbXmlK1w", + "name": "Atiya Ola's Spirit First Foods", + "address": "310 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9531368, + "longitude": -75.2186607, + "stars": 4.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Vegetarian, Live/Raw Food, Fruits & Veggies, Salad, Restaurants, Specialty Food, Juice Bars & Smoothies, Food, Burgers, Farmers Market, Wraps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "wt3g7C34-PMjf54C0B4MGw", + "name": "Rhino Chiropractic Center", + "address": "6809 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0543634, + "longitude": -75.1865177, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chiropractors, Health & Medical", + "hours": { + "Monday": "15:0-18:30", + "Tuesday": "15:0-18:30", + "Wednesday": "15:0-18:30", + "Thursday": "15:0-18:30", + "Saturday": "8:0-10:0" + } + }, + { + "business_id": "Vd0YOj5GVv-Nxeo06HCfjA", + "name": "Rival Bros Coffee", + "address": "1100 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929795, + "longitude": -75.163155, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "HasTV": "True" + }, + "categories": "Food, Coffee Roasteries, Restaurants, Coffee & Tea, Cafes, Sandwiches", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "AZeWubeGf_BdY84nxp5X5A", + "name": "Phuong's Tailor and Fabrics", + "address": "757 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9387375, + "longitude": -75.1496014, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fabric Stores, Arts & Crafts, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "sI1uXz341rPHy6by3hxURA", + "name": "Skin House Facial Bar", + "address": "1238 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431924, + "longitude": -75.1629061, + "stars": 5.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Skin Care", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "-nIXhxPvxST6bTuj9jo1UQ", + "name": "DaMรฒ Pasta Lab", + "address": "105 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502973, + "longitude": -75.1601048, + "stars": 4.5, + "review_count": 177, + "is_open": 1, + "attributes": { + "HappyHour": "False", + "OutdoorSeating": "False", + "Corkage": "False", + "BYOB": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Pasta Shops, Restaurants, Food, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "FtzKdwb27s0Cd9ASC5Uo3w", + "name": "Schuylkill Center For Environmental Education", + "address": "8480 Hagys Mill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.05579, + "longitude": -75.252292, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "None", + "DogsAllowed": "False", + "WheelchairAccessible": "True" + }, + "categories": "Event Planning & Services, Special Education, Local Services, Preschools, Community Service/Non-Profit, Hiking, Active Life, Venues & Event Spaces, Summer Camps, Parks, Educational Services, Specialty Schools, Education", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "6TgCq73bjA15bpmOMSPFSg", + "name": "MOKO Organic Beauty Studio", + "address": "55 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9518839, + "longitude": -75.1449041, + "stars": 4.5, + "review_count": 140, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'" + }, + "categories": "Skin Care, Shopping, Hair Removal, Cosmetics & Beauty Supply, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "10:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "FqNpVym5Xy8CSv-9YXu75Q", + "name": "City Nails on Square", + "address": "1630 S Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497822604, + "longitude": -75.1687782977, + "stars": 2.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Hair Removal, Eyelash Service, Massage, Nail Salons, Beauty & Spas, Tanning, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "WS5VzIW4ThHtvjy0Acg38A", + "name": "C & G Auto Repair", + "address": "1314 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.057839, + "longitude": -75.078368, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Transmission Repair, Smog Check Stations, Tires, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "dAyIK3V2FO7sU-ICjtIdmA", + "name": "Penn's Port Pub", + "address": "1920 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9224306, + "longitude": -75.142895, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Nightlife, Restaurants, Adult Entertainment, Bars, American (Traditional)", + "hours": { + "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": "12:0-0:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "KVFUBgmPEHGUaJNkpMGcLw", + "name": "Opa", + "address": "1311 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499818693, + "longitude": -75.1624407579, + "stars": 3.5, + "review_count": 446, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True" + }, + "categories": "Mediterranean, Greek, Restaurants, Tapas/Small Plates", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "KKivjYzOLDlbAo-iMyqWWg", + "name": "Cake & Joe", + "address": "1401 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9304146607, + "longitude": -75.1495444402, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Patisserie/Cake Shop, Food, Coffee & Tea", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "4wq9bzoCe3Mh0cPbYH1eDg", + "name": "Max's Steaks", + "address": "3653 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.009045, + "longitude": -75.150471, + "stars": 4.0, + "review_count": 679, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "NoiseLevel": "u'loud'", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "None", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "CoatCheck": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Steakhouses, Bars, Nightlife, Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "zsZXZvnQKG3oXw4h7UA_og", + "name": "Viv Pickle Design Studio", + "address": "21 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509003, + "longitude": -75.1452517, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Accessories, Women's Clothing", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "XvwYDArF1MH8XLaww9bzlg", + "name": "Head Start Shoes", + "address": "126 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506556, + "longitude": -75.1690826, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shoe Stores, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "aVmuaNh8Z8gKSkoP418H9w", + "name": "Cafe Apamate", + "address": "1620 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9440918, + "longitude": -75.169504, + "stars": 3.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "BYOB": "True" + }, + "categories": "Restaurants, Coffee & Tea, Tapas Bars, Basque, Spanish, Food", + "hours": null + }, + { + "business_id": "pqph_vOjnhlThCuiyAaTkQ", + "name": "The Whirly Pig", + "address": "3300 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957401, + "longitude": -75.189549, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Street Vendors, Food Trucks", + "hours": null + }, + { + "business_id": "5tQ_G8aG1AMFORCp3gMPwQ", + "name": "Old Country Buffet", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0300289, + "longitude": -75.0981312, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Buffets, Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-20:30" + } + }, + { + "business_id": "39Vq4--74ljOpcFqn6vbGw", + "name": "Frog Commissary", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9582109, + "longitude": -75.1731347, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "u'dressy'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Caterers, Restaurants, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "9YxqrKuDxwbMqcbKmTQFtQ", + "name": "Dunkin'", + "address": "7000 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9235744, + "longitude": -75.2452854, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "DriveThru": "None", + "Caters": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Donuts, Coffee & Tea, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "0jQPPEppYjGQ2higy6JvCg", + "name": "Miller's Twist", + "address": "11th & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953163, + "longitude": -75.159106, + "stars": 4.5, + "review_count": 340, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "DriveThru": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pretzels, Ice Cream & Frozen Yogurt, Food, Bakeries, Farmers Market", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-15:30", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "-jdKfTfO0RiZxagql-Tcfg", + "name": "Desumma & Wexler Fine Jewelry Inc", + "address": "734 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485404, + "longitude": -75.1538532, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Bridal, Jewelry, Watches, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "e7L_WgUY6kXqlkspUkUHzw", + "name": "Bakery Lakay", + "address": "7315 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0618649912, + "longitude": -75.0833730027, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Haitian, Caribbean", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "6:30-17:0", + "Sunday": "6:30-17:0" + } + }, + { + "business_id": "I2ISRV7IybkMc3HEYKUE9g", + "name": "Audrey Claire", + "address": "276 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948271, + "longitude": -75.174425, + "stars": 4.0, + "review_count": 722, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Corkage": "False", + "Caters": "False", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Greek, Mediterranean, Seafood, American (New)", + "hours": { + "Monday": "5:0-8:30", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "15:0-21:0" + } + }, + { + "business_id": "UHl52lb2e5GbXgp-XLGWRA", + "name": "Citizens Bank", + "address": "701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9511108398, + "longitude": -75.1521224976, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": null + }, + { + "business_id": "FlEiAFFylBm4JGIseb6mwQ", + "name": "Billows Electric Supply Company", + "address": "1900 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938729, + "longitude": -75.175112, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "None" + }, + "categories": "Shopping, Electronics, Home & Garden, Hardware Stores, Home Services, Electricians, Lighting Fixtures & Equipment", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "7:0-12:0" + } + }, + { + "business_id": "bXn-kPjZ9XKMFnxJXFCkMw", + "name": "ACME Markets", + "address": "1001 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430138231, + "longitude": -75.1588986479, + "stars": 2.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Grocery, Bakeries, Shopping, Fashion, Department Stores, Drugstores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "7qmDeXGHOJc3fJrp5gJCrg", + "name": "T Car Care", + "address": "9240 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0470917, + "longitude": -74.9934078, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive", + "hours": null + }, + { + "business_id": "nJ6tSofMRm32nCAH9S09eQ", + "name": "ShopRite of Haverford", + "address": "6710 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9716399, + "longitude": -75.2541551, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "6:0-18:0", + "Friday": "7:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "DTExHg2DLquVmrjjQrBEPQ", + "name": "Petrelli Chiropractic & Rehabilitation", + "address": "1420 Walnut St, Ste 606", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486147, + "longitude": -75.1645215, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "13:30-16:30", + "Wednesday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-13:30" + } + }, + { + "business_id": "GCkkrW4vzgk6kQakNDTGbg", + "name": "Benita Bianca Hair Salon", + "address": "421 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.963137, + "longitude": -75.145245, + "stars": 5.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Hair Stylists, Eyelash Service, Beauty & Spas, Hair Extensions, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "iVGmTp4mW_Ie60orCwO57A", + "name": "Market at the Fareway", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741711295, + "longitude": -75.2025588422, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Public Markets, Specialty Food, Food, Farmers Market, Shopping, Seafood Markets", + "hours": { + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "vq1BQyBIqALI3s9rBI4_cQ", + "name": "Breakin Bread Bakery", + "address": "4351 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025735, + "longitude": -75.223701, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Bakeries", + "hours": { + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "zeG4Jb_ORGiqnGmcww_a4w", + "name": "La Llorona Cantina", + "address": "1551 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9250862, + "longitude": -75.1727626473, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "DogsAllowed": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "BYOB": "False", + "Corkage": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "Smoking": "u'outdoor'", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mexican, Nightlife, Breakfast & Brunch, Cocktail Bars, Bars", + "hours": { + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-22:0", + "Friday": "14:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "WL4m-SQnou7MaNXm4Ay1Xw", + "name": "Accu-Tune", + "address": "2023 S Percy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9239336, + "longitude": -75.1615836, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Tires, Transmission Repair, Automotive, Auto Repair, Oil Change Stations", + "hours": { + "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" + } + }, + { + "business_id": "1rV9jfXbwVpLDLcKYTCY_w", + "name": "Peapod", + "address": "2011 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.114249, + "longitude": -75.00223, + "stars": 2.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery, Food Delivery Services", + "hours": null + }, + { + "business_id": "eVl0n0p1YBwVtERGmRqH2A", + "name": "Henry's China", + "address": "8925 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0833419, + "longitude": -75.0482236, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "15:0-21:30", + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "HI5ldaAiOYY-ii5LsgARug", + "name": "The Grill Smuckers", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532, + "longitude": -75.159408, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Restaurants, American (New), Breakfast & Brunch, Farmers Market, Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "EObqiayUiJ_SJK3y9aOfWw", + "name": "New World Vision Center", + "address": "612 Washington Ave, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934507, + "longitude": -75.154306, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "AcceptsInsurance": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'" + }, + "categories": "Shopping, Optometrists, Health & Medical, Eyewear & Opticians, Laser Eye Surgery/Lasik", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "d3Mo1nrFbiOPa1_8xs4YHg", + "name": "Mac Mart Food Truck", + "address": "104 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514489, + "longitude": -75.1705213, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Fast Food, Food Trucks, Food, American (New), Restaurants, American (Traditional), Comfort Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "GaPP9IECXksFDYGoSX1Wvw", + "name": "Kung Fu Hoagies", + "address": "4360 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9484072534, + "longitude": -75.2098365742, + "stars": 4.5, + "review_count": 65, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Food, Event Planning & Services, Vegan, Food Stands, Vegetarian, Food Trucks, Street Vendors, Restaurants, Soup, Caterers, Noodles", + "hours": { + "Saturday": "10:0-16:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5q6c3Nf4Y5WG5pk16_tcYA", + "name": "Subway of Frankford", + "address": "7339 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037068, + "longitude": -75.039195, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "4", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "fHE7blPUyQQwzqmaaquGwQ", + "name": "Eeva", + "address": "310 W Master St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9724323, + "longitude": -75.1410235, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Food, Restaurants, Pizza, Bakeries, Beer, Wine & Spirits", + "hours": { + "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" + } + }, + { + "business_id": "-4HMjEGQgduIMMTe0WPQBA", + "name": "The Trocadero Theatre", + "address": "1003 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536686575, + "longitude": -75.1565259975, + "stars": 3.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "NoiseLevel": "u'very_loud'", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HasTV": "True" + }, + "categories": "Nightlife, Cinema, Music Venues, Arts & Entertainment", + "hours": { + "Monday": "11:30-18:0", + "Tuesday": "11:30-18:0", + "Wednesday": "11:30-18:0", + "Thursday": "11:30-18:0", + "Friday": "11:30-18:0", + "Saturday": "11:30-17:0" + } + }, + { + "business_id": "VbCxeU7EVo-h7RpXPe4nFQ", + "name": "Massage Arts Center Of Philadelphia", + "address": "519 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942013, + "longitude": -75.1488229, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Massage, Education, Health & Medical, Massage Schools, Beauty & Spas, Specialty Schools, Adult Education, Reflexology", + "hours": null + }, + { + "business_id": "-AanHawaDlzWHQjrqRRWig", + "name": "Au Bon Pain", + "address": "1101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9498882471, + "longitude": -75.1572606784, + "stars": 2.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Bakeries, Restaurants, Food, Cafes", + "hours": null + }, + { + "business_id": "bISwIzk6cMQtTf3QSlXi5Q", + "name": "Stanton 1 Hour Cleaners", + "address": "4268 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.027464, + "longitude": -75.216671, + "stars": 4.0, + "review_count": 157, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Laundry Services, Sewing & Alterations, Dry Cleaning & Laundry, Local Services, Dry Cleaning, Laundromat", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "LyguE1WMUm35dW72n65Xnw", + "name": "Avance", + "address": "1523 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949919, + "longitude": -75.166996, + "stars": 4.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "4", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsAttire": "u'dressy'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WheelchairAccessible": "True", + "Caters": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "noBinj5ChHbPCHfqTcUO6g", + "name": "Plenty Cafรฉ", + "address": "1602 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9472412, + "longitude": -75.1682819, + "stars": 3.5, + "review_count": 247, + "is_open": 0, + "attributes": { + "Caters": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "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}", + "WiFi": "u'free'", + "GoodForKids": "True", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Wine Bars, Cafes, Restaurants, Coffee & Tea, Food, Nightlife, Bars, Breakfast & Brunch", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "eXGnRQMGYgH4dahF7SiHCg", + "name": "Bintou African & American Restaurant", + "address": "6515 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9220752, + "longitude": -75.230917, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "African, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "XF3KL8d2LM7nUoo6UsmVLQ", + "name": "Supreme Nails", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.06403, + "longitude": -74.98423, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "MoEZGIWnOfOLR7oEj024hQ", + "name": "Esporta Fitness", + "address": "701 E Cathedral Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0642176614, + "longitude": -75.2367545966, + "stars": 2.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Yoga, Sports Clubs, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "n-MbvJ3gc68KakCKm2Ci4Q", + "name": "Schummers Auto Repair - Kensington", + "address": "2034 E Willard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.994234, + "longitude": -75.109375, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Wheel & Rim Repair, Oil Change Stations, Automotive, Auto Repair, Tires", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "E568xPW-urBy3g-3MhuRYg", + "name": "Ian Navoy - Loan Depot", + "address": "1515 Market St, Ste 1530", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529853, + "longitude": -75.1658929, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Financial Services, Mortgage Lenders, Mortgage Brokers, Home Services, Real Estate", + "hours": { + "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" + } + }, + { + "business_id": "un0xxX785wfQfprryh0TjQ", + "name": "Lucky's Last Chance", + "address": "4421 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026303576, + "longitude": -75.2255360669, + "stars": 4.5, + "review_count": 579, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "BYOB": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Corkage": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Burgers, Pubs, Restaurants, Hot Dogs, Nightlife, Beer, Wine & Spirits, Food, Bars", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "f1GinwRwdwBlCj_ZwekN8g", + "name": "Gigi Pizza", + "address": "504 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408419, + "longitude": -75.1513065, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "HasTV": "False", + "BikeParking": "True", + "BYOB": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, American (New), Restaurants, Pizza", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "11:30-19:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "4bx6V3IBe-J_BrrpLMjTJw", + "name": "Gianna Jr's", + "address": "106 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9517744, + "longitude": -75.1736444, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Vegetarian, Vegan", + "hours": null + }, + { + "business_id": "WmiEZW4meUoVxQxFUmci-A", + "name": "Viriva Community Credit Union", + "address": "7346 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0376425, + "longitude": -75.0391421, + "stars": 1.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": null + }, + { + "business_id": "gQ_EpssUgUX_hCdF1hM6LA", + "name": "Castelli Roofing and General Contractors", + "address": "2523 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920058, + "longitude": -75.182049, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Roofing, Home Services, Siding, Carpenters, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "Oh3Q3QfhMl2DArFiLUrT9Q", + "name": "La Fourno Ristorante Trattoria", + "address": "636 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942059, + "longitude": -75.153412, + "stars": 4.0, + "review_count": 273, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "Ag3bj6WStEkDa2Ha72pQ7A", + "name": "Cake and the Beanstalk", + "address": "1112 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9475864815, + "longitude": -75.160137372, + "stars": 4.5, + "review_count": 223, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food, Desserts, Bakeries", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "BrpA0juNbOcbCxCdGvCIYA", + "name": "Smith & Solomon Training Solutions", + "address": "4201 Tacony St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0053493, + "longitude": -75.08431, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Education, Specialty Schools, Professional Services, Driving Schools, Employment Agencies", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "fd-2CxtZ0-4o2TP98nziRQ", + "name": "Better Pool Management", + "address": "13044 Bustleton Ave, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1249745, + "longitude": -75.0150899, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pool Cleaners, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "6kkRKgOTZP8h95atb4bBzQ", + "name": "Bob's Discount Furniture - Philadelphia", + "address": "7301 Castor Ave NE", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0513803, + "longitude": -75.0651838, + "stars": 1.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False" + }, + "categories": "Home Decor, Home & Garden, Furniture Stores, Baby Gear & Furniture, Shopping, Mattresses", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "WU3FGy5JoKOH-NprEKd9bQ", + "name": "The Pepper Building by Alterra", + "address": "1830 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945365, + "longitude": -75.1730976, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate", + "hours": null + }, + { + "business_id": "3k0xVHaCsPuDn-IZgCOPLw", + "name": "Lomax Carpet and Tile Mart", + "address": "201 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0791841, + "longitude": -75.0264552, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Flooring, Home Services, Carpeting, Carpet Installation", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "2x6H5oxjcHcvZLCQ3Cv_Fw", + "name": "Amelie's Bark Shop", + "address": "1544 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9300362, + "longitude": -75.1634647, + "stars": 5.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pet Stores, Pet Services, Pets", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "3ZLbZ_sb8cz0qBU551ysBw", + "name": "Supreme Auto Glass", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windshield Installation & Repair, Automotive, Auto Glass Services", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0" + } + }, + { + "business_id": "nt-XKjNGHE4d1lQTfud90Q", + "name": "Neil Dessecker - RE/MAX One Realty", + "address": "513 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941707, + "longitude": -75.145299, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Agents, Real Estate, Home Services", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "6ci4_LMrP9cEpvRCw-LjgA", + "name": "Johnnie Walker Lounge", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552705, + "longitude": -75.1566243, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Karaoke, Bars, Nightlife, Hookah Bars, Lounges", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "QbQxZ7t7bs64Lq05SLAmVg", + "name": "Dickinson Square Park", + "address": "1600 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9277792193, + "longitude": -75.1515483856, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Playgrounds, Parks", + "hours": null + }, + { + "business_id": "1wrdcb_Rw586DBZnfSNGkQ", + "name": "Central Philadelphia Locksmith", + "address": "810 S 13 st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940217, + "longitude": -75.1642113, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Automotive, Keys & Locksmiths, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "0tJbuiMAkcbzd6LkbAMZyg", + "name": "Sportsradio 94WIP", + "address": "400 Market St, Fl 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501464, + "longitude": -75.147743, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations", + "hours": null + }, + { + "business_id": "5jf7mjz3j_jOCFCHpl3UDA", + "name": "Kiki Hughes", + "address": "259 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9490691, + "longitude": -75.1759285, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Jewelry, Women's Clothing", + "hours": { + "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" + } + }, + { + "business_id": "X2HJNKFY58RW1mzjH3n6dg", + "name": "Erie Nails", + "address": "1300 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.005322, + "longitude": -75.1027697, + "stars": 2.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "jZYkQS6S2jqiak-R5_x0qg", + "name": "Walt Whitman Bridge", + "address": "3100 S Front St", + "city": "Philadelphia", + "state": "NJ", + "postal_code": "19148", + "latitude": 39.9054184489, + "longitude": -75.1297850597, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Public Services & Government, Landmarks & Historical Buildings, Local Flavor", + "hours": null + }, + { + "business_id": "HkhqlX-GOrm96yvG3wHZqw", + "name": "Highpointe Performance Cafe", + "address": "6182 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0351792, + "longitude": -75.2173694, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Tea Rooms, Food, Coffee & Tea, Restaurants, Cafes", + "hours": { + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "iOBs_J9oVIwVKsmfBHBs6w", + "name": "Pub36", + "address": "7681 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0391646, + "longitude": -75.0334375, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': True}", + "NoiseLevel": "u'average'", + "Smoking": "u'outdoor'", + "WiFi": "'free'", + "HasTV": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Bars, Irish Pub, Caterers, Irish, Nightlife, Event Planning & Services, Pubs", + "hours": { + "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" + } + }, + { + "business_id": "uiQ_OuWEDHxuSFhh7U6fvA", + "name": "Franklin Cleaners", + "address": "3610 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9585798, + "longitude": -75.1941511, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services, Sewing & Alterations", + "hours": null + }, + { + "business_id": "Bo5OP6v12_ID6TFKEKZcdg", + "name": "Kensington Community Food Co-op - KCFC", + "address": "2670 Coral St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9870194, + "longitude": -75.1228265, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "CoatCheck": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "Smoking": "u'no'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Beer, Wine & Spirits, Fruits & Veggies, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "k2w1Zf6F6bRQoOzXAi3Atw", + "name": "Mantra", + "address": "122 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951054, + "longitude": -75.170694, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True" + }, + "categories": "Bars, Nightlife, Lounges, Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "QIzTZoV4QFIgesL0aJV6Mg", + "name": "Ritten House Dental Group", + "address": "255 S 17th St, Bldg 255 S. 17th St 2807", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481990169, + "longitude": -75.1692901, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Health & Medical, Cosmetic Dentists, Dentists, Orthodontists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-16:30" + } + }, + { + "business_id": "17ad1R5nKxtOq4_PSALWgw", + "name": "Zoom Drain", + "address": "9216 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.046411, + "longitude": -74.9942736, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Plumbing, Local Services, Septic Services", + "hours": { + "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" + } + }, + { + "business_id": "A74ufDWGFo1qr5uLsZc5Vw", + "name": "CeX", + "address": "424 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415902, + "longitude": -75.1501294, + "stars": 2.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Books, Mags, Music & Video, Computers, Mobile Phones, Videos & Video Game Rental, Video Game Stores, Music & DVDs, Used, Vintage & Consignment, Fashion, Shopping, Discount Store, Electronics", + "hours": { + "Monday": "0:0-20:0", + "Tuesday": "0:0-20:0", + "Wednesday": "0:0-20:0", + "Thursday": "0:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "0:0-20:0" + } + }, + { + "business_id": "JdlxHdL74JU5RumWlKaSTQ", + "name": "Academy Cleaners", + "address": "1417 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9485135, + "longitude": -75.1658545, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "tUVAbJGTLNgOXiBt_CNcuw", + "name": "Happily Ever After", + "address": "1010 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9445652, + "longitude": -75.1587315, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Toy Stores", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "hVRebPv7EKMUGVV2m5IKaQ", + "name": "McDonald's", + "address": "9970 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1021934378, + "longitude": -75.0294394791, + "stars": 1.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "NoiseLevel": "'average'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "DriveThru": "True" + }, + "categories": "Coffee & Tea, Food, Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "5:30-1:0", + "Tuesday": "5:30-1:0", + "Wednesday": "5:30-1:0", + "Thursday": "5:30-1:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "5:30-1:0" + } + }, + { + "business_id": "eOGKLFgK1mmtiwJQ3Sm6cg", + "name": "Academic Properties", + "address": "3601 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.960217, + "longitude": -75.19405, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Property Management, Apartments, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "KbV4RkZuCvPFBj_XDL4z6A", + "name": "Nail Polish Bar Spa", + "address": "519 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941482, + "longitude": -75.1452821, + "stars": 2.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False" + }, + "categories": "Nail Technicians, Shopping, Massage, Waxing, Day Spas, Cosmetics & Beauty Supply, Hair Salons, Hair Removal, Skin Care, Beauty & Spas, Nail Salons", + "hours": { + "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": "10:0-19:0" + } + }, + { + "business_id": "YcjTnHvyt_oMkfk5FAg8nQ", + "name": "Alessandros Pizza & Grill", + "address": "655 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965232, + "longitude": -75.160402, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-1:0", + "Saturday": "8:30-1:0", + "Sunday": "8:30-23:0" + } + }, + { + "business_id": "1szGXy6XbgvQ1bdp5Ev3SA", + "name": "Blue Cross Broad Street Run", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 40.006164, + "longitude": -75.179835, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Races & Competitions, Active Life", + "hours": null + }, + { + "business_id": "W1ymeMRtkPivJzPlLYiIdg", + "name": "Wolf Street Cafe", + "address": "1636 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9223302, + "longitude": -75.1748987, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "99VdoaWJs5FpAtearuP7kA", + "name": "Body Magic Auto Body", + "address": "9428 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0493006, + "longitude": -74.9903509, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Repair, Professional Services, Body Shops, Towing, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "mkVVsdk89hlrMk_R0pA3Gw", + "name": "Vision Graphics", + "address": "221 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486651, + "longitude": -75.1449919, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Photography Stores & Services, Printing Services, Arts & Entertainment, Local Services, Arts & Crafts, Shopping, Framing, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "8:0-15:30", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "fboXjnNAmtaKRpexSMAz6Q", + "name": "Mickie Davis Hair Studio", + "address": "1328 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9346215, + "longitude": -75.179675, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Stylists, Hair Salons, Beauty & Spas, Blow Dry/Out Services, Men's Hair Salons", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "1rfNEXrSkGXSd8LG27ncMA", + "name": "Modell's Sporting Goods", + "address": "2329 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0479792, + "longitude": -75.056021, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sporting Goods, Shopping, Local Flavor", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "10:0-19:30" + } + }, + { + "business_id": "5Hvt4NPyJBRV8BL6U3xMuQ", + "name": "Not Just Pizza", + "address": "1030 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967145, + "longitude": -75.140957, + "stars": 3.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Ambience": "None", + "BusinessParking": "None", + "Caters": "True", + "Alcohol": "'none'", + "BikeParking": "True" + }, + "categories": "Pizza, Sandwiches, Italian, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Xkdu_37aNqJxilh9XQSmEA", + "name": "The Rook Manayunk", + "address": "4001 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.021682, + "longitude": -75.2159767, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "HappyHour": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Sports Bars, Juice Bars & Smoothies, Beer, Wine & Spirits, Nightlife, Food, Bars, Restaurants", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16: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" + } + }, + { + "business_id": "Mwc3n5Psw9wRaQ22vZWDYQ", + "name": "Bar Hygge", + "address": "1720 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671254924, + "longitude": -75.1661240918, + "stars": 4.5, + "review_count": 387, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "HasTV": "False", + "BYOB": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Food, Restaurants, Breweries, Comfort Food, Brewpubs, Breakfast & Brunch, Gastropubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "pvDeQWBMRharchOi7wi7XA", + "name": "University Pizza & Wings", + "address": "4026 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570425, + "longitude": -75.2030627, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-3:0", + "Tuesday": "11:0-3:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Uz_jqUTcRvyJ43semUZulg", + "name": "The Masonic Library and Museum of Pennsylvania", + "address": "1 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536351, + "longitude": -75.1627465, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Museums, Arts & Entertainment, Souvenir Shops, Shopping", + "hours": { + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "G2oWC7vWPTiTZt--0bUMzA", + "name": "Kalaya", + "address": "764 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9399660086, + "longitude": -75.1577649178, + "stars": 4.5, + "review_count": 272, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "HasTV": "False", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'" + }, + "categories": "Thai, Restaurants", + "hours": { + "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": "15:0-21:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "U8rN2Euy3kLW5HkKfzfveg", + "name": "Philly Pretzel Factory", + "address": "1839 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520539, + "longitude": -75.171739, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pretzels, Food, Restaurants, Hot Dogs, Bakeries", + "hours": { + "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" + } + }, + { + "business_id": "bOAGspD-hGiF7RcdT3dHdg", + "name": "Trek Bicycle - Philadelphia", + "address": "1923 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520935, + "longitude": -75.1727556, + "stars": 4.0, + "review_count": 135, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Fitness & Instruction, Sporting Goods, Bikes, Bike Rentals, Active Life, Trainers, Local Services, Bike Repair/Maintenance, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "rQKL-bO8Xup4gCPcj_oz6w", + "name": "PlantPure Cafe", + "address": "1115 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490546, + "longitude": -75.1597386, + "stars": 4.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True" + }, + "categories": "Sandwiches, Salad, Vegetarian, Vegan, Restaurants, Fast Food", + "hours": { + "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", + "Sunday": "11:0-15:30" + } + }, + { + "business_id": "xC9O7QDsx3o8oTENWVFMvg", + "name": "New Quality Restaurant", + "address": "105 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.998747, + "longitude": -75.1289867, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'beer_and_wine'", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "wN2fnIUzL7VfggfesSG_yQ", + "name": "Lost & Found", + "address": "133 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9530488, + "longitude": -75.14479, + "stars": 4.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Men's Clothing, Shoe Stores, Fashion, Women's Clothing", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "TQGYBIz8LEZPZCnhkCuisA", + "name": "Trattoria Alla Costiera", + "address": "769 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93888, + "longitude": -75.1524835, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "ruQWtqKfDkzniJ7-fDr9Vg", + "name": "The Metropolitan Opera House", + "address": "858 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9698791, + "longitude": -75.160284, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Arts & Entertainment, Local Flavor, Nightlife, Music Venues", + "hours": null + }, + { + "business_id": "o45O8DI0MJXYsHnoIkP0jg", + "name": "D'jakarta Cafe", + "address": "1540 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9209022, + "longitude": -75.173679, + "stars": 4.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOB": "True", + "Corkage": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Seafood, Indonesian, Asian Fusion", + "hours": { + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "BVXoY0R0p5H6Efh-GvN36g", + "name": "Luisiany Dominican Beauty Salon", + "address": "5600 W Berks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9850493, + "longitude": -75.2348024, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "nJcxdXI5MZ8dFc7_iBASxA", + "name": "Jeff Cabot, DMD", + "address": "301 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940557, + "longitude": -75.148074, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "8VsGdezAKZh8atZ0tmVskg", + "name": "Amigo's Bakery", + "address": "2327 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9207300556, + "longitude": -75.1668711662, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cupcakes, Patisserie/Cake Shop, Desserts, Restaurants, Food, Bakeries, Tex-Mex", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "uaOvEDXU1Z66O83q7-8OTA", + "name": "Universal Heating and Air Conditioning", + "address": "8001 Castor Ave, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618354, + "longitude": -75.055502, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-15:30" + } + }, + { + "business_id": "U4gxybCtV901fZm7GqT6Ww", + "name": "Advocare Society Hill Pediatrics", + "address": "834 Chestnut St, Ste 306", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478748, + "longitude": -75.161961, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Pediatricians, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "_yKwzHiJGE6l-mKahl6NmQ", + "name": "Deer Meadows", + "address": "8301 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0614224389, + "longitude": -75.0421356614, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Retirement Homes, Health & Medical", + "hours": null + }, + { + "business_id": "hRQC33JCm9CunG6fJaMXug", + "name": "Fleishman Fabrics & Supplies", + "address": "737 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394095297, + "longitude": -75.1495916981, + "stars": 5.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True" + }, + "categories": "Shopping, Fabric Stores, Arts & Crafts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "8hKi4SyepMGe2W1L4aQ_JQ", + "name": "Italian Kitchen", + "address": "2035 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9864213428, + "longitude": -75.2479510009, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'paid'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True" + }, + "categories": "Pizza, Breakfast & Brunch, Italian, Sandwiches, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "q7-4c6wPSCVU9Dd-64LebQ", + "name": "Umbrella Building", + "address": "1401 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9727351441, + "longitude": -75.1442689718, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "35jNPbB_-8oh-LHb9GEIQg", + "name": "James Restaurant & Bar", + "address": "1835 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955531, + "longitude": -75.170951, + "stars": 3.5, + "review_count": 198, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "Caters": "False", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForDancing": "False", + "HappyHour": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Nightlife, American (New), Breakfast & Brunch, American (Traditional), Cocktail Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "zimB-GhmQD47YOR4JK5Bkw", + "name": "Raymour & Flanigan Furniture and Mattress Store", + "address": "30 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084853, + "longitude": -74.967289, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Furniture Stores, Shopping, Home & Garden, Home Decor, Mattresses", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "nEhYqDvaRleiKf533ZsdWg", + "name": "Maki of Japan", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8787765503, + "longitude": -75.2423629761, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "BikeParking": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "EP7GpUM6lGWOpvkxG-9C6Q", + "name": "Roller's Express-O", + "address": "8341 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0752334, + "longitude": -75.2045913, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "rkf0KYNWsyExnVdETNh8sg", + "name": "Time Out Spa", + "address": "220 Geiger Rd, Ste 203", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1089584, + "longitude": -75.0499348, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Doulas, Skin Care, Beauty & Spas, Massage, Day Spas, Health & Medical", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-20:0" + } + }, + { + "business_id": "55gCXlWDDCdttR3yRss1xw", + "name": "The Rittenhouse Hotel", + "address": "210 W Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499125, + "longitude": -75.1736448, + "stars": 4.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hotels & Travel, Event Planning & Services, Restaurants, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "DKRssfE83bAnqHvwXK5DqA", + "name": "Randazzo's Pizzeria", + "address": "1826 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444927907, + "longitude": -75.1726122757, + "stars": 4.0, + "review_count": 153, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DriveThru": "False", + "HappyHour": "True" + }, + "categories": "Burgers, Pizza, Restaurants, Italian", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "9N9VYOTwGe38rszyYReyCA", + "name": "Bluebond Guitars", + "address": "511 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423107, + "longitude": -75.1488489, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Musical Instrument Services, Guitar Stores, Musical Instruments & Teachers, Local Services, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "tS-H8ddiBHAHQdSFt2eMjg", + "name": "Queen Village Pizza", + "address": "825 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9375671, + "longitude": -75.1500601, + "stars": 2.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "WoDFTyLtU3RhHPx-7GhQyA", + "name": "CAVA", + "address": "1713 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518087, + "longitude": -75.1692367, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HappyHour": "False", + "BusinessParking": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Salad, Mediterranean", + "hours": { + "Monday": "10:45-22:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "d0SWibA5U7XIKn8I1VNbPA", + "name": "Fanti's Pizza", + "address": "6615 Martins Mill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0526467, + "longitude": -75.0918579, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Sandwiches, Pizza, Burgers, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "q4AxwoWQs6rk2nkWJuYZIA", + "name": "Triangle Tavern", + "address": "1338 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9323559, + "longitude": -75.1611077, + "stars": 4.0, + "review_count": 216, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "Caters": "True", + "DogsAllowed": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "BikeParking": "False", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "BYOB": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "Corkage": "False", + "Ambience": "{u'divey': True, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "Smoking": "u'no'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Restaurants, Nightlife, Bars, Pubs, Gastropubs", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "puByuNNYLkiEC9YjmQQAyQ", + "name": "Universoul Circus", + "address": "52nd Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.981436, + "longitude": -75.224037, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "BXts3uf1_sjSQGdOLby5AQ", + "name": "Penn Infectious Diseases and Travel Medicine", + "address": "301 S 8th St, Ste 1B, Garfield Duncan Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9454961, + "longitude": -75.1543785, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Doctors, Infectious Disease Specialists, Hospitals", + "hours": null + }, + { + "business_id": "j3SP6m3S1tVqoV6FqEUrhQ", + "name": "Blue Grass Laundromat", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0713714418, + "longitude": -75.0307160931, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Laundromat, Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "YZtPfTnsJiNxImIHKaRV3g", + "name": "Empire Szechuan", + "address": "842 Red Lion Rd, Ste 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1021784, + "longitude": -75.0312925, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Japanese, Food, Food Delivery Services, American (Traditional), Health Markets, Restaurants, Specialty Food, Seafood, Asian Fusion, Szechuan, Chinese", + "hours": { + "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": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "BaUs3aLgpb0BKuCghvW5ag", + "name": "Bourse Cleaners", + "address": "44 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492927763, + "longitude": -75.1475731307, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Laundry Services, Shoe Repair, Dry Cleaning & Laundry, Local Services, Sewing & Alterations", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "gr5eG2ciS_6M-brZVQ-KEA", + "name": "Kabobi", + "address": "10600 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.099521, + "longitude": -75.0104113, + "stars": 4.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "'free'" + }, + "categories": "Restaurants, Halal, Barbeque, Pakistani, Asian Fusion, Bangladeshi, Indian, Middle Eastern", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "sX-HF1WzCOpvePr4EMSlHA", + "name": "Zen Tea House", + "address": "225 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9563921, + "longitude": -75.1571831, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Restaurants, Asian Fusion, Food", + "hours": { + "Tuesday": "14:0-22:0", + "Wednesday": "14:0-22:0", + "Thursday": "14:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "H_lYfJb0Va8O0QQ2W4zc4w", + "name": "Stoll Medical Group", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494834373, + "longitude": -75.1673514317, + "stars": 4.0, + "review_count": 122, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Family Practice, Doctors", + "hours": { + "Monday": "8:30-19:30", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-16:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "xbX3gQtqaki0LCZTPhY-jA", + "name": "Pรฉtrus Ky Cafรฉ", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549304, + "longitude": -75.2001318, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "qIOQBHxUQYM5hALXW-QWnw", + "name": "Nate's Hot Bagels", + "address": "1619 Grant Ave, Ste 34", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.088597, + "longitude": -75.038732, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bagels", + "hours": null + }, + { + "business_id": "I1o7ggb54e6-OYhiyabjgg", + "name": "Curve Conscious", + "address": "2719 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9744702, + "longitude": -75.1810816, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Women's Clothing, Fashion, Shopping, Plus Size Fashion", + "hours": { + "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" + } + }, + { + "business_id": "1uyGXX3gqVe__fe14mirdQ", + "name": "Buckhead Saloon", + "address": "461 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589589, + "longitude": -75.1437054, + "stars": 2.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HappyHour": "True" + }, + "categories": "Bars, Nightlife", + "hours": { + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0" + } + }, + { + "business_id": "XFfuR-F1_wDbcf8xo2DVPw", + "name": "Dae Bak", + "address": "1016 Race St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552705, + "longitude": -75.1566243, + "stars": 4.0, + "review_count": 214, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BYOB": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "WiFi": "'free'", + "Corkage": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Korean", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "f-vB1_GyGBYzHX68xS5Dfw", + "name": "Saigon Quy-Bau Restaurant", + "address": "1318 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9433871696, + "longitude": -75.1642239285, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "Corkage": "False", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BYOB": "True", + "HappyHour": "False", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, French, Vietnamese, Thai, American (Traditional), Asian Fusion, Restaurants", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "JMHVCpY0PAW3MiCIGaU-kA", + "name": "Christie's", + "address": "4436 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262284, + "longitude": -75.225914, + "stars": 3.5, + "review_count": 176, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}" + }, + "categories": "Waxing, Beauty & Spas, Hair Removal, Tanning, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:0-19:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "l-wmZp5VZ9FCNjyitKHlHw", + "name": "Jerusalem Foods", + "address": "115 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9691333, + "longitude": -75.1366833, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery, Convenience Stores, Mediterranean, Restaurants", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "9:30-20:30" + } + }, + { + "business_id": "DTbKzkWQGWJsHvhE6OcUFw", + "name": "Little Pete's Restaurant", + "address": "2401 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967082, + "longitude": -75.177485, + "stars": 4.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Greek, Restaurants, Breakfast & Brunch, American (Traditional), Diners", + "hours": { + "Monday": "6:30-23:0", + "Tuesday": "6:30-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-23:0", + "Saturday": "6:30-23:0", + "Sunday": "6:30-23:0" + } + }, + { + "business_id": "FkMO7IzhoeY5SinJwaXtcg", + "name": "Afghan Kabob House", + "address": "2226 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0483828, + "longitude": -75.0617745, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Afghan, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "43AC2TqfcQcenT6srX5QCA", + "name": "Frankie Ann's", + "address": "741 N 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968561, + "longitude": -75.1748987, + "stars": 2.5, + "review_count": 53, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'outdoor'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Caters": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True" + }, + "categories": "Event Planning & Services, American (New), Nightlife, Sports Bars, Bars, Venues & Event Spaces, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "WszzxrLi_fqUHCTX608wQg", + "name": "Pennsy Flea Market", + "address": "1600 S Warfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.934738, + "longitude": -75.201609, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Thrift Stores, Shopping", + "hours": { + "Saturday": "9:30-16:30", + "Sunday": "9:30-16:30" + } + }, + { + "business_id": "IEQ5GMVDXat-yOI4Gf8TLw", + "name": "Supercuts", + "address": "2000 Hamilton St Ste 110B, Rodin Place", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "3wRG_Rpe_clXo67Nit5HUg", + "name": "Red Cat Nails & Spa", + "address": "6024 Ridge Ave, Ste 108", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322467617, + "longitude": -75.2141303569, + "stars": 3.5, + "review_count": 136, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "-E5FEJIZdmwV7A1XGdhUeA", + "name": "Baltimore Crab & Seafood", + "address": "4800 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9534279, + "longitude": -75.2183462, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Specialty Food, Seafood Markets", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "7RYxPJoGu6zuTYmO8LKmcA", + "name": "Peach Plum Pear Photo", + "address": "2628 Martha St, Ste 2D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9849061, + "longitude": -75.122469, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Event Photography, Photographers, Event Planning & Services", + "hours": null + }, + { + "business_id": "WR6c5Gg3tNsmuXyFgngztg", + "name": "The Oval", + "address": "Eakins Oval", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9637657632, + "longitude": -75.1785304025, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "uV0EwMyd1htLUvT_gTl6jw", + "name": "Erica Bantom Martin - State Farm Insurance Agent", + "address": "1124 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9369927, + "longitude": -75.1672782, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Professional Services, Auto Insurance, Life Insurance, Insurance, Home & Rental Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "OjM_Q540jV0AHKCLOX7gHA", + "name": "Panera Bread", + "address": "48 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537036, + "longitude": -75.1596916, + "stars": 3.0, + "review_count": 139, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Soup, Salad, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "T6P9oKS2V6KflrWxiW4-bg", + "name": "88 Korean BBQ", + "address": "103 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0888253, + "longitude": -74.9679561, + "stars": 3.5, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BikeParking": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsReservations": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "BYOB": "True" + }, + "categories": "Barbeque, Korean, Restaurants, Buffets", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "jHzcO9EKlsxjiVHxb4b53A", + "name": "PadChili", + "address": "604-606 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410084, + "longitude": -75.145797, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Chinese, Thai, Restaurants", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "17:0-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "JPiSCbw4-BK1oCmPPs09hQ", + "name": "Manayunk Diner", + "address": "3722 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.016169, + "longitude": -75.210611, + "stars": 2.0, + "review_count": 103, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Caters": "False" + }, + "categories": "Diners, Restaurants", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-4:0", + "Friday": "7:0-4:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-2:0" + } + }, + { + "business_id": "bJodYUhoZb-ewnzZS-d3Bw", + "name": "Dunkin'", + "address": "7512 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0515285, + "longitude": -75.0571219, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "4:30-23:0", + "Tuesday": "4:30-23:0", + "Wednesday": "4:30-23:0", + "Thursday": "4:30-23:0", + "Friday": "4:30-23:0", + "Saturday": "4:30-23:0", + "Sunday": "4:30-23:0" + } + }, + { + "business_id": "R5j_K2NTLREJspZNbnEZYQ", + "name": "Smashburger", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8806402069, + "longitude": -75.2383403733, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "DriveThru": "False", + "NoiseLevel": "'loud'", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "VajDn9MOuWbgQ0S95P4Aeg", + "name": "Philadelphia Soft Pretzels Inc", + "address": "4315 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0166658, + "longitude": -75.1317594, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Pretzels, American (New), Bakeries, Food, Local Flavor", + "hours": { + "Monday": "5:0-11:30", + "Tuesday": "5:0-11:30", + "Wednesday": "5:0-11:30", + "Thursday": "5:0-11:30", + "Friday": "5:0-11:30", + "Saturday": "6:0-10:0" + } + }, + { + "business_id": "NJe5fkia_63rdKXRdJlmkA", + "name": "Chatayee Thai", + "address": "1227 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491987, + "longitude": -75.1618495, + "stars": 4.5, + "review_count": 222, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Restaurants, Thai, Vegetarian, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "15:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "3hzS8_xxx0r5nvOL1JpxqA", + "name": "Mick Daniels", + "address": "2046 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9221698, + "longitude": -75.1498713, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "Alcohol": "u'full_bar'", + "WiFi": "'no'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Bars, Nightlife, Pubs", + "hours": null + }, + { + "business_id": "92dYGs4_P_9j6cKle7E2Yw", + "name": "Figo", + "address": "1033 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967481, + "longitude": -75.1398075, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "Smoking": "u'no'", + "BYOB": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{u'dj': False, u'live': True, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "HasTV": "True" + }, + "categories": "Cocktail Bars, Italian, Nightlife, Restaurants, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "tezJSHevV8pHSXAJKsqzFw", + "name": "Artur Kirsh Salon and Spa", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Day Spas, Blow Dry/Out Services, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "Qf4e6amvsjdKgz-b02gvUg", + "name": "The Fresh Grocer of Walnut", + "address": "4001 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544656934, + "longitude": -75.2029407313, + "stars": 2.0, + "review_count": 216, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Grocery, Food", + "hours": { + "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" + } + }, + { + "business_id": "Bq94p5SNIrInYCJiYwwyRg", + "name": "JR's Bar", + "address": "2337 S Croskey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9229941, + "longitude": -75.1839903, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Arts & Entertainment, Dive Bars, Music Venues, Bars, Nightlife", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "19:0-2:0", + "Wednesday": "19:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "19:0-2:0" + } + }, + { + "business_id": "Y_1ck42KkUN3m7-gFDngBQ", + "name": "Ballroom at the Ben", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "99e7bysta1myyrQogFEWUQ", + "name": "Dock Street Brewery", + "address": "701 S 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9477306374, + "longitude": -75.2227761947, + "stars": 4.0, + "review_count": 549, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "'beer_and_wine'", + "HasTV": "True", + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "HappyHour": "True" + }, + "categories": "Beer, Wine & Spirits, Restaurants, Breweries, Pizza, Local Flavor, American (New), Vegetarian, Food, Brewpubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "14:0-20:0", + "Friday": "15:0-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "wAxs2JRqxdj_7Hr0nRYuAw", + "name": "Hahnemann Internal Medicine", + "address": "231 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9571399, + "longitude": -75.1621537, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Internal Medicine", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "5OW89S9JXE-mllkIWMg8hg", + "name": "Famous Famiglia", + "address": "Terminal A, Gate A18", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876751, + "longitude": -75.247162, + "stars": 2.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "-8-8mbxQEpZx8Zs_nrzljA", + "name": "Ga-In BeautyZone", + "address": "127 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95482589, + "longitude": -75.1575158075, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Eyelash Service, Shopping, Cosmetics & Beauty Supply", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "MWkHcojxjDSBXEB2jYfnJQ", + "name": "Three Bears Park", + "address": "319 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9442205, + "longitude": -75.14794, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Playgrounds", + "hours": null + }, + { + "business_id": "qh7T0rql3chxxuORLMse2Q", + "name": "Yellow Juice Bar", + "address": "2046 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513742, + "longitude": -75.1750697, + "stars": 4.0, + "review_count": 85, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Juice Bars & Smoothies, Food", + "hours": { + "Tuesday": "11:0-14:0", + "Wednesday": "11:0-14:0", + "Thursday": "11:0-14:0", + "Friday": "11:0-14:0", + "Saturday": "11:0-14:0", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "PhLYLCjM_dS_seS_fMBVeg", + "name": "Helium Comedy Club", + "address": "2031 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515214293, + "longitude": -75.1748099467, + "stars": 3.5, + "review_count": 352, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False", + "Smoking": "u'outdoor'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "True" + }, + "categories": "Nightlife, Restaurants, American (Traditional), Comedy Clubs", + "hours": { + "Tuesday": "18:0-22:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "17:30-0:0", + "Saturday": "17:30-0:0" + } + }, + { + "business_id": "i8HEz6GekMb7hRukPBC-nA", + "name": "The Ave Live", + "address": "520 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959857, + "longitude": -75.1378328, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Nightlife, Arts & Entertainment, Music Venues", + "hours": null + }, + { + "business_id": "KCCF-VmT65o9cVTsuwwk2A", + "name": "Symmetry Dance Wellness", + "address": "1529 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441494, + "longitude": -75.168088, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Active Life, Fitness & Instruction, Performing Arts, Dance Studios, Arts & Entertainment", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-18:30", + "Saturday": "10:0-13:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "o_YAVGXNvuhO_1xmyxLmaQ", + "name": "Fire & Ice", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516498, + "longitude": -75.1682121, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "5swkXP5AlwqV7s6yvLhQKw", + "name": "Jalsa", + "address": "246 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949861, + "longitude": -75.145526, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "Restaurants, Indian", + "hours": null + }, + { + "business_id": "8d7ogv-SF9p5HoESZ7TmYg", + "name": "Whodunit", + "address": "1931 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521261, + "longitude": -75.1730596, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Monday": "12:0-18:30", + "Tuesday": "12:0-18:30", + "Wednesday": "12:0-18:30", + "Thursday": "12:0-18:30", + "Friday": "12:0-18:30", + "Saturday": "12:0-18:30" + } + }, + { + "business_id": "iBBUqYyjJMYvYt_jgTSDeQ", + "name": "STUMP", + "address": "956 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9655875, + "longitude": -75.1405686, + "stars": 5.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Home Decor, Nurseries & Gardening, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "AIEvgiZITx7khY_EViqz7Q", + "name": "Universal Auto Repair", + "address": "447 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0771008, + "longitude": -75.0828091, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Dry Cleaning & Laundry, Oil Change Stations, Local Services, Smog Check Stations, Auto Repair, Body Shops, Transmission Repair, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "gwZwkJG6MxM-0vL1T7xf2g", + "name": "Local Trusted Locksmith", + "address": "13109 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1279559, + "longitude": -75.0135152, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0" + } + }, + { + "business_id": "uVri4t3oyA7gqbX5q7_0LA", + "name": "El Balconcito", + "address": "658 E Godfrey Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0382105, + "longitude": -75.1018915, + "stars": 3.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "CoatCheck": "False", + "WheelchairAccessible": "True" + }, + "categories": "Peruvian, Portuguese, Dentists, Restaurants, General Dentistry, Health & Medical, Nightlife, Cocktail Bars, Bars, Iberian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "LY4NDxWKK4uEwUh7oBOBmA", + "name": "Vapordelphia", + "address": "603 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942455, + "longitude": -75.156916, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Vape Shops, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "EEgRSdg7EkrJ_6mOhQxv-w", + "name": "Focus Travel Bus", + "address": "55 N 11th St, Unit 57", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9531612, + "longitude": -75.1578901, + "stars": 1.5, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Buses, Hotels & Travel, Transportation, Travel Services", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "1el_4ywdqa2lIsI1YPEbsg", + "name": "Utsav Indian Cuisine", + "address": "13314 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1290943, + "longitude": -75.0237451, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Indian", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "NJVE37nRqAuTJ3OnBWEddg", + "name": "Nam Son", + "address": "1601 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938513, + "longitude": -75.1703859, + "stars": 4.0, + "review_count": 114, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Caters": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "DcepdH3MsMWD0hEc6FmDew", + "name": "Ozzy's Pizza Shop II", + "address": "5640 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0375249, + "longitude": -75.1305128, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "WiFi": "'no'" + }, + "categories": "Pizza, Chicken Wings, Restaurants, Salad", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "yHlMlOwgq65zWw84rLTxkw", + "name": "WorldWide Beverage", + "address": "508 E Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0345613, + "longitude": -75.2155888, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "-IZpkWsJKfq35eJLzaUcvA", + "name": "U Bar", + "address": "1220 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947654, + "longitude": -75.161553, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': None}", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': False}", + "OutdoorSeating": "True" + }, + "categories": "Gay Bars, Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "hFW2yaGTHtZc6bbyP0lZdQ", + "name": "Wow Wings", + "address": "6320 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0590817, + "longitude": -75.1653685, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "GoodForKids": "True" + }, + "categories": "Chicken Wings, Restaurants, American (Traditional)", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "1M7b87GZXWOTjQTq3cxRBw", + "name": "Betty's Speakeasy", + "address": "2241 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448725, + "longitude": -75.1800695, + "stars": 4.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "HasTV": "False" + }, + "categories": "Restaurants, Coffee & Tea, Desserts, Bakeries, Food, Sandwiches", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "z65tiTFYszkAJ4NhLpkiBA", + "name": "Adonis Theater", + "address": "2026 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951228, + "longitude": -75.174488, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Cinema, Performing Arts", + "hours": null + }, + { + "business_id": "6u9NhxUW3Y8rhZ7BJGEcdg", + "name": "Fink's Hoagies", + "address": "132 S Eighth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485218875, + "longitude": -75.154272936, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "OF-aQkC7MZ6EmI8_ZNOKcg", + "name": "Gordon & Sons", + "address": "2640 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9780265, + "longitude": -75.1148125, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Glass Services, Automotive, Home Decor, Kitchen & Bath, Glass & Mirrors, Home Services, Home & Garden, Shopping", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "wmshiKBSc-fW2F7M3WAyuw", + "name": "Chestnut Wash & Lube", + "address": "4125 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563895, + "longitude": -75.205495, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Oil Change Stations, Automotive, Auto Detailing", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-16:30" + } + }, + { + "business_id": "HNSozcDwK5ei5YsWsfUVmg", + "name": "HouseCheck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952672, + "longitude": -75.168215, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Environmental Testing, Local Services, Home Inspectors, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "jbu26DjWdZhivWCEs5jvwg", + "name": "Ethical Society of Philadelphia", + "address": "1906 South Rittenhouse Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948662, + "longitude": -75.173001, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations", + "hours": null + }, + { + "business_id": "zXL2yGMLOvc4X-Phorm5Fw", + "name": "Slack's Hoagie Shack", + "address": "1619 Grant Ave, Ste 14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0876868096, + "longitude": -75.0396059096, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Delis, Sandwiches, Restaurants, Salad, Wraps", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "D-_YWOPwibDCqWNxHYqUWQ", + "name": "Toys R Us", + "address": "3401 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.990086, + "longitude": -75.100234, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Toy Stores", + "hours": null + }, + { + "business_id": "uXgdMfqsY2SCcyooURjZOw", + "name": "US Post Office", + "address": "925 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9309344, + "longitude": -75.1606135, + "stars": 2.0, + "review_count": 120, + "is_open": 1, + "attributes": null, + "categories": "Shipping Centers, Local Services, Public Services & Government, Post Offices", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-13:30" + } + }, + { + "business_id": "BB1JmWGwv2RIlSdhLiNHkA", + "name": "Crescent Cab", + "address": "7009 Grays Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9180564, + "longitude": -75.2395091, + "stars": 1.0, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Taxis, Transportation", + "hours": null + }, + { + "business_id": "oB1Xm33l31m0Bkst0ZP6fQ", + "name": "T-Mobile", + "address": "500-02 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941731, + "longitude": -75.150862, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mobile Phones, Shopping, IT Services & Computer Repair, Telecommunications, Local Services, Mobile Phone Accessories", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "3DFJuwPDIPbEUwA6Tp9E6Q", + "name": "Commonwealth Proper", + "address": "1839 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520413, + "longitude": -75.1717524, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "oHR9GShr6jVS-j7fF30BOA", + "name": "Cellular 2000 LLC", + "address": "649 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9357508, + "longitude": -75.1551843, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Mobile Phones, Mobile Phone Repair, IT Services & Computer Repair, Shopping, Mobile Phone Accessories", + "hours": null + }, + { + "business_id": "qqIYDxwJjCQxpPKN5oaUqw", + "name": "T-Mobile", + "address": "1506 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949529, + "longitude": -75.1663369, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Telecommunications, Local Services, Mobile Phone Accessories, Electronics, IT Services & Computer Repair, Mobile Phones", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "EeUhcxo8kw5V21pgYSWliA", + "name": "Cure Hair Studio", + "address": "1526 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.933147, + "longitude": -75.1704871, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Hair Salons", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "x9m3QI3wc4Q8X3GQr6slFA", + "name": "Sunrise Cleaners", + "address": "6109 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0338955, + "longitude": -75.2154464, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Dry Cleaning, Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "9NV4U93U4nVnJje1DZrxPA", + "name": "Beauty Walls and Floor", + "address": "900 N Broad St, Ste 144", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9704451, + "longitude": -75.1601543, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Pressure Washers, Flooring, Painters, Handyman, Contractors, Tiling, Home Cleaning, Drywall Installation & Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "jgi-7LWLzcGkPvqFryqI6A", + "name": "Dunkin'", + "address": "7221 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0296217, + "longitude": -75.035676, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Sandwiches, Donuts, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "Qc974_Ezjpqg2wW5uoEUxA", + "name": "Level Up Bar & Lounge", + "address": "1330 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491522, + "longitude": -75.1633947, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "Corkage": "False", + "BYOB": "False", + "CoatCheck": "False", + "OutdoorSeating": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "HasTV": "True" + }, + "categories": "American (Traditional), Restaurants, Nightlife, Sports Bars, Gay Bars, Bars", + "hours": { + "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" + } + }, + { + "business_id": "hxh1ongobphqXq30V13ukg", + "name": "Bottle Bar East", + "address": "1308 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970471, + "longitude": -75.134725, + "stars": 4.0, + "review_count": 271, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForKids": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "Smoking": "u'no'", + "Music": "None", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "CoatCheck": "False" + }, + "categories": "Food, Bars, American (Traditional), Nightlife, Gastropubs, Barbeque, Breakfast & Brunch, Restaurants, Pubs, Sports Bars, Beer, Wine & Spirits, Beer Bar", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "qdpKQPyOj0ZR5KGuIoeqsA", + "name": "Bamboo", + "address": "101 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955625, + "longitude": -75.1727775, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Nightlife, Lounges, Dance Clubs", + "hours": null + }, + { + "business_id": "vKOFm_lNZqwhQEUv0bVkfw", + "name": "Athletez Who Move", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Local Services, Demolition Services, Junk Removal & Hauling, Packing Supplies, Packing Services, Movers, Home Services", + "hours": { + "Monday": "5:0-0:30", + "Tuesday": "5:0-0:30", + "Wednesday": "5:0-0:30", + "Thursday": "5:0-0:30", + "Friday": "5:0-0:30", + "Saturday": "5:0-0:30", + "Sunday": "5:0-0:30" + } + }, + { + "business_id": "qOmeW59kdVvqHHlRCsCs9g", + "name": "Angela Jane Pavilion", + "address": "8410 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0635867, + "longitude": -75.0435004, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Physical Therapy", + "hours": null + }, + { + "business_id": "ylYiBWR1EYXU5hzl-t1uvQ", + "name": "Sebastian Moving Philadelphia", + "address": "1906 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.009244, + "longitude": -75.084786, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "IyJcI31KqXROaDAtJNf0uQ", + "name": "Studio Teknik", + "address": "936 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942623, + "longitude": -75.1581407, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "1fZSiIItAjn8JiDm9HUYvw", + "name": "Home Cuban Cafe", + "address": "17 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9508207, + "longitude": -75.1453145, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "False", + "Caters": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vegan, Cuban, Cafes, Breakfast & Brunch, Latin American, Caribbean", + "hours": { + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "17:0-21:0", + "Saturday": "7:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "OlObggjRSlwv73Ured8DZg", + "name": "The Wireless Center", + "address": "1901 Caloowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609219, + "longitude": -75.1706494, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Professional Services, Mobile Phone Accessories, Shopping, Internet Service Providers, Mobile Phones", + "hours": null + }, + { + "business_id": "wyh8nZqjR0D_t86F3v7oPw", + "name": "Paradise Nails", + "address": "509 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423696, + "longitude": -75.1488489, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nail Salons, Hair Removal, Beauty & Spas, Waxing", + "hours": { + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "Rx6d8NSWTdOt9Nd8QWjfZw", + "name": "Two Street Cafe", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517142, + "longitude": -75.1557198, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HappyHour": "True" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "RLfWxrfM36gG13ytfG-ZQQ", + "name": "Dental Dreams", + "address": "2459 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.974918, + "longitude": -75.1194195, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry, Pediatric Dentists, Cosmetic Dentists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "03qRiWY2GZ8AJChPv41wCQ", + "name": "Lucky Chinese Cookie Factory", + "address": "155 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550089, + "longitude": -75.15416, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Specialty Food, Food, Local Flavor", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "OBHh5Nm8lw52psIAXGOGYg", + "name": "Gamestop", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.913069, + "longitude": -75.154806, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Toy Stores", + "hours": null + }, + { + "business_id": "DYfnzT72M_t4htMYiOzNNQ", + "name": "US Post Office", + "address": "7782 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.073839, + "longitude": -75.195175, + "stars": 1.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Post Offices, Local Services, Shipping Centers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "YoJ_0W9dTX5cVzLI9oihzg", + "name": "Primal Supply Meats", + "address": "1538 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930134, + "longitude": -75.1633534, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Meat Shops, Butcher, Food", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "_r8NzYPbwkBDwxZepILV7Q", + "name": "Fischer Roofing Contractors", + "address": "7800 Rockwell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0715956, + "longitude": -75.0834697, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Services, Painters, Roofing, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0" + } + }, + { + "business_id": "ItgkjSjo5rXmnBH3Vww_Xg", + "name": "Starbucks", + "address": "1945 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960909, + "longitude": -75.171453, + "stars": 3.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0", + "Saturday": "5:30-20:0", + "Sunday": "5:30-20:0" + } + }, + { + "business_id": "WbZaYXT0RcWF4ABlI2h8mg", + "name": "Saladworks at Shoprite", + "address": "1575 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.97831827, + "longitude": -75.2232638491, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Restaurants, Salad", + "hours": { + "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" + } + }, + { + "business_id": "laXWQMgAW2kUfAH7Y-xH8w", + "name": "Sarconeโ€™s Bakery", + "address": "758 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940123, + "longitude": -75.157842, + "stars": 4.5, + "review_count": 120, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Bakeries, Food, Restaurants", + "hours": { + "Tuesday": "7:30-15:30", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:30", + "Friday": "7:30-16:0", + "Saturday": "7:30-15:0", + "Sunday": "7:30-13:0" + } + }, + { + "business_id": "GUwFJByGCwguuB5CAVpXBQ", + "name": "Kathleen Wu DMD", + "address": "246 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9694544, + "longitude": -75.1412441, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-15:0" + } + }, + { + "business_id": "fJhOwBljOz3VJV-BhCB3hg", + "name": "Home2 Suites by Hilton Philadelphia - Convention Center, PA", + "address": "1200 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536826978, + "longitude": -75.159804225, + "stars": 3.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "Qb5QKILoqYV1zuKE7Dzfzw", + "name": "Firth & Wilson Transport Cycles", + "address": "1315 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9709395, + "longitude": -75.1364903, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Sporting Goods, Local Services, Shopping, Bike Repair/Maintenance, Bikes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:30-16:0", + "Wednesday": "13:30-16:0", + "Thursday": "13:30-16:0", + "Friday": "10:0-13:0", + "Saturday": "13:30-16:0" + } + }, + { + "business_id": "8k3IvUeYZOf5XdM4VslcKg", + "name": "FedEx Office Ship Center", + "address": "1500 Market St, Ste 41", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9521508978, + "longitude": -75.166169107, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Shipping Centers, Couriers & Delivery Services, Signmaking, Professional Services, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "t4D5nqga9s_hRcawGNis2Q", + "name": "Patriot Parking", + "address": "1616 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949255, + "longitude": -75.1678909, + "stars": 2.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "y4wHN6CBd0se-QNwMdSM0A", + "name": "Qdoba Mexican Grill", + "address": "1105 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489469, + "longitude": -75.159238, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "0dGldeEVtqx8CG1XdygmAQ", + "name": "Temple University Hospital - Jeanes Campus", + "address": "7600 Central Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.070473, + "longitude": -75.08785, + "stars": 1.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "PTvvqYhikPfXalzhknWhfA", + "name": "Comcast Communications", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545639, + "longitude": -75.1684674, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Landmarks & Historical Buildings, Professional Services, Public Services & Government, Local Services, Internet Service Providers", + "hours": null + }, + { + "business_id": "lkQP24RF-W7Hvb2WOPJWAw", + "name": "Metropolitan Bakery", + "address": "4013 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954332, + "longitude": -75.2033585, + "stars": 3.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "False", + "Alcohol": "'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Food, Coffee & Tea, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "J7oMBdDypJ3lc738Luxpqw", + "name": "Drexel OB-Gyn Associates", + "address": "255 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Obstetricians & Gynecologists", + "hours": null + }, + { + "business_id": "0FzbiQyBnFnH1OkMol_mgQ", + "name": "Starbucks", + "address": "1801 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953382, + "longitude": -75.1702, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "7:0-18:30", + "Sunday": "7:0-18:30" + } + }, + { + "business_id": "T2IyX6bZMyt8nACcEfXRVA", + "name": "Park Bench Dog Daycare", + "address": "2101 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9801649, + "longitude": -75.1327372, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Groomers, Pet Sitting, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30" + } + }, + { + "business_id": "Y0PniktyQwKSbiJait1qyA", + "name": "Safeguard Self Storage", + "address": "3300 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9946728409, + "longitude": -75.1076245308, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Self Storage, Local Services, Packing Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:30-16:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "OxzP06mJMfoxGG5nE3KMpA", + "name": "Java Colonial Cafe", + "address": "1122 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9369601, + "longitude": -75.1629132, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Indonesian", + "hours": null + }, + { + "business_id": "f03SYXIT37YmarHDZd1wMA", + "name": "Banana Republic", + "address": "1401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949488927, + "longitude": -75.1644269858, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Shoe Stores, Women's Clothing, Men's Clothing, Fashion, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "SwPrd4HE39s_k96TLD1LIQ", + "name": "BR Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "YZSXUZGjUohsYnKUytKzUA", + "name": "Rim's One Hour Cleaners", + "address": "2203 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9454567, + "longitude": -75.1787744, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Laundry Services, Local Services, Shoe Repair, Dry Cleaning & Laundry", + "hours": { + "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" + } + }, + { + "business_id": "uHhnnzDTPgjBX-THV_cCAw", + "name": "Johnny Manana's", + "address": "4201 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0089296, + "longitude": -75.1939793, + "stars": 2.5, + "review_count": 236, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "HasTV": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Mexican, Tex-Mex", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "Lw1gzZZGI2GFQc6BI5zyJw", + "name": "Kite & Key", + "address": "1836 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960395, + "longitude": -75.169675, + "stars": 3.5, + "review_count": 439, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "5sGryBnSx35jx7rBbr_DnQ", + "name": "Spa East", + "address": "Liberties Walk, 1040 N 2nd St, Ste 30", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672329, + "longitude": -75.1401103, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage, Nail Salons, Day Spas, Beauty & Spas", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "C2_qmzaYr9o0Yk5Ya5RkUQ", + "name": "Pasiano's", + "address": "7100 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0263918, + "longitude": -75.0371183, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Italian, Filipino", + "hours": { + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "6wp5aQwLyQFIguO_gsS0cw", + "name": "Three Boudoir", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Boudoir Photography, Session Photography, Photographers", + "hours": { + "Monday": "8:30-15:30", + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "8:30-15:30", + "Friday": "8:30-15:30", + "Saturday": "8:30-15:30", + "Sunday": "8:30-15:30" + } + }, + { + "business_id": "hrJYdX8ArjX7CwekX66e9A", + "name": "Salvito's Pizza Palace", + "address": "9045 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0624239, + "longitude": -75.0220275, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Caters": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Steakhouses, Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "GWsSHV8IpaPTQY6t-F-1wA", + "name": "I Goldberg Army & Navy", + "address": "718 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492625, + "longitude": -75.1532997, + "stars": 4.0, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Men's Clothing, Shoe Stores, Sporting Goods, Outdoor Gear, Fashion, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "vFDGCmR5iH34PdoBhTYh_A", + "name": "J&P Seafood", + "address": "4820 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9536285, + "longitude": -75.2189512, + "stars": 3.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "OutdoorSeating": "True" + }, + "categories": "Specialty Food, Grocery, Desserts, Food, Fruits & Veggies, Restaurants, Delis, Seafood, Salad", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "6YY9BXQeclIzyR5PJOtPzw", + "name": "Herron Park Playground & Sprayground", + "address": "2nd & Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9303151, + "longitude": -75.1480579, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Playgrounds, Active Life, Shopping", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "L-Ts61WIQZP_bEqzYmpLrQ", + "name": "Worth Repeating Shop", + "address": "7900 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0694826, + "longitude": -75.1999827, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Used, Vintage & Consignment, Shopping, Thrift Stores, Fashion", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "9lyYoyMZ7wqqMSaP05usSQ", + "name": "Aqua Salon", + "address": "402 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9466324, + "longitude": -75.1748312, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "1LAjvhM5Mf4JUQUBVXbbsg", + "name": "Salon Stage", + "address": "13037 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.124495, + "longitude": -75.014394, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "4", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Event Planning & Services, Wedding Planning, Eyelash Service, Skin Care, Makeup Artists, Beauty & Spas, Hair Salons, Hair Removal", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-16:0", + "Friday": "12:0-16:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "SSBsKbKd0VAIupsjDGmmRQ", + "name": "The Duke Barber Co.", + "address": "7946 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0704431, + "longitude": -75.2008442, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "4LgeK9DOwJv9nke33uU-9Q", + "name": "Penn DOT", + "address": "7121 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0630178751, + "longitude": -75.1517341, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Departments of Motor Vehicles, Public Services & Government", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:0-16:15", + "Thursday": "8:0-16:15", + "Friday": "8:30-16:30", + "Saturday": "8:0-16:15" + } + }, + { + "business_id": "Z2lPPepL10Mb13Ztw4IDEA", + "name": "Zarett Rehab and Fitness", + "address": "520 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9450544, + "longitude": -75.1735613, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Health & Medical, Rehabilitation Center, Massage Therapy, Orthopedists, Physical Therapy", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "7:0-13:0" + } + }, + { + "business_id": "pDUcsN79bDwhOMBaD_tm-g", + "name": "Cafe Pho Ga Thanh Thanh", + "address": "2539 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.98817, + "longitude": -75.1282, + "stars": 4.0, + "review_count": 229, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Asian Fusion, Restaurants, Cafes, Vietnamese, Specialty Food", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "WV-1jUnWOxok-qfGjkEw3A", + "name": "New York Chicken, Lamb Gyro, Falaffel & Rice Food Cart", + "address": "17TH And Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952331, + "longitude": -75.168574, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Imported Food, Ethnic Food, Street Vendors, Specialty Food, Food", + "hours": { + "Monday": "11:0-14:30", + "Tuesday": "11:0-14:30", + "Wednesday": "11:0-14:30", + "Thursday": "11:0-14:30", + "Friday": "11:0-14:30" + } + }, + { + "business_id": "fmg3x5ug-SUldGnJrJU1yA", + "name": "Stephen D. Hess, MD, PhD", + "address": "1500 Walnut St, Ste1240", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Beauty & Spas, Health & Medical, Dermatologists, Skin Care", + "hours": { + "Monday": "8:30-16:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "pW5DXTpKnw3y0fopipbJVg", + "name": "Landmark Americana Tap & Grill - University City", + "address": "3333 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9559586568, + "longitude": -75.1906506718, + "stars": 3.0, + "review_count": 394, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "American (New), Sports Bars, Bars, Restaurants, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "ex8RrhAhVVexndFhmNfG1Q", + "name": "Wokworks", + "address": "1935 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522011, + "longitude": -75.1731727, + "stars": 4.0, + "review_count": 213, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "None", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "DriveThru": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Food, Specialty Food, Fast Food, Asian Fusion, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0" + } + }, + { + "business_id": "p-EnMBzaHNg30EBJRtxMAA", + "name": "Rosebud's Investments", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "v61wRXqmrsBjoJrKkIHj9g", + "name": "Brick and Mortar", + "address": "315 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9577723662, + "longitude": -75.1584718344, + "stars": 4.0, + "review_count": 132, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Music": "{'dj': False}", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "True", + "OutdoorSeating": "True" + }, + "categories": "Bars, Beer Bar, Cocktail Bars, Restaurants, Nightlife, American (Traditional), Sandwiches", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "_AGmdAQxIjHiqMFCZC-Uaw", + "name": "Excel Physical Therapy- Washington Square", + "address": "601 Walnut St, Ste 647", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482696, + "longitude": -75.1511709, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Physical Therapy, Sports Medicine", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "cc2QOQHfrR4wUvvSORrlEQ", + "name": "Bob's Secondhand Appliance", + "address": "8018 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.042001, + "longitude": -75.027524, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services", + "hours": null + }, + { + "business_id": "v1LfhgHi6oGSInDKwMdtFw", + "name": "Same Same", + "address": "614 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961359984, + "longitude": -75.141358211, + "stars": 4.0, + "review_count": 109, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "Caters": "True" + }, + "categories": "Noodles, Sandwiches, Restaurants, Wraps, Vietnamese", + "hours": { + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "13:0-21:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "W49fAQGBt9IgduhvqqRQ4Q", + "name": "Cafe L'Aube", + "address": "1631 Wallace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9658632, + "longitude": -75.1655485, + "stars": 4.0, + "review_count": 120, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Food, Coffee & Tea, Creperies, French", + "hours": null + }, + { + "business_id": "O2g_gH6hkK6zH2-xHb20EQ", + "name": "Gabay & Gottlieb Cosmetic Surgery Center", + "address": "9500 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0816606, + "longitude": -75.0287595, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetic Surgeons, Medical Centers, Tattoo Removal, Doctors, Plastic Surgeons, Health & Medical", + "hours": { + "Monday": "2:0-19:0", + "Tuesday": "2:0-17:0", + "Wednesday": "2:0-19:0", + "Thursday": "2:0-17:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "deA06KLDS11uTDtUUrohRw", + "name": "Mucho Bueno", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Caters": "True", + "Alcohol": "'none'" + }, + "categories": "Food, Food Trucks", + "hours": null + }, + { + "business_id": "dJH7mUzf1VFgysYgWjH6fA", + "name": "Reds & Son Foreign Car Repair", + "address": "338 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9590503, + "longitude": -75.1601867, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Automotive, Auto Repair, Transmission Repair, Towing, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "3tR1GRfd-0moZ8F-L6MGaA", + "name": "Hilltown Tavern - Fairmount", + "address": "795 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9697986, + "longitude": -75.1763008, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "WiFi": "u'free'", + "Corkage": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Caters": "False", + "HappyHour": "True" + }, + "categories": "Breakfast & Brunch, Burgers, Restaurants, Sports Bars, Pubs, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "15:0-19:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "uENZI2awSMsHIpmg-snXFg", + "name": "Sam Ash Music Stores", + "address": "1887 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0908490274, + "longitude": -74.9607918121, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Musical Instrument Services, Local Services, Musical Instruments & Teachers, Electronics, Guitar Stores", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "S1Qe3KJho4R0ML8YnQr9lw", + "name": "M & J Market & Gas", + "address": "7100 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.062257, + "longitude": -75.1523, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Gas Stations, Automotive", + "hours": null + }, + { + "business_id": "-yukfO02FkmJ35NBBgAh9A", + "name": "Poison Ivy Horticulturist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.991547, + "longitude": -75.240751, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home & Garden, Shopping, Home Services, Nurseries & Gardening", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "HngRiL6Z3DFTDnNsXZ0TQw", + "name": "Stateside", + "address": "1536 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930249, + "longitude": -75.163265, + "stars": 3.5, + "review_count": 358, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "True", + "Caters": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Tapas/Small Plates, American (New), Bars, Restaurants", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "LF1hK-Q68vY3t7Xrrd6mLw", + "name": "Newmans Grill", + "address": "5946 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0388462, + "longitude": -75.1776332, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Breakfast & Brunch, American (Traditional), Restaurants, Cajun/Creole, Halal", + "hours": { + "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" + } + }, + { + "business_id": "RFLX8_Bkr_fFSTxYMRkFHw", + "name": "Center City Contractors", + "address": "2229 Amber St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.981606742, + "longitude": -75.1300731454, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Cabinetry, Painters, Home Services, Contractors, Flooring, Professional Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "9S8rfgVp6vA2pUZZUvoBoA", + "name": "Chestnut Hill Sports", + "address": "8628 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770377, + "longitude": -75.2086714, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Sporting Goods, Men's Clothing, Sports Wear, Fashion, Shopping", + "hours": null + }, + { + "business_id": "tu7fU-iocXBL4XYfOxcODA", + "name": "Philly Tech Help", + "address": "3469 Bowman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0116696, + "longitude": -75.1883836, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Security Systems, Home Services, Home Network Installation, Local Services, IT Services & Computer Repair, Data Recovery, Telecommunications", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "8-CnBPjMxQj195wDxZrHEA", + "name": "Beck's Cajun Cafe", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953175, + "longitude": -75.158621, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Cajun/Creole, Restaurants", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "5WF3593by2u-aE_WaM7_Mw", + "name": "Tea Leaf", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95333, + "longitude": -75.15917, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Caters": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Restaurants, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "QI0FYatL0VtX07duLHdu9A", + "name": "Bonded BoutiqueCleaners", + "address": "3724 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509776, + "longitude": -75.1984126, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Accessories, Dry Cleaning & Laundry, Fashion, Sewing & Alterations, Women's Clothing, Local Services, Laundry Services, Shopping", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "fixjFaCYK2yDz5F-L2ASeg", + "name": "Muscle Maker Grill", + "address": "2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.078208, + "longitude": -75.02719, + "stars": 2.5, + "review_count": 92, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, American (New), Salad, Juice Bars & Smoothies, Wraps, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "yMj8o1VW4NiUe8CEXSaRZQ", + "name": "Lucky Star Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services, Local Services", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "jMdbO3UmGJDbvW-HH8Ggug", + "name": "Lapstone", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Handyman, Home Services, Interior Design, Contractors, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "BrYsblzvygkDG_--9suxbQ", + "name": "Medusa Lounge", + "address": "27 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525308, + "longitude": -75.1752475, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Dance Clubs, Nightlife, Lounges, Bars, Dive Bars", + "hours": { + "Wednesday": "22:0-2:0", + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "3aOvhh2lSwDiq1MtQLHoDA", + "name": "Academic Bistro", + "address": "101 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9578888, + "longitude": -75.1889308, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Event Planning & Services, Restaurants, Education, Venues & Event Spaces, Colleges & Universities, American (New), Food", + "hours": null + }, + { + "business_id": "3RwqdIWmBgKF3HpKSlHNSg", + "name": "Cafรฉ Loftus Downtown", + "address": "136 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499336, + "longitude": -75.1658793, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "OutdoorSeating": "True", + "GoodForKids": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Coffee & Tea, Sandwiches, Food, Restaurants", + "hours": null + }, + { + "business_id": "7UQaMpHSixAe2e3uebyn3Q", + "name": "Wise Fries Burger & Pies", + "address": "1717 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262078, + "longitude": -75.1493364, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": null + }, + { + "business_id": "qDRjceFNH7Mxv9M-ZvDitg", + "name": "Rittenhouse Farmers' Market", + "address": "18th & Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950181, + "longitude": -75.170536, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False" + }, + "categories": "Food, Farmers Market", + "hours": { + "Tuesday": "10:0-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "DIGW-yEmaQeEq_SJKvbZyg", + "name": "Fiesta Acapulco", + "address": "1122 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9357545, + "longitude": -75.1587136, + "stars": 2.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-23:45", + "Tuesday": "10:0-23:45", + "Wednesday": "10:0-23:45", + "Thursday": "10:0-23:45", + "Friday": "10:0-23:45", + "Saturday": "10:0-23:45", + "Sunday": "10:0-23:45" + } + }, + { + "business_id": "YkAhDcLnFS_hlCt4wp0OJw", + "name": "Vesper Sporting Club - Northern Liberties", + "address": "1029 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966258, + "longitude": -75.1382568, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Sports Bars, Restaurants, Breakfast & Brunch, Nightlife, Bars", + "hours": { + "Saturday": "11:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "89gMRtved9315_howyDEFQ", + "name": "The Tailory", + "address": "3901A Main St, Ste 203A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.020552, + "longitude": -75.215863, + "stars": 5.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "Nn5AewAZjpUomf1lslcwAw", + "name": "City Wide Rolling Gate Repair Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644541, + "longitude": -75.145782, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Home Services, Fences & Gates, Local Services, Metal Fabricators, Garage Door Services, Door Sales/Installation", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "W0O1riXLSUitiomnl2smRw", + "name": "Oteri's Italian Bakery | Frankford Ave", + "address": "7518 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0388690435, + "longitude": -75.035620809, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Restaurants, Food, Delis, Gelato", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "tVRUWxoM2D2SghBMnN6-Ig", + "name": "Global Services", + "address": "7707 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0570121118, + "longitude": -75.060118661, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Air Duct Cleaning, Heating & Air Conditioning/HVAC, Local Services, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "a-dPw0ISYHoxMmWgd4mK-g", + "name": "Starbucks", + "address": "347 South Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941685, + "longitude": -75.149059, + "stars": 3.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Caters": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-0:0", + "Saturday": "5:30-0:0", + "Sunday": "5:30-15:0" + } + }, + { + "business_id": "-v22Vz1chVp8VL4pnSj5RA", + "name": "Supreme Siding & Remodeling", + "address": "645 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9180345, + "longitude": -75.1591321, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Contractors, Handyman", + "hours": null + }, + { + "business_id": "QcU7EiHFQL8pVnOHZBPs2A", + "name": "PetSmart", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.100702, + "longitude": -75.010545, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pet Stores, Pet Training, Pet Services, Pets", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "X3ItPYxc6dIvFXp6Xij21w", + "name": "Subway", + "address": "1800 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9625709, + "longitude": -75.168772, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Delis, Sandwiches, Fast Food, Restaurants", + "hours": null + }, + { + "business_id": "y1Z9tymuBGVDZnYZoLk-2Q", + "name": "Fork", + "address": "306 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500007, + "longitude": -75.146124, + "stars": 4.0, + "review_count": 640, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Corkage": "True", + "WheelchairAccessible": "True" + }, + "categories": "Burgers, American (New), Restaurants, Breakfast & Brunch", + "hours": { + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "Kw94tchxjpDMF1ZnYWK7Iw", + "name": "UrbanBurb Furniture", + "address": "4313 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0251557, + "longitude": -75.2223357, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home & Garden, Furniture Stores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "chwav4bLLe8vYwSfUNaWBg", + "name": "Taqueria La Herradura", + "address": "183 W Duncannon", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0295466, + "longitude": -75.1256451, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "ua2_pF6trfzbfgSCC048VA", + "name": "D L Salon", + "address": "932 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472049, + "longitude": -75.1573318, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "hhper8vIQRHpEZRufltj1Q", + "name": "The 700", + "address": "700 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620459, + "longitude": -75.1413923, + "stars": 3.5, + "review_count": 184, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "AgesAllowed": "u'21plus'", + "CoatCheck": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'outdoor'", + "BYOB": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForDancing": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Nightlife, Dance Clubs, Music Venues, Arts & Entertainment, Bars", + "hours": { + "Monday": "15:30-2:0", + "Tuesday": "15:30-2:0", + "Wednesday": "15:30-2:0", + "Thursday": "15:30-2:0", + "Friday": "15:30-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "2sTSM3x0kWafo1SlEEWZHA", + "name": "Kavei Cambodian Restaurant", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9143653, + "longitude": -75.1531651, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Asian Fusion", + "hours": null + }, + { + "business_id": "fEG7m5JFodBhu4Gvu7E3uA", + "name": "Dentistry in Philadelphia", + "address": "1628 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9473184, + "longitude": -75.1692227, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Periodontists, Dentists, General Dentistry, Cosmetic Dentists, Endodontists, Oral Surgeons, Health & Medical, Orthodontists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "szXMdFc2VfsETETGAYKmiw", + "name": "The Bridgeview Cafe", + "address": "4600 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9997492, + "longitude": -75.0690915, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True" + }, + "categories": "Caterers, Breakfast & Brunch, Event Planning & Services, Burgers, Restaurants, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "dYinIkKBspHV5hSaukklFg", + "name": "L'Angolo Ristorante", + "address": "1415 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.919628, + "longitude": -75.1713762, + "stars": 4.5, + "review_count": 386, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "DriveThru": "True", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "1kMT0Sb67WORROJCPOuL0Q", + "name": "Crab Du Jour - Bustleton", + "address": "6234 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0339992, + "longitude": -75.0719515, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Cajun/Creole, Seafood", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "E-DeHPIcuaRuuEa9hXMn_Q", + "name": "Bellevue Salon & Spa", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949028, + "longitude": -75.164482, + "stars": 4.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Skin Care, Hair Salons, Day Spas, Beauty & Spas", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "johAHZaOAL3SgeX7_2br_A", + "name": "Siam Cuisine", + "address": "925 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536018, + "longitude": -75.1558116, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Thai", + "hours": null + }, + { + "business_id": "Rwirqn9cmt5xhTUZ5V-idw", + "name": "Crossroads Coffee House", + "address": "6156 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0346271, + "longitude": -75.2166784, + "stars": 4.0, + "review_count": 76, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Food, Coffee & Tea, Restaurants, Sandwiches", + "hours": { + "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": "9:0-16:0" + } + }, + { + "business_id": "3ruZF8NwSWZH6XoAYl6sBg", + "name": "Craft Beer Shoppe", + "address": "430 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9734336757, + "longitude": -75.1310516149, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": null + }, + { + "business_id": "QobemDERpGVpSAbGMSqfFw", + "name": "Flying Angels", + "address": "One International Plz, Ste 550", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8740341, + "longitude": -75.2569707, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Travel Services, Health & Medical, Medical Transportation, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "vDFMen3_UvgbMvMOjkVMyw", + "name": "Phil's Excellent Auto Service", + "address": "1841 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9291152, + "longitude": -75.1852262, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Oil Change Stations, Towing, Automotive, Auto Repair, Smog Check Stations, Transmission Repair, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "l5Ie83k7G00K0EOv-qLc8A", + "name": "Rosa's Pretzel Bakery", + "address": "441 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.970406, + "longitude": -75.1446988, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Sandwiches, Bakeries, Restaurants", + "hours": { + "Monday": "6:30-16:0", + "Tuesday": "6:30-16:0", + "Wednesday": "6:30-16:0", + "Thursday": "6:30-16:0", + "Friday": "6:30-16:0" + } + }, + { + "business_id": "fYUeuKAPBFvQ3YyyZHrj8g", + "name": "HubBub Coffee", + "address": "3736 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510812, + "longitude": -75.198746, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Food, Coffee & Tea, Food Trucks, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "lPhKez2cp4T5h_fTWiTJZQ", + "name": "Spread Bagelry", + "address": "106 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510096, + "longitude": -75.1674321, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Bagels, Food, Restaurants", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "nzMsAREnsFlsCHsBUwL2SQ", + "name": "Ho Sai Gai Restaurant", + "address": "1000 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552459, + "longitude": -75.1561342, + "stars": 4.0, + "review_count": 202, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "_V1dR3zNmwBmud3eHXfjqg", + "name": "Al-Salam Food Market", + "address": "928 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.043824, + "longitude": -75.0857417, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Butcher, Farmers Market, Fruits & Veggies, Food, Specialty Food", + "hours": null + }, + { + "business_id": "-KoF5X8toS6VBY3DvNeuDA", + "name": "Castor Pizza", + "address": "6038 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0352619, + "longitude": -75.0817953, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "tcDpEgmd14W4szC0DU3Pgg", + "name": "Tropical Smoothie Cafe", + "address": "1600 N Broad St, Unit 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9777753, + "longitude": -75.1583054, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Juice Bars & Smoothies, Restaurants, Cafes, Food, Sandwiches", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-20:0", + "Sunday": "14:0-20:30" + } + }, + { + "business_id": "qL2h5u9j0fAzRU5K7Ya2fw", + "name": "Bluegrass Billiards", + "address": "9490 Blue Grass Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0770931896, + "longitude": -75.0258442319, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Pool Halls", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "uYIZQTeTTMERbwEW9DDZGA", + "name": "Sleepy's", + "address": "2715 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9130893, + "longitude": -75.1496217, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Furniture Stores, Mattresses, Home & Garden, Home Decor", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "inG2oIDylX1kLsLLujXncg", + "name": "Sloane Toyota of Philadelphia", + "address": "1546 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0549104, + "longitude": -75.0752594, + "stars": 2.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Parts & Supplies, Car Dealers, Auto Repair, Automotive", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "TP9gMhBP8J2B8qJggvkZ8Q", + "name": "Diner At the Plaza", + "address": "43 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218207, + "longitude": -75.1467862, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "sDi4t17ttgcIVZqd48EECA", + "name": "Parliament", + "address": "30 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515016715, + "longitude": -75.1656333357, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'quiet'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'" + }, + "categories": "Sandwiches, Food, Coffee & Tea, Salad, Restaurants", + "hours": { + "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": "10:0-16:0" + } + }, + { + "business_id": "ByMJ2-lGfs7_HivOoApW1w", + "name": "Cho Cho San Japanese & Chinese", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9620251, + "longitude": -75.1722359, + "stars": 3.0, + "review_count": 90, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Sushi Bars, Japanese, Chinese", + "hours": { + "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": "12:0-21:30" + } + }, + { + "business_id": "KLMmtgxOWBVdF92g2xsABA", + "name": "Salon Royale Court", + "address": "1822 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.947649, + "longitude": -75.172239, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Removal, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "8wml7Ss5QonxZiBcmSNCxw", + "name": "The Fresh Works", + "address": "2101 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9345239692, + "longitude": -75.1794014, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Cheesesteaks, Pizza, Wraps, Restaurants, Sandwiches", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "iAYSuGMrd-w6k3wWTYtO0g", + "name": "Vino Volo", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8761099899, + "longitude": -75.2430331707, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': None}", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}" + }, + "categories": "Wine Bars, Nightlife, Bars", + "hours": null + }, + { + "business_id": "rOh8NovXVn48p8I-ZYEpQA", + "name": "sweetgreen", + "address": "1821 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518677, + "longitude": -75.171174, + "stars": 4.0, + "review_count": 213, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False" + }, + "categories": "Vegan, Soup, Vegetarian, Salad, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "hZUAk5fthL27KwuKicliMQ", + "name": "Penn Dental Faculty Practice", + "address": "3737 Market St, 10th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9569687, + "longitude": -75.1975836, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Dentists, Cosmetic Dentists, General Dentistry, Periodontists", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "K7kSAU00L6jNLuYXKemZCg", + "name": "TruMark Financial Credit Union", + "address": "1900 North 5th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9802158, + "longitude": -75.1431111, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions, Financial Advising", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "ZVvXJd-XkKO8f5D5y2gl5g", + "name": "Manav Segal, MD", + "address": "255 S 17th St, Ste 1104, The Medical Tower", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Doctors, Allergists", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "8:0-13:30", + "Wednesday": "9:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "9:0-12:0" + } + }, + { + "business_id": "P1ztjSrD9H0ksxFICr_HOQ", + "name": "Elite Roofing And Contracting", + "address": "5101 Cottman Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.024952, + "longitude": -75.030403, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Roofing", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "gc7TPAFaPdJD2Aa_yF10OA", + "name": "Queen Nail and Spa", + "address": "1515 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440652, + "longitude": -75.1677151, + "stars": 3.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Nail Salons, Beauty & Spas", + "hours": { + "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": "9:30-19:30", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "CvPmb58eQQbhL4BHQ0u02Q", + "name": "8th Street Music Center", + "address": "1023 Arch St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954011, + "longitude": -75.15725, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": null + }, + { + "business_id": "c02qhORBO86spu1NXYI8xg", + "name": "Frankford Animal Clinic", + "address": "4829 Leiper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0201003, + "longitude": -75.0840035, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-19:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "voWJKzJtD89HUAHEi0Kotg", + "name": "Lily's Nail Salon", + "address": "3294 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0794721, + "longitude": -74.9921296, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "XJnTY0wG45x9GBrgfNpkCw", + "name": "Lucha Cartel", + "address": "207 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484906, + "longitude": -75.1444675, + "stars": 3.5, + "review_count": 556, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Smoking": "u'no'", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "DriveThru": "False", + "WheelchairAccessible": "True", + "HappyHour": "True" + }, + "categories": "Specialty Food, Breakfast & Brunch, Nightlife, Mexican, Food, Bars, Dance Clubs, Pubs, Cocktail Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Pb3YoPHJ42hc9IGIndIybw", + "name": "G Lounge", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951102, + "longitude": -75.168697, + "stars": 3.5, + "review_count": 110, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "3", + "HasTV": "True" + }, + "categories": "Lounges, Nightlife, Bars, Dance Clubs", + "hours": { + "Thursday": "21:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "nJxCI5M1-stOtXyFrYhuxw", + "name": "McDonald's", + "address": "Suburban Station Concourse", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9545643, + "longitude": -75.1674983, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Restaurants, Fast Food, Burgers", + "hours": null + }, + { + "business_id": "45N54l3hjvR8IhSrPNVcPQ", + "name": "Basilico Wood Fired Pizza", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.06344696, + "longitude": -75.2364518294, + "stars": 3.5, + "review_count": 210, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chicken Wings, Sandwiches, Italian, Restaurants, Pizza", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "qmsdbXMG6DCNXEEZJz4d5g", + "name": "Chipotle Mexican Grill", + "address": "1100 W Montgomery Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979333, + "longitude": -75.1530332, + "stars": 2.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Fast Food, Mexican, Restaurants, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "Ji1QIOEd_0Etk4uNnZ5FHQ", + "name": "DriveCentral", + "address": "8261 Thouron Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.075052, + "longitude": -75.174641, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Education, Educational Services, Driving Schools, Professional Services, Specialty Schools", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "7:0-15:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0" + } + }, + { + "business_id": "rac127HhFxS1RtWA1Rf61Q", + "name": "Mexi-Talian Grill Restaurant", + "address": "413 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417497, + "longitude": -75.1495947, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Diners, Italian, Breakfast & Brunch, Mexican", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Gf3szNlyQWst4v49S-W1lg", + "name": "Mong Kok Station", + "address": "153 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550104, + "longitude": -75.1555984, + "stars": 3.5, + "review_count": 125, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Bakeries, Chinese, Specialty Food, Food, Ethnic Food, Coffee & Tea", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "O7dDHHsn7NUzWvzmILVWew", + "name": "Coles Customs", + "address": "13440 Damar Dr, Unit P14", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1212248486, + "longitude": -75.0007896421, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windshield Installation & Repair, Home Services, Pressure Washers, Car Stereo Installation, Car Wash, Automotive, Auto Detailing, Personal Assistants, Auto Glass Services, Professional Services, Car Window Tinting, Office Cleaning", + "hours": { + "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-15:0" + } + }, + { + "business_id": "HRdeb1f2JYk13-VkXKeeww", + "name": "Yadain Cultural Solutions", + "address": "139 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.033019, + "longitude": -75.178188, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:30-17:30" + } + }, + { + "business_id": "-PqeUUIN8Qgqhv5KMiRfHA", + "name": "Hue Fusion Food Market", + "address": "1601 Cecil B Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.979339, + "longitude": -75.161205, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Sandwiches, Specialty Food, Korean, Food, Delis, Burgers, Restaurants, Ethnic Food, Convenience Stores, Grocery, Asian Fusion, American (New)", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "i6GSXiOqxQ8in-DJqPqiVQ", + "name": "Penn Orthopaedics Pennsylvania Hospital", + "address": "800 Spruce St, Pennsylvania Hospital, 1 Cathcart, Cathcart Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9454379, + "longitude": -75.155587, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Orthopedists, Health & Medical, Doctors, Sports Medicine", + "hours": null + }, + { + "business_id": "VX5gOsB6Z5z4zXYE8vi4CA", + "name": "Maxercise MMA Academy", + "address": "913 Arch St, Fl 2nd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9534854928, + "longitude": -75.1552171278, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Gyms, Trainers, Fitness & Instruction, Martial Arts, Active Life, Yoga", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "pwbx5FtKFTcZQuLNbHRh8g", + "name": "Primark", + "address": "1033 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517436373, + "longitude": -75.1569961989, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Men's Clothing, Fashion, Shopping, Women's Clothing, Children's Clothing", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "9dSYPfRcukFqPsvN-X7VeQ", + "name": "Speedy Lube", + "address": "9915 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0978059221, + "longitude": -75.0304278731, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "27wPl0IBJPPHkCNPzXDmnA", + "name": "Baker Brothers", + "address": "2300 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919478, + "longitude": -75.1522788, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Donuts, Cupcakes, Bakeries, Food", + "hours": { + "Tuesday": "6:30-16:0", + "Wednesday": "6:30-16:0", + "Thursday": "6:30-16:0", + "Friday": "6:30-16:0", + "Saturday": "6:30-13:0" + } + }, + { + "business_id": "_GOQVrQcRlLsNk-RbpO7oQ", + "name": "Vanity Grand Cabaret", + "address": "6130 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9179824271, + "longitude": -75.2114453355, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "HasTV": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "True", + "NoiseLevel": "u'loud'", + "CoatCheck": "True", + "Alcohol": "u'full_bar'", + "Smoking": "u'yes'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": null + }, + { + "business_id": "FhbTiSZaMOaLArEbzR3_kA", + "name": "Printer's Place", + "address": "126 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950247, + "longitude": -75.167598, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Printing Services", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "L6TPO5xPUO_P_kO4_EN29w", + "name": "Awbury Arboretum", + "address": "1 Awbury Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.050556, + "longitude": -75.168113, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BikeParking": "False" + }, + "categories": "Active Life, Venues & Event Spaces, Event Planning & Services, Parks", + "hours": { + "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" + } + }, + { + "business_id": "sTgS1FZk_SSW_oaxchEwJw", + "name": "Camelot Apartments", + "address": "3600 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.962371, + "longitude": -75.194455, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "c0_NagIVgU2h67xTKXflQg", + "name": "Larry Becker Contemporary Art", + "address": "43 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9511231, + "longitude": -75.1433407, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Art Galleries, Arts & Entertainment, Shopping", + "hours": { + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "Dkw1GWzFqt_Es7cB1pw41A", + "name": "LOFT", + "address": "120 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537192254, + "longitude": -75.1949622855, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Accessories, Women's Clothing, Shopping, Fashion, Shoe Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fB8DULHVGkB9jI7M8qzKKg", + "name": "Coffee Cream & Dreams", + "address": "1500 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96693, + "longitude": -75.1622791, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Coffee & Tea, Bagels, Food", + "hours": { + "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-13:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "3lZIHVHrWHTEBPgjUpoZ6Q", + "name": "East Falls Fitness", + "address": "3751 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0025755, + "longitude": -75.1867681, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Gyms, Active Life", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "JclXOdPHF1Kkglcon_B31w", + "name": "Dรฎner en Blanc", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951001, + "longitude": -75.16874, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Local Flavor, Restaurants, Festivals, Diners, Arts & Entertainment", + "hours": null + }, + { + "business_id": "igR8KaTBF-Qfh0ilJE9eew", + "name": "iMassage", + "address": "2118 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.049071, + "longitude": -75.0627803, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Massage", + "hours": null + }, + { + "business_id": "8pqdJjefYq-a9IBSJJmKwA", + "name": "The Dandelion", + "address": "124 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951004, + "longitude": -75.170636, + "stars": 4.0, + "review_count": 2497, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "British, Restaurants, Gastropubs, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "17:0-21:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "XqAOGkO2HZBG0ft9c-u7tg", + "name": "Armen's Custom Tailor", + "address": "104 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262504, + "longitude": -75.2246491, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Sewing & Alterations", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "hxmCQdfBiH4SQgNZE8Rxvg", + "name": "Volta Market", + "address": "1439 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9309867, + "longitude": -75.1618351, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Flowers & Gifts, Beauty & Spas, Shopping, Health Markets, Massage, Gift Shops, Skin Care, Specialty Food, Cosmetics & Beauty Supply", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "rvceeMn_mPxVGOToGWWMGg", + "name": "Gat Beer", + "address": "1900 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.084062, + "longitude": -75.035499, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "cTRLYSMLU3qYsJrchCVaOQ", + "name": "Aveda Store", + "address": "1625 Chestnut St, Ste 134", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Beauty & Spas, Cosmetics & Beauty Supply", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "djkvznaFb2PtcdlhW88oAA", + "name": "Brandywine Construction & Management", + "address": "23 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950941, + "longitude": -75.145267, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Property Management, Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "tuA0E2YPAaKBRZL7rhsU-g", + "name": "Healthy Picks", + "address": "23 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526538768, + "longitude": -75.1715600118, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Desserts, Juice Bars & Smoothies, Restaurants, Food", + "hours": null + }, + { + "business_id": "edU5K_QDvydTbWr4xfCfmg", + "name": "Dezzy's Jamaican Restaurant", + "address": "4945 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0199613, + "longitude": -75.0805244, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "QckgxxdTdsRPdE1O8IUG_w", + "name": "Jane G's Restaurant", + "address": "1930 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518233, + "longitude": -75.173394, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Chinese, Bars, Restaurants, Event Planning & Services, Venues & Event Spaces, Nightlife", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "88-rtKNDLSSXDVQyWNe-BQ", + "name": "U-Haul Moving & Storage of Allegheny West", + "address": "2801 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007235, + "longitude": -75.175378, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Truck Rental, Self Storage, Propane, Movers, Home Services, Packing Supplies, Local Services, Automotive, Shopping", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "mpTD6bUFaGVpSEvkV3oeOw", + "name": "Locust on the Park", + "address": "201 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949966, + "longitude": -75.180824, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "98oPUwRR_3E7z8If9Q_6dQ", + "name": "Wolf Cycle", + "address": "4311 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9681807, + "longitude": -75.2101151, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Local Services, Active Life, Sporting Goods, Shopping, Bikes, Bike Rentals, Bike Repair/Maintenance", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "ZTZjoR3oK0HQLct8sWGUkA", + "name": "Karina's", + "address": "1520 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930591, + "longitude": -75.162923, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Spanish, Restaurants, Italian, Basque", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "jXtaxB2b64nA4uy13i024A", + "name": "Little Fish", + "address": "746 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939989, + "longitude": -75.152854, + "stars": 4.5, + "review_count": 529, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "FWyrssOAZn9Q2KWkQ6R6Wg", + "name": "Quano Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Photography, Videographers, Event Planning & Services, Photographers", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "5sNIOJru7C5TZnKnVqRT7g", + "name": "Steven Zavodnick, MD", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "AcceptsInsurance": "False" + }, + "categories": "Doctors, Health & Medical, Psychiatrists", + "hours": null + }, + { + "business_id": "3USp176ILrGkfeXTRrcsAw", + "name": "SJ Cigar", + "address": "524 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417466, + "longitude": -75.147686, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Flowers & Gifts, Shopping, Fashion, Tobacco Shops, Department Stores", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "RyBnDO6r1ZhgxymnJGCkFw", + "name": "Metzger Robert Plumbing", + "address": "1150 S Watts St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936279, + "longitude": -75.1664287, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Plumbing", + "hours": null + }, + { + "business_id": "jOaJ4PFGhGiM8fhuYcYFRg", + "name": "Little Sicily 2", + "address": "1608 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926519, + "longitude": -75.14569, + "stars": 4.5, + "review_count": 252, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Indian, Restaurants, Pizza", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "12:0-19:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "TNh8bTENXU6fuNxJYsL5-g", + "name": "El Capitan", + "address": "614 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611941991, + "longitude": -75.1414411553, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Mexican, Specialty Food, Tex-Mex, Ethnic Food, Seafood, Restaurants", + "hours": { + "Tuesday": "16:0-23:30", + "Wednesday": "16:0-23:30", + "Thursday": "16:0-23:30", + "Friday": "13:0-0:0", + "Saturday": "13:0-0:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "d8PEE7RgQyaiAQa_7FklvA", + "name": "Big Eyes Sushi", + "address": "700 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413387, + "longitude": -75.1541199, + "stars": 3.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Asian Fusion, Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "MTdnOWCv7TfD6dqjtsFiCg", + "name": "Stolker Properties", + "address": "1329 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9448069, + "longitude": -75.164297, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Real Estate, Real Estate Services, Home Services", + "hours": null + }, + { + "business_id": "orAQLRRZUb95YVuGPEzYiw", + "name": "Free People", + "address": "1625 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950126, + "longitude": -75.168595, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Accessories, Women's Clothing", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "JiXca3iilV4FewV2zTo0TA", + "name": "Ajax Auto Glass", + "address": "6250 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9170966, + "longitude": -75.2138341, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Windshield Installation & Repair, Auto Glass Services, Home Services, Glass & Mirrors, Automotive", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "o1yg25_uuQ9lCSEUsIIeBg", + "name": "Primary Plant Based", + "address": "161 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9695251, + "longitude": -75.138405, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Vegan, Restaurants", + "hours": null + }, + { + "business_id": "J5BAE3NCOe8YEg-GvOOF_A", + "name": "The Red Rooster Inn", + "address": "7960 Dungan Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0681534, + "longitude": -75.0688488, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "Smoking": "u'outdoor'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HasTV": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Wraps, Sandwiches, Bars, Pool Halls, Nightlife", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "W9UZ0XISHldTTNBWLDgYug", + "name": "Import Service Unlimited", + "address": "6200 Woodbine Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.985816, + "longitude": -75.2467103, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "FkaPKIvGrG-MENTETzznZA", + "name": "Gentle Dentistry", + "address": "5139 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9586054, + "longitude": -75.224579, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Dentists, General Dentistry, Cosmetic Dentists, Health & Medical, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "903S0UZPLDGi_X6uiDdKHQ", + "name": "Mulberry Market", + "address": "236 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519199, + "longitude": -75.144562, + "stars": 3.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "G0DenXssfi7rL5-KzBFS6A", + "name": "Passyunk Nail Salon", + "address": "1727 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927929, + "longitude": -75.165514, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "T4VkmVfJScbLe21xLx1yNA", + "name": "Burger King", + "address": "9220 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.055801949, + "longitude": -75.0038015842, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "Caters": "False", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-22:0", + "Saturday": "10:30-23:59", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "5IL3rTT-_LHyvVJRVNKxaQ", + "name": "Victory Beer Hall", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9042894, + "longitude": -75.1694047, + "stars": 3.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "GoodForDancing": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "American (New), Pretzels, German, Pubs, Nightlife, Food, Sandwiches, Restaurants, Beer, Wine & Spirits, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "MXjS8kiPY2ZQtLDlC-Bu-A", + "name": "Original Boston Style Pizza 2", + "address": "9227 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.055265, + "longitude": -75.0036855, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'" + }, + "categories": "Cheesesteaks, Restaurants, Pizza, Salad", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "12:0-0:30" + } + }, + { + "business_id": "PgUoeGam08nCaLWJwrmrWQ", + "name": "Chubbys Steaks", + "address": "5826 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0291319, + "longitude": -75.2063122, + "stars": 4.0, + "review_count": 394, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Corkage": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Cheesesteaks, Restaurants, Sandwiches, Steakhouses", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "oDlF5bfcQrYkjK4D4_Nw9A", + "name": "Fitzwater Cafe", + "address": "728 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405063, + "longitude": -75.1545227, + "stars": 4.0, + "review_count": 240, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': None, u'dinner': False, u'latenight': False, u'dessert': False}", + "OutdoorSeating": "True" + }, + "categories": "Food, Restaurants, Italian, Desserts, Coffee & Tea, Cafes, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "8:0-14:45", + "Tuesday": "8:0-14:45", + "Wednesday": "8:0-14:45", + "Thursday": "8:0-14:45", + "Friday": "8:0-14:45", + "Saturday": "8:0-14:45", + "Sunday": "8:0-14:45" + } + }, + { + "business_id": "kQCJRWvfpiW1p_4hgwD8Uw", + "name": "Roller's Restaurant at Flying Fish", + "address": "8142 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072988, + "longitude": -75.2027165, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:0", + "Saturday": "12:0-2:30", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "WdW_rka38TeVxhh2F3nBew", + "name": "The Bayou Bar & Grill", + "address": "4245 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0245864, + "longitude": -75.221048, + "stars": 3.0, + "review_count": 178, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pubs, Sports Bars, Nightlife, Restaurants, Bars, Chicken Wings", + "hours": { + "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" + } + }, + { + "business_id": "gxAlC-zwohHnc-Qr2y2pjw", + "name": "Rocky's Auto Repair", + "address": "1768-70 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9769351679, + "longitude": -75.1339577278, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Transmission Repair", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "ir02bUQMq7FH10Va1lm7dg", + "name": "Funny Monk Emporium", + "address": "4369 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0266672, + "longitude": -75.2240864, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False" + }, + "categories": "Hobby Shops, Local Flavor, Tobacco Shops, Arts & Crafts, Head Shops, Arts & Entertainment, Vape Shops, Shopping, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "CuyQt_cUFS1i738GXTNciw", + "name": "Effie's Restaurant", + "address": "1127 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9451062, + "longitude": -75.1606111, + "stars": 3.5, + "review_count": 315, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Greek, Mediterranean, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "KutdYfcmNCM1qggUg2QYeg", + "name": "Yummy Yummy", + "address": "52 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533084, + "longitude": -75.1564389, + "stars": 4.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "False", + "HasTV": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BYOB": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Chinese, Desserts, Restaurants", + "hours": { + "Monday": "11:30-17:30", + "Thursday": "11:30-17:30", + "Friday": "11:30-17:30", + "Saturday": "10:30-17:30", + "Sunday": "11:30-17:30" + } + }, + { + "business_id": "WZGCui_JBA9xUinZC-XbRQ", + "name": "59 Cafe", + "address": "1617 John F Kennedy Blvd, Lobby W4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "hIO2lzEoePI91xM8gx9TNA", + "name": "WJM Lock Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "k-dKkUpSvVYhzR93C7JmMA", + "name": "J & B Auto Detailing", + "address": "2903 Southampton Rd, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.104982, + "longitude": -74.9838221, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Shopping, Body Shops, Automotive, Car Wash, Auto Detailing", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0" + } + }, + { + "business_id": "gYD5Hf8CeM7R_J8Ytw43nQ", + "name": "2116 Chestnut Apartments", + "address": "2116 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952107, + "longitude": -75.176563, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "4U8yH6ieqSEqN29lOzXeVw", + "name": "Penn State Industries", + "address": "1425 Carlton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9593916, + "longitude": -75.1630523, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Colleges & Universities, Cards & Stationery, Event Planning & Services, Education, Arts & Crafts, Shopping, Flowers & Gifts", + "hours": null + }, + { + "business_id": "1qexUlZZRWIaPWlvGNnmcA", + "name": "Palma's Cucina", + "address": "2229 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488763, + "longitude": -75.178877, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Italian, Seafood, Restaurants, Pizza", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "iCsQyLXRbbgZEoM5riyWQg", + "name": "Steelworks Strength Systems", + "address": "2511 W Girard Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974031, + "longitude": -75.1780297, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Trainers, Fitness & Instruction, Gyms, Active Life", + "hours": { + "Monday": "17:0-20:0", + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-19:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "yQ7sxpoKXcTWzuELVdpR6w", + "name": "Drury Beer Garden", + "address": "1311 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949934, + "longitude": -75.162417, + "stars": 3.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "HappyHour": "True", + "GoodForDancing": "False", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Nightlife, Bars", + "hours": { + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "0RcD7PpjWTMcN86NwzgBag", + "name": "ShopRite of Oregon Ave", + "address": "24th St & W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9196979, + "longitude": -75.1883816, + "stars": 2.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bagels, Bakeries, Shopping, Grocery, Local Flavor", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "zK-BfS0xMgDRGvb_KJL4Kw", + "name": "Cookie Confidential", + "address": "517 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421864, + "longitude": -75.1505651, + "stars": 4.0, + "review_count": 82, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Event Planning & Services, Coffee & Tea, Local Flavor, Caterers, Food, Desserts", + "hours": null + }, + { + "business_id": "vXMedaVdLTrgpcSFmKrlJA", + "name": "Tony's Pizzeria", + "address": "3128 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985774, + "longitude": -75.106302, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "k6BLeAGKHZqzp2qhmVjlQg", + "name": "Walgreens Pharmacy at Hahnemann University Hospital", + "address": "245 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.957343458, + "longitude": -75.1620901376, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Food, Beauty & Spas, Drugstores, Cosmetics & Beauty Supply, Convenience Stores", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "-amg4-vvrHNPIzRDKF2Axg", + "name": "Derkas Auto Body", + "address": "2204 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9743442, + "longitude": -75.1226581, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Body Shops, Auto Repair, Automotive, Towing", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "kvad5dDPLZ-wuKJmMIs0Ag", + "name": "Prime Burger Company", + "address": "703 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949663, + "longitude": -75.152497, + "stars": 2.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "True", + "Caters": "False" + }, + "categories": "Burgers, Food Delivery Services, Food, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-16:30" + } + }, + { + "business_id": "jS3affmkXWrBnidXA-DIfQ", + "name": "Butcher Bar", + "address": "2034 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520301, + "longitude": -75.1748960093, + "stars": 4.0, + "review_count": 682, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Steakhouses, Comfort Food, Butcher, Bars, Specialty Food, Food, Nightlife, Whiskey Bars, Restaurants, Gastropubs", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "rdDC5Ts8NZjuGHJn4bqMAQ", + "name": "Cogito Coffee", + "address": "105 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502325012, + "longitude": -75.16007144, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "aX_dV0NAnavyq9gcvo31vw", + "name": "Mr Fix - Cell Phone & Computer Repair", + "address": "413 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9463714, + "longitude": -75.1745681, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mobile Phone Accessories, Mobile Phone Repair, IT Services & Computer Repair, Shopping, Local Services, Electronics Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "v4vrvaln4DkgkWLrxefAwQ", + "name": "Kaz Tire Center", + "address": "2400 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9829136, + "longitude": -75.1154283, + "stars": 5.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "3StCmEw7AhBdHKIEkckGeA", + "name": "Paprika Restaurant", + "address": "4167 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0178826, + "longitude": -75.1546635, + "stars": 3.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'very_loud'", + "WiFi": "'no'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': True}" + }, + "categories": "Soul Food, Restaurants, Seafood, Halal, American (Traditional)", + "hours": { + "Monday": "11:30-20:30", + "Tuesday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30" + } + }, + { + "business_id": "VQbl-K88JGWYQOUrYo1yAA", + "name": "Revelations", + "address": "711 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402057, + "longitude": -75.1494898, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Children's Clothing, Shopping, Accessories, Men's Clothing", + "hours": null + }, + { + "business_id": "bCi33bskyp2DHPlTtBHEfg", + "name": "Philadelphia Gas & Electric Heating & Air Conditioning", + "address": "4512 Paul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0138626, + "longitude": -75.085118, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "VncK710nB6qNx08zFJtwkw", + "name": "The Gun Range", + "address": "542 N Percy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962207, + "longitude": -75.153891, + "stars": 4.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Gun/Rifle Ranges, Specialty Schools, Active Life, Guns & Ammo, Shopping, Firearm Training, Education", + "hours": { + "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": "11:0-17:0" + } + }, + { + "business_id": "VG4yVFNX7B-iONzZlLd-Fw", + "name": "Izakaya By Yanaga", + "address": "1832 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9779193285, + "longitude": -75.1315421239, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "Caters": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "BYOB": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "14:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "mcA7_ZHBxL30OLKjlmNmng", + "name": "Sansom Cleaners", + "address": "2011 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524074, + "longitude": -75.17392, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "n7cTO0zm-Stm6p82NVM9Cw", + "name": "Fuku", + "address": "313 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9610931, + "longitude": -75.1439191, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "HasTV": "True" + }, + "categories": "Restaurants, Food Delivery Services, Chicken Shop, Sandwiches, Food, Chicken Wings", + "hours": { + "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" + } + }, + { + "business_id": "7lauqWtIuFmDflN8e0dOxw", + "name": "Tic Tac Nail Salon", + "address": "1016 Cottman Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.060641, + "longitude": -75.0829473, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "Q4w-HO6YPUJbnZ5TrF46sw", + "name": "Canal House Apartments", + "address": "4312 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0246303, + "longitude": -75.2225181, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Real Estate, Home Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "AXT7aSlqoVZd5jNHXlk68g", + "name": "Amazulu Gift Shop", + "address": "Reading Terminl Mrkt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953154, + "longitude": -75.159531, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Shopping, Flowers & Gifts, Gift Shops", + "hours": null + }, + { + "business_id": "gKRSLjhqulJtaAj9t4IJJA", + "name": "Monkey Bar and Restaurant", + "address": "301 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488176, + "longitude": -75.1461255, + "stars": 2.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:30-2:0", + "Sunday": "14:0-23:0" + } + }, + { + "business_id": "TjF6WOklsFFuqNZ5yk1Cyw", + "name": "Mattress Firm Red Lion Plaza", + "address": "9906 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0932634, + "longitude": -75.0176724, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Home Services, Home Decor, Shades & Blinds, Shopping, Furniture Stores, Mattresses, Home & Garden", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "4LH-3RAvgZQcTe40LzNAlg", + "name": "Hot Yoga Philadelphia", + "address": "1520 Sansom St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9503981029, + "longitude": -75.1665409464, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": { + "Monday": "6:0-19:30", + "Tuesday": "6:0-19:30", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "6:0-19:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "BK6In_HrWgAYZjQLTdbg0Q", + "name": "Beer Heaven", + "address": "1100 S Columbus Blvd, Ste 23", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932776, + "longitude": -75.144554, + "stars": 4.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Food, Beer, Wine & Spirits", + "hours": { + "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-20:0" + } + }, + { + "business_id": "GmLbLU9Vhc9zyB3oYrUlrA", + "name": "GlobalFit", + "address": "1818 Market St, Ste 2710", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529236, + "longitude": -75.1710264, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Gyms, Fitness & Instruction, Health & Medical", + "hours": null + }, + { + "business_id": "K2xCcUr4PgMF_n6cEHNNSQ", + "name": "Historic Strawberry Mansion", + "address": "2450 Strawberry Mansion Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.994293, + "longitude": -75.190387, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Landmarks & Historical Buildings, Arts & Entertainment, Festivals, Museums, Public Services & Government", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "bAixeN8YtBXmdiHTCcii1A", + "name": "Bob's Happy Hour", + "address": "2301 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9804655, + "longitude": -75.1283434, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BikeParking": "True" + }, + "categories": "Bars, Nightlife, Pubs", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0" + } + }, + { + "business_id": "kZ1q0K13tFYG_ZJrVvsJHA", + "name": "Sampan", + "address": "124 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495313759, + "longitude": -75.1621570259, + "stars": 4.0, + "review_count": 2000, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "True", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Thai, American (New), Restaurants, Chinese, Asian Fusion, Tapas/Small Plates, Pan Asian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "_qJld4xqJfDv76BCu9cY1Q", + "name": "Madewell", + "address": "1716 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499247577, + "longitude": -75.1700241119, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shoe Stores, Shopping, Accessories, Fashion, Women's Clothing", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "pUXIs65_VPHhu2eeBh3ZBw", + "name": "KFC", + "address": "6417 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0327097788, + "longitude": -75.063185, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "'none'", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False" + }, + "categories": "Fast Food, Chicken Shop, Restaurants, Chicken Wings", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "UhqHf5V3_jJ1TNu_PSMcKg", + "name": "Aunties Biscuits", + "address": "2126 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0517233, + "longitude": -75.1565104, + "stars": 4.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Caters": "True" + }, + "categories": "Restaurants, Soul Food, Breakfast & Brunch, American (Traditional)", + "hours": { + "Thursday": "13:30-20:0", + "Friday": "13:30-20:0", + "Saturday": "13:30-20:0", + "Sunday": "13:30-19:0" + } + }, + { + "business_id": "S3-EuL3U_nQmiugDnYPiFw", + "name": "Fahrenheit 451 Bar & Pizzeria", + "address": "1809 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9543073759, + "longitude": -75.1703081549, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Bartenders, Bars, Event Planning & Services, Restaurants, Nightlife, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "H0eLQFT7e0U4ZAPURjASEw", + "name": "Popeyes Louisiana Kitchen", + "address": "2743 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.912518, + "longitude": -75.149818, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "GoodForKids": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}" + }, + "categories": "Sandwiches, Fast Food, Seafood, American (Traditional), Chicken Wings, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "03z1PDwgKroME5MWr763rw", + "name": "Joey Joe's Prime Meats", + "address": "1950 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9259322, + "longitude": -75.1712889, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Salad, Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "Hv7e5Csyo4pfX60JtBPj3A", + "name": "NetCost Market", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0722408, + "longitude": -75.0314294, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Ethnic Food, Fruits & Veggies, International Grocery, Delis, Restaurants, Grocery, Specialty Food, Cheese Shops, Health Markets, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-23:0", + "Wednesday": "8:0-23:0", + "Thursday": "8:0-23:0", + "Friday": "8:0-19:0", + "Saturday": "12:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "buxs43pwkGAB5f8n_1D4ag", + "name": "Philadelphia Salvage", + "address": "2234 W Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0050635693, + "longitude": -75.166999271, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False" + }, + "categories": "Home Services, Used, Vintage & Consignment, Furniture Stores, Fashion, Local Services, Flooring, Building Supplies, Thrift Stores, Furniture Reupholstery, Interior Design, Home & Garden, Antiques, Shopping", + "hours": { + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "B3d9LqtrGSRDNV1GhgIkzA", + "name": "Caliber Collision", + "address": "2609 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9763583, + "longitude": -75.1221563, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "8:30-15:30", + "Wednesday": "8:30-15:30", + "Thursday": "8:30-15:30", + "Friday": "8:30-15:30" + } + }, + { + "business_id": "r3X75SK37buS94mDls3q_Q", + "name": "Real Food Eatery", + "address": "207 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493695, + "longitude": -75.1675666, + "stars": 4.5, + "review_count": 279, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "BYOB": "True" + }, + "categories": "Vegan, Gluten-Free, Salad, Restaurants, American (Traditional)", + "hours": { + "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": "12:0-20:30", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "evWk1epmpumm2OMCdVwnPQ", + "name": "Dynasty Buffet", + "address": "301 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0829766003, + "longitude": -74.9654798582, + "stars": 2.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Chinese, Buffets, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "NDIiNcJZpdoQpXGXl7IA2Q", + "name": "Los Camaradas", + "address": "918 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.940805, + "longitude": -75.179773, + "stars": 4.0, + "review_count": 190, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "HappyHour": "True", + "RestaurantsReservations": "False", + "BikeParking": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "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" + } + }, + { + "business_id": "OKsKr7zQfU9qfEmKRZIZdw", + "name": "West Philadelphia Locksmith Co", + "address": "31 S 42nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566386, + "longitude": -75.2060159, + "stars": 3.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "fXxrP7dmzZ8m2T-C0EK3fw", + "name": "Grasshopper Boutique", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480993, + "longitude": -75.153639, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Women's Clothing, Shopping, Fashion", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "zE4z1THTOvnNYmZInUgAEg", + "name": "Maze Group Development", + "address": "1910 Spring Garden Street, Suite 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9632489, + "longitude": -75.1705441, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Property Management, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "8pSi7jAI-oXiIPb40Vgp5g", + "name": "Natural Nail & Spa", + "address": "8917 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0830792, + "longitude": -75.0484237, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:30-17:30" + } + }, + { + "business_id": "iMLRtlT5lO2Q2A7FiulZtw", + "name": "Golden Farms Supermarket", + "address": "6710 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9715685, + "longitude": -75.2541954, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "c9k5dfDJZ2VRR8KyMB2CZQ", + "name": "Burrito Elito", + "address": "Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.88678, + "longitude": -75.23097, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'average'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Mexican, Food", + "hours": null + }, + { + "business_id": "Mol3iXxtmhq8QEo2346pWQ", + "name": "Ruckus Gallery", + "address": "27 North 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506663, + "longitude": -75.1430859, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Vape Shops, Arts & Entertainment, Shopping, Art Galleries, Tobacco Shops, Head Shops", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "11:30-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "i_FWONQD1ZBqrNE2b-M5Ug", + "name": "Talula's Garden", + "address": "210 W Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9473272218, + "longitude": -75.1535421779, + "stars": 4.5, + "review_count": 1927, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Caters": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "ByAppointmentOnly": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "_gaOrkYtODrxY0JlWFe-sQ", + "name": "High Point Cafe", + "address": "602 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0461716, + "longitude": -75.1959108, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "DietaryRestrictions": "{'dairy-free': False, 'gluten-free': True, 'vegan': False, 'kosher': False, 'halal': False, 'soy-free': False, 'vegetarian': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WheelchairAccessible": "True" + }, + "categories": "Food, Cafes, Creperies, Desserts, Bakeries, Coffee & Tea, Restaurants, Gluten-Free, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "jmogHrd-bZTZIadqWW7vRg", + "name": "North Philadelphia Locksmith", + "address": "1009 N Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9700361, + "longitude": -75.1471672, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Keys & Locksmiths, Garage Door Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "WxS3pZs7Edtar7FkBaOqpg", + "name": "Ristorante La Veranda", + "address": "31 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9511009, + "longitude": -75.1402397, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'dressy'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': True, 'casual': None}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), Italian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "vaR64eC4ltP6ieWz8WFEYg", + "name": "Hotbox Yoga West Philly", + "address": "3527 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9585292, + "longitude": -75.1931899, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Active Life, Yoga", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-19:0", + "Saturday": "9:30-12:30", + "Sunday": "9:30-18:30" + } + }, + { + "business_id": "IKO8SSiSg2Zl3K8fbgrxYw", + "name": "State To State Moving and Auto Transport", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0149824, + "longitude": -75.1866396, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Home Services, Local Services, Movers, Vehicle Shipping, Self Storage, Packing Services, Automotive", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "O1GkOz_hbAt9L_voKow3aw", + "name": "Black Market", + "address": "2033 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523541, + "longitude": -75.1746937, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Tobacco Shops, Vape Shops, Shopping, Head Shops", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "1MPWKk7dBGUUKoys3sBKPA", + "name": "Philly Pretzel Factory", + "address": "1687 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0867447, + "longitude": -75.0387577, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Pretzels, Hot Dogs, Food, Bakeries, Restaurants", + "hours": null + }, + { + "business_id": "d8FgfM31dou00aYDqfx9Dw", + "name": "Mercer Cafe At the Navy Yard", + "address": "4920 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8902069, + "longitude": -75.1772925, + "stars": 3.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BYOB": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "BikeParking": "True" + }, + "categories": "Cafes, Restaurants, Pizza, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "s7GZ95hHqmr9WreRU62iBQ", + "name": "Chestnut Hill Hotel", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741672, + "longitude": -75.2030982, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "zURelxN8KhAmi3uxuQtC_g", + "name": "Butcher's Smokehouse", + "address": "1221 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491951, + "longitude": -75.1615152, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForMeal": "None", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'" + }, + "categories": "Barbeque, Southern, Smokehouse, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "flo4vO_uHBMxV8yH_CZf8A", + "name": "Giampolo Law Group", + "address": "1221 Locust St, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480053, + "longitude": -75.161424, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Real Estate Law, Wills, Trusts, & Probates, Local Services, Employment Law, Lawyers, Divorce & Family Law, Professional Services, Business Law, Estate Planning Law", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0" + } + }, + { + "business_id": "SQy9g8thArvtbXpMmc4Kzg", + "name": "Village Green Productions", + "address": "2424 E York St, Ste 211", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774593, + "longitude": -75.124602, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "iZGQdYIe6P39yvfMmmjdyQ", + "name": "Gorin Jack, DDS", + "address": "7147 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0490817, + "longitude": -75.0676625, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Oral Surgeons, General Dentistry, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "8:30-15:0", + "Tuesday": "8:30-15:0", + "Wednesday": "8:30-15:0", + "Thursday": "8:30-15:0", + "Friday": "8:30-15:0" + } + }, + { + "business_id": "a82ZJPmgFRZxwz0qQdtdcA", + "name": "Grilladelphia", + "address": "2330 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9752997, + "longitude": -75.1214129, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Sandwiches, Food, Specialty Food", + "hours": null + }, + { + "business_id": "DVR9O8RKQ6YBdJJ6LyUL7w", + "name": "Litterpaw Pet Supply", + "address": "267 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464799, + "longitude": -75.1576264, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Sitting, Pet Stores, Pet Services", + "hours": { + "Monday": "11:30-19:30", + "Tuesday": "11:30-19:30", + "Wednesday": "11:30-19:30", + "Thursday": "11:30-19:30", + "Friday": "11:30-19:30", + "Saturday": "11:30-18:30", + "Sunday": "11:30-17:30" + } + }, + { + "business_id": "s9kgpFnusx0hirEYs7L6qQ", + "name": "nunu", + "address": "1414 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9721728775, + "longitude": -75.1346370578, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': True, u'romantic': True, u'classy': None, u'upscale': None}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "DriveThru": "False" + }, + "categories": "Restaurants, Nightlife, Bars, Japanese", + "hours": { + "Monday": "16:30-21:30", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:0", + "Saturday": "13:0-22:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "wDsyh_29ycKVC3pefiqO6w", + "name": "Old City Pizza", + "address": "100 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9523287937, + "longitude": -75.1453158291, + "stars": 3.0, + "review_count": 196, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Pizza, Italian, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "di8vrP8Hpz9ueTdPg7s66A", + "name": "Coconut Chicken Hot Pot & BBQ", + "address": "7030-32 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0477506427, + "longitude": -75.0697084607, + "stars": 3.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hot Pot, Barbeque, Korean, Restaurants", + "hours": { + "Monday": "11:30-23:30", + "Tuesday": "11:30-23:30", + "Wednesday": "11:30-23:30", + "Thursday": "11:30-23:30", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "11:30-23:30" + } + }, + { + "business_id": "KqsaIY5E_xKiyV0Za-5fhg", + "name": "Pinch Dumplings", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Chinese, Restaurants, Dim Sum", + "hours": null + }, + { + "business_id": "V8CiwDpGxTrtO10QZnr-Ow", + "name": "Puddin's Cake Corner", + "address": "4814 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0266454, + "longitude": -75.0378529, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Bakeries, Custom Cakes, Cupcakes, Coffee & Tea", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "TIh6vyxA76xGAg6MbTRqGA", + "name": "Genji Japanese Restaurant", + "address": "1720 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506126, + "longitude": -75.1696851, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Japanese", + "hours": null + }, + { + "business_id": "BkHqlLR9Q6_HVUXNg2XBxQ", + "name": "Patco 15th/16th Locust Station", + "address": "16TH And Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486212018, + "longitude": -75.1677918434, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Public Transportation, Train Stations, Transportation", + "hours": null + }, + { + "business_id": "dRx9ke-1Ap8RtmfHkdN_vw", + "name": "La Pizzeria", + "address": "433 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417896, + "longitude": -75.1504192, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Food, Pizza", + "hours": null + }, + { + "business_id": "j7dMQazjHXoBTsbpw5B28Q", + "name": "Courtyard by Marriott", + "address": "4100 Presidential Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0071725342, + "longitude": -75.2110841091, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "Q0PURWx5cmU-VX4d-GNxOg", + "name": "Dentex Dental Moyamensing", + "address": "1701 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9268204, + "longitude": -75.1508784, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "bRJB7RTl_pZvWdN0kuSj6Q", + "name": "Key West", + "address": "207 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489003, + "longitude": -75.1631851, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Gay Bars, Nightlife", + "hours": null + }, + { + "business_id": "h2t4Fx4v9r0AjTJ7P9Su2w", + "name": "Boule Cafรฉ", + "address": "8500 Essington Ave, Terminal B , Upper Level", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8764029095, + "longitude": -75.2469764417, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "None", + "BusinessParking": "None", + "HasTV": "True", + "Ambience": "None" + }, + "categories": "Sandwiches, Cafes, Restaurants, Salad, Breakfast & Brunch", + "hours": { + "Monday": "4:30-21:45", + "Tuesday": "4:30-21:45", + "Wednesday": "4:30-21:45", + "Thursday": "4:30-21:45", + "Friday": "4:30-21:45", + "Saturday": "4:30-21:45", + "Sunday": "4:30-21:45" + } + }, + { + "business_id": "KXMyRhQDG5mZ4BwALVRjww", + "name": "Front & Palmer", + "address": "1750 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766392, + "longitude": -75.1342432, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "Bc4IerNtvAJuRMNbwOyC5Q", + "name": "Everest Home Mortgage", + "address": "245 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969814, + "longitude": -75.132412, + "stars": 5.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Home Services, Real Estate, Mortgage Brokers", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "BIwTMKyB4Tb81Kj4wsz9Ww", + "name": "Mayfair Bakery", + "address": "6447 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0290643, + "longitude": -75.0562435, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": null + }, + { + "business_id": "ZPrw52pIvcF3walP8nwXJw", + "name": "Philly Van Man Inc", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "gzJBT0Bc5Ffyj1o4cKb1aA", + "name": "Ross Dress for Less", + "address": "7720 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.97723, + "longitude": -75.273857, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Women's Clothing, Department Stores, Shopping, Home Decor, Fashion, Men's Clothing, Discount Store, Home & Garden", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "y3n9Ifww9u5cxZe6oiLbpw", + "name": "3 Brothers Pizza & Pasta", + "address": "2621 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.987659, + "longitude": -75.098389, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "5_k3Ai_WnByfr0RKmRqHhg", + "name": "The Home Depot", + "address": "2539 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9924802, + "longitude": -75.0914723, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'" + }, + "categories": "Shopping, Contractors, Building Supplies, Home Services, Home & Garden, Hardware Stores, Nurseries & Gardening, Appliances", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "6:0-22:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "d-bKuEy4MTzOqeyhogIvqA", + "name": "Vesuvio Restaurant & Bar", + "address": "736 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404603, + "longitude": -75.1561091, + "stars": 2.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "Fxzm5Yp3yDq_8n5gptP1lw", + "name": "Wawa", + "address": "3901 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9972580068, + "longitude": -75.0884300021, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "WiFi": "'free'", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Convenience Stores, Delis, Restaurants, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "l_FzESKdJPs41Ll5y35xUg", + "name": "Fancy Deli Pizzeria & Restaurant", + "address": "1536 N Carlisle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977314661, + "longitude": -75.1592983529, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Pizza, Event Planning & Services, Restaurants, Delis, Caterers", + "hours": { + "Monday": "10:0-22:30", + "Tuesday": "10:0-22:30", + "Wednesday": "10:0-22:30", + "Thursday": "10:0-22:30", + "Friday": "10:0-22:30", + "Saturday": "10:0-22:30", + "Sunday": "10:0-22:30" + } + }, + { + "business_id": "ZpgVL2z1kgRi954c9m9INw", + "name": "United By Blue", + "address": "205 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9539294, + "longitude": -75.1432262, + "stars": 4.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "HasTV": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Breakfast & Brunch, Food, Coffee & Tea, Restaurants, Sandwiches, Shopping, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "d1U0T-4ghFp-OsCvqTZ5pg", + "name": "A+ Affordable Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Office Cleaning, Professional Services, Home Cleaning, Window Washing, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "pL3JLFeUBSM42QRGSpjSyA", + "name": "Sea Bar Restaurant", + "address": "140 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548114, + "longitude": -75.1563144, + "stars": 3.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "'average'", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "vI1BG1dJx8DPm4a1ljkfMw", + "name": "Prescription Chicken", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499025078, + "longitude": -75.1481309454, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BYOB": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Corkage": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Soup", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "m408YCnvuIywzZkJX3K9KQ", + "name": "Au Bon Pain", + "address": "2005 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954038, + "longitude": -75.174378, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Food, Sandwiches, Soup, Fast Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "-cvHG83A7-kepbveSr4HYg", + "name": "Powerback Rehabilitation Center", + "address": "1526 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.944912, + "longitude": -75.1678828, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Rehabilitation Center, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "JGVfQFOMFd_6XHkiGj8bcg", + "name": "Don Pedro Meats and Market", + "address": "6010 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0349925, + "longitude": -75.0820576, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Specialty Food, Grocery, Food, Meat Shops", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "XmYOhiKZZUhOfpaP41Go5Q", + "name": "Asian Arts Initiative", + "address": "1219 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.958019, + "longitude": -75.1592682, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Cultural Center", + "hours": null + }, + { + "business_id": "bSIrwzXUgh_7CmcLlzENCA", + "name": "Wawa", + "address": "6935 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.046348, + "longitude": -75.0702176, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches, Food, Delis, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "0X5TTmfBPPY98Ra2CcSw0Q", + "name": "Mike's BBQ", + "address": "1703 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9284095243, + "longitude": -75.1632106304, + "stars": 4.5, + "review_count": 244, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BikeParking": "True", + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "BYOB": "True", + "HappyHour": "False", + "DriveThru": "False", + "DogsAllowed": "False", + "Corkage": "False", + "WheelchairAccessible": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Barbeque, Sandwiches, Restaurants, Caterers", + "hours": { + "Thursday": "12:0-17:15", + "Friday": "12:0-17:15", + "Saturday": "12:0-17:15", + "Sunday": "12:0-17:15" + } + }, + { + "business_id": "AB5mv5gMXGq5xjhdNuFSMg", + "name": "Frozen Rolled Ice Cream", + "address": "938 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534392509, + "longitude": -75.1562077938, + "stars": 4.0, + "review_count": 202, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "DriveThru": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "flfkAssP0LzV3f0HSUhQAA", + "name": "Elixr Coffee", + "address": "315 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9581652, + "longitude": -75.1580495, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee Roasteries, Coffee & Tea, Cafes, Restaurants, Food", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Sw8rvE6SwsbeniT3aGUJZQ", + "name": "Big Catch Poke", + "address": "1840 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9267197, + "longitude": -75.1673635, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "Corkage": "False" + }, + "categories": "Seafood, Restaurants, Poke, Japanese, Food, Juice Bars & Smoothies, Bubble Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-15:0", + "Saturday": "12:30-20:30" + } + }, + { + "business_id": "bYpGsEhIiAF_mpkFQsf19Q", + "name": "Royal Buffet & Grill", + "address": "4504 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.002977, + "longitude": -75.2217849, + "stars": 2.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Buffets, Restaurants, Food, Japanese", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "Vn2nFA9JaEXTebCExP869w", + "name": "Myra's Vitamin and Herbal a Wellness Center", + "address": "666 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.971154, + "longitude": -75.22607, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Nutritionists, Vitamins & Supplements, Specialty Food, Home Health Care, Health & Medical, Health Markets, Shopping, Food", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "MX3jDKbYS62HMoH_HjHqQA", + "name": "Palace Nails & Spa", + "address": "2479 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0798587461, + "longitude": -75.025075821, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal, Waxing, Eyelash Service, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:30", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "wltU8uAAmMDhMAqBAuIZzw", + "name": "Free Library of Philadelphia", + "address": "1901 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9594426101, + "longitude": -75.1710639462, + "stars": 4.5, + "review_count": 105, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Public Services & Government, Libraries", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "g6vwuA7KlRwIolWgDiA7_g", + "name": "Jollies West", + "address": "3800 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9603022357, + "longitude": -75.196900052, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BikeParking": "True" + }, + "categories": "American (New), Dive Bars, Nightlife, Restaurants, Bars", + "hours": { + "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" + } + }, + { + "business_id": "N3jXO-f_WuQAymvqpyUqQA", + "name": "Pat and Bobby's Manayunk Steaks", + "address": "114 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026475, + "longitude": -75.224561, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Restaurants, Steakhouses, Cheesesteaks, Food Delivery Services, Food", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "4xu5AxIquZThauX74w5hSA", + "name": "Tullycross Fine Irish Handcrafts", + "address": "110 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409003, + "longitude": -75.1444366, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Arts & Crafts, Religious Items, Souvenir Shops, Shopping, Jewelry, Flowers & Gifts", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "bz3Z6Lj3_r9BWAClE1cHpQ", + "name": "Subway", + "address": "9979 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1013949795, + "longitude": -75.0286053176, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "NoiseLevel": "'average'", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Sandwiches, Fast Food", + "hours": { + "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-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "z_rrWRB6vlsK3fGP3BcmBw", + "name": "Sweat Fitness", + "address": "4151 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023455, + "longitude": -75.2195095, + "stars": 2.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Gyms, Active Life, Trainers, Fitness & Instruction", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "fCodJihIFziZV7mT-hnlrw", + "name": "Excel Physical Therapy", + "address": "1800 John F Kennedy Blvd, Ste 1800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9540022, + "longitude": -75.169996, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "AcceptsInsurance": "True" + }, + "categories": "Physical Therapy, Arts & Entertainment, Museums, Art Museums, Health & Medical", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "kpduERk9Zy40rE3zg935bw", + "name": "Oriental Fusion Grill", + "address": "719 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94888, + "longitude": -75.153243, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Asian Fusion, Sushi Bars, Restaurants, Food, Japanese", + "hours": { + "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" + } + }, + { + "business_id": "1MIya9yZmgh5wDry-PkmQw", + "name": "Les Fleurs Salon", + "address": "1858 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9782998, + "longitude": -75.1310153, + "stars": 5.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Day Spas, Nail Salons, Skin Care, Eyelash Service", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "g47SXcwz7Z0BqGpvzFMIeQ", + "name": "Jefferson Otolaryngology", + "address": "925 Chestnut St, Fl 6, Thomas Jefferson University Hospitals", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951451, + "longitude": -75.15854, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Ear Nose & Throat, Doctors, General Dentistry, Audiologist", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "JvnbsGub9FbXVJftM2Zn7A", + "name": "Johnny Looch Dj", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, DJs, Arts & Entertainment", + "hours": null + }, + { + "business_id": "gSzrkLa9p9ExkwxhE0ds1Q", + "name": "Allure Nails & Spa", + "address": "712 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492498, + "longitude": -75.1530594, + "stars": 4.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Day Spas, Beauty & Spas, Nail Salons, Massage", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "3fiZ9cUjTJYx0ivno0PyrQ", + "name": "J Sima Salon", + "address": "257 St James Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.946223, + "longitude": -75.145279, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "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": "9:0-16:0" + } + }, + { + "business_id": "e9sI-IwAci2lGDsRiZ7--w", + "name": "Renaissance Center for Healing Arts", + "address": "1528 Walnut St, Ste 1905", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9495648, + "longitude": -75.1672413, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Acupuncture, Health & Medical, Chiropractors", + "hours": { + "Monday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "9:0-19:0", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "f2RHDdXezLHILvM7v1xOVA", + "name": "Taqueria La Veracruzana", + "address": "908 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93613, + "longitude": -75.15913, + "stars": 4.0, + "review_count": 472, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "UdcLHHBRIxtelgbKBnhitA", + "name": "Nifty Fifty's", + "address": "2491 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0794684018, + "longitude": -75.0253902955, + "stars": 3.5, + "review_count": 352, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "BYOBCorkage": "'yes_free'", + "RestaurantsTableService": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "RestaurantsReservations": "False", + "DogsAllowed": "False" + }, + "categories": "Burgers, Juice Bars & Smoothies, Food, Restaurants, Ice Cream & Frozen Yogurt, Breakfast & Brunch, Desserts, Diners", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "cW5UGfBhu11rwhIK1vqbUg", + "name": "Washington Square Chiropractic Center", + "address": "604 S Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459022, + "longitude": -75.1523123, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chiropractors, Active Life, Health & Medical", + "hours": { + "Monday": "14:30-18:0", + "Wednesday": "14:30-18:0", + "Thursday": "14:30-18:0", + "Friday": "10:0-13:0" + } + }, + { + "business_id": "dUDQHe-7bsooRbSFLgSqgw", + "name": "Gaetano's", + "address": "2843 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0394382, + "longitude": -75.0563171, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "Ayzn3hq3nrwav20nrRRtKg", + "name": "US Post Office", + "address": "2037 Chestnut St Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952395, + "longitude": -75.1748347, + "stars": 2.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Local Services, Shipping Centers, Post Offices", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "kDo0jibjns5PCPNWm-DaPA", + "name": "Fast Local Locksmith", + "address": "1536 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9410713, + "longitude": -75.1693015, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Keys & Locksmiths, Business Consulting, Professional Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-20:0" + } + }, + { + "business_id": "Gl1ETVQpQHX6n3dWSvX59Q", + "name": "Valaitis Motor Inc", + "address": "1730 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926295, + "longitude": -75.1518271, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops, Auto Repair", + "hours": null + }, + { + "business_id": "5YkucjpFYEhg4gsWU4B1hQ", + "name": "Little Pete's Restaurant", + "address": "219 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949326, + "longitude": -75.169019, + "stars": 3.5, + "review_count": 324, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "HasTV": "False", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "cdsjzcUDJrrdhIHVRjJcbQ", + "name": "Payless Cleaners", + "address": "330 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.913122, + "longitude": -75.155428, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Dry Cleaning, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "MCONblFmdE6NdZWN-BoDpQ", + "name": "The Breakfast Boutique 2", + "address": "5917 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0436392303, + "longitude": -75.1436618202, + "stars": 3.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "RestaurantsTakeOut": "None", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}" + }, + "categories": "Cafes, Restaurants, Sandwiches, Burgers, Breakfast & Brunch", + "hours": { + "Monday": "7:30-14:30", + "Tuesday": "7:30-14:30", + "Wednesday": "7:30-14:30", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "bZUmx_CkQkAtFwAVqVhFrA", + "name": "Megumi Japanese Ramen & Sushi Bar", + "address": "915 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955455, + "longitude": -75.154901, + "stars": 4.0, + "review_count": 210, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "HappyHour": "False", + "HasTV": "False", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "DogsAllowed": "False", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BYOB": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Ramen, Sushi Bars, Restaurants, Japanese, Noodles", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "P0cEfrFGbiX7U7zex9iw4w", + "name": "Emerald Cutz Hair Salon", + "address": "2036 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670944, + "longitude": -75.171513, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "jAKvrLDkkKai0shp-IY0pg", + "name": "Sugar Factory", + "address": "1216 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501500906, + "longitude": -75.1610934042, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Restaurants, American (Traditional), Food, Bars, Burgers, Desserts", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-1:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "VNaIRefiuIM2PcjsOtxF2w", + "name": "APE TEK Computers", + "address": "2026 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0504422, + "longitude": -75.0652139, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Web Design, Electronics Repair, Professional Services, IT Services & Computer Repair, Security Systems, Home Services, Mobile Phone Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "saqwmORYPSkqzFr9cU1ROQ", + "name": "Raging Waters Autowash", + "address": "810 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0935823665, + "longitude": -74.9608548657, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive", + "hours": null + }, + { + "business_id": "BXDV7WRidHmDl-JwLQBxNg", + "name": "Viet French Cafe and Sandwiches", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9128751, + "longitude": -75.1537903, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, French, Sandwiches", + "hours": { + "Monday": "8:0-19:30", + "Tuesday": "8:0-19:30", + "Wednesday": "8:0-19:30", + "Friday": "8:0-19:30", + "Saturday": "8:0-19:30", + "Sunday": "8:0-19:30" + } + }, + { + "business_id": "48u8WIossNoJXI4SHh1gWQ", + "name": "Amanda's Barbershop", + "address": "8923 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.051119142, + "longitude": -75.0091556449, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "W2tMXWUz0ivtZy6ZvKycVg", + "name": "Visionworks Columbus Commons", + "address": "2250 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.917297, + "longitude": -75.13975, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Optometrists, Eyewear & Opticians, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "i3t7UUv542Y9Jp9FBTr_RQ", + "name": "Hard Ink Tattoo Studio", + "address": "2259 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9926218, + "longitude": -75.1028203, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "7QgkMf1wBmzXHEwz0jOcMQ", + "name": "Roxy Auto Body", + "address": "7729 Winston Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.069367, + "longitude": -75.197263, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "4UVsJ0CX20rmeC6CfC0reA", + "name": "Wendy's", + "address": "1515 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512288134, + "longitude": -75.1657653743, + "stars": 2.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "u'paid'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Food, Restaurants, Pretzels, Burgers", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "AZJFWof2D1lZwRcm06XTdg", + "name": "Chase Bank", + "address": "1636 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497701124, + "longitude": -75.1690263178, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "pZ_2n0m9EYHcebIkay0baw", + "name": "Banana's Bar & Lounge", + "address": "5500 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.033442, + "longitude": -75.116303, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "None", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "None", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "lMMK2vSieQb_FtqqZ_VGlQ", + "name": "Temple University Law School Bookstore", + "address": "1700 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9789041447, + "longitude": -75.1581788063, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Coffee & Tea, Books, Mags, Music & Video, Convenience Stores, Bookstores, Food, Shopping", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "zujdPV3HT-Y-CKE1GgkMHQ", + "name": "The Bakeshop on 20th", + "address": "269 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484101, + "longitude": -75.174133, + "stars": 4.5, + "review_count": 346, + "is_open": 1, + "attributes": { + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "False", + "WiFi": "'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "None", + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "HasTV": "False" + }, + "categories": "Coffee & Tea, Bakeries, Food, Soup, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "7:0-14:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "7:0-14:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "UbwtQDxLc6IzA6e8iBTQXw", + "name": "Treetop Quest Philly", + "address": "51 Chamounix Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9983886, + "longitude": -75.2020127, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Ziplining, Amusement Parks, Challenge Courses", + "hours": { + "Monday": "10:0-17:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "C7UNcd4OuXxOZUU36tBalQ", + "name": "Dunkin'", + "address": "1324 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490201, + "longitude": -75.1632595, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "None", + "WiFi": "u'free'" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "dQZlvOEVNke30MY5iTiy1g", + "name": "Davios", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951001, + "longitude": -75.16874, + "stars": 4.0, + "review_count": 614, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForDancing": "False", + "RestaurantsAttire": "'dressy'", + "HappyHour": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "CoatCheck": "True", + "RestaurantsDelivery": "None", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Nightlife, Bars, Restaurants, Italian, Lounges, Steakhouses, Breakfast & Brunch", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-23:0", + "Saturday": "15:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "YBak8o0xCiNN4sXr3izLbg", + "name": "Barcade", + "address": "1114 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673696, + "longitude": -75.1345292, + "stars": 3.5, + "review_count": 506, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "Smoking": "u'outdoor'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "CoatCheck": "False", + "DriveThru": "False" + }, + "categories": "Restaurants, Bars, Arcades, Tacos, Nightlife, Mexican, Arts & Entertainment", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "BpCi_s4hDtw7ru_hf2qpIA", + "name": "Pho Tau Bay", + "address": "2650 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9172447, + "longitude": -75.1731774, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Corkage": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': True, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "BYOB": "False" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "APr7s73xPQBQlQD90wts3w", + "name": "Roxborough Animal Hospital", + "address": "6712 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0404752, + "longitude": -75.224884, + "stars": 1.5, + "review_count": 20, + "is_open": 0, + "attributes": null, + "categories": "Health & Medical, Doctors, Pet Services, Veterinarians, Pets", + "hours": { + "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" + } + }, + { + "business_id": "zX0z6Y7s8addvSkm_lwgFA", + "name": "The Beer Peddlers", + "address": "1942 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921838, + "longitude": -75.144069, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fMdyrMKePEqS3mLnm2gn6Q", + "name": "Charley B's Place II", + "address": "6402 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0604277, + "longitude": -75.1675003, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "wAIZDurYmEeSR9vQxge89w", + "name": "Owen's Cafe", + "address": "2808 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0438825, + "longitude": -75.0538032, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, Restaurants, Cafes, Bars", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-2:0" + } + }, + { + "business_id": "B71qd7T1voSiewKHUWD1cg", + "name": "Summit Acupuncture Philadelphia", + "address": "421 N 7th St, Ste 205", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.958919309, + "longitude": -75.1500189, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Traditional Chinese Medicine, Pain Management, Doctors, Sports Medicine, Nutritionists, Acupuncture, Health & Medical", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "7:0-18:0", + "Wednesday": "10:0-21:0", + "Thursday": "7:0-18:0", + "Friday": "10:0-21:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "CTGvOtbw9dmxtMnZe8FxPw", + "name": "Nana Petrillo's", + "address": "1001 N 2nd St, Unit 26", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9668211, + "longitude": -75.1399137, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Ice Cream & Frozen Yogurt, Internet Cafes, Food", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "mciSzNKFRZ3HGgeSDuwUcw", + "name": "NINE", + "address": "2829 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9746916, + "longitude": -75.182868, + "stars": 4.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HappyHour": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "Corkage": "True", + "NoiseLevel": "u'average'", + "BYOB": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Asian Fusion, Caribbean, Cafes, Vegan, French, Breakfast & Brunch, Vegetarian, Thai", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "UVCiRVQID_amNd_q1K5POA", + "name": "Cavanaughs Headhouse", + "address": "421 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422776, + "longitude": -75.1449611, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Event Planning & Services, American (Traditional), Restaurants, Nightlife, Sports Bars, Bars, Venues & Event Spaces", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "14yQhAOxTs1zzIc4GDK6Iw", + "name": "H&M", + "address": "1725 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503324, + "longitude": -75.1701613, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Children's Clothing, Men's Clothing, Women's Clothing, Fashion, Department Stores", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "BiRK_NQSTZ-NArs00xcXsw", + "name": "Juniper Muay Thai", + "address": "2019 S Juniper St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9248434, + "longitude": -75.1680757, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Martial Arts, Fitness & Instruction, Muay Thai, Boxing, Active Life", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "17:0-21:0", + "Friday": "6:30-21:0", + "Saturday": "9:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "kH2bJtlej-8oDv8KjsEzCg", + "name": "Holiday Inn Philadelphia Stadium", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9093697, + "longitude": -75.1646366, + "stars": 2.5, + "review_count": 85, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Hotels & Travel, Venues & Event Spaces, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "AbKSXL_t3uJiNBybtBaEPw", + "name": "Save some Green", + "address": "2005 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95238, + "longitude": -75.173658, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Accessories, Fashion, Kitchen & Bath, Home & Garden, Shopping", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-19:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "PgCv9KtHdlvuwqIykkfhrw", + "name": "Asia @ Cafe", + "address": "1030 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9364945, + "longitude": -75.156776, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Thai, Chinese", + "hours": null + }, + { + "business_id": "74SLMtBJCBVeOK02EYyG9A", + "name": "T.J. Maxx", + "address": "7616 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9782945, + "longitude": -75.2711753, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Department Stores, Men's Clothing, Women's Clothing, Shopping, Fashion", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "JG8y0w-3daLWTkyC2ZlZLQ", + "name": "Precision Plus Plumbing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0336610032, + "longitude": -75.1199909087, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Plumbing", + "hours": null + }, + { + "business_id": "MKsCFQuzmgH2We9hwTQ8gw", + "name": "South Street Souvlaki", + "address": "509 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419652, + "longitude": -75.1510524, + "stars": 4.0, + "review_count": 221, + "is_open": 1, + "attributes": { + "Corkage": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'yes_free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Greek, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "NPF6LQOFImbP6zBrAdNwuw", + "name": "Philly SkatePlex", + "address": "11586 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.104286, + "longitude": -75.0047, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Skating Rinks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:0-21:0", + "Wednesday": "20:30-0:0", + "Thursday": "18:0-21:0", + "Friday": "19:0-22:0", + "Saturday": "19:30-2:0", + "Sunday": "20:0-0:0" + } + }, + { + "business_id": "m_5jK3w7t4CS2ReIZI_grQ", + "name": "Fat Tuesday", + "address": "431 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941876, + "longitude": -75.150251, + "stars": 2.5, + "review_count": 196, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'very_loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Restaurants, American (Traditional), Coffee & Tea, Cocktail Bars, Bars, Nightlife, Food, Juice Bars & Smoothies, American (New)", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "FOTp2JNMj0_SuDSPKYhixQ", + "name": "Good Karma Cafe", + "address": "265 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470973141, + "longitude": -75.164758125, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Cafes, Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "XedDigLerhoziGy6FQufbw", + "name": "Hair 4 U", + "address": "1606 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439503, + "longitude": -75.1690963, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Extensions", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "8:30-14:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "WX1x4UaiDxl4o4LfpFG8TA", + "name": "Samosa Deb", + "address": "9TH And Catherine", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9397277733, + "longitude": -75.1577685373, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food Trucks, Indian, Food", + "hours": null + }, + { + "business_id": "WdZhpAx_8bT7PvUTxkIQ_g", + "name": "Appliance Express Repair", + "address": "10780 Lockart Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1178311, + "longitude": -75.0386073, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Appliances & Repair", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "sYICfcex5_jGEhWATtndyA", + "name": "Precision Watch Repair", + "address": "1015 Chestnut St, Ste 1010", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502323, + "longitude": -75.1575947, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Shopping, Jewelry, Watch Repair", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "VUWSMm_PnH9y2XvsgsF_5w", + "name": "Bodysmith Performance", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493504183, + "longitude": -75.1630255381, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Nutritionists, Trainers, Fitness & Instruction, Health & Medical, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "5fleIlC1WDrD82Ctb9xpow", + "name": "Philly Photo Booths", + "address": "325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photo Booth Rentals, Photographers, Event Planning & Services, Party & Event Planning", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "sjP6Zylv_Xbpzjx_tI5_iw", + "name": "Khmer Sweet Basil", + "address": "1801 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262098, + "longitude": -75.155617, + "stars": 4.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Restaurants, Cambodian", + "hours": null + }, + { + "business_id": "1O5hLeYPaU06dhZpjNVb_A", + "name": "Emily Chelsea Jewelry", + "address": "2429 E Gordon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9775744, + "longitude": -75.1249602, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Jewelry, Shopping, Bridal", + "hours": null + }, + { + "business_id": "GYwGTj9uXSpehe3YFFHWKA", + "name": "Asianfresh Food Market", + "address": "142-144 N 10th st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954875, + "longitude": -75.156261, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Food, International Grocery", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "WLxDcaMetWVYqwp37dtu_w", + "name": "Adidas", + "address": "436 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9416471, + "longitude": -75.1506392, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sports Wear, Sporting Goods, Fashion, Active Life, Shopping, Shoe Stores", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "n_xMTs22D45IK8g366L8Kg", + "name": "Allegheny Dental I", + "address": "2734 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.983208, + "longitude": -75.1020144, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Dentists", + "hours": null + }, + { + "business_id": "4xOrBsgS6opqA1quEgJwtQ", + "name": "Share Food Program", + "address": "2901 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0061301, + "longitude": -75.1777029, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Community Service/Non-Profit", + "hours": null + }, + { + "business_id": "Q46KberieM6ziVYME6CHEQ", + "name": "Pico De Gallo", + "address": "1500 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.943647, + "longitude": -75.167396, + "stars": 2.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "7GDlai7-hUC7cW_5HT0TUg", + "name": "FringeArts", + "address": "140 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9532864, + "longitude": -75.1404276, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "CoatCheck": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Amusement Parks, Active Life, Performing Arts, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "20:0-22:0", + "Saturday": "20:0-22:0" + } + }, + { + "business_id": "O1loDUXiJw4IPYk1DR3pSQ", + "name": "Streamline Drain Cleaning and Plumbing", + "address": "226 W Hansberry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0264116, + "longitude": -75.17157, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Local Services, Home Services, Septic Services, Water Heater Installation/Repair", + "hours": { + "Monday": "7:0-22:30", + "Tuesday": "7:0-22:30", + "Wednesday": "7:0-22:30", + "Thursday": "7:0-22:30", + "Friday": "7:0-22:30", + "Saturday": "7:0-22:30" + } + }, + { + "business_id": "uuU__BibPOdiwn7MdPW4vw", + "name": "Tan's Finger Lickin Chicken", + "address": "10090 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.096111, + "longitude": -75.0148769, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Chicken Shop, Chicken Wings, Soul Food, Restaurants", + "hours": { + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-18:0" + } + }, + { + "business_id": "ZU6toRfw0VY-oSe86qJGKQ", + "name": "Violet Salon", + "address": "2655 S Alder St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9161799, + "longitude": -75.1648674, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Hair Salons, Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "Dp4xxrLd1EfB-AbQTDPohg", + "name": "7-Eleven", + "address": "1215 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532283016, + "longitude": -75.1604747772, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "Caters": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "aWV7WQ36E1p1TJ5rplDfAQ", + "name": "Quest Diagnostics", + "address": "700 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0625214, + "longitude": -75.0881711, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Diagnostic Services, Laboratory Testing", + "hours": { + "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": "8:0-12:0" + } + }, + { + "business_id": "xmxm5eK2eBfJQkpygVZ5eg", + "name": "Wissahickon Bar & Bistro", + "address": "5109 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0171139, + "longitude": -75.2105528, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "False", + "Caters": "False", + "HasTV": "True", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "BikeParking": "True", + "CoatCheck": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "HappyHour": "True", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Nightlife, Desserts, Food, Bars, Restaurants, Southern, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-0:0", + "Saturday": "18:0-0:0" + } + }, + { + "business_id": "1bk-5nC9nCCdvq9BD29Saw", + "name": "Wells Fargo Bank", + "address": "2 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9687082, + "longitude": -75.1344687, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "tiCdi3sz6PlKc6MOPEWo7w", + "name": "Mama Palma's Gourmet Pizza", + "address": "2229 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488739, + "longitude": -75.178877, + "stars": 3.5, + "review_count": 231, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Alcohol": "'beer_and_wine'", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True" + }, + "categories": "Italian, Salad, Restaurants, Pizza", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "V9owgpuQhb6ebrzZbNL8LA", + "name": "Midas", + "address": "2300 E Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9954954399, + "longitude": -75.0957303644, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Oil Change Stations, Tires", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "HI9RLpYxQa3IcVZ2wVvJzQ", + "name": "Charley Dove", + "address": "276 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482837212, + "longitude": -75.174552016, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "OutdoorSeating": "True" + }, + "categories": "Mediterranean, American (Traditional), Restaurants", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "nqz4dhxnIUaM-6mILN1eww", + "name": "Cousins Fresh Market", + "address": "6411 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.926404, + "longitude": -75.233689, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Farmers Market, Grocery, Food", + "hours": { + "Monday": "8:0-20: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": "8:0-17:0" + } + }, + { + "business_id": "0ZytGgeMBuyrGdU8ebN-Aw", + "name": "Mackintosh Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0018403, + "longitude": -75.0669552, + "stars": 1.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0" + } + }, + { + "business_id": "TqmQ6-_D4ckAyX4SoIb7LQ", + "name": "The Chic Petique", + "address": "1040 N 2nd St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673492, + "longitude": -75.1404339, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": null, + "categories": "Pet Stores, Pets", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "dvph41fD_t6Kd_ChSpmNSA", + "name": "The Ritz-Carlton, Philadelphia", + "address": "10 Avenue of the Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9514456414, + "longitude": -75.1641494036, + "stars": 3.5, + "review_count": 328, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'paid'", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Caterers, Event Planning & Services, Hotels, Real Estate, Apartments, Hotels & Travel, Venues & Event Spaces, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "vJqGJq1S5kw8miW2TagRww", + "name": "Auntie Anne's", + "address": "3405 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530492, + "longitude": -75.1926111, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Pretzels, Specialty Food", + "hours": null + }, + { + "business_id": "na5B8puc0hx8xxmuC3cH1A", + "name": "8 Diamonds Pizza", + "address": "15002 Endicott St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1201943, + "longitude": -74.9950966, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "'quiet'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "2pWRW7ASh_Bw5q5V64Luuw", + "name": "Ridge Carlton Apartments", + "address": "7373 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0477679, + "longitude": -75.2340047, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "BELS5YkYjDFkpbM2FuDdaA", + "name": "Nourish", + "address": "943 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378378, + "longitude": -75.1579899, + "stars": 4.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Vegan, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Osz3H2SyvSH4i1AJZafaAg", + "name": "Slice Hair Studio", + "address": "444 N 4th St, Ste 105", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590273, + "longitude": -75.145848, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Barbers, Tanning, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "VSDdUwXktnvL_O0meKv7MQ", + "name": "Alice Pizza", + "address": "235 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948332, + "longitude": -75.166127, + "stars": 4.5, + "review_count": 243, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'" + }, + "categories": "Pizza, Restaurants, Nightlife, Italian, Bars, Gelato, Food, Wine Bars", + "hours": { + "Monday": "0:0-0: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-21:0" + } + }, + { + "business_id": "27eGMEJ6ZZ1Oouqlr2h8Bg", + "name": "Public Storage", + "address": "456 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9578943, + "longitude": -75.1384729, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "iJAe4S1-gz1gRDcpl5dSvQ", + "name": "Spots and Dots Cleaning", + "address": "1701 Walnut St, Fl 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502165, + "longitude": -75.1691989, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "Smoking": "u'no'", + "WiFi": "u'no'" + }, + "categories": "Local Services, Professional Services, Home Cleaning, Carpet Cleaning, Home Services, Office Cleaning", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0" + } + }, + { + "business_id": "u7cZUEGK6iJP2gvI22xY2A", + "name": "Memphis Taproom", + "address": "2331 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9803676, + "longitude": -75.1230344, + "stars": 4.0, + "review_count": 675, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BikeParking": "True", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BYOB": "False", + "HappyHour": "True", + "GoodForDancing": "False" + }, + "categories": "Bars, Restaurants, American (New), Beer Bar, Pubs, Nightlife", + "hours": { + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "kx0WMGsOTQTaiokGO6zJKg", + "name": "Fancy Nail", + "address": "9117 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0743144, + "longitude": -75.0332152, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "v1UZ0rYgVr_WEfLsK82VPA", + "name": "Ramayana Restaurant", + "address": "1740 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9274665, + "longitude": -75.1637896, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "NoiseLevel": "'quiet'", + "WiFi": "u'no'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Indonesian, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "14:0-20:0" + } + }, + { + "business_id": "s6eWF8rflISryRAUeOpqjA", + "name": "Renew Medspa", + "address": "241 S 6th St, Suite 120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9462701, + "longitude": -75.1513068, + "stars": 2.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Laser Hair Removal, Health & Medical, Beauty & Spas, Medical Spas, Medical Centers, Hair Removal", + "hours": null + }, + { + "business_id": "vq73W-SHrwBgXzQ__0yV2w", + "name": "Second District Brewing", + "address": "1939 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9261812341, + "longitude": -75.1730921385, + "stars": 4.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Smoking": "u'no'", + "OutdoorSeating": "True", + "HappyHour": "True", + "Caters": "False", + "WiFi": "u'free'" + }, + "categories": "American (New), Beer Bar, Restaurants, Bars, Food, Breweries, Nightlife, American (Traditional)", + "hours": { + "Monday": "15:0-23:0", + "Wednesday": "15:0-23:0", + "Thursday": "15:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "-xxFeiRIn6XGs9n8YnR2BQ", + "name": "Matin Tailor", + "address": "815 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938722, + "longitude": -75.1561228, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services, Sewing & Alterations", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "HI3d_nxaFBIq5SbJo_7oUw", + "name": "El Paisano Express Food", + "address": "1201 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342645, + "longitude": -75.1588578, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "q6qZzQbIDnl54kH-4BIA6Q", + "name": "I Am Coffee", + "address": "542 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428834, + "longitude": -75.1520225, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food, Bagels", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "9oS8GwYwFgSrR34ToywLiw", + "name": "Victor's Bar", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524937, + "longitude": -75.1758082, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "True", + "RestaurantsPriceRange2": "1", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True" + }, + "categories": "Pizza, Cocktail Bars, Bars, Nightlife, Wine Bars, Pubs, Restaurants", + "hours": null + }, + { + "business_id": "LEyWxCngS9m5hWc9coJD4g", + "name": "Everything Fresh", + "address": "1222 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489116965, + "longitude": -75.1616991795, + "stars": 4.0, + "review_count": 77, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "YfpYeJv6S3OpYy5EsZi-0Q", + "name": "Blush Beauty Bar", + "address": "1714 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928449, + "longitude": -75.165458, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Salons, Day Spas, Tanning, Makeup Artists, Hair Removal, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "WCLexnTQmylse_p0kQbz2g", + "name": "The Treemont", + "address": "231 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9487352926, + "longitude": -75.1660725825, + "stars": 4.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "HappyHour": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "pJl-G1h3SBDS1it4sTpS_Q", + "name": "El Meson Latin American Cuisine", + "address": "6625 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0424193649, + "longitude": -75.0742793083, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Latin American, Comfort Food, Bars, Restaurants", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "bwaIdpSVNwDgi62srCHCfA", + "name": "Drew A. Shulman DMD, MAGD", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0722408, + "longitude": -75.0314294, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, General Dentistry, Orthodontists, Teeth Whitening, Dentists, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:0", + "Wednesday": "8:0-15:30", + "Thursday": "10:0-20:0" + } + }, + { + "business_id": "UNm_HjLpz4nwS65-Wjv97A", + "name": "Geno's Steaks at Rivers Casino Philadelphia", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.963646, + "longitude": -75.132441, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "None", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "OutdoorSeating": "None", + "GoodForMeal": "None", + "BikeParking": "True" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches", + "hours": { + "Monday": "11:0-4:0", + "Tuesday": "11:0-4:0", + "Wednesday": "11:0-4:0", + "Thursday": "11:0-4:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-4:0" + } + }, + { + "business_id": "txO86IfM91oddyJBc6CUng", + "name": "First Call Demo and Clean Outs", + "address": "1114 Cantrell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9232125, + "longitude": -75.1650151, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Junk Removal & Hauling, Demolition Services, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "BoeDuMEg9P7T_WyQJnuA9g", + "name": "Walgreens", + "address": "2014 S Broad St, Ste 24", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9247325, + "longitude": -75.1702145, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Drugstores, Beauty & Spas, Convenience Stores, Food, Cosmetics & Beauty Supply, Photography Stores & Services, Shopping", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "WNLUBI0my0WLpmWTNUsK9w", + "name": "Loop", + "address": "1914 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9445492, + "longitude": -75.1740691, + "stars": 4.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Arts & Crafts, Knitting Supplies, Fabric Stores, Shopping, Art Classes, Education", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "bHj1XBczyH84HpDOnj3gWA", + "name": "Peregrine Coffee", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.989193, + "longitude": -75.091751, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Flavor, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "K-S_YhtoGffXF9f3azGY2A", + "name": "Rite Aid", + "address": "10 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921161, + "longitude": -75.146493, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Convenience Stores, Shopping, Food, Drugstores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "If0EcO2DAJl4ojvNmr-NBA", + "name": "American Apparel", + "address": "3661 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535320385, + "longitude": -75.1965111337, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Shopping, Women's Clothing, Accessories, Fashion, Men's Clothing", + "hours": { + "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": "12:0-19:0" + } + }, + { + "business_id": "dL4UWm_L4fX4He0WOgVRVg", + "name": "Brown Street Cleaners", + "address": "2601 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9704015554, + "longitude": -75.1797454202, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Sewing & Alterations, Local Flavor, Local Services", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "lkO8fY3ZosD1Jqy9K-cHxg", + "name": "Michael's Ridge Diner", + "address": "6750 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.04133, + "longitude": -75.226185, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "True" + }, + "categories": "Diners, Restaurants", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "2SevIwjgGdDdkIfs3Peu-Q", + "name": "Brown Street Coffee & Bรกnhery", + "address": "2545 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9703702755, + "longitude": -75.1795366775, + "stars": 4.0, + "review_count": 145, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BYOB": "False" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Food, Sandwiches, Restaurants, Vietnamese", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-17:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "YgGk7azFlSPdk-IZ_BFiFQ", + "name": "PHL PETS", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pets, Dog Walkers, Pet Services", + "hours": { + "Monday": "6:0-23:30", + "Tuesday": "6:0-23:30", + "Wednesday": "6:0-23:30", + "Thursday": "6:0-23:30", + "Friday": "6:0-23:30", + "Saturday": "6:0-23:30", + "Sunday": "6:0-23:30" + } + }, + { + "business_id": "9D0aKRGsutg8S0ClIanmrA", + "name": "Rival Bros Coffee", + "address": "2400 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465577, + "longitude": -75.1805364, + "stars": 4.5, + "review_count": 143, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HasTV": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "WheelchairAccessible": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Coffee Roasteries, Food, Cafes, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "_XV_ug_IUiJrGfMiJUqz-Q", + "name": "Philly Burgers & Shakes", + "address": "1107 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489715, + "longitude": -75.1593492, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "Caters": "True" + }, + "categories": "Burgers, Restaurants, Desserts, Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "3ccAyGhQyN7XOcMNWvytYw", + "name": "Henry James Saloon", + "address": "577 Jamestown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0292186, + "longitude": -75.2066769, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "None", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Nightlife, Sandwiches, Pizza, Restaurants, Bars, Pubs", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "v2GYU3ULrUY_Pfez2XVBdg", + "name": "The Athenaeum of Philadelphia", + "address": "219 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9468995454, + "longitude": -75.1511258641, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "GoodForKids": "False" + }, + "categories": "Books, Mags, Music & Video, Museums, Public Services & Government, Arts & Entertainment, Libraries, Shopping, Bookstores", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "AWsZ5AYK6WmZwVOlz3Z_kQ", + "name": "Goldberg Myron DDS", + "address": "1528 Walnut St, Ste 1725", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494912, + "longitude": -75.1673521, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists", + "hours": null + }, + { + "business_id": "X0Rh8PEMSBzyuG4qRiHQBw", + "name": "Pizza Hut", + "address": "477 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0871462708, + "longitude": -74.965258, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pizza, Chicken Wings, Italian, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "ntm_Asl46JhoX2n2w698JQ", + "name": "Ovations Salon", + "address": "539 N Orianna St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961247, + "longitude": -75.143927, + "stars": 4.5, + "review_count": 96, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': False, 'asian': False}", + "WheelchairAccessible": "False" + }, + "categories": "Makeup Artists, Beauty & Spas, Massage, Nail Salons, Hair Salons, Skin Care, Hair Removal, Waxing, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "_bWcLKggOwbpC_4Af4Nmeg", + "name": "Kris", + "address": "1100 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9347726, + "longitude": -75.1621924, + "stars": 4.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mediterranean, Italian, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "shbtvcGnl-PEQOpffwYq-w", + "name": "New Panda", + "address": "8340 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0690865, + "longitude": -75.0518078, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Japanese, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "JyGPkISyBagJD-n_qauQyA", + "name": "William B Putterman, OD", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 5.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Shopping, Eyewear & Opticians, Optometrists", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "WiRRE0xFhZ_WQdxe_hnQdQ", + "name": "AIA Bookstore", + "address": "1218 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953736, + "longitude": -75.160464, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Cards & Stationery, Home & Garden, Gift Shops, Toy Stores, Home Decor, Flowers & Gifts, Books, Mags, Music & Video, Event Planning & Services, Arts & Crafts, Shopping, Bookstores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "AE6jyQmaCB6O9SSSIGsn8A", + "name": "Pet Friendly Dog Bakery", + "address": "4324 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250407, + "longitude": -75.222958, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Tuesday": "13:0-19:0", + "Wednesday": "13:0-19:0", + "Thursday": "13:0-19:0", + "Friday": "13:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "lDxngLEPjT-h556ezsRgtw", + "name": "NovaCare Rehabilitation", + "address": "203 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961188022, + "longitude": -75.1417221129, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Physical Therapy, Health & Medical, Doctors, Sports Medicine, Rehabilitation Center", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-20:0", + "Friday": "7:0-13:0" + } + }, + { + "business_id": "U5wznKR828CLoC182kuRYA", + "name": "Kuts and Kolors Beauty Salon", + "address": "6202 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0356159, + "longitude": -75.2176519, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Hair Salons, Men's Hair Salons, Beauty & Spas, Hair Stylists", + "hours": { + "Monday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "QfOanqR2-5MMuYVxPxAHnA", + "name": "Ummi Dee's burger bistro", + "address": "2805 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9973469, + "longitude": -75.1669759, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cheesesteaks, Steakhouses, Restaurants, Burgers, Juice Bars & Smoothies, Sandwiches, American (New), Food", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "OLOQhSJ1Odb6qVjuBDwfzw", + "name": "Ong's Nice Chinese Noodle House", + "address": "1038 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554884, + "longitude": -75.1573273, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Chinese, Restaurants, Vietnamese", + "hours": null + }, + { + "business_id": "cPE7HJNSrrUmeHPtCOzhuw", + "name": "William Betz Plumbing Supplies", + "address": "2826 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9893578, + "longitude": -75.1193967, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Home Services, Plumbing, Hardware Stores, Kitchen & Bath, Shopping", + "hours": null + }, + { + "business_id": "_Go8vDRuwqa2d8uIDsLnog", + "name": "Liberty Cannabis", + "address": "8900 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0830926, + "longitude": -75.0497523, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'" + }, + "categories": "Shopping, Health & Medical, Cannabis Clinics, Cannabis Dispensaries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "392YmrlTOmP1j2u1CFDsFA", + "name": "The UPS Store", + "address": "2417 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0711491542, + "longitude": -75.0309104484, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Notaries, Printing Services, Mailbox Centers, Shipping Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "Bt0Hz5LfGhwz1dK6MwcRUQ", + "name": "KFC", + "address": "3032 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9997721615, + "longitude": -75.1537278498, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Chicken Wings, Restaurants, Chicken Shop, Fast Food", + "hours": { + "Monday": "10:30-1:0", + "Tuesday": "10:30-1:0", + "Wednesday": "10:30-1:0", + "Thursday": "10:30-1:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-1:0" + } + }, + { + "business_id": "2Kg7KAikjvwKYQFjdyLUQA", + "name": "PNC Bank", + "address": "150 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0326133499, + "longitude": -75.1776516438, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Investing, Banks & Credit Unions, Mortgage Brokers, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "FMFoM6Ly1cJCzUyEkwVPUA", + "name": "Dobson Mills", + "address": "4055 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0081150026, + "longitude": -75.1877999155, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "gh2Oc17i-FYsUYU1kcmP5w", + "name": "Doozer Construction", + "address": "244 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9491786, + "longitude": -75.177974, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Damage Restoration, Contractors, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "UDZYeNX7IJeKrYJjagK4_g", + "name": "The Boyler Room", + "address": "328 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413769, + "longitude": -75.1485359, + "stars": 4.0, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), American (Traditional), Restaurants, Irish, Pubs, Sandwiches, Bars, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "NyE_IkAjdRhjw6Vyniq67w", + "name": "Kens Automotive", + "address": "341 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9582995, + "longitude": -75.1550369, + "stars": 4.5, + "review_count": 121, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Windshield Installation & Repair, Automotive, Auto Repair, Car Inspectors, Auto Glass Services, Oil Change Stations, Smog Check Stations, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "B1QQDY9iurUk_YSAjX2kKg", + "name": "Pastorious Park", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0703334, + "longitude": -75.2070644, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForKids": "True", + "BikeParking": "True", + "CoatCheck": "False", + "HasTV": "False" + }, + "categories": "Music Venues, Arts & Entertainment, Parks, Active Life, Nightlife", + "hours": null + }, + { + "business_id": "kypOp0miYsMvXhuSFXs8dQ", + "name": "Jamba", + "address": "8500 Essington Ave, Space C-9a, Philadelphia Int'l Airport DE-6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8946117, + "longitude": -75.2292952, + "stars": 3.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Juice Bars & Smoothies, Sandwiches, American (New), Acai Bowls, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "G0OV23-dZlDjTwgVR7gtYA", + "name": "Polish Nail Salon", + "address": "3624 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9589118, + "longitude": -75.1943228, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Nail Salons, Waxing, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "y5PBPekernnQkwwUuTzwSQ", + "name": "Jason's Cozyday", + "address": "430 W Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.03773, + "longitude": -75.129786, + "stars": 4.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "Alcohol": "'beer_and_wine'", + "RestaurantsTableService": "True" + }, + "categories": "Korean, Restaurants", + "hours": { + "Monday": "18:0-0:30", + "Wednesday": "18:0-1:30", + "Thursday": "18:0-1:30", + "Friday": "18:0-2:30", + "Saturday": "18:0-2:30", + "Sunday": "18:0-0:30" + } + }, + { + "business_id": "KWuTXLu1PJtzndwSDYnRsg", + "name": "Wallace & Nilan Physical Therapy", + "address": "1919 Chestnut St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521605, + "longitude": -75.1726349, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Physical Therapy, Sports Medicine, Doctors, Occupational Therapy", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-17:0" + } + }, + { + "business_id": "Vjztqe-JBseYpypb6xv3PQ", + "name": "Independence Mall Cafรฉ", + "address": "50 N Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9510629, + "longitude": -75.1488438, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True" + }, + "categories": "Food, Cafes, Restaurants", + "hours": { + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "ucsv4_XUi6CrFny8p_F2SA", + "name": "Creative Circle", + "address": "100 N 18th Street, Suite 815", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557255, + "longitude": -75.1698437, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Marketing, Advertising, Employment Agencies, Professional Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "VnECSKZnz-tDhDZ74s6k_w", + "name": "Subway Restaurants", + "address": "1511 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9792348, + "longitude": -75.160087, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants, Fast Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "plA_FPraevpXY2Dpb4f-cg", + "name": "Fairmount Pharmacy", + "address": "1900 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647156775, + "longitude": -75.16921817, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "mN4U5SHPYTpJZ5VJtV2qpg", + "name": "Epitome Nails", + "address": "16 Old Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057524826, + "longitude": -75.0278057411, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "55D--p5wnvr0gYyRI_y_mw", + "name": "Sarcone's Deli", + "address": "734 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406354533, + "longitude": -75.1576021498, + "stars": 4.0, + "review_count": 206, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Corkage": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "HasTV": "False", + "Caters": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'" + }, + "categories": "American (Traditional), Food, Bakeries, Delis, Sandwiches, Restaurants", + "hours": { + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "R2izKtaTN2UW3bhjBmHJrA", + "name": "Emma's Cafe", + "address": "7311 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0367736816, + "longitude": -75.0399475098, + "stars": 4.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "Caters": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'touristy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-21:30", + "Saturday": "16:30-21:30", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "NdMmS2RcGHESPH7JGgt8eA", + "name": "Flavors Of The Avenue", + "address": "1904 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 39.9264892346, + "longitude": -75.16764516, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Arts & Entertainment, Local Flavor, Festivals, Food", + "hours": null + }, + { + "business_id": "UVw6-8eNsp1hLOk5VrjIKQ", + "name": "Arby's", + "address": "12601 Knights Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.089329, + "longitude": -74.9670019, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Fast Food, Sandwiches, American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "oRkGzZhU9HI9c5ltCscyBQ", + "name": "Anytime Fitness", + "address": "1640 Fairmount Ave, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670396, + "longitude": -75.16525, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "zpouVLawHf98VGOugPKcbA", + "name": "Hawthorne Yoga and Reiki", + "address": "1241 Carpenter St, 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388378, + "longitude": -75.1640046, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Yoga, Reiki, Fitness & Instruction, Health & Medical, Active Life", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "iFUMRyVYJbHyrxuq8-3CKg", + "name": "Philadelphia Sports Clubs", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9616801, + "longitude": -75.1717873, + "stars": 2.0, + "review_count": 143, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Trainers, Active Life, Sports Clubs, Gyms, Fitness & Instruction", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "yNRUWE_0qEBdFuI3OjBdMA", + "name": "Parkside Family Medicine", + "address": "515 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.027801, + "longitude": -75.1835784, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-12:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:30-11:30" + } + }, + { + "business_id": "y9gjpTGwxdLJYPlN_CRhJA", + "name": "Subway", + "address": "1109 Walnut St, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949013, + "longitude": -75.159479, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "HasTV": "False" + }, + "categories": "Sandwiches, Restaurants, Fast Food", + "hours": null + }, + { + "business_id": "166raYAseTAPUrKxowCngg", + "name": "CVS Pharmacy", + "address": "1051 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9431, + "longitude": -75.16, + "stars": 2.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Pharmacy, Shopping, Health & Medical, Food, Drugstores, Convenience Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "NUXuQxDVIj2Amyjli5bBNg", + "name": "CVS Pharmacy", + "address": "2400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9763212656, + "longitude": -75.1203780726, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Shopping, Drugstores, Pharmacy, Convenience Stores, Food, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "ZMYMMyrtgl17j0qyfdKt_g", + "name": "Phu Fha Thai Restaurant", + "address": "355 Lyceum Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0298872, + "longitude": -75.2187574, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "w-Dv99PHEAnrqNwStTZsdw", + "name": "Whitman Cleaners & Tailors", + "address": "2501 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9169275, + "longitude": -75.1524266, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Dry Cleaning & Laundry, Sewing & Alterations, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "wOtGeoas3Q3_jmI3fji73g", + "name": "Watches Etc", + "address": "105 S 8th St, # A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493601, + "longitude": -75.1537693, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Watches", + "hours": null + }, + { + "business_id": "appMXSCalT_9_WzQCfSTbw", + "name": "A Bob's Towing", + "address": "2220 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0080117, + "longitude": -75.0785673, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Roadside Assistance, Auto Repair, Towing, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "egfW5WNbWaV2NZAyvREsVA", + "name": "Joel Muffler Zone", + "address": "4447 N Fairhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0196493029, + "longitude": -75.1353046124, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Repair, Automotive, Auto Parts & Supplies", + "hours": null + }, + { + "business_id": "YIBqLXbVO_Ub77wSX9qAmg", + "name": "2050'S Beauty & Cosmetic", + "address": "638 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935244, + "longitude": -75.1551423, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Removal, Permanent Makeup, Makeup Artists, Beauty & Spas, Cosmetics & Beauty Supply, Skin Care, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Lfwh2rjCXsAczquC_BETNQ", + "name": "Sip-N-Glo Juicery", + "address": "932 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942613, + "longitude": -75.1581269, + "stars": 4.0, + "review_count": 114, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'" + }, + "categories": "Food, Juice Bars & Smoothies", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "kigoIuH-YgvMGvGuqLpbWw", + "name": "Wingstop", + "address": "2900 Island Ave, Ste 2922", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9026450082, + "longitude": -75.2418238571, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "96xaSiiL2G9owvfiR3pleA", + "name": "Panda Express", + "address": "3551 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9927008763, + "longitude": -75.0975750457, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Chinese, Restaurants, Fast Food", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "hRGO29QsdM9fksSuOMvS9A", + "name": "Champ Automotive Services", + "address": "5040 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0353445, + "longitude": -75.2353603, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Home Services, Auto Repair, Windows Installation", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "5oiYQkCMlJ2nZEjttjEd_A", + "name": "Fourth and Cross", + "address": "1527 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9286817985, + "longitude": -75.1519403234, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "DogsAllowed": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'" + }, + "categories": "American (Traditional), Restaurants, American (New), Diners", + "hours": { + "Monday": "17:0-22:30", + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:30-21:30" + } + }, + { + "business_id": "kpiw396QpPI0GIgZlWSDHg", + "name": "Service King Collision Philadelphia South", + "address": "7791 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8966129, + "longitude": -75.228609, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "iakga716_hy0m7svRNCLSw", + "name": "Paisas Pizza", + "address": "4263 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0102059, + "longitude": -75.0888214, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "Caters": "True", + "HappyHour": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False" + }, + "categories": "Mexican, Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "mohbgbizdjgDiXerm6CdTA", + "name": "No. 1 China", + "address": "843 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9361728, + "longitude": -75.1464435, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "mtOEg0i0YPjQrEE3WWir4Q", + "name": "The Electric Temple", + "address": "2841 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9746534, + "longitude": -75.1832321, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Piercing, Cultural Center, Beauty & Spas, Arts & Entertainment, Tattoo", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "B-tFOyhNb60ZyHrs63Nk3w", + "name": "Castle Roofing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Roofing, Home Services", + "hours": null + }, + { + "business_id": "ZXXCgGKY1z1An65yvAQ5dw", + "name": "Burger.Org", + "address": "326 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941311, + "longitude": -75.148506, + "stars": 3.0, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "HasTV": "False" + }, + "categories": "Restaurants, Burgers", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "9XZWXwlySRwTjdLIQteMrg", + "name": "Dominican Glamour Hair Salon", + "address": "6823 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:30-18:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "OKmwUmfWO3e3ZpfzhpOE_g", + "name": "Urban Shop 543", + "address": "5000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.8878070863, + "longitude": -75.1779273135, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Pizza, Restaurants, American (Traditional), Salad, Cafes", + "hours": { + "Monday": "11:30-14:0", + "Tuesday": "11:30-14:0", + "Wednesday": "11:30-14:0", + "Thursday": "11:30-14:0", + "Friday": "11:30-14:0" + } + }, + { + "business_id": "KjdGQMxhgW25Fn_A-DNY4w", + "name": "East Lake Chinese Restaurant", + "address": "6228 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0338311, + "longitude": -75.0719401, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "Caters": "False", + "WiFi": "'no'", + "Alcohol": "'none'", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "d1Xi74Pc1UaIxAhrs4c2bA", + "name": "Shaking Crab - Philadelphia", + "address": "4301 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0167992, + "longitude": -75.1345853, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "WiFi": "u'free'", + "BYOB": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WheelchairAccessible": "True" + }, + "categories": "Nightlife, Restaurants, Seafood, Bars, Cajun/Creole", + "hours": null + }, + { + "business_id": "_-qMwuEFcz_karr9xRxKYw", + "name": "Ashes Cigars", + "address": "4453 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026891, + "longitude": -75.22654, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Hookah Bars, Bars, Lounges, Tobacco Shops, Shopping, Nightlife", + "hours": { + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-23:0" + } + }, + { + "business_id": "EUpaSsIsfz5ohMGormoREg", + "name": "Auntie Anne's", + "address": "3000 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546024, + "longitude": -75.1838311, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsReservations": "False", + "Caters": "False" + }, + "categories": "Fast Food, Bakeries, Restaurants, Pretzels, Food", + "hours": null + }, + { + "business_id": "Pjl_bLDq0GTeQpQdJCF3gQ", + "name": "La Casa Del Sandwich", + "address": "101 E Rockland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0248784, + "longitude": -75.1235019, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'" + }, + "categories": "Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "Wur1uotuaU54hcm3w69jLg", + "name": "Lyh Nail & Spa", + "address": "4021 Fairdale Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0844594, + "longitude": -74.9725637, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Nail Technicians, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:30" + } + }, + { + "business_id": "Cz4YI2kwJe8h-VgAnR7X6w", + "name": "Pinky's NY Cafe", + "address": "1824 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444863, + "longitude": -75.1728574, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Bakeries, Breakfast & Brunch", + "hours": { + "Monday": "6:30-14:30", + "Tuesday": "6:30-14:30", + "Wednesday": "6:30-14:30", + "Thursday": "6:30-14:30", + "Friday": "6:30-14:30", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "bl7_JUYvNieoU0Qb6ZVCuw", + "name": "The Wedding Chapel", + "address": "8100 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425822, + "longitude": -75.0255383, + "stars": 2.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Party & Event Planning, Professional Services, Wedding Chapels, Event Planning & Services, Wedding Planning", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0" + } + }, + { + "business_id": "DhZVpgeBKxoLd91MiwTxpg", + "name": "La Fontana Della Citta", + "address": "1701 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9477642, + "longitude": -75.1696977, + "stars": 3.0, + "review_count": 379, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Italian, Food, Restaurants", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-23:0", + "Saturday": "16:0-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "BD5GvkgJjKm8iDWQFdsJzg", + "name": "Insomnia Cookies", + "address": "1394 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9785978, + "longitude": -75.157092, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "fkRIglr-J1XVXJLnB0ZkIQ", + "name": "Nail and Hair Bar", + "address": "240 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473677, + "longitude": -75.1593948, + "stars": 3.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons, Skin Care, Makeup Artists, Waxing, Hair Removal", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30" + } + }, + { + "business_id": "9WRLrvxvjARKjPIUBt4J1g", + "name": "Public Storage", + "address": "1431 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0840272172, + "longitude": -75.1776216762, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "-wtiB82sm2qhoJ64plIJZw", + "name": "Moskowitz Dental Associates", + "address": "1517 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9123981, + "longitude": -75.1747643, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Oral Surgeons, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "8:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-12:30" + } + }, + { + "business_id": "pHi42MMWAsqL2mRrfFPp2w", + "name": "Walnut Nails", + "address": "1223 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491199, + "longitude": -75.1616593, + "stars": 1.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "wsr7P0b527cx8bCGOdWVQA", + "name": "Cleopatra 2", + "address": "5827 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.037571, + "longitude": -75.175907, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:30-16:0" + } + }, + { + "business_id": "kr6FpW5rMNp_OX8Ha4j0Fw", + "name": "Amasi Restaurant and Hookah", + "address": "1731 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.979628, + "longitude": -75.163833, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "GoodForKids": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Mediterranean, Bars, Nightlife, Middle Eastern, Restaurants, Bakeries, Arabic, Hookah Bars", + "hours": { + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "wOT99C7ZqRf8SIfd5sRVlQ", + "name": "Taqueria El Maguey", + "address": "1538 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9296912, + "longitude": -75.1616702312, + "stars": 4.0, + "review_count": 72, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "fH3lNc2mMTT2HqrvSPYvXA", + "name": "Handyman Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Handyman, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "mCTnBx-XlwW955MwZJCogQ", + "name": "Doc Bresler's Cavity Busters", + "address": "8566 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0732705, + "longitude": -75.0483367, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, General Dentistry, Cosmetic Dentists, Pediatric Dentists, Orthodontists, Dentists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "13:0-19:0", + "Wednesday": "8:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "vqzNQflkHpPchC_SVq8gTQ", + "name": "Rittenhouse Nails", + "address": "1742 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507472, + "longitude": -75.170226, + "stars": 3.5, + "review_count": 124, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:30", + "Sunday": "9:30-18:30" + } + }, + { + "business_id": "FXj02QYnpbLGzR5MGW_LHw", + "name": "Taws Can Do", + "address": "1530 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948351, + "longitude": -75.1675844, + "stars": 2.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Art Supplies, Shopping, Cards & Stationery, Local Services, Arts & Crafts, Printing Services, Flowers & Gifts, Event Planning & Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "P3UPe8FTTSu8y-cZdnjEKQ", + "name": "Garden of Earthly Delights Ltd", + "address": "7907 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0569706, + "longitude": -75.0528439, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Comic Books, Hobby Shops, Toy Stores, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "bRjBo3166zwAaRFhxHdnkw", + "name": "Liberty Gas Station", + "address": "2-74 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9279987, + "longitude": -75.1504602, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "b2fELjqhOz2d8dg3PsoCKw", + "name": "The Edge by Campus Living Villages", + "address": "1601 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9779969, + "longitude": -75.1592852, + "stars": 1.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, University Housing, Home Services, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "HwvLq9-ibWnUkeImlMC1Iw", + "name": "DB Cleaning Services", + "address": "7710 Castor Ave, Ste 29", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0578497, + "longitude": -75.0601338, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Office Cleaning, Contractors, Home Services, Home Cleaning, Window Washing, Professional Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "yi4nsMJI0U_ERjg6QxEx5Q", + "name": "Express Breakfast & Lunch", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Soup", + "hours": null + }, + { + "business_id": "2pLIQ0RHSmUbF0eIRT0LYg", + "name": "Vintage Wine Bar", + "address": "129 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495566, + "longitude": -75.1617091, + "stars": 4.0, + "review_count": 406, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForDancing": "False" + }, + "categories": "Wine Bars, Bars, Nightlife, French, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "hNFExgg7b9dtylU5KnNU6A", + "name": "Vivi Nail Salon", + "address": "1922 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926131, + "longitude": -75.16812, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Hair Removal, Nail Technicians, Beauty & Spas, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "BnwPx4GPOfxXZk2G-6oDwQ", + "name": "China Wok", + "address": "209 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0292874, + "longitude": -75.2234981, + "stars": 4.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "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": "12:0-22:0" + } + }, + { + "business_id": "nZrWwvW6OAFJZx7-4amDug", + "name": "HoneyBush Natural Hair Studio", + "address": "6037 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.962385, + "longitude": -75.2421487, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "9hSpwqmthYZO-va4hTpo1w", + "name": "Jefferson Hospital for Neuroscience", + "address": "900 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9480214396, + "longitude": -75.1560306338, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Hospitals, Medical Centers, Doctors, Neurologist", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "fcijA4xA6XN90GlNMPLYnw", + "name": "Acupuncture Medical Practice", + "address": "1737 Chestnut St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518096, + "longitude": -75.170124, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "AcceptsInsurance": "True", + "BikeParking": "True" + }, + "categories": "Reiki, Medical Spas, Skin Care, Health & Medical, Acupuncture, Beauty & Spas, Massage", + "hours": { + "Monday": "9:0-13:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-12:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "nviXE0Js3ekn0RdM0O5rlA", + "name": "Closeout Exchange", + "address": "120 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948743, + "longitude": -75.15258, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Appraisal Services, Watches, Watch Repair, Jewelry, Gold Buyers, Local Services, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "2jHAvIQiCvcJ330w44p4LQ", + "name": "Gyration Boutique", + "address": "125 N 11st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954742, + "longitude": -75.1575176, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Antiques, Jewelry, Shopping, Fashion, Women's Clothing", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "w-4oUyYk-0wN3Gg0YN4M9g", + "name": "K Top Asian Fusion", + "address": "911 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554606, + "longitude": -75.154839, + "stars": 3.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "GoodForDancing": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True" + }, + "categories": "Korean, Karaoke, Thai, Nightlife, Asian Fusion, Restaurants", + "hours": { + "Monday": "16:0-3:0", + "Tuesday": "16:0-3:0", + "Wednesday": "16:0-3:0", + "Thursday": "16:0-3:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "16:0-3:0" + } + }, + { + "business_id": "XePE5tZHNhWoe8Z1plBiCg", + "name": "IDentical All About Your Smile", + "address": "200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.946731, + "longitude": -75.1447759, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Orthodontists, Dentists, Beauty & Spas, Oral Surgeons, Teeth Whitening, Endodontists, General Dentistry, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "8:30-13:0", + "Wednesday": "9:30-18:0", + "Thursday": "8:30-13:0", + "Friday": "9:30-18:0", + "Saturday": "8:30-12:30" + } + }, + { + "business_id": "TIeuWmX0lRLkwh5aYv9Q6w", + "name": "Takka Grill and Pizza", + "address": "324 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0296379732, + "longitude": -75.1810627431, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "WheelchairAccessible": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "OutdoorSeating": "None", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts, American (Traditional), Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "Q2-CMoiLMuZVvLE1oxzx5A", + "name": "LaserShip", + "address": "701 Market St., Citizens Bank 1st Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512937, + "longitude": -75.1526227, + "stars": 1.0, + "review_count": 174, + "is_open": 1, + "attributes": null, + "categories": "Couriers & Delivery Services, Local Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "0iVXOxmY96LgM6sa5tg8ZQ", + "name": "Yi Pin Restaurant", + "address": "1026 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552368156, + "longitude": -75.1570234, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': None, u'validated': None}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "14:0-0:30", + "Tuesday": "14:0-0:30", + "Wednesday": "14:0-0:30", + "Thursday": "14:0-0:30", + "Friday": "12:0-0:30", + "Saturday": "12:0-0:30", + "Sunday": "12:0-0:30" + } + }, + { + "business_id": "PnPA24UHKLBJPw_E74FEkg", + "name": "Pezzotti Painting", + "address": "1914 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9436912, + "longitude": -75.1743401, + "stars": 5.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Painters, Home Services, Drywall Installation & Repair", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "PJjkH_VZeQwxEJvlQ-v7wA", + "name": "Pho 75", + "address": "1122 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9372212861, + "longitude": -75.1628434626, + "stars": 4.5, + "review_count": 529, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "None", + "GoodForKids": "True", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Asian Fusion, Vietnamese", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "AQnkwnQ49xa5uCgsnSgcDA", + "name": "Philadelphia Parking Authority", + "address": "1501 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9551637, + "longitude": -75.165039, + "stars": 1.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "Oo8O5w3Ch5iilY5sTglkZw", + "name": "InSight Health and Wellness", + "address": "1601 Walnut St, Ste 514", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nutritionists, Doctors, Massage Therapy, Naturopathic/Holistic, Health & Medical, Chiropractors", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "9:0-19:0" + } + }, + { + "business_id": "UhvOBTrHfvGJM4_xhFVH6A", + "name": "Sixt Rent A Car", + "address": "3601 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8973783424, + "longitude": -75.2362904954, + "stars": 2.0, + "review_count": 134, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Rental, Truck Rental, Hotels & Travel, Automotive", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "m64OHmyD7OqAyQmoJETkfQ", + "name": "Moon + Arrow", + "address": "742 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394098, + "longitude": -75.1498637, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "WheelchairAccessible": "False" + }, + "categories": "Fashion, Shopping, Home Decor, Home & Garden, Used, Vintage & Consignment, Jewelry, Accessories, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "aT7lLJv8Hjg8wc-txExIcg", + "name": "Int'l City Mews & Villas by Korman Residential", + "address": "7900 Lindbergh Blvd, Ste 4400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.902601, + "longitude": -75.242983, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Apartments, Property Management, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "3S_g61xUct3Rmmx4rJS_mA", + "name": "Smashburger", + "address": "8500 Essington Ave, Ste FH-7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8754440123, + "longitude": -75.2471795822, + "stars": 2.5, + "review_count": 97, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': False, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}" + }, + "categories": "Burgers, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "YQ-BmAQ57pg4U3zTO9v8jw", + "name": "Popeyes Louisiana Kitchen", + "address": "7500 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9798417, + "longitude": -75.269406, + "stars": 2.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Food, Chicken Wings", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0" + } + }, + { + "business_id": "gMMB9h6NErOo9MlDBRJkXw", + "name": "The Igloo", + "address": "2223 Grays Ferry", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945142, + "longitude": -75.179458, + "stars": 4.0, + "review_count": 140, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "rSV7D00UpdZyQ4CXu5OWBg", + "name": "Chick-fil-A", + "address": "1625 Chestnut St, Ste F8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952402, + "longitude": -75.168211, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Alcohol": "'none'", + "ByAppointmentOnly": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Restaurants, Event Planning & Services, Food Delivery Services, Fast Food, Chicken Shop, Food, Caterers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "CmKp4n_4CkTup0ytosCEXw", + "name": "Hunan Wok Philly", + "address": "7860 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0727998, + "longitude": -75.0847038, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "12:30-21:30" + } + }, + { + "business_id": "AWDoR9D3ezOFV3d6KGf8Ew", + "name": "loanDepot", + "address": "1515 Market St, Ste 1530", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95298, + "longitude": -75.166206, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Financial Services, Mortgage Lenders, Home Services, Mortgage Brokers, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "kRbktRECOpjfVpfzINJcNw", + "name": "South Philly Dental", + "address": "2224 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923763, + "longitude": -75.179873, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Endodontists, Dentists, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "jpiu8uKDtcAzW4z9vAeeoQ", + "name": "Cottman Nails", + "address": "3514 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0372817, + "longitude": -75.0422647, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "ko4GlJ-DPYKbGs4N2YkX4g", + "name": "Yu Hsiang Garden", + "address": "7630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0672279, + "longitude": -75.1973539, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "rqjouguO0SV-hvxe7lqLpw", + "name": "Harzin Jewelers Inc", + "address": "713 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488572, + "longitude": -75.153056, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "MNeuzOqFBGv7yMuwMR1mlg", + "name": "Liberty Garment Care", + "address": "1114 South St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428482, + "longitude": -75.160753, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Sewing & Alterations, Local Services, Laundry Services, Dry Cleaning", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "3Cqy4d5KcGVmgiHFi4O4zQ", + "name": "Eggcellent Cafe", + "address": "113 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484412809, + "longitude": -75.1430937275, + "stars": 4.0, + "review_count": 140, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Corkage": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BYOB": "True", + "OutdoorSeating": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "0sfbiy6s2U_AfDx04gwfog", + "name": "Sobel Adam, MD", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Internal Medicine", + "hours": null + }, + { + "business_id": "fwsPPYt0By1ivuXSXv3wlg", + "name": "Dunkin'", + "address": "5272 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0230418, + "longitude": -75.0772184, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "4:0-22:0", + "Tuesday": "4:0-22:0", + "Wednesday": "4:0-22:0", + "Thursday": "4:0-22:0", + "Friday": "4:0-22:0", + "Saturday": "4:0-22:0", + "Sunday": "4:30-22:0" + } + }, + { + "business_id": "0RFgosnz7_DfyTUASpVuFQ", + "name": "Brother's Fine Furniture", + "address": "5925 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.931559, + "longitude": -75.226744, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Home Decor, Furniture Stores, Home & Garden, Mattresses", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-18:0" + } + }, + { + "business_id": "PyLUyFDUPiLKDwVnWSUjFQ", + "name": "Aurora Grace", + "address": "225 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949418, + "longitude": -75.1704529, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "Sk1WdGuaCNQlQZ_u_JE0Ew", + "name": "P'unk Burger", + "address": "1823 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9271243, + "longitude": -75.1663375, + "stars": 3.5, + "review_count": 278, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "'free'", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Burgers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "p5o0ZaobvVtlk-eJVKWIoQ", + "name": "Domino's Pizza", + "address": "4438 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956484, + "longitude": -75.211282, + "stars": 2.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'quiet'", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Wings, Pizza, Sandwiches", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-4:0", + "Saturday": "10:0-4:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "acsheIhuYrmmth1_z0Ylxw", + "name": "Vintage Instruments", + "address": "507 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9443631, + "longitude": -75.1649581, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BikeParking": "True" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "UujVDCg9VJTxEwwkQhX04w", + "name": "Joshua's Catering", + "address": "804 Oak Ln Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.054359, + "longitude": -75.126575, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Caterers, Party & Event Planning, Wedding Planning, Food, Event Planning & Services", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "5hvO_zH7B1n2humawoPHrw", + "name": "Bourbon Blue", + "address": "2 Rector St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0242614, + "longitude": -75.2222218, + "stars": 3.5, + "review_count": 334, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, Bars, American (New), Cajun/Creole, Nightlife", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "16:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "Ld7wYAcFvyErl_RfLc-uiA", + "name": "Laxmi's Indian Grille-East Falls", + "address": "3492 Tilden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0128847, + "longitude": -75.1901845, + "stars": 3.5, + "review_count": 68, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Indian, Restaurants, Vietnamese", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "oo5KH1rtkJZJmHifE0oe4w", + "name": "Wendy's", + "address": "399 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084021, + "longitude": -74.965087, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "RestaurantsTableService": "False" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "2HNHszEsUqhTC9mC1midVg", + "name": "ACME Markets", + "address": "180 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689336, + "longitude": -75.1389405, + "stars": 2.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Department Stores, Drugstores, Fashion, Shopping, Food, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "51DGUAxhAw5Tg56Sg3QLvg", + "name": "Mario's Pizza", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072489, + "longitude": -75.194481, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': False, 'casual': True}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "oCoiJ-GBriiupCgpgWfVhQ", + "name": "Paddy's Old City Pub", + "address": "228 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537271, + "longitude": -75.1439691, + "stars": 3.5, + "review_count": 117, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{u'dj': False, u'live': False, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Restaurants, American (Traditional), Nightlife, Bars, Pubs", + "hours": { + "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" + } + }, + { + "business_id": "xezc32QtS9AAGfA1u6w12A", + "name": "Central Pizza", + "address": "335 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970316, + "longitude": -75.130701, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "HasTV": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "yQla4Xe9la_cSakoqS35XA", + "name": "Los Taquitos de Puebla", + "address": "1149 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934926, + "longitude": -75.158539, + "stars": 3.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Specialty Food, Mexican", + "hours": { + "Monday": "12:0-23:30", + "Tuesday": "12:0-23:30", + "Thursday": "12:0-23:30", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30" + } + }, + { + "business_id": "ChAVUpsZ0GTZ4m8T10ACqw", + "name": "Just Dogs and Cats", + "address": "1700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506256, + "longitude": -75.1689484, + "stars": 5.0, + "review_count": 16, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "zd0xpBo1pKRUs_LbX0YtLw", + "name": "Rite Aid", + "address": "1500 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924937, + "longitude": -75.169066, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "Caters": "False" + }, + "categories": "Photography Stores & Services, Convenience Stores, Food, Shopping, Drugstores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "slaeR4uXBKpV29ft54LPhA", + "name": "DanceFit Chestnut Hill", + "address": "98 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0804931, + "longitude": -75.2077483, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BikeParking": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Dance Studios, Active Life, Cardio Classes, Barre Classes, Yoga, Gyms, Fitness & Instruction, Boot Camps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-20:0", + "Saturday": "8:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "fkfqJrABHQWsFWg8z3UHJw", + "name": "Angry Deekin Ribs", + "address": "1019 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619212, + "longitude": -75.1551902, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HappyHour": "False" + }, + "categories": "Soul Food, Barbeque, Restaurants, Food", + "hours": { + "Monday": "12:0-18:0", + "Wednesday": "18:0-21:0", + "Thursday": "18:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "gHuMBv4kPMZ_TP8FhN8ySw", + "name": "Pierogi Factory", + "address": "9965 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1011904384, + "longitude": -75.028865528, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "OutdoorSeating": "None" + }, + "categories": "Imported Food, Specialty Food, Restaurants, Polish, Food, Modern European, Ethnic Food", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "Yzt4yT4-4_Qg5NOsCOrwHw", + "name": "Fearless Athletics CrossFit Penn's Landing", + "address": "126 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95349, + "longitude": -75.142117, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Boot Camps, Interval Training Gyms, Trainers, Gyms, Fitness & Instruction, Active Life", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-19:30", + "Saturday": "9:0-13:0", + "Sunday": "10:0-12:0" + } + }, + { + "business_id": "s31xRRK18423dHmiey1VXQ", + "name": "Simeone Foundation Automotive Museum", + "address": "6825-31 Norwitch Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9106009, + "longitude": -75.2264093, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "DogsAllowed": "True" + }, + "categories": "Museums, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "SX5qxnQNb3pSjVqOEU4Jjg", + "name": "Mangel Joseph Dr", + "address": "201 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9231632, + "longitude": -75.1497362, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "mhWSIj4lISuz1U9oY4LQAA", + "name": "The Ruff Life", + "address": "48 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489785, + "longitude": -75.1460551, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pet Groomers, Pet Services, Pet Stores, Pets, Pet Boarding, Dog Walkers, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "wwcqbb78SGqWSdzbq9j-Ww", + "name": "Bonte", + "address": "922 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9483006972, + "longitude": -75.1569532002, + "stars": 3.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "u706KJdyx6MuAjlt8e0RNA", + "name": "Skincare Lounge SPA", + "address": "1512 Sansom St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502073, + "longitude": -75.1664173, + "stars": 4.5, + "review_count": 180, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Professional Services, Skin Care, Hair Removal, Beauty & Spas, Eyebrow Services, Waxing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "GJDyLmomkU4tzaWawdD1LA", + "name": "Northern Liberty Press LLC", + "address": "1223 N Mascher St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9698613, + "longitude": -75.137299, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Local Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "o73v2OJWDVYjCGRU4UhUAA", + "name": "One Stop Cleaning", + "address": "1630 Farrington Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.974625, + "longitude": -75.269837, + "stars": 1.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Home Cleaning", + "hours": null + }, + { + "business_id": "QDPP1cwdxN5XYvUmpuYCAA", + "name": "Roll by Goodyear", + "address": "1500 Market Street, Suite 460", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "4zQV6v8TwEYMwI9Ekdf19g", + "name": "Figs", + "address": "2501 Meredith St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9685113, + "longitude": -75.1785123, + "stars": 4.0, + "review_count": 300, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Moroccan, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "Yy0KpwICBd3V7u99QQtskA", + "name": "Incognito Auto Repair", + "address": "424 W Mount Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0521155, + "longitude": -75.1958266, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "K1h9s1n2679DxUM2cuMZXA", + "name": "Chestnut Hill Coffee", + "address": "3300 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.011952, + "longitude": -75.1839734, + "stars": 4.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Cafes, Food, Restaurants, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "W5cES1Og2LDTt_5DPT5daA", + "name": "Krystal Nails", + "address": "6318 Sackett St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0282747, + "longitude": -75.059197, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "ttY2aNmEtVuYQFpHGsGzBw", + "name": "Olde City Day School", + "address": "5534 Pulaski St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.029593, + "longitude": -75.1797239, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Preschools, Education, Child Care & Day Care, Local Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "SstJiAug8H5S20HB44i9UA", + "name": "Cifelli's Steaks & Hoagies", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954703, + "longitude": -75.1684962, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Event Planning & Services, Cheesesteaks, Sandwiches, Restaurants, Caterers", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "tUcZMaE2XPp6qJK5dbZlpg", + "name": "El Molino Tortilleria and Restaurant", + "address": "1739 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9215917, + "longitude": -75.1767682, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "HasTV": "False", + "Alcohol": "u'none'" + }, + "categories": "Mexican, Restaurants, Gluten-Free", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "5-JfStgLY03ion8gpUJF4A", + "name": "Little Susie's Coffee & Pie", + "address": "2532 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9800961766, + "longitude": -75.1164096269, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BYOB": "True", + "Corkage": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'free'", + "HasTV": "False", + "WheelchairAccessible": "False" + }, + "categories": "Coffee Roasteries, Coffee & Tea, Food, Restaurants, Breakfast & Brunch", + "hours": { + "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" + } + }, + { + "business_id": "OqMkfVU0JLrqcUdEPFkbEA", + "name": "Frank Van's Auto Tags", + "address": "2450 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0455904327, + "longitude": -75.0566849432, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Lawyers, Professional Services, Automotive, Notaries, Local Services, Auto Parts & Supplies, Registration Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "10:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "TRwPE6wsoAL6_fRaFdB4FA", + "name": "Karma Restaurant & Bar", + "address": "114 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948182, + "longitude": -75.1431548, + "stars": 4.0, + "review_count": 453, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "HasTV": "False" + }, + "categories": "Restaurants, Indian", + "hours": { + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "Nw70g3pgZl1FzgKfbRDAdQ", + "name": "Don's Auto & Truck Repair", + "address": "222 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9689966, + "longitude": -75.1327837, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "9pUT5B18PBcttMGJeLQwyg", + "name": "Distante", + "address": "1510 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502, + "longitude": -75.166409, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Fashion, Shopping, Personal Assistants, Professional Services, Bespoke Clothing, Local Services, Sewing & Alterations, Formal Wear", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "zTF6I_epCnS-PY3RIhGopQ", + "name": "CarVision", + "address": "6729 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.909514, + "longitude": -75.2239311, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Car Dealers, Automotive, Tires", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "PMs7df27DC_OEvywsl-41w", + "name": "Suya Suya West African Grill", + "address": "400 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625734, + "longitude": -75.1447558, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, African", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-15:0", + "Saturday": "11:30-20:0", + "Sunday": "11:30-18:0" + } + }, + { + "business_id": "9hWw-Lffnc9jCTgGnnJt6g", + "name": "Sweet Rainforest Cafe", + "address": "8046 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425662, + "longitude": -75.0263862, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Juice Bars & Smoothies, Food, Coffee & Tea", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "TCUHRuAtuywrmF9YVF-uFw", + "name": "CROW Computer Repair On Wheels", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "IT Services & Computer Repair, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "r1zaqHAYnfoeEwOR2DA_Pw", + "name": "Bleu Soul Fine Dining", + "address": "6339 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0446837, + "longitude": -75.1814304, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Smoking": "u'no'", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Comfort Food, Soul Food, Southern, Nightlife, Arts & Entertainment, Jazz & Blues", + "hours": { + "Monday": "12:0-20:30", + "Tuesday": "12:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "12:0-20:30", + "Friday": "12:0-20:30", + "Saturday": "12:0-20:30", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "Ba8rXjjxDOJwxj48dUInyg", + "name": "Harbor Freight", + "address": "151 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0903223, + "longitude": -74.9659275, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Building Supplies, Automotive, Home & Garden, Shopping, Home Services, Hardware Stores", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "VCfg-PNSNzsxoPp24FB8pA", + "name": "The Salvation Army Family Store & Donation Center", + "address": "4555 Pechin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0337108, + "longitude": -75.2199653, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Health & Medical, Thrift Stores, Local Services, Donation Center, Shopping, Fashion, Rehabilitation Center", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "gXiWHYBuPLWWXZJPOP1uKw", + "name": "Pretty Girls Cook", + "address": "1016 N Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9699452213, + "longitude": -75.1475351472, + "stars": 4.0, + "review_count": 146, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "NoiseLevel": "'average'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "True", + "Corkage": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "American (Traditional), Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:30", + "Wednesday": "12:0-19:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-19:30", + "Saturday": "12:0-19:30", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "7BUz7T0CNQ5fQvj-nhxhjQ", + "name": "Kong Restaurant", + "address": "702 N 2nd St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9621054, + "longitude": -75.1413425, + "stars": 2.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:30" + } + }, + { + "business_id": "3XTQcobtEsU11sSN2Jn7Bw", + "name": "Payless Car Rental", + "address": "6975 Norwitch Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9097841, + "longitude": -75.2257089, + "stars": 2.0, + "review_count": 269, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Transportation, Hotels & Travel, Airlines, Automotive, Parking", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "Faog49Gh5vUudIhUqI9m2A", + "name": "La Canasta Mexican Food", + "address": "2341 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.918652, + "longitude": -75.1539794, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': True, u'classy': False, u'upscale': None}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Caters": "True" + }, + "categories": "Restaurants, Tacos, Tex-Mex, Mexican", + "hours": { + "Monday": "12:0-22: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" + } + }, + { + "business_id": "0obzlnnuK6Mf0yc6aZBu1A", + "name": "Bella Boutique", + "address": "527 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418888, + "longitude": -75.148995, + "stars": 2.5, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Removal, Shopping, Accessories, Fashion, Beauty & Spas, Used, Vintage & Consignment, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "W06QBC9vkxA5CVBNVrOMRA", + "name": "North Third", + "address": "801 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96350593, + "longitude": -75.1427820977, + "stars": 4.0, + "review_count": 677, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Bars, Food, Beer, Wine & Spirits, Nightlife, Pubs, Restaurants, Burgers, American (New)", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "xyEGv9slxSY_puWlB7L7jw", + "name": "Siaani Salon", + "address": "2032 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519742, + "longitude": -75.1748531, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "cfi_6fdO8OoHrBGeHMxzTg", + "name": "Juiced By B", + "address": "1540 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9689027, + "longitude": -75.1631797, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Juice Bars & Smoothies, Acai Bowls", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "DrazQLX4I8aSEHAkkJEnxQ", + "name": "Dunkin'", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.914458, + "longitude": -75.156253, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "DriveThru": "None", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Donuts, Coffee & Tea, Restaurants, Food", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "tdWMEFbHKoJgEk36rCz6Mw", + "name": "Warrior", + "address": "6714 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0397855, + "longitude": -75.0666929, + "stars": 4.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Piercing", + "hours": { + "Monday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-21:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "U24CgjfjGf_i12VBazDa2Q", + "name": "Guacamole", + "address": "422 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415861, + "longitude": -75.150018, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Shopping, Sports Wear, Sporting Goods, Shoe Stores, Women's Clothing", + "hours": null + }, + { + "business_id": "SLbJHaNqY3wcRaO6L21aZg", + "name": "Insomnia Cookies", + "address": "31 S 2nd St, Unit C-4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949049, + "longitude": -75.143627, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Bakeries, Ice Cream & Frozen Yogurt, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "mP4shXobEX2_cW6dRF6hUA", + "name": "3B Moving & Transportation", + "address": "1607 W Cayuga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.020621, + "longitude": -75.152392, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "zL8_hKIm4rOb1QkLQKNfUA", + "name": "Angela Gaspar Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Session Photography, Real Estate, Real Estate Photography, Real Estate Services, Home Services, Event Photography, Event Planning & Services, Photographers", + "hours": { + "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" + } + }, + { + "business_id": "Mv2eEAuONsyKvJGGaVTIAw", + "name": "Le Castagne", + "address": "1920 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518596, + "longitude": -75.1728701, + "stars": 3.5, + "review_count": 119, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "False", + "GoodForKids": "False", + "HappyHour": "True" + }, + "categories": "Lounges, Nightlife, Restaurants, Italian, Bars", + "hours": { + "Monday": "17:30-21:30", + "Tuesday": "17:30-21:30", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-21:30", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0" + } + }, + { + "business_id": "fmkw50wRDxjDfPj8JPR3Mw", + "name": "Ideal Tool & Equipment Service", + "address": "456 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9599314471, + "longitude": -75.1519395695, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Home & Garden, Hardware Stores, Shopping, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "-xov4QrIEkyNrSArhjmjZQ", + "name": "Angelo's Pizza", + "address": "11036 Rennard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.121646, + "longitude": -75.035263, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "7enm16Occhf0J5WjJFooyA", + "name": "Master Tailor & Cleaners", + "address": "1620 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9472507, + "longitude": -75.1689253, + "stars": 4.0, + "review_count": 179, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BikeParking": "False" + }, + "categories": "Local Services, Sewing & Alterations, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "EHUNi6ZX3z8KaXFjGtDd7w", + "name": "Avril 50", + "address": "3406 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535136, + "longitude": -75.1925556, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Cards & Stationery, Coffee & Tea, Flowers & Gifts, Mass Media, Local Flavor, Print Media, Newspapers & Magazines, Candy Stores, Event Planning & Services, Specialty Food, Books, Mags, Music & Video, Tobacco Shops, Arts & Crafts, Restaurants, Shopping", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "-kYESienondGaj9TFadkUg", + "name": "Ethio Cafe & Carry Out", + "address": "225 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954262, + "longitude": -75.211595, + "stars": 4.0, + "review_count": 112, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, African, Ethiopian, Breakfast & Brunch", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "_hQUJqPofH4wm2syULh76w", + "name": "Dog School", + "address": "718 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624335, + "longitude": -75.1410909, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pet Sitting, Pets, Pet Services, Pet Training", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0" + } + }, + { + "business_id": "vTabvTis-QrZL-NYXe8rhQ", + "name": "Scoopz", + "address": "2001 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9869303, + "longitude": -75.231908, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "15:0-21:30", + "Friday": "15:0-21:30", + "Saturday": "15:0-21:30", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "oNOeJyXy35y2Rmu8F8pW0w", + "name": "Yellow Cab", + "address": "8125 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425931, + "longitude": -75.0245184, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Taxis, Hotels & Travel, Limos", + "hours": null + }, + { + "business_id": "UwTUMWfKKzDtdfT86vHRyQ", + "name": "Grasso's Magic Theatre", + "address": "103 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9571990967, + "longitude": -75.1402816772, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Arts & Entertainment", + "hours": { + "Sunday": "15:0-16:0" + } + }, + { + "business_id": "fgfpRmXyM6iKaiX8mfA-5g", + "name": "Tria Cafe Fitler Square", + "address": "2227 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9472491224, + "longitude": -75.1792585307, + "stars": 4.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Music": "{'dj': False}", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "CoatCheck": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Smoking": "u'no'", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsReservations": "False", + "HappyHour": "False", + "GoodForDancing": "False" + }, + "categories": "Food, Breakfast & Brunch, Restaurants, Modern European, Bars, Nightlife, Specialty Food, Wine Bars", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "OlVuzArpR_uERfMtIBTxEA", + "name": "LAZ Parking", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482528, + "longitude": -75.1666834, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "PDbct6Zu2_7H35CAWFybkw", + "name": "KG Strong", + "address": "1901 S 9th St, Room 210", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9252954, + "longitude": -75.159828, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Yoga, Trainers, Active Life, Gyms", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "uUZIIkBvi7-0114yAlL3vg", + "name": "Dawns Breakfast", + "address": "7182 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0639558, + "longitude": -75.1535462, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "JYlNxP4j7LX59o9gNaKnKg", + "name": "Nostalgie", + "address": "10865 Bustleton Ave, Ste 67", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1111501, + "longitude": -75.0243199, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cafes, Nightlife, Restaurants, Food, Karaoke, Coffee & Tea, Desserts", + "hours": null + }, + { + "business_id": "1DMKphVyyy9gNYELxEZwUQ", + "name": "Hair Fashion & Beyond", + "address": "1600 N Broad St, Ste 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.97812, + "longitude": -75.158387, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Barbers, Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "mtvT7uRey3F395STFRM1Tg", + "name": "Vernick Food & Drink", + "address": "2031 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950759, + "longitude": -75.1748461, + "stars": 4.5, + "review_count": 997, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False" + }, + "categories": "Food, Restaurants, Beer, Wine & Spirits, Diners, American (New)", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "RNknAokcVfznb8vHJDj-XA", + "name": "IHOP", + "address": "115 W City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.998318, + "longitude": -75.2326809, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'" + }, + "categories": "American (Traditional), Breakfast & Brunch, Diners, Restaurants", + "hours": null + }, + { + "business_id": "ymmMRHJoPeRuV32M0HAmRA", + "name": "Jiffy Lube", + "address": "5010 City Line Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.00058, + "longitude": -75.228692, + "stars": 3.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Oil Change Stations, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "7:30-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "G79i75_gXdsw9xlICUBjmQ", + "name": "New Boston Style Pizza", + "address": "2422 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0568584, + "longitude": -75.047766, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True" + }, + "categories": "Sandwiches, Pizza, Restaurants, Cheesesteaks, Burgers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "9wTSBQFqVWbq-NEikPAs_g", + "name": "Fudena", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "African, Food, Food Delivery Services, Restaurants", + "hours": { + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "2Z0Clt72JFouB0qkMC2mig", + "name": "18th Century Garden", + "address": "325 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947326, + "longitude": -75.147276, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Botanical Gardens", + "hours": null + }, + { + "business_id": "bdNdv7QxIIRI4y1Tg4T5rA", + "name": "Spruce Food Market", + "address": "1523 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9474662, + "longitude": -75.1674473, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "Og4z8nB4ZMZs3oHkVhB_pA", + "name": "Bobby Mack & Co Hair Studio", + "address": "1944 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9447105351, + "longitude": -75.1749648217, + "stars": 5.0, + "review_count": 291, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Salons, Men's Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0" + } + }, + { + "business_id": "JXYKzNSaK_fznAXvmRdYPA", + "name": "Root", + "address": "1206 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9695888495, + "longitude": -75.134338087, + "stars": 4.5, + "review_count": 160, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "CoatCheck": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "WiFi": "'free'" + }, + "categories": "Wine Bars, Nightlife, Bars, American (New), Restaurants, Italian, Spanish", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ln57otfbTmN8FsLlR4x57Q", + "name": "McDonalds", + "address": "30th St Station, 2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9617934697, + "longitude": -75.1972103119, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "HasTV": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Burgers, Restaurants, Fast Food", + "hours": null + }, + { + "business_id": "695QpyQD6HAeS_x2Qthg4w", + "name": "Parcel Plus", + "address": "701 E Cathedral Rd, Ste 45", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.063175, + "longitude": -75.2378113294, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Public Services & Government, Post Offices, Local Services, Shipping Centers, Printing Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "hPYVTbf3Gh4S5qpowJbyyA", + "name": "Rocco's Collision Center", + "address": "806 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315129, + "longitude": -75.1584179, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Glass Services, Auto Repair, Body Shops, Towing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "M5cX4IYSKpqcr9U7U2zuJA", + "name": "Dunkin'", + "address": "3501 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.992395, + "longitude": -75.0979696, + "stars": 1.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Coffee & Tea, Donuts", + "hours": { + "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" + } + }, + { + "business_id": "kRvKV1EmsJ4XH8cvxGlPww", + "name": "Ur Home in Philly", + "address": "1500 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948236, + "longitude": -75.166678, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Vacation Rental Agents, Guest Houses, Hotels & Travel, Vacation Rentals", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "8yF47D3yubAGReK7pLoWJQ", + "name": "Comcast Service Center", + "address": "4400 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.019887, + "longitude": -75.160011, + "stars": 1.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Security Systems, Internet Service Providers, Professional Services, Home Services, Television Service Providers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:30", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "URzUMecD9qRb8l6G4GJE3g", + "name": "GLO Nail Bar", + "address": "1547 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9690549, + "longitude": -75.1629175, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:30" + } + }, + { + "business_id": "auaHznnSsyfDWx9X5IjtyQ", + "name": "Henry Lazarus,DMD", + "address": "4603 Springfield Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479112, + "longitude": -75.2142444, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": null + }, + { + "business_id": "kMfWeZIv6g5J1VoBZ_ip4g", + "name": "Tate's Good Food Restaurant", + "address": "8419 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0404342, + "longitude": -75.0142226, + "stars": 3.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0", + "Sunday": "6:0-15:0" + } + }, + { + "business_id": "NrQh1vSHGXZN9oJcyU6KBw", + "name": "Philadelphia Parking Authority", + "address": "3101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955904, + "longitude": -75.185969, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "od_hjW02Xy-TAhtUdupBsA", + "name": "Farina pasta and Noodle", + "address": "132 South 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505308786, + "longitude": -75.1691969384, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "Caters": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False" + }, + "categories": "Pan Asian, Food, Noodles, Pasta Shops, Food Trucks, Asian Fusion, Vegetarian, Restaurants, Vegan, Specialty Food, Italian, Chinese", + "hours": { + "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" + } + }, + { + "business_id": "bBHrPJqqwDxSIxtxMMuQZg", + "name": "Inspiring Hairstyle", + "address": "1825 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0850682651, + "longitude": -75.0362221152, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "vkQ2Wp-lWuuJY4HOMXCUzA", + "name": "Autocare USA", + "address": "4066 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0085031601, + "longitude": -75.0941481069, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Body Shops", + "hours": null + }, + { + "business_id": "G_EgeYlRd9Y2wJxd9BK7fw", + "name": "China City", + "address": "9200 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0556620874, + "longitude": -75.0045961887, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "py3ob6RtkLi_Y8Q027Ltsg", + "name": "Jim & Rita's Fine Cuisine", + "address": "4932 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.028777, + "longitude": -75.147238, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Soul Food", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "e1crDTeS6sYT1EQ4fc95fQ", + "name": "The Natural Shoe Store", + "address": "226 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953291, + "longitude": -75.203028, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shoe Stores, Shopping, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "BAO_V8IMI6W4DhTlS4k9rg", + "name": "Milk & Honey", + "address": "518 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420716322, + "longitude": -75.1491578759, + "stars": 3.5, + "review_count": 83, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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" + } + }, + { + "business_id": "rSHtNeAzQvQiV1aw4a_mJA", + "name": "Dentex Dental at Liberty Place", + "address": "1625 Chestnut St, Ste 228", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951521719, + "longitude": -75.1681888103, + "stars": 3.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Endodontists, Dentists, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "63HEIgBW-SHer76Qq_AVuw", + "name": "The Rock School for Dance Education", + "address": "1101 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9375952, + "longitude": -75.16649, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Elementary Schools, Education, Dance Schools, Preschools, Arts & Entertainment, Performing Arts, Specialty Schools", + "hours": null + }, + { + "business_id": "6wnbyXMDoM_M29zwacAmhQ", + "name": "Grilly Cheese", + "address": "1400 Fitzwater S", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9418081, + "longitude": -75.1660557, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Street Vendors, Food Trucks, Food, Restaurants, Sandwiches, Specialty Food, Cheese Shops", + "hours": { + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "fDDFEsklQau88Ki0lA5LHg", + "name": "Shampoo Nightclub", + "address": "417 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959012, + "longitude": -75.150875, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Dance Clubs, Nightlife", + "hours": { + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "22:0-2:0" + } + }, + { + "business_id": "zbKWZatyJcpePDsm8om8JQ", + "name": "Collectible Art Gallery and Frames", + "address": "2044 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520669, + "longitude": -75.1752635, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2" + }, + "categories": "Framing, Arts & Crafts, Shopping, Arts & Entertainment, Art Galleries, Photography Stores & Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Dmzsc5Q8gYcAvsGo3BJ_1A", + "name": "Locust Bar", + "address": "235 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472356, + "longitude": -75.1574795, + "stars": 4.0, + "review_count": 105, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "HasTV": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': False}", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Bars, Nightlife, Dive Bars", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "S53RmUAdmg1bquBvbO41rA", + "name": "Chapman Nissan", + "address": "6723 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9104334, + "longitude": -75.2237488, + "stars": 2.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Car Dealers, Auto Repair, Automotive, Auto Parts & Supplies", + "hours": { + "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-17:0" + } + }, + { + "business_id": "AQ4cIMRNKaVXtgqz68ySnA", + "name": "Waba Restaurant", + "address": "7030 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.047818, + "longitude": -75.069853, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Korean, Restaurants, Japanese", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "E7lzBLSNUwo7nP1QGMz03w", + "name": "The Nesting House", + "address": "542 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0466057, + "longitude": -75.1954428, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Baby Gear & Furniture, Children's Clothing, Toy Stores, Fashion, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "AXRSeJZfr9pi1wJQ61D4UQ", + "name": "Starbucks", + "address": "3800 Locust Walk, 1920 COMMONS BLDG, University of Pennsylvania - 1920 C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952479, + "longitude": -75.199367, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "8:0-23:30", + "Tuesday": "8:0-23:30", + "Wednesday": "8:0-23:30", + "Thursday": "8:0-23:30", + "Friday": "8:0-21:30", + "Saturday": "11:0-18:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "vENOp1HN7jopRAiuxw-61Q", + "name": "Mazhu Axes", + "address": "9806 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0928574936, + "longitude": -75.0329802791, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Axe Throwing, Active Life", + "hours": { + "Monday": "17:30-23:0", + "Wednesday": "17:30-23:0", + "Thursday": "17:30-23:0", + "Friday": "17:30-1:0", + "Saturday": "15:0-1:0" + } + }, + { + "business_id": "muu6xdNuHlNA9iShXFvjcA", + "name": "J&J South Philly Pizza", + "address": "1177 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9343749, + "longitude": -75.1587416, + "stars": 2.5, + "review_count": 156, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Restaurants, Italian, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "klqieyIaqskyKk3EtvinUw", + "name": "Crossing Vineyards", + "address": "4386 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257982, + "longitude": -75.2248102, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Food, Arts & Entertainment, Wineries", + "hours": null + }, + { + "business_id": "QeisXJPPNqtv_cAA9ehtVg", + "name": "Humphrys Flag Company", + "address": "238 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519567, + "longitude": -75.144619, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Professional Services, Shopping, Hobby Shops, Souvenir Shops, Antiques, Signmaking, Local Flavor", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "Ig91reskKFPK6FxUcVLImQ", + "name": "Pep Boys", + "address": "827 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9691774, + "longitude": -75.1594176, + "stars": 2.0, + "review_count": 88, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Auto Parts & Supplies, Tires, Oil Change Stations", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "y2UGgw29X2OXEDJMaLsnfQ", + "name": "Philly Cooking Lessons", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cooking Schools, Education, Specialty Schools, Personal Chefs, Event Planning & Services", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "d1IQ18JJEcVvqyscjzi1wA", + "name": "Art City Vets & Urgent Care", + "address": "2001 Hamilton St, Condo Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629314, + "longitude": -75.1724804, + "stars": 5.0, + "review_count": 77, + "is_open": 1, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "mRtGKvoxQLSh-tf2qBBoLg", + "name": "Milk & Honey", + "address": "18th St & Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.958833, + "longitude": -75.168697, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True" + }, + "categories": "Food, Bakeries, Coffee & Tea", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "r7COrPGn1xGBlJolaygAtA", + "name": "Otis & Pickles Speakeasy", + "address": "2500 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.91698666, + "longitude": -75.1528100297, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Cocktail Bars, Dive Bars, Beer Bar", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "a4uNRnmgaANdJp4r2OQGCA", + "name": "Szechuan China Royal Restaurant", + "address": "727 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481857, + "longitude": -75.1537145, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False" + }, + "categories": "Restaurants, Chinese, Japanese", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "WtpPTs7d9VjfvkoPVg7TyQ", + "name": "Osagame Judo and Brazilian Jiu Jitsu", + "address": "1168 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9360611, + "longitude": -75.1675573, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "None", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Local Services, Sports Clubs, Fitness & Instruction, Brazilian Jiu-jitsu, Self-defense Classes, Active Life, Martial Arts", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "18:0-21:0", + "Wednesday": "17:0-20:30", + "Thursday": "16:30-21:30", + "Friday": "18:0-19:30", + "Saturday": "9:30-14:30", + "Sunday": "11:0-14:30" + } + }, + { + "business_id": "0pH8MrLJIO1LbHWs39PWlQ", + "name": "Saint Joseph's University", + "address": "5600 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.994137, + "longitude": -75.239421, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Colleges & Universities, Education", + "hours": null + }, + { + "business_id": "2vAYStPvqIdrsM7ZE9X-1Q", + "name": "Bow Tie Tours", + "address": "6TH And Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506155049, + "longitude": -75.1503472803, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Historical Tours, Hotels & Travel, Tours", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "6JFMbFYVbl8ufz74NSDgOA", + "name": "Noble: An American Cookery", + "address": "2025 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516, + "longitude": -75.174548, + "stars": 4.0, + "review_count": 147, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': True, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "HappyHour": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "IaM9xtcAYIYr49L9_QEhWQ", + "name": "Jetro", + "address": "700 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.90185, + "longitude": -75.16239, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Grocery, Shopping, Food, Wholesale Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-17:0", + "Saturday": "7:0-15:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "66w6HaXgYMV8ahthIAktpw", + "name": "Ritz Camera Centers", + "address": "1330 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949026, + "longitude": -75.163439, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Photography Stores & Services, Shopping", + "hours": null + }, + { + "business_id": "h-pOohSPK94U9GOykqmxtQ", + "name": "Dia Boutique", + "address": "931 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555433, + "longitude": -75.1554045, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Sewing & Alterations, Fashion, Women's Clothing, Shopping", + "hours": { + "Monday": "11:30-20:0", + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-20:0", + "Saturday": "10:30-20:30", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "6q-O7ca39bClXaQf53TDuw", + "name": "Steingard and Testa Medical Associates", + "address": "415 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409561, + "longitude": -75.1499275, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Family Practice, Doctors", + "hours": null + }, + { + "business_id": "u2WQvwcxkt9J0bBc-2Zk2w", + "name": "Apex Bus", + "address": "121 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9545227, + "longitude": -75.1575878, + "stars": 2.5, + "review_count": 20, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Public Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "A9Tcc9iloNB0tAA7j7GKrQ", + "name": "Balcony Restaurant", + "address": "237 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473199, + "longitude": -75.1642969, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "WiFi": "u'no'", + "RestaurantsDelivery": "None", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "GoodForKids": "None", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Restaurants, American (Traditional)", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "0TcywESn4hFVrOcWBwd8wg", + "name": "Foot Long Truck", + "address": "12TH St And Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982727, + "longitude": -75.1531612, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Food, Food Trucks, Street Vendors", + "hours": null + }, + { + "business_id": "d9vJVJM2DifqWYN4Q4-gow", + "name": "1939 Auto", + "address": "1939 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9264988, + "longitude": -75.1740323, + "stars": 5.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "34xop1JGKq1e-gCY7xkOVQ", + "name": "Samwhich", + "address": "5411 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9362632, + "longitude": -75.2194779, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Burgers, Delis, Sandwiches, Restaurants", + "hours": { + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "SHYPQbYqbfK4CwTDjtBH7Q", + "name": "The Famous 4th Street Cookie Company", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530717477, + "longitude": -75.1594193432, + "stars": 4.0, + "review_count": 356, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "DriveThru": "False" + }, + "categories": "Food, Desserts, Bakeries, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "J_zkRwVcoUcHTg549TndSw", + "name": "vybe urgent care", + "address": "6060 Ridge Ave, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.032898, + "longitude": -75.214749, + "stars": 2.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Urgent Care, Health & Medical, Medical Centers, Walk-in Clinics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "yuIhKvOjgDbYCkgw-j55sA", + "name": "Goose Island Brewhouse", + "address": "1002 Canal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9652138, + "longitude": -75.1355053, + "stars": 3.5, + "review_count": 149, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "ByAppointmentOnly": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "DogsAllowed": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breweries, Nightlife, Brewpubs, Restaurants, Pubs, Food, American (Traditional), Bars, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Lau_goViHeF22dKSuRu31A", + "name": "Stretch Construction", + "address": "932 Fernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9289914, + "longitude": -75.161139, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Windows Installation, Painters, Home Services, Contractors", + "hours": null + }, + { + "business_id": "_f44lBpB4u3j4ts1a3lftA", + "name": "Affordable Dentures", + "address": "2119 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0500838, + "longitude": -75.0628258, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Dentists, General Dentistry, Health & Medical", + "hours": null + }, + { + "business_id": "nIlmZLuMs0JuBRvAHSIf8Q", + "name": "Bredenbeck's Bakery & Ice Cream Parlor", + "address": "8126 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0724995, + "longitude": -75.202403, + "stars": 4.0, + "review_count": 296, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "False", + "DriveThru": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Restaurants, Bakeries, Custom Cakes, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "LopGlCZ1ANqrTf8BqL0OWQ", + "name": "Tuscany Cafe", + "address": "725 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480929, + "longitude": -75.1536434, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Coffee & Tea, Sandwiches, Food", + "hours": { + "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": "9:0-18:0" + } + }, + { + "business_id": "HHBbetQ-XRQYJprT5Qp9jw", + "name": "Gaul & Co. Malthouse", + "address": "3133 Gaul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.986116, + "longitude": -75.1065394, + "stars": 4.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "HappyHour": "True", + "GoodForDancing": "False", + "CoatCheck": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': True, 'video': False, 'karaoke': False}", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants, Nightlife, American (New), Bars, Beer Bar", + "hours": { + "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" + } + }, + { + "business_id": "mcyhSRV0kcO57QP7al2HGA", + "name": "Bistro SouthEast", + "address": "1824 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9445223204, + "longitude": -75.1727068683, + "stars": 4.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Korean, Seafood, Thai, Asian Fusion, Vietnamese, Sandwiches", + "hours": { + "Tuesday": "11:0-17: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" + } + }, + { + "business_id": "XF1P01OV8o_tB52oo36_ZA", + "name": "Oasis Hookah Lounge", + "address": "6624 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0428602, + "longitude": -75.0745291, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "None", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Tea Rooms, Juice Bars & Smoothies, Food, Lounges, Coffee & Tea, Bars, Arabic, Hookah Bars, Nightlife", + "hours": { + "Monday": "18:0-0:0", + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-0:0" + } + }, + { + "business_id": "6Ed-PNxAsRsBBPf-6fUN9w", + "name": "Takka Grill on Torresdale", + "address": "5536 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.01534, + "longitude": -75.0641916, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Restaurants, American (Traditional), Food, Food Delivery Services", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "TTgpKmTSJs1w60DJkWlLWw", + "name": "Fairfield Inn by Marriott Philadelphia Airport", + "address": "8800 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8868252585, + "longitude": -75.2476465702, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "jHVotJhyPKOLuO7MVnmbtQ", + "name": "Royal Tavern", + "address": "937 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9370015, + "longitude": -75.1545039, + "stars": 4.0, + "review_count": 669, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "False", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Vegan, Vegetarian, Sandwiches, American (New), Wine Bars, Cocktail Bars, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "R--rV0fSLevjMwxIH6DEBQ", + "name": "Sweat Fitness", + "address": "200 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512031855, + "longitude": -75.1800112318, + "stars": 2.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Fitness & Instruction, Active Life, Trainers, Gyms, Nutritionists, Health & Medical", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "HKBiW43ctq-aUHdt3q0-cQ", + "name": "Nails Jade Spa", + "address": "Intersection Of 6th And Carpenter", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9363795, + "longitude": -75.1535884, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-18:30" + } + }, + { + "business_id": "Iajwf3yFrz2oajOZ_qRDKA", + "name": "Ozzie Perez Salon", + "address": "2026 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493313, + "longitude": -75.175039, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "AWWAiEideKaYmgSblQTsqg", + "name": "Malt House Ltd", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487466, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hobby Shops, Education, Beer, Wine & Spirits, Adult Education, Party Equipment Rentals, Breweries, Event Planning & Services, Do-It-Yourself Food, Shopping, Food, Brewing Supplies", + "hours": null + }, + { + "business_id": "asbEI02GRGFPSPM97hrIaA", + "name": "Nemi Restaurant", + "address": "2636 E Ann St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9816738972, + "longitude": -75.1090306789, + "stars": 4.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "False", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "DriveThru": "False", + "WiFi": "u'no'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': True}", + "OutdoorSeating": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Y-yULogxoHo0X9qjx8U41w", + "name": "Lucky 7 Tavern", + "address": "747 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968768, + "longitude": -75.178158, + "stars": 3.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Gastropubs", + "hours": null + }, + { + "business_id": "jEWs4_HRIZS9YnfqR41G5w", + "name": "Steven Rice, DDS", + "address": "1601 Walnut St, Ste 1310", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Cosmetic Dentists, Health & Medical, Periodontists, General Dentistry, Oral Surgeons, Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "_CE0H6_o415IAk3laMrBjw", + "name": "Hotbox Yoga Manayunk", + "address": "4163 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0235784, + "longitude": -75.2197919, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "BikeParking": "True", + "GoodForKids": "False" + }, + "categories": "Yoga, Active Life, Fitness & Instruction", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-19:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-18:30" + } + }, + { + "business_id": "GPaUDXZP4OEoQcEiPrTBAQ", + "name": "Take the Lead", + "address": "4701 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9526164, + "longitude": -75.2166302, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Active Life, Fitness & Instruction, Arts & Entertainment, Dance Studios", + "hours": null + }, + { + "business_id": "lhekbck6Zrpc_786yjQ0VA", + "name": "Kismet Cowork - Spring Arts", + "address": "448 N 10th St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9603427945, + "longitude": -75.1549485517, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Shared Office Spaces, Real Estate, Venues & Event Spaces, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "iuKzxuAgf2ttgOyxyLHEMQ", + "name": "Philly Dance Fitness", + "address": "1923 Chestnut St 2nd, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520935, + "longitude": -75.1727556, + "stars": 5.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Dance Studios, Active Life, Barre Classes, Fitness & Instruction, Gyms, Pilates", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-21:30", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "1Ck2drCXGh1h5bhc9aIRpg", + "name": "Jack's Firehouse", + "address": "2130 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670823, + "longitude": -75.1733028, + "stars": 3.5, + "review_count": 569, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "'full_bar'", + "Smoking": "u'outdoor'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "GoodForDancing": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, American (New), Nightlife, Barbeque, Bars", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "4CT_cGjUp-ujGpbjYneV-g", + "name": "International Salon", + "address": "1714 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506448, + "longitude": -75.1694725, + "stars": 3.5, + "review_count": 166, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "3YDXcj6vfpIDej7cULGh8A", + "name": "Hospital of the University of Pennsylvania", + "address": "3400 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9499965363, + "longitude": -75.1930278984, + "stars": 2.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Education, Colleges & Universities, Hospitals", + "hours": { + "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" + } + }, + { + "business_id": "KAwfsEOOS_mW6xfRFEuijg", + "name": "Habitat For Humanity ReStore Philadelphia", + "address": "2318 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396516592, + "longitude": -75.1825642586, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Appliances, Shopping, Kitchen & Bath, Furniture Stores, Thrift Stores, Hardware Stores, Home & Garden, Home Decor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "l7e7-RIhNx-kiZ9hQo6iLg", + "name": "Esposito's Meats", + "address": "1001 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374512, + "longitude": -75.1580267, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Specialty Food, Butcher, Meat Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-12:0", + "Saturday": "7:30-17:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "piovihTkVbW_puHqHnr-Tw", + "name": "J K K Auto Works", + "address": "6680 Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0552729, + "longitude": -75.1813962, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "tzZKya0kJRewPpgR4KIQ2Q", + "name": "23rd Street Armory", + "address": "22 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953262, + "longitude": -75.1785237, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "5Gs3oTO9MXbxdUnpUmnIuw", + "name": "Swann Memorial Fountain", + "address": "Logan Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.956385, + "longitude": -75.1705897, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Local Flavor, Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "OV6hgaxBfQeVm4QZ5_Lfwg", + "name": "The Fairmount @Brewerytown by The Scully Companies", + "address": "1363 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9775302, + "longitude": -75.1855542, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "Z5rqRyZ4-iEBRVXCRbysfA", + "name": "Rogue's Gallery", + "address": "11 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95308, + "longitude": -75.1749785, + "stars": 4.0, + "review_count": 165, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Restaurants, Bars, Lounges, American (Traditional), Dive Bars, American (New)", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "18:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "4ah69lOJaaUuPS-wXtw_Fg", + "name": "Chung May Chinese & American Food Corp", + "address": "1017 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955698, + "longitude": -75.1565902, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, International Grocery, Food", + "hours": null + }, + { + "business_id": "UxU3C6TbbWdhxAYLN00r9A", + "name": "Rite Aid", + "address": "3601 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.012844, + "longitude": -75.192943, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Food, Convenience Stores, Shopping, Drugstores", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "lne4yuLraZx-W_0f_CvTsg", + "name": "Quince Fine Foods", + "address": "209 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9697715, + "longitude": -75.1400255, + "stars": 5.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Meat Shops, Cheese Shops, Specialty Food, Food, Bakeries, Sandwiches, Ethnic Food, Restaurants", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "CbfI2g0ZJUCweqWVExU51A", + "name": "T-Mobile", + "address": "6024 Ridge Ave, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0320923902, + "longitude": -75.2139835, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Local Services, Mobile Phones, Telecommunications, IT Services & Computer Repair, Electronics, Mobile Phone Accessories", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "YEPAyjUfqOuyO6PWOZvxBA", + "name": "Taco Bell", + "address": "9990 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.093896, + "longitude": -75.016257, + "stars": 2.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BikeParking": "False", + "NoiseLevel": "'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Mexican, Breakfast & Brunch, Tacos, Fast Food, Restaurants, Tex-Mex", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "eci7H50J-n6n-5WfQzGt-Q", + "name": "Yoo's Auto Service & Collision", + "address": "189 W Duncannon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0297248, + "longitude": -75.1257949, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Body Shops, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "49Pr-M3qFKyHAaPIlt8RiQ", + "name": "Dental Dreams", + "address": "2107B Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0502265035, + "longitude": -75.0632120261, + "stars": 1.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Pediatric Dentists, Health & Medical", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "rf_fD5vt0VIu6kQWl017Pg", + "name": "Artist & Craftsman Supply", + "address": "307 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950378358, + "longitude": -75.1459807424, + "stars": 5.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Art Supplies, Arts & Crafts, Shopping, Toy Stores, Hobby Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "HXP-l9-asO4-7-ICzsKCew", + "name": "Friendship BBQ", + "address": "927 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537636, + "longitude": -75.1559062, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Barbeque, Taiwanese, Restaurants, Hot Pot, Seafood, Soup", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "DbzFMxR_C9qs1GJfq6GaYA", + "name": "The Capri Dessecker Team - RE/MAX One Realty", + "address": "1842 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9266977, + "longitude": -75.1674205, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Agents, Real Estate, Real Estate Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "Ubf_l4Qlr4wExI9zT5Daiw", + "name": "Bluemercury", + "address": "3603 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9534072849, + "longitude": -75.1955677771, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply, Day Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "TPXPScI9kvWsO2i08skxaA", + "name": "Medusa Pizzeria", + "address": "2327 Gaul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9769736, + "longitude": -75.1241144, + "stars": 4.0, + "review_count": 122, + "is_open": 0, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Pizza, Italian, Sandwiches, Restaurants", + "hours": { + "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", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "TyhguONKc8i6M7wP09nTbA", + "name": "Hibiscus Cafe", + "address": "4907 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483933, + "longitude": -75.2215836, + "stars": 4.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Food, Vegetarian, Restaurants, Juice Bars & Smoothies, Vegan", + "hours": { + "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-18:0" + } + }, + { + "business_id": "mVV95BIwhFOa7TNH9pVMGA", + "name": "Philadelphia Chutney Company", + "address": "1628 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505197703, + "longitude": -75.1681517159, + "stars": 4.0, + "review_count": 467, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "cCwNX2r-4hDXPNGwDx2otg", + "name": "Six Fishes Healing Arts", + "address": "750 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941705, + "longitude": -75.1679, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Traditional Chinese Medicine, Massage Therapy, Massage, Acupuncture, Beauty & Spas", + "hours": { + "Tuesday": "8:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "8:0-13:30", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "n2976VTltvlSwENZxYJoNQ", + "name": "Reedy's Tavern", + "address": "9245 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0556168, + "longitude": -75.0030852, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Bars, Pubs, Nightlife, Restaurants, Irish", + "hours": { + "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" + } + }, + { + "business_id": "lV0MV_rFDpRKX6KFmP4AJw", + "name": "Campus Apartments", + "address": "4043 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546122, + "longitude": -75.2046679, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate Services, Property Management, Real Estate, Home Services, Apartments, University Housing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "HS5CfzQ_gOJHgqwtv9rvNQ", + "name": "Ladder 15", + "address": "1528 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502786, + "longitude": -75.1669645, + "stars": 3.0, + "review_count": 317, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "HappyHour": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Restaurants, Bars, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "-puKoJtGHpbPv87jZTR0zQ", + "name": "NovaCare Rehabilitation", + "address": "220-224 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9485986, + "longitude": -75.1646999, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Physical Therapy, Health & Medical, Sports Medicine, Doctors", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "7FYTWR1Bv0iUH8EaPP6Cog", + "name": "Formerly Taws", + "address": "1703 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9463069, + "longitude": -75.1700803, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bookbinding, Shopping, Arts & Crafts, Framing, Mailbox Centers, Arts & Entertainment, Art Galleries, Local Services, Art Restoration", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "11:30-21:0" + } + }, + { + "business_id": "q6FohemIBNc0d2D37FCv3g", + "name": "Pinnacle Parkour Academy - Philadelphia", + "address": "3500 Scotts Ln, Ste C-1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.008368, + "longitude": -75.183587, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Gyms, Venues & Event Spaces, Active Life, Trainers, Arts & Entertainment, Performing Arts, Fitness & Instruction, Event Planning & Services, Party & Event Planning", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "10:0-13:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "MqAvonk4-cJ-7pW78tR1Rw", + "name": "Stuff'D by Jannah Jewelz", + "address": "643 N 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9648526, + "longitude": -75.1945386, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Soul Food, Seafood, Caterers, Comfort Food, Restaurants, Event Planning & Services", + "hours": { + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "14:0-21:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "mI6IKRJ-Q0EsexiCF-C_Eg", + "name": "Tony Luke's", + "address": "4307 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0249409372, + "longitude": -75.2220519806, + "stars": 3.0, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WiFi": "'no'" + }, + "categories": "Italian, Sandwiches, Cheesesteaks, Local Flavor, Restaurants, Food", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "jDGxzwlkyH3I7_LghcxLAA", + "name": "McDonalds", + "address": "Philadelphia Airport Terminal E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8779064476, + "longitude": -75.2366649359, + "stars": 2.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "DriveThru": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": null + }, + { + "business_id": "A_zVsWcl7qTjAOZeF77NYw", + "name": "Latimer Cleaners", + "address": "251 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9492394, + "longitude": -75.1758562, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "lRznUOtLYY2GP_dvc7kmYQ", + "name": "The Tasty", + "address": "1401 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9323249, + "longitude": -75.1639891, + "stars": 4.0, + "review_count": 209, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HappyHour": "False", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "Alcohol": "'none'", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bakeries, Vegan, Restaurants, Vegetarian, Breakfast & Brunch, Diners, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "2YncwxrOwIN9ZxdMyR1BMg", + "name": "Psychic Readings By Madonna", + "address": "521 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420712, + "longitude": -75.1515732, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Supernatural Readings, Local Services, Psychics", + "hours": { + "Monday": "13:0-20:0", + "Tuesday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "13:0-20:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "U4EN4RnJL1Hx-29ZU1E4DA", + "name": "Margot & Camille Optique", + "address": "47 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951941, + "longitude": -75.145286, + "stars": 5.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Shopping", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0" + } + }, + { + "business_id": "Qdg2En83Yh7vlFbZguhr8w", + "name": "Bank of America Financial Center", + "address": "1950 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921231178, + "longitude": -75.142342636, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "kiQkU7CyIFqdPmSrm4ypLg", + "name": "Tria Fermentation School", + "address": "1601 Walnut St, Ste 620", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.949895, + "longitude": -75.167658, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Specialty Schools, Education", + "hours": null + }, + { + "business_id": "ENnIpfmHXqG0-veKNlLpXQ", + "name": "ARS LAB", + "address": "204 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483821, + "longitude": -75.1610889, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "WiFi": "None", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "Smoking": "None" + }, + "categories": "Hair Salons, Makeup Artists, Blow Dry/Out Services, Hair Stylists, Beauty & Spas", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "2pOZ6oSxDdslL3kLNMi0hQ", + "name": "She Brows And Beauty", + "address": "4614 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9486112, + "longitude": -75.2157032, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Skin Care, Eyelash Service, Beauty & Spas, Makeup Artists, Waxing, Hair Removal, Threading Services", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "KOCh1F8V3PDC9iy5Bazc0Q", + "name": "Quest Diagnostics", + "address": "4022 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0849403, + "longitude": -74.9717131, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Laboratory Testing, Health & Medical, Diagnostic Services", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30" + } + }, + { + "business_id": "d9bcNc20M6jXF5V1PiujgA", + "name": "Raven Lounge", + "address": "1718 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950718, + "longitude": -75.169618, + "stars": 4.0, + "review_count": 229, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "ByAppointmentOnly": "False", + "GoodForDancing": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "DogsAllowed": "True", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "CoatCheck": "True" + }, + "categories": "Comedy Clubs, Music Venues, Nightlife, Jazz & Blues, Arts & Entertainment, Lounges, Bars, Performing Arts, Dance Clubs", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "19:0-2:0" + } + }, + { + "business_id": "ERLYZVpkH1XyFwPFImc5Cw", + "name": "Vina Auto Care", + "address": "5551 Tabor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0363914, + "longitude": -75.1033399, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "AZ6nEK5c2rz5Ih0KeBT1Ow", + "name": "Nochumson P.C.", + "address": "123 S Broad St, Ste 1600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19109", + "latitude": 39.9498227, + "longitude": -75.1638251, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Employment Law, Legal Services, Professional Services, Lawyers, Business Law, Real Estate Law, General Litigation", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1klRUBB6LfKCotq75BVmbA", + "name": "Thirsty Dice", + "address": "1642 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669206348, + "longitude": -75.1651801826, + "stars": 4.0, + "review_count": 114, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HappyHour": "True", + "Smoking": "u'no'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Themed Cafes, Eatertainment, Bars, Nightlife, Restaurants, Arts & Entertainment, Cafes, Pubs", + "hours": { + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Wo-nhpqzFsmsb9Ef4eVxpA", + "name": "Philadelphia Web Developers", + "address": "1500 John F Kennedy Blvd, Ste 9829", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95342, + "longitude": -75.1658782, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Professional Services, Web Design", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0" + } + }, + { + "business_id": "Qp6gTafgrtOArzWjHv8sAA", + "name": "A & W Auto Services", + "address": "17 E Meehan Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0549304, + "longitude": -75.1865142, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "h74dmOR1pj7HhykkFbOgDg", + "name": "J'aime Fitness - Philadelphia", + "address": "2101 Brandywine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647355, + "longitude": -75.1729152, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "DogsAllowed": "True", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Active Life, Trainers, Nutritionists, Gyms, Health & Medical, Boot Camps", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0" + } + }, + { + "business_id": "zRhc-DVTn3XcljmgnNYrsA", + "name": "Rite Aid", + "address": "1900 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553832, + "longitude": -75.1716384, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Convenience Stores, Shopping, Food, Drugstores", + "hours": null + }, + { + "business_id": "GWH_fPOdtIjFZT4-XpP7wQ", + "name": "Eat At Joe's", + "address": "8500 Essington Ave, Ste 12A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87753, + "longitude": -75.243254, + "stars": 2.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "Caters": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False" + }, + "categories": "Fast Food, Breakfast & Brunch, Diners, Burgers, Restaurants", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "yQeD7-A7l9Qfutps6S_1Aw", + "name": "Diadem", + "address": "4529 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0243768, + "longitude": -75.1595772, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons, Hair Stylists", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "YrWSeVoYO1G0SJ2ZXW-Iaw", + "name": "City Fit Studio & Training", + "address": "400 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9472091, + "longitude": -75.1482827, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Active Life, Barre Classes, Yoga, Trainers", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "FSUqkhjuattf6NmBM1FMoA", + "name": "Rite Aid", + "address": "215 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488957, + "longitude": -75.1642001, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "False" + }, + "categories": "Drugstores, Food, Shopping, Convenience Stores", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "mkMW_zDdyXdHe_OSiwutwg", + "name": "Sunoco", + "address": "47TH And Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9557193, + "longitude": -75.2156242, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Gas Stations, Food, Automotive", + "hours": null + }, + { + "business_id": "L5IZRz9o0ryRW9Gf88LFdw", + "name": "Tyson Dog Grooming", + "address": "3001 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0382245, + "longitude": -75.0542928, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Groomers, Pets", + "hours": { + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "xAfYjdlOdDU0Q5SkHU7Q2Q", + "name": "G Force Juice Bar", + "address": "4314 Megargee St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0483323, + "longitude": -75.0120888, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Acai Bowls", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "VCGltdbgns6ENjzHaE9_YA", + "name": "Terry Cheese Steak", + "address": "3601-3699 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509405865, + "longitude": -75.1963127976, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False" + }, + "categories": "Food Trucks, Food, Local Flavor", + "hours": null + }, + { + "business_id": "MaGuDXpMlv3NhsR2XXNRBg", + "name": "Hamifgash Glatt Kosher Grill", + "address": "811 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490326, + "longitude": -75.1546258, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Middle Eastern, Event Planning & Services, Restaurants, Caterers, Kosher", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-15:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "KbvVke-HA_oWGgd2hrQAnA", + "name": "Liquid Vinyl Underground", + "address": "934 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350837, + "longitude": -75.147689, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Books, Mags, Music & Video, Vinyl Records, Music & DVDs", + "hours": { + "Tuesday": "13:0-18:0", + "Wednesday": "13:0-18:0", + "Thursday": "13:0-18:0", + "Friday": "13:0-18:0", + "Saturday": "13:0-16:0" + } + }, + { + "business_id": "jsZU7VLbyn50MabU86zI1w", + "name": "La Petite Dauphine", + "address": "2029 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950893, + "longitude": -75.174781, + "stars": 3.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Restaurants, Food, Coffee & Tea, American (New), Breakfast & Brunch, French", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "i0AOcJ0rhmo-r0TB5RwZSg", + "name": "Life Maid Easy", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0538342677, + "longitude": -75.1909261062, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Office Cleaning, Home Cleaning, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "s3SfymhlGFQGh2Z4OnwF4w", + "name": "Domino's Pizza", + "address": "6001 Lancaster Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.983077, + "longitude": -75.2416848, + "stars": 1.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsAttire": "'casual'", + "BikeParking": "True" + }, + "categories": "Chicken Wings, Pizza, Restaurants, Sandwiches", + "hours": { + "Monday": "10:30-3:0", + "Tuesday": "10:30-3:0", + "Wednesday": "10:30-3:0", + "Thursday": "10:30-3:0", + "Friday": "10:30-4:0", + "Saturday": "10:30-4:0", + "Sunday": "10:30-3:0" + } + }, + { + "business_id": "ogq6E47BXKzdQMHqtwq3tQ", + "name": "Photo Process Screen Manufacturing Company", + "address": "179 W Berks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9792533, + "longitude": -75.1367973, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Screen Printing, Professional Services, Local Services, Arts & Crafts, Shopping, Printing Services, Framing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "oAoIENzMORlZcKrzlq_QQg", + "name": "Urban Outfitters", + "address": "110 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537954, + "longitude": -75.1950531, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Department Stores, Home Decor, Men's Clothing, Home & Garden, Shopping, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "rhdzgIxt3PikpHXm_QNCew", + "name": "Animo Juice", + "address": "1701 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9551232973, + "longitude": -75.1681293836, + "stars": 4.0, + "review_count": 272, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "WiFi": "'free'", + "ByAppointmentOnly": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vegan, Food, Juice Bars & Smoothies, Acai Bowls, Salad, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "I1H5s9cVCGh1nH-4bhsSDA", + "name": "Santucci's Original Square Pizza", + "address": "901 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9390394, + "longitude": -75.159227, + "stars": 3.5, + "review_count": 469, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Restaurants, Italian, Pizza, Breakfast & Brunch", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "oFv9-wwifD3u8FFx6fPRYA", + "name": "Baja Room at Pico de Gallo", + "address": "1500 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437758676, + "longitude": -75.1673642035, + "stars": 3.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HasTV": "True", + "WheelchairAccessible": "True" + }, + "categories": "Food, Mexican, Restaurants, American (New)", + "hours": null + }, + { + "business_id": "EQv9uUg-yVqYaqB67tzqaw", + "name": "Red Tiger Taekwon-Do", + "address": "1912 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0818029353, + "longitude": -75.0380305306, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Taekwondo, Active Life, Martial Arts, Fitness & Instruction, Gyms, Trainers", + "hours": { + "Monday": "15:30-21:0", + "Tuesday": "15:30-22:0", + "Wednesday": "15:30-21:0", + "Thursday": "15:30-22:0", + "Friday": "15:30-21:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "G7GgIvjuxAe13Y-6Y9acCg", + "name": "Rail Park", + "address": "1300 Noble St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9600847879, + "longitude": -75.1601659879, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "LklDTDwgJLbUjd67ZKsvCg", + "name": "Rittenhouse Square Park", + "address": "1800 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949479455, + "longitude": -75.1718883762, + "stars": 4.5, + "review_count": 246, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Active Life, Local Flavor, Parks", + "hours": null + }, + { + "business_id": "XgxPLbAJtHoyR2tBN9yCXw", + "name": "Yogorino", + "address": "1205 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489915, + "longitude": -75.1606696, + "stars": 4.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "uY-SRyEjDZBw2qU9X8nl1Q", + "name": "Masjid Al-Jamia", + "address": "4228 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546124, + "longitude": -75.2082497, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Mosques", + "hours": null + }, + { + "business_id": "QYA0axOfmU8l5rhyn-sgkw", + "name": "Cafe Saigon", + "address": "827 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0312769173, + "longitude": -75.1040014417, + "stars": 4.0, + "review_count": 128, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Restaurants, Chinese, Vietnamese", + "hours": { + "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-18:30" + } + }, + { + "business_id": "L7OINhojRoruY4iUl-q0zw", + "name": "CVS Pharmacy", + "address": "2132 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945, + "longitude": -75.178484, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Health & Medical, Food, Convenience Stores, Pharmacy, Drugstores, Shopping", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "10:0-20:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "h1VnQb1XWrIrFKs9xgbybA", + "name": "Doggie Style Pets", + "address": "1700 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9286811, + "longitude": -75.1650573, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Stores, Pet Groomers, Pet Adoption, Pet Services", + "hours": { + "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": "10:0-18:0" + } + }, + { + "business_id": "6oxOSJUVBqhUFYzSdplGRA", + "name": "Philadelphia Vintage", + "address": "2052 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495518, + "longitude": -75.1757898, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Shopping, Used, Vintage & Consignment", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "aUEXumhU_SljLBVLbtjjaQ", + "name": "Unity Yoga", + "address": "4363 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258145, + "longitude": -75.2240109, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fitness & Instruction, Life Coach, Yoga, Active Life, Professional Services, Meditation Centers", + "hours": { + "Monday": "6:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "9:0-10:30", + "Friday": "6:0-20:30", + "Saturday": "6:0-19:0" + } + }, + { + "business_id": "NIGOOuEGbv98qjyw3NiHfw", + "name": "Wendy's", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8787765503, + "longitude": -75.2423629761, + "stars": 2.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "'loud'", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "Caters": "False", + "WiFi": "'no'", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": null + }, + { + "business_id": "yYTmX6sgg_0FogemlNNA-Q", + "name": "Modern Eye", + "address": "3419 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531032, + "longitude": -75.1930959, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Optometrists, Health & Medical, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "qtb3rdHLyz1qWlMjaoTSsg", + "name": "Manny's Steaks & Burgers", + "address": "1340 S 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9365333187, + "longitude": -75.1955181733, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "WiFi": "'no'", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'loud'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Burgers, Steakhouses, Restaurants", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "l6ZsTnh1ZRqagQh5WQGfkg", + "name": "Nikki Riley Photography", + "address": "1700 N Hancock", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9764757, + "longitude": -75.1371622, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Session Photography, Event Photography, Event Planning & Services, Wedding Planning, Photographers, Professional Services", + "hours": { + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-16:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-16:30" + } + }, + { + "business_id": "fQwRRX-dgf-j8NJ2YOi0bw", + "name": "3 Girls Towing", + "address": "7700 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0708629, + "longitude": -75.1577531, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Towing, Roadside Assistance, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "MTqEno9_mMXAn_4U2XGSqQ", + "name": "Nickens Agency and Auto Tags", + "address": "6747 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0531814, + "longitude": -75.1858759, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Insurance, Financial Services, Notaries", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "VukzFZ2A9LwmankbTpBsDw", + "name": "Beauty Trends By Sadaf", + "address": "10873 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1108214618, + "longitude": -75.0244301185, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Hair Salons, Threading Services, Waxing, Beauty & Spas, Makeup Artists, Hair Removal", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "GV65vWKhCQcqZ_knkGaCgQ", + "name": "Crab vs Lobster", + "address": "5201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.960217, + "longitude": -75.2250046, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Food, Seafood Markets, Seafood, Specialty Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "_OScyXrme3hW0I0eAv0yOQ", + "name": "Pizzeria Cappelli", + "address": "209 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484368, + "longitude": -75.162081, + "stars": 3.5, + "review_count": 123, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants, Food Delivery Services, Food, Italian", + "hours": { + "Monday": "11:0-4:0", + "Tuesday": "11:0-4:0", + "Wednesday": "11:0-4:0", + "Thursday": "11:0-4:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-4:0" + } + }, + { + "business_id": "cMSaJCOem8X9WGBnAIPrLA", + "name": "New Wave Cafe", + "address": "2620 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9849438, + "longitude": -75.1035569, + "stars": 4.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "American (New), Polish, Local Flavor, Bars, Restaurants, Nightlife", + "hours": { + "Monday": "12: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" + } + }, + { + "business_id": "qIdZY9IGSCNMIpXFy__02w", + "name": "Big Blue Lunch Truck", + "address": "3508 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955792, + "longitude": -75.193461, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "HasTV": "False" + }, + "categories": "Food Stands, Food, Breakfast & Brunch, Food Trucks, Restaurants, Street Vendors", + "hours": { + "Monday": "7:0-14:30", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-14:30", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "zS6Wa4yV_UpJBgatrDaE0A", + "name": "Bob Koch 215-Cut-Tree", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0890568, + "longitude": -75.0435916, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tree Services, Local Services, Gardeners, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "4_u6ikFiy1MMwPA9ZDkuXQ", + "name": "Ember & Ash", + "address": "1520 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9305753, + "longitude": -75.1629063, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "American (New), Restaurants", + "hours": { + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "JMXMJDxBMBBaFsTcf5-umA", + "name": "Make Your Mark Barber Shop", + "address": "4257 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0245790159, + "longitude": -75.2216983816, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "cDj-eJ9VODmTKczeOWNq8A", + "name": "The Taste of Brazil - Philadelphia", + "address": "6222 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.033665, + "longitude": -75.0720694, + "stars": 3.5, + "review_count": 146, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}" + }, + "categories": "Barbeque, Salad, Restaurants, Steakhouses, Brazilian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "FClTbPhPbslS8uk0p8leOw", + "name": "Pumpkin Market", + "address": "1610 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440235, + "longitude": -75.1691574, + "stars": 4.0, + "review_count": 81, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Restaurants, Food, Sandwiches, Breakfast & Brunch, Grocery, American (New), Cafes", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "BFaHCXahO0vaaOw7fw-5Fw", + "name": "Graveley Roofing Company", + "address": "909 N 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.972919, + "longitude": -75.178781, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Roofing", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0" + } + }, + { + "business_id": "ER34BPikyAIWcqpIpEgUFw", + "name": "Trendsetters Bar & Lounge", + "address": "5301 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9374128205, + "longitude": -75.2179368, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "BikeParking": "False", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "None", + "BYOB": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "None", + "NoiseLevel": "'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "Corkage": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "CoatCheck": "False" + }, + "categories": "Burgers, Seafood, Italian, Wraps, Nightlife, Bars, Lounges, Restaurants, Fish & Chips", + "hours": { + "Monday": "13:0-0:0", + "Tuesday": "13:0-0:0", + "Wednesday": "13:0-0:0", + "Thursday": "13:0-0:0", + "Friday": "13:0-1:0", + "Saturday": "13:0-1:0" + } + }, + { + "business_id": "7dKAP8tHeeL6SDqZLxpnHw", + "name": "The Jerk Pit At Chestnut Hill", + "address": "8221 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074096, + "longitude": -75.2025511, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True" + }, + "categories": "Salad, Mexican, Caribbean, Farmers Market, Restaurants, Tacos, Food, Barbeque", + "hours": { + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0" + } + }, + { + "business_id": "7lLn3G2o9DB6wO5WhMIrzQ", + "name": "Walgreens", + "address": "1 S Broad St, Lbby 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9510325, + "longitude": -75.1635544, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Convenience Stores, Food, Drugstores", + "hours": { + "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" + } + }, + { + "business_id": "E_YLoKA_fJ6m9mc1g7hzAQ", + "name": "Burlington - Philadelphia", + "address": "424 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9127511332, + "longitude": -75.1568012409, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Baby Gear & Furniture, Discount Store, Shopping, Uniforms, Department Stores, Fashion", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "GLSGyWYrl6t2TJl1ZS_tVg", + "name": "Good Harvest ๅคงไธฐๆ”ถ", + "address": "937 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554449, + "longitude": -75.1556214, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None", + "BYOB": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cantonese, Seafood, Chinese, Restaurants", + "hours": { + "Monday": "16:0-3:0", + "Tuesday": "16:0-3:0", + "Wednesday": "16:0-3:0", + "Thursday": "16:0-3:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "16:0-4:0" + } + }, + { + "business_id": "CYpWfYEed24PSYHwmV5_tg", + "name": "The Best Nail & Hair Salon", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072971, + "longitude": -75.195175, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons, Nail Salons", + "hours": null + }, + { + "business_id": "7Dcwu9xCZg6grDn2vVCU5Q", + "name": "John F. Givnish Funeral Home", + "address": "10975 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0834403, + "longitude": -74.9906003, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "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" + } + }, + { + "business_id": "yllrFgtHI257pODXRsUNQg", + "name": "Larry's Steaks & Hoagies", + "address": "6400 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0498948, + "longitude": -75.0957215, + "stars": 3.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BikeParking": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "kCdrrezhCn-JzW91XXO3TQ", + "name": "Joe Long's East Falls Automotive", + "address": "3520 Indian Queen Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0099995, + "longitude": -75.1887369, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Oil Change Stations, Auto Repair, Automotive, Body Shops", + "hours": null + }, + { + "business_id": "P6DuASe2aZmNSKm1MR9PEw", + "name": "Bloktoberfest", + "address": "17 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9438564474, + "longitude": -75.1671774914, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Local Flavor, Arts & Entertainment", + "hours": null + }, + { + "business_id": "CLO__1OoB4FGWKlwhJGYQQ", + "name": "City Gourmet Deli", + "address": "444 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590979, + "longitude": -75.1453995, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False" + }, + "categories": "Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "7:0-19:30", + "Tuesday": "7:0-19:30", + "Wednesday": "7:0-19:30", + "Thursday": "7:0-19:30", + "Friday": "7:0-17:30", + "Saturday": "9:0-15:45", + "Sunday": "10:0-15:30" + } + }, + { + "business_id": "l_7TW_Ix58-QvhQgpJi_Xw", + "name": "SUGARED + BRONZED", + "address": "1120 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485704, + "longitude": -75.1600722, + "stars": 5.0, + "review_count": 513, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Shopping, Waxing, Cosmetics & Beauty Supply, Day Spas, Tanning, Spray Tanning, Hair Removal, Sugaring", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "SQI01Ka6Wl7Kv-_NRBZ7jQ", + "name": "Guisados Don Roman", + "address": "1629 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9282246, + "longitude": -75.1568902531, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": null, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "6i2h2hYPEEG13A6mamsq9g", + "name": "Starbucks", + "address": "1100 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9794549698, + "longitude": -75.1530718803, + "stars": 2.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-18:0", + "Saturday": "11:0-16:0", + "Sunday": "13:0-16:0" + } + }, + { + "business_id": "eT89P1EOcc2aRqARtuG4Cw", + "name": "Dโ€™Luxe Nails", + "address": "6160 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0346519, + "longitude": -75.2167972, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:0", + "Sunday": "10:30-16:30" + } + }, + { + "business_id": "dcjXoskVNRNB8NVPn_zmHQ", + "name": "Panache Hair Design", + "address": "2001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953968, + "longitude": -75.173561, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "8:0-14:30" + } + }, + { + "business_id": "z1xr2cfCDy6Hxq6QHRg8EQ", + "name": "Olde City Escape Games", + "address": "221 Chestnut St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486281, + "longitude": -75.1449839, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Escape Games, Arts & Entertainment, Event Planning & Services, Party & Event Planning", + "hours": { + "Thursday": "14:0-22:30", + "Friday": "14:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "gu8twBwnB9CRU-hZQkkpgw", + "name": "Tap and Kitchen", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482371986, + "longitude": -75.1657681167, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Bars, Nightlife, Restaurants, American (New), Gastropubs, Lounges", + "hours": { + "Monday": "10:30-2:0", + "Tuesday": "10:30-2:0", + "Wednesday": "10:30-2:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "cycBI4nrs7hONELNLPnfew", + "name": "Phoebes Bar-B-Q", + "address": "5002 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0356845, + "longitude": -75.2358706, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Barbeque", + "hours": null + }, + { + "business_id": "Ae_TOxI-jaWkciceOJdC1w", + "name": "InksterInc", + "address": "530 S 4th St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418523, + "longitude": -75.149275, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Women's Clothing, Notaries, Men's Clothing, Local Services, Screen Printing/T-Shirt Printing, Fashion, Shopping, Customized Merchandise", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "0p5Q__lOXxnp74afXHP5tg", + "name": "Jasmine Rice - Old City", + "address": "224 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497474, + "longitude": -75.1447211, + "stars": 3.5, + "review_count": 64, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Thai", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "OrJdggfTlpAV5nAPY4BRJg", + "name": "Chelwayne Animal Hospital", + "address": "5524 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.030755, + "longitude": -75.1778169, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "hr5dfDGnO5GuIHKcLi4PPg", + "name": "Lair KTV | Sky Club", + "address": "1025 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538477979, + "longitude": -75.1573729914, + "stars": 3.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "Smoking": "u'no'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "False", + "Corkage": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "BYOB": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Karaoke, Lounges, Chinese, Restaurants, Nightlife, Japanese, Sushi Bars, Bars, Cocktail Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "NAL8pS56-f3Ky17yjCDBiw", + "name": "China House", + "address": "1739 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277406, + "longitude": -75.1657789, + "stars": 2.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "6wqxuBt2InDipRuUj8BNuQ", + "name": "La Colombe Coffee", + "address": "1414 South Penn Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9515435, + "longitude": -75.1650721, + "stars": 4.0, + "review_count": 364, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "avO4eJDMcy_v2IBysiEAOQ", + "name": "Checkers", + "address": "5427 Oxford Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0310351, + "longitude": -75.0842704, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "aNthp0fq3I7FxGPXjZKanw", + "name": "The Met Philadelphia", + "address": "858 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9698791, + "longitude": -75.160284, + "stars": 3.5, + "review_count": 101, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nightlife, Arts & Entertainment, Event Planning & Services, Venues & Event Spaces, Music Venues, Performing Arts", + "hours": null + }, + { + "business_id": "AJchGMnrpfIbTULXE2fasA", + "name": "Baby Buns Philly", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Burgers, Cocktail Bars, Bars, Nightlife", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "14:0-19:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "14:0-19:0" + } + }, + { + "business_id": "8jwRqJCG98YQXPcw3QfA8w", + "name": "Verizon Wireless", + "address": "1700 Market St Bsmt 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526775, + "longitude": -75.1690841, + "stars": 3.0, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Internet Service Providers, Electronics, Mobile Phones, Shopping, Professional Services, Home Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "7ZdCZYdDOjTDd8PVb7Hcmg", + "name": "Mummers Museum", + "address": "1100 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9335527, + "longitude": -75.1475606, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Museums, Arts & Entertainment", + "hours": { + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "0bvtIbpsqBJZpRKSPwIfNw", + "name": "Panorama", + "address": "14 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950201, + "longitude": -75.142285, + "stars": 4.0, + "review_count": 324, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsAttire": "'dressy'", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "DriveThru": "False", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Caters": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "CoatCheck": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Hotels & Travel, Bars, Food, Wine Bars, Beer, Wine & Spirits, Event Planning & Services, Nightlife, Hotels, Gluten-Free, Restaurants, Italian", + "hours": { + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "17:0-19:30" + } + }, + { + "business_id": "aQNoKig_y4Y1kYsSgtMXxQ", + "name": "Chancellor Properties", + "address": "206 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486203, + "longitude": -75.1623537, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "mQtH3YlGXdmxvsZ9y77YAA", + "name": "United Club", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8765952655, + "longitude": -75.2407378566, + "stars": 2.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Airports, Nightlife, Bars, Airport Lounges, Hotels & Travel", + "hours": { + "Monday": "4:30-19:30", + "Tuesday": "4:30-19:30", + "Wednesday": "4:30-19:30", + "Thursday": "4:30-19:30", + "Friday": "4:30-19:30", + "Saturday": "4:30-19:30", + "Sunday": "4:30-19:30" + } + }, + { + "business_id": "zM2FiARffKtAW7cO1jer-w", + "name": "Crabby Cafe", + "address": "6905 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.045682, + "longitude": -75.070964, + "stars": 4.0, + "review_count": 91, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Cajun/Creole, Restaurants, Seafood, Vietnamese", + "hours": { + "Monday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "VqQ14m_lwQXK-7DjinuqUA", + "name": "Malcolm X Park", + "address": "51ST And Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9526395, + "longitude": -75.2254086876, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "MU22HJFl4YoZw2L1lX1cRg", + "name": "Latimer Garage", + "address": "1510 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947835, + "longitude": -75.166933, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "LDDtUQkXaHBv0jySmViaPg", + "name": "Old City Flowers", + "address": "31 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493961, + "longitude": -75.1456794, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Art Galleries, Flowers & Gifts, Arts & Entertainment, Florists, Shopping", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:30-14:0" + } + }, + { + "business_id": "WGOP8zsbkRItayp-KgiHnA", + "name": "Lee's Hoagie House", + "address": "2550 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 2.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "False", + "NoiseLevel": "'quiet'", + "WiFi": "'free'" + }, + "categories": "Restaurants, Cheesesteaks, Caterers, Event Planning & Services, Delis, Sandwiches, Chicken Wings, Wraps", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "IKUTq3R9tceSewcsTFxKWQ", + "name": "Texas Wieners Philly", + "address": "1426 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9243404, + "longitude": -75.1708063, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "Caters": "True", + "BikeParking": "True", + "OutdoorSeating": "True" + }, + "categories": "Hot Dogs, Caterers, Burgers, American (Traditional), Chicken Wings, Restaurants, Event Planning & Services, Sandwiches", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "RqoJHY2zkTaCDTZzqmwDqA", + "name": "Rebel Rebel Salon", + "address": "2603 E Allegheny Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985585, + "longitude": -75.103358, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}" + }, + "categories": "Wedding Planning, Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Makeup Artists, Event Planning & Services, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "vi14DaZRV0TGL01-QiiMuQ", + "name": "Liberty Resources Home Choices", + "address": "112 N 8th St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953822, + "longitude": -75.1531214264, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Personal Care Services, Local Services, Community Service/Non-Profit, Health & Medical, Home Health Care", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "3DrNVvXHL8eB05yu3ooKwA", + "name": "Farmer's Best Supermarket", + "address": "501 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0391044, + "longitude": -75.107742, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "Vw9kAeinutmjA1hZcm202A", + "name": "Cookie's Tavern", + "address": "2654 S Alder St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9162192, + "longitude": -75.1651645, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "Tg5p9ITJUOYp3vFzw0nK2g", + "name": "Mike's Pizza", + "address": "4111 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0225585, + "longitude": -75.2184326, + "stars": 2.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "XSDT18Io4GbRI60_bdvEZg", + "name": "Stirling Towing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Auto Parts & Supplies, Tires, Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "DalVGz08sTzl693oH2j6MQ", + "name": "Pennsylvania Hospital", + "address": "800 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945324, + "longitude": -75.15563, + "stars": 3.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Hospitals, Health & Medical", + "hours": null + }, + { + "business_id": "VoOlwCavQQ_A5My7TC7t2w", + "name": "Mix Bar and Grill", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524435, + "longitude": -75.1757574, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Smoking": "u'no'", + "Caters": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'" + }, + "categories": "Bars, Restaurants, Nightlife, Pizza, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "ll8teHr3gxgNtbOnWbTTYA", + "name": "Nail Image", + "address": "1501 N Broad St, Ste 13", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976402, + "longitude": -75.157503, + "stars": 2.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'" + }, + "categories": "Nail Technicians, Waxing, Beauty & Spas, Nail Salons, Hair Removal", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:0-18:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "oi9pCS83sO9wu9knPiu94Q", + "name": "Lemon Leaf", + "address": "8261 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0657677, + "longitude": -75.0508475, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Thai, Restaurants", + "hours": null + }, + { + "business_id": "kquD6fV5OclW6Szn24Y-Gg", + "name": "Holmesburg Fish & Game Protective Association", + "address": "5100 Pennypack St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.036201, + "longitude": -75.004546, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gun/Rifle Ranges, Active Life", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "feXi68HNEJgi9PVE0GXxaQ", + "name": "webuyanycar.com", + "address": "6719 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9111649042, + "longitude": -75.2230088905, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Buyers, Car Dealers", + "hours": { + "Monday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "11:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "14:0-18:0" + } + }, + { + "business_id": "liPt8EZuHzf31IBLpZnhMA", + "name": "Marcelloโ€™s Pizza-Grill", + "address": "10849 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1102701, + "longitude": -75.024101, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Food, Food Delivery Services, Pizza, Restaurants, Italian", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "HYNqCK5AxSv0UsX0AFY8sg", + "name": "The Rotunda", + "address": "4014 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542453, + "longitude": -75.2036541, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False", + "NoiseLevel": "'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Cinema, Nightlife, Arts & Entertainment, Music Venues, Performing Arts", + "hours": null + }, + { + "business_id": "7zdWY4WhiEsYsSPJhYnPZg", + "name": "Panda Chinese Restaurant", + "address": "7105 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0347942, + "longitude": -75.0446098, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "h4HUfzy5_9geCSyo9sFeYQ", + "name": "The Craft Beer Outlet", + "address": "9910 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.06502, + "longitude": -74.983562, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "XFOLv6Vxik920W7OP-OStw", + "name": "Tenth Street Pourhouse", + "address": "262 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464958, + "longitude": -75.158054, + "stars": 3.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Cajun/Creole, Coffee & Tea, Restaurants, Food", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "JtDZvV3HddxFnNdrwrWh7g", + "name": "Ristorante Aroma", + "address": "1245 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9318715007, + "longitude": -75.1495001459, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'dressy'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "BikeParking": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "Caters": "True", + "ByAppointmentOnly": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}", + "RestaurantsDelivery": "None" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "018ixB-WinNmflwX2UvS1g", + "name": "Pine St Deli", + "address": "1613 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9461554, + "longitude": -75.1688026, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Sandwiches, Delis, Restaurants", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-22:0", + "Saturday": "9:30-21:0" + } + }, + { + "business_id": "22pC6FLcRjjdJ5Is34NSKg", + "name": "Quaker City Flea Market", + "address": "5001 Comly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0133878, + "longitude": -75.0548632, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Antiques, Shopping, Flea Markets", + "hours": null + }, + { + "business_id": "sjem0d3HOJrJRfGqpiNOdw", + "name": "Ben and Betsy's Coffee and Gifts", + "address": "220 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498681, + "longitude": -75.1445267, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": null, + "categories": "Food, Coffee & Tea, Gift Shops, Flowers & Gifts, Shopping", + "hours": { + "Monday": "8:30-22:0", + "Tuesday": "8:30-22:0", + "Wednesday": "8:30-22:0", + "Thursday": "8:30-22:0", + "Friday": "8:30-22:0", + "Saturday": "8:30-22:0", + "Sunday": "8:30-20:30" + } + }, + { + "business_id": "kufU0ChkDC9hZABZoUebIQ", + "name": "China House", + "address": "331 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961426, + "longitude": -75.144327, + "stars": 2.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "NoiseLevel": "'loud'", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "0pnIIgi4sm96CllW0DhXug", + "name": "Il Pittore", + "address": "2025 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516, + "longitude": -75.174548, + "stars": 4.0, + "review_count": 191, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsPriceRange2": "4", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, American (New), Diners, Italian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "nrJE1NcVX04JsGmKrfErzQ", + "name": "Allen Tire & Service", + "address": "6301 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0483967018, + "longitude": -75.0965430097, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Tires, Automotive, Auto Repair, Wheel & Rim Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "V35-Tw8yBCzqu6oERS7fSA", + "name": "Jules Pizza & Grill", + "address": "431 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941921, + "longitude": -75.150363, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Cheesesteaks, Pizza, Sandwiches, Restaurants, Chicken Wings, Indian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22: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" + } + }, + { + "business_id": "GINa4RluLnJeDZRxbtCY8A", + "name": "Everything Plastic", + "address": "444 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9585966, + "longitude": -75.1424071, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Home & Garden, Shopping, Active Life", + "hours": null + }, + { + "business_id": "3zfWE7KagyyFgmr8MCcYBg", + "name": "Kashmir Garden", + "address": "9321 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0859336, + "longitude": -75.0463929, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Indian, Restaurants, Furniture Stores, Shopping, Home & Garden", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "kjKImJ8dLwN4jDi5PQP46g", + "name": "Unite Fitness - Philly East", + "address": "105 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497816, + "longitude": -75.1601221, + "stars": 5.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Active Life, Trainers, Gyms, Health & Medical, Nutritionists, Fitness & Instruction", + "hours": { + "Monday": "5:0-21:30", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:30", + "Thursday": "5:0-21:0", + "Friday": "5:0-19:30", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "_V6hl1oGkTV2KbGeax_HPA", + "name": "Sang Kee Peking Duck House", + "address": "238 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9563986, + "longitude": -75.1542873, + "stars": 4.0, + "review_count": 926, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "BYOB": "False", + "HappyHour": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': False}", + "WheelchairAccessible": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Noodles, Dim Sum, Hong Kong Style Cafe, Cantonese, Food, Barbeque, Juice Bars & Smoothies, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "10:0-20:30" + } + }, + { + "business_id": "02RvIa2kWpChi9zNSuwTHA", + "name": "Bucks Fencing, Decking & Powerwashing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068629, + "longitude": -75.0026972, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Decks & Railing, Contractors, Home Services, Fences & Gates, Pressure Washers", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "0B-292FbrT54wIxZjoxhPw", + "name": "Cunningham Piano", + "address": "26 E Coulter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.033719, + "longitude": -75.17139, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Piano Stores, Movers, Musical Instruments & Teachers, Furniture Repair, Piano Services, Local Services, Home Services, Musical Instrument Services, Shopping", + "hours": null + }, + { + "business_id": "qwwGSvbeqYBY4JREsM4QfA", + "name": "Marine Club Apartments", + "address": "1100 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9374909, + "longitude": -75.1672153, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "PUf_buPLOyOGAMt6D141zA", + "name": "Flywheel Sports Center City", + "address": "1521 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948832, + "longitude": -75.167175, + "stars": 4.0, + "review_count": 144, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "False" + }, + "categories": "Gyms, Fitness & Instruction, Barre Classes, Cycling Classes, Active Life", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "5:45-17:0", + "Sunday": "7:0-18:15" + } + }, + { + "business_id": "Cp5vp6LVGudRE6WXwVwEaA", + "name": "Ez Tech", + "address": "1001 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921119, + "longitude": -75.1634958, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4" + }, + "categories": "IT Services & Computer Repair, Shopping, Electronics Repair, Local Services, Computers, Mobile Phone Repair", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "p_jAxXl-PBzfOjuMmig55g", + "name": "Pita Chip", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566244, + "longitude": -75.194425, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "GoodForKids": "True", + "HappyHour": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Vegetarian, Wraps, Middle Eastern, Restaurants, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-16:45", + "Friday": "11:0-20:0" + } + }, + { + "business_id": "nOZOlidRcVHYn3bDcsXD_Q", + "name": "Musi", + "address": "100 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263001984, + "longitude": -75.1474352181, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "WheelchairAccessible": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mediterranean, Middle Eastern, Restaurants, American (New)", + "hours": { + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "qBEIkcRkuiZBRbHr2Q-vbA", + "name": "Kady Hair Braiding Shop", + "address": "1901 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.066077, + "longitude": -75.159337, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "IKXioGicvU2I4atIkTpTEw", + "name": "Pink Nails & Spa", + "address": "2401 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9456573, + "longitude": -75.1809174, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "IZ0ZgTbvsAK3moTMFK5FrA", + "name": "Proper Function Plumbing", + "address": "7704 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0334965, + "longitude": -75.0291132, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Electricians, Heating & Air Conditioning/HVAC, Local Services, Contractors, Home Services, Septic Services", + "hours": { + "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" + } + }, + { + "business_id": "TwnzM8mJn_nT2PJf1x-9kQ", + "name": "Cafe Lift", + "address": "428 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960346, + "longitude": -75.159706, + "stars": 4.0, + "review_count": 1189, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "HappyHour": "False" + }, + "categories": "Caterers, American (New), Breakfast & Brunch, Event Planning & Services, Diners, Restaurants", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "htfwEs8RMX9S0xCDKK_UGg", + "name": "Misora Express", + "address": "1511 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512711, + "longitude": -75.1659528, + "stars": 3.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Salad, Restaurants, Sushi Bars, Japanese", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30" + } + }, + { + "business_id": "PSZauAAMc5lWDL0zC7-0rw", + "name": "Ocean Crab", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.90064491, + "longitude": -75.24143884, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Cajun/Creole, Food Delivery Services, Soul Food, Food, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "x_Y3I1FpBp4MPp79CstMfA", + "name": "Wells Fargo Bank", + "address": "1700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952696, + "longitude": -75.169216, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0" + } + }, + { + "business_id": "rr2qxdybSNlCwUzv5Dru1g", + "name": "Priority Towing", + "address": "3103 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396181, + "longitude": -75.1951928, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Body Shops, Roadside Assistance, Automotive, Towing", + "hours": { + "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" + } + }, + { + "business_id": "9kaLrv9_zvuwb-F1BOde7g", + "name": "The Landing Restaurant", + "address": "4509 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8891661, + "longitude": -75.2310534, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Restaurants, American (Traditional)", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "nCtaC-sdPHl7BAWGvhfVLQ", + "name": "Liberty Bell Food Market", + "address": "29 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9491138, + "longitude": -75.1436609, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Convenience Stores, Grocery", + "hours": null + }, + { + "business_id": "Uky0DD3LU4C7eyNDhpmOXg", + "name": "Day By Day", + "address": "2101 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516785914, + "longitude": -75.1757079913, + "stars": 4.0, + "review_count": 642, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': None}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "BYOB": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "BusinessParking": "{u'garage': True, u'street': True, u'validated': False, u'lot': False, u'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "HappyHour": "False", + "Corkage": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Event Planning & Services, Food Delivery Services, Sandwiches, Desserts, Caterers, Breakfast & Brunch, Food, Bakeries, American (Traditional), American (New)", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "CrOwbVPaqvS42ERwqxwKzQ", + "name": "iGeeks Repair - Fishtown", + "address": "1412 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9721617, + "longitude": -75.1346309, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "sNY87E6Vj6neoMfHy_1iIA", + "name": "Ashe B and Co", + "address": "4327 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025455, + "longitude": -75.222817, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": null, + "categories": "Accessories, Shopping, Fashion, Bridal", + "hours": { + "Tuesday": "13:0-19:0", + "Wednesday": "13:0-19:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "mqJ5wiIbrOfEpbahzTIl5w", + "name": "Solo Skewer Bar", + "address": "50 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532568, + "longitude": -75.1564595, + "stars": 3.0, + "review_count": 100, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "Alcohol": "u'none'" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "jI0Ihnm76Z4n1GySOUjXxA", + "name": "EasyMovers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0390934, + "longitude": -75.064035, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "Rt_uLkn_Ha0BiDoktBkYrg", + "name": "Penzeys Spices", + "address": "8528 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 40.0763896, + "longitude": -75.20725, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "JHgfIjfB_C5LH3r7e8hV3g", + "name": "Fred's Water Ice", + "address": "5343 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9400428, + "longitude": -75.2229055, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HasTV": "True" + }, + "categories": "Restaurants, Food Stands, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "oi1vkc7_4jU_9fOrJPgcXQ", + "name": "Choice Seafood", + "address": "2102 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.012898, + "longitude": -75.0708336, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "HeSOeHKVNoHFWWComKEKcA", + "name": "Harriettโ€™s Bookshop", + "address": "258 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694035, + "longitude": -75.1318775, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Books, Mags, Music & Video, Used Bookstore, Shopping, Bookstores", + "hours": { + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Zm3Cq5pv4BelBgrnSPEdzQ", + "name": "Hungry Harvest", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Food Delivery Services, CSA", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "eglqJWbxNrSUGDe1Me2JSw", + "name": "Carman's Shoe Repair", + "address": "8111 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0725405, + "longitude": -75.2018901, + "stars": 3.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Repair, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "SeKHzoj1qNEHs1pTYD_fbg", + "name": "Leandro's Pizza House", + "address": "4501 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0138105, + "longitude": -75.086004, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "jcmJVfvefkVnx6h_idOazA", + "name": "Connie's Ric Rac", + "address": "1132 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9355218, + "longitude": -75.1587191, + "stars": 3.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "True", + "Smoking": "u'outdoor'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HappyHour": "True" + }, + "categories": "Music Venues, Nightlife, Arts & Entertainment, Education, Performing Arts, Bars", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "n_EpP8nXoE36_D1720GXtA", + "name": "Keven Parker Soul Food Cafe", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9529722, + "longitude": -75.1595819, + "stars": 3.0, + "review_count": 179, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "HasTV": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Southern, Comfort Food, Restaurants, Soul Food", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "sw68V_AO8tKacBIIDgVdBg", + "name": "Dab Hands Tub & Tile Reglazing", + "address": "13109 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1279559, + "longitude": -75.0135152, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Painters, Home Services, Contractors", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "e2l19ABu1xIn9hnvWukJ3Q", + "name": "Aladdin Pizzeria & Eatery", + "address": "4746 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9533259, + "longitude": -75.217555, + "stars": 3.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Italian, American (Traditional), Pizza, Restaurants", + "hours": { + "Monday": "10:30-1:30", + "Tuesday": "10:30-1:30", + "Wednesday": "10:30-1:30", + "Thursday": "10:30-1:30", + "Friday": "10:30-1:30", + "Saturday": "10:30-1:30", + "Sunday": "10:30-1:30" + } + }, + { + "business_id": "TdrNka-oPWf4B-jN9rKltw", + "name": "Bok Bar", + "address": "800 Mifflin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9255095, + "longitude": -75.159212, + "stars": 4.0, + "review_count": 251, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "RestaurantsDelivery": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "u'beer_and_wine'", + "HasTV": "False", + "HappyHour": "True", + "CoatCheck": "False", + "GoodForDancing": "False", + "Corkage": "False", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': False}", + "RestaurantsReservations": "True", + "DogsAllowed": "True" + }, + "categories": "Wine Bars, Bars, Beer Bar, Filipino, Vietnamese, Mexican, Nightlife, Mediterranean, Restaurants, Tacos, Lounges, Kebab, Falafel", + "hours": { + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "gXwHMtF-PLNG_9n7t9IxBA", + "name": "Dilworth Park Cafรฉ", + "address": "1400 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953245, + "longitude": -75.164426, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "None", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Coffee & Tea, Cafes, Restaurants, Food", + "hours": { + "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": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "K6hAv8V2cTuXQtU3VHAD6w", + "name": "Tres Jalapenos", + "address": "901 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9384274, + "longitude": -75.1561557, + "stars": 3.5, + "review_count": 354, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "OutdoorSeating": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "0VhuD6zy8D-vj2xtgvVIQg", + "name": "Garrison Roofing", + "address": "2528 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0014278, + "longitude": -75.0771073, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Roofing", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0" + } + }, + { + "business_id": "cV0bzqILHSlqCy2KCWxW5w", + "name": "Morgan & Morgan", + "address": "2005 Market St, Ste 350", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541646, + "longitude": -75.1737359, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Lawyers, General Litigation, Professional Services, Personal Injury Law, Social Security Law, Employment Law, Workers Compensation Law", + "hours": { + "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" + } + }, + { + "business_id": "m2OOqq_MGLtCyO3Im-ilZA", + "name": "No Stress Movers", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532599, + "longitude": -75.172695, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Packing Services, Home Services, Movers, Home Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "Tg1wUs7niPlD68hXbzP1gw", + "name": "Texas Chicken & Burgers", + "address": "5818 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9307397668, + "longitude": -75.2267041391, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Halal, Fast Food", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "NDb1YaV6Dls7SRW6dPtIOQ", + "name": "Spiga", + "address": "1305 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948202, + "longitude": -75.162588, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "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': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "HappyHour": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "42HNZcRgkYF2KcSUpMJFxg", + "name": "Law Office of Mark Copoulos", + "address": "1628 John F Kennedy Blvd, Ste 1301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953694, + "longitude": -75.1680817, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Criminal Defense Law, Real Estate Law, DUI Law, Lawyers, Tenant and Eviction Law", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0" + } + }, + { + "business_id": "V5eBe04jiJq7cxxn4F6y2g", + "name": "Skirt", + "address": "212 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495895, + "longitude": -75.1693585, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Stores, Women's Clothing, Fashion, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "o46yygtcv5vOQShnEnfNpQ", + "name": "Halal Cart", + "address": "12TH And Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955173, + "longitude": -75.189461, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Food Trucks", + "hours": null + }, + { + "business_id": "IZkYUE8V8hknaSnnn0-Xig", + "name": "Miracle On 13th Street", + "address": "1600 South 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9303402653, + "longitude": -75.1664796644, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Festivals, Holiday Decorations, Home & Garden, Shopping, Local Flavor", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "DT3ujxJgs_OTgC-ZYf14Fw", + "name": "South Philly Italian Kitchen", + "address": "311 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0541409, + "longitude": -75.1944474, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "u'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BYOB": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Restaurants, Italian", + "hours": { + "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": "16:0-20:30" + } + }, + { + "business_id": "8Wq0LZSuHdPTlleQD5sU_w", + "name": "The Bubble House", + "address": "3404 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535101, + "longitude": -75.1924985, + "stars": 2.5, + "review_count": 116, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "WiFi": "'free'" + }, + "categories": "American (Traditional), Sandwiches, Tea Rooms, Coffee & Tea, Food, Asian Fusion, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "pXRrRf8fDv6yU3xp1E25hA", + "name": "Bud & Marilyn's", + "address": "1234 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947787, + "longitude": -75.162293, + "stars": 4.0, + "review_count": 1303, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "Alcohol": "'full_bar'", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Breakfast & Brunch, Nightlife, Bars, Restaurants, American (Traditional)", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "iVAw6Xl4051W1lUeLEUw3w", + "name": "CK Auto Image Repairs", + "address": "718 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360454, + "longitude": -75.1560871, + "stars": 5.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Towing, Auto Glass Services, Car Window Tinting, Car Stereo Installation, Windshield Installation & Repair, Auto Repair, Oil Change Stations, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "vRTkeaKjMkiSf0EAmioIGQ", + "name": "Dentistry at 1818 Market Street", + "address": "1818 Market St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529493, + "longitude": -75.1710235, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Dentists, Endodontists, Health & Medical, Cosmetic Dentists, Periodontists, General Dentistry", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "mgJvxgVQHISCAhp1fQ8VsA", + "name": "Danny's Wok", + "address": "5750 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9452422, + "longitude": -75.2387335, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Chinese, Chicken Wings", + "hours": { + "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:30-22:0" + } + }, + { + "business_id": "BQ1Te5g5_K-y7Dx7Eqj9nQ", + "name": "Cinnabon", + "address": "1101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9518814087, + "longitude": -75.1585617065, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "voedsXPlAFPHdvjAgIV2zw", + "name": "Alaska King Crab House", + "address": "4834 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9730713726, + "longitude": -75.2188593214, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsTableService": "False" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "olL97c3cnkBB_pp1ndpFEA", + "name": "TD Bank", + "address": "5501 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0242556, + "longitude": -75.2075659, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "8:30-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "DBaRIJ-g0ydlMO6xBv7p_g", + "name": "David's Bridal", + "address": "2201 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.049413, + "longitude": -75.061132, + "stars": 2.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Lingerie, Fashion, Flowers & Gifts, Formal Wear, Shopping, Bridal", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-18:0", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "41jPz8H5tc8tjgxOF4NXDA", + "name": "Penn's Landing Dog Park", + "address": "1 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949744, + "longitude": -75.139647, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Dog Parks, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "xkHrEi6LWtkZMyOyPgv7lQ", + "name": "Autozone", + "address": "2524 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9777225, + "longitude": -75.1197482, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Automotive", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "vKPXJCvlFvQWOx3-zNaehg", + "name": "The Art of Medicine", + "address": "1335 Mt Vernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9641343, + "longitude": -75.1598736, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Concierge Medicine, Weight Loss Centers, Alternative Medicine, Pharmacy, Health & Medical, Pain Management, Shopping, Doctors, Drugstores", + "hours": { + "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": "10:0-14:0" + } + }, + { + "business_id": "8ueey6KW9crymWsjjFLr8w", + "name": "Vince's Pizzeria", + "address": "2550 Grant Ave, Ste 350", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0792602509, + "longitude": -75.0264387272, + "stars": 3.5, + "review_count": 164, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "VdpwcM3GQ2AjzSm5-9ZuTA", + "name": "Wister BYOB", + "address": "26 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509776083, + "longitude": -75.1457880065, + "stars": 4.0, + "review_count": 94, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'dressy'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Venues & Event Spaces, Seafood, Breakfast & Brunch, American (New), American (Traditional), Event Planning & Services", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "nzaLOwdtzx8shZUrqrz9dw", + "name": "Apples Nails & Spa", + "address": "5601 N 5th St, Unit C & D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0365411, + "longitude": -75.1301439, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Beauty & Spas, Nail Salons, Waxing, Eyebrow Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "JCpXQbh5efRvZ7pwqikMrg", + "name": "University City District", + "address": "3451 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533837, + "longitude": -75.1938205, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Colleges & Universities, Education", + "hours": null + }, + { + "business_id": "2XHBmfcPgVBNY2QVDYKUZg", + "name": "Sabroso+Sorbo", + "address": "21 North Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953016, + "longitude": -75.161808, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Tapas Bars, Spanish, Tapas/Small Plates, Restaurants", + "hours": { + "Monday": "6:30-23:0", + "Tuesday": "6:30-23:0", + "Wednesday": "6:30-23:0", + "Thursday": "6:30-23:0", + "Friday": "6:30-23:0", + "Saturday": "6:30-23:0", + "Sunday": "6:30-23:0" + } + }, + { + "business_id": "nx8a-0rWqmkQDtYtXK0nhg", + "name": "Third Street Habit", + "address": "153 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537146, + "longitude": -75.1446592, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Accessories, Women's Clothing, Shopping, Jewelry, Fashion", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "IxE8Vt-OClElR7lAgjXFcg", + "name": "Gina's Best Nail Salon", + "address": "5239 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0194333, + "longitude": -75.2106582, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "amjqmsc7LzNy9gL5XC6rTw", + "name": "Still Waters Holistic Health Therapies", + "address": "2305 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675839, + "longitude": -75.1755997, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Massage, Health & Medical, Acupuncture", + "hours": null + }, + { + "business_id": "PtFZJdyXZxVO_VXWMLNpvQ", + "name": "Profi's Crรชperie", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953328, + "longitude": -75.159268, + "stars": 4.0, + "review_count": 155, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Creperies, French, Restaurants", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "dtPaLaOaahAdn7wUxsK9QA", + "name": "KN Cleaning Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0397069134, + "longitude": -75.0189246364, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Office Cleaning, Home Cleaning, Window Washing, Home Services, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "C-cIU8UJjdSEuBxkbm4Pyg", + "name": "MAC Cosmetics", + "address": "1427 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949485, + "longitude": -75.165388, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Shopping, Makeup Artists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "_jC2Qwq9yH4Lv5lyfyqBXA", + "name": "Avenue of the Arts Dental", + "address": "624 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9429552544, + "longitude": -75.1658763885, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Orthodontists, Periodontists, Dentists, General Dentistry, Oral Surgeons, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-16:0" + } + }, + { + "business_id": "Wo35LMqpW2N0Y3pQ5DSn9Q", + "name": "Washington Kitchen & Granite", + "address": "227 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9341619599, + "longitude": -75.1486715509, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Home & Garden, Kitchen & Bath, Shopping, Home Decor", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "dSKQunGYhaf7eCrskfrVzQ", + "name": "Lucky's Mexican Spot Food Truck", + "address": "37th And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951048, + "longitude": -75.197272242, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False" + }, + "categories": "Food, Food Trucks, Restaurants, Mexican", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "iEmp8GQhS1ZDJmDqfHodJA", + "name": "Insomnia Cookies", + "address": "4319 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250914583, + "longitude": -75.2225755104, + "stars": 3.5, + "review_count": 142, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Bakeries, Desserts, Ice Cream & Frozen Yogurt, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "EkfRDqvHqLGdaJkwEWvMRw", + "name": "On Charcoal", + "address": "6516 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0413179, + "longitude": -75.076034, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Caters": "False", + "BYOB": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Latin American, Restaurants, Colombian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-22:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:0-20:0", + "Saturday": "11:0-21:0", + "Sunday": "9:30-22:0" + } + }, + { + "business_id": "2fJ-WxJlUN6azp3bzrJ0zA", + "name": "Pho Ha", + "address": "600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344521341, + "longitude": -75.1544015359, + "stars": 4.0, + "review_count": 485, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BikeParking": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Restaurants, Chinese, Vietnamese", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "9:30-20:30" + } + }, + { + "business_id": "NvAbM4lUQAwvCFvHy8UEuQ", + "name": "Concourse Dance Bar", + "address": "1635 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532514327, + "longitude": -75.1680476591, + "stars": 2.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "HappyHour": "True", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Dance Clubs", + "hours": { + "Wednesday": "21:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "UGQY3SplE3h_3rT5WOBfig", + "name": "Cameron's Seafood Market", + "address": "62 And Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9247271416, + "longitude": -75.2355659359, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Seafood Markets, Specialty Food, Food", + "hours": null + }, + { + "business_id": "6vJTWsX-0xxdEd-C0fLF_A", + "name": "Mega Quality Pizza Restaurant", + "address": "9829 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0904272, + "longitude": -75.0325133, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'quiet'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "LwX2vbzttWYAdoBoVtfvRg", + "name": "City Tap House", + "address": "3925 Walnut St, Fl 2, Radian Balcony", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9543092612, + "longitude": -75.2013524735, + "stars": 3.5, + "review_count": 742, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Pubs, Gastropubs, Venues & Event Spaces, Bars, Nightlife, Event Planning & Services, American (New), Restaurants", + "hours": { + "Monday": "11:30-23:30", + "Tuesday": "11:30-23:30", + "Wednesday": "11:30-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "11:30-23:30" + } + }, + { + "business_id": "ypCwZ3VvlmhGfxfTDkj4yg", + "name": "Core Realty Rentals", + "address": "1 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625492, + "longitude": -75.1372078, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Services, Property Management, Real Estate, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "zPUt5nQEF0fqcCLoVvQN3Q", + "name": "Everybody Loves Organizing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Home Organization", + "hours": null + }, + { + "business_id": "jdaKKqnbO5_eaucmUc0lHQ", + "name": "Cheese E Wagon", + "address": "3311 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955719733, + "longitude": -75.1902707666, + "stars": 4.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "None", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Food, Food Trucks, Restaurants, Sandwiches", + "hours": { + "Monday": "10:30-15:30", + "Tuesday": "10:30-15:30", + "Wednesday": "10:30-15:30", + "Thursday": "10:30-15:30", + "Friday": "10:30-15:30" + } + }, + { + "business_id": "ApIkL5Nngq0bckgouxiAqQ", + "name": "Philly Pretzel Factory", + "address": "2125 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9189705, + "longitude": -75.1837813, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pretzels, Food, Restaurants, Bakeries, Hot Dogs", + "hours": null + }, + { + "business_id": "aef15zOlJL9po5fzaVekGA", + "name": "The Towpath", + "address": "Alongside the Manayunk Canal & the Schuylkill River", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Hiking, Mountain Biking, Active Life, Parks", + "hours": null + }, + { + "business_id": "EFCBh1g7X5u5v_tNeLTr_w", + "name": "Tower Bistro", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9553097, + "longitude": -75.1692673, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Sandwiches, Bistros", + "hours": null + }, + { + "business_id": "MtMw-sYmpX2sTaLUq7yOGg", + "name": "BarkPark West", + "address": "4805 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9419076, + "longitude": -75.2120094, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pet Boarding, Pet Services, Dog Walkers, Pets, Pet Groomers", + "hours": { + "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": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "heOR5Zj2sUNgr0smAFXSeg", + "name": "Bellagio Spa", + "address": "2401 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0747405, + "longitude": -75.1565623, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "10:0-17:0" + } + }, + { + "business_id": "nNm7pyCAqwpAxu2_EAYPEw", + "name": "Century 21 Department Store", + "address": "821 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951392, + "longitude": -75.15389, + "stars": 2.5, + "review_count": 88, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Department Stores, Fashion", + "hours": { + "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": "10:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "O7l6SYxKM5Skl7i-JsRJ1g", + "name": "LaTao HotPot", + "address": "3717 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552832486, + "longitude": -75.1975534335, + "stars": 4.0, + "review_count": 138, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "None", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}" + }, + "categories": "Szechuan, Chinese, Restaurants, Hot Pot", + "hours": { + "Monday": "11:15-22:45", + "Tuesday": "11:15-22:45", + "Wednesday": "11:15-22:45", + "Thursday": "11:15-22:45", + "Friday": "11:15-22:45", + "Saturday": "11:15-22:45", + "Sunday": "12:0-22:45" + } + }, + { + "business_id": "c1v7KERdB741pw7d53HGdA", + "name": "Ancient Spirits & Grille", + "address": "1726 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515662944, + "longitude": -75.1698796416, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "OutdoorSeating": "True", + "BYOB": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "3", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "CoatCheck": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bars, Nightlife, Lounges, Cocktail Bars, Middle Eastern, Modern European, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "fdbTgcmRlj4uH2CNuRyk9g", + "name": "University City Center For Eye Care", + "address": "3935 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557207, + "longitude": -75.2014611, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Health & Medical, Eyewear & Opticians, Active Life, Zoos, Optometrists, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-19:30", + "Wednesday": "10:0-16:0", + "Thursday": "9:0-19:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "J0_ihDCYiXm97XVzbx0Drg", + "name": "Tom's Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Movers", + "hours": null + }, + { + "business_id": "IU6FsZm-1BAEymLBYJ_PMQ", + "name": "Mattei Family Pizza", + "address": "1260 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.935697, + "longitude": -75.1786034, + "stars": 4.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Caters": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsTableService": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "NZjrCgnv1K5OyRfdru32_w", + "name": "Mainstay Independent Brewing", + "address": "901 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625821369, + "longitude": -75.1356569678, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Beer Gardens, Nightlife, Food, Brewpubs, Breweries", + "hours": null + }, + { + "business_id": "zwgBxmrmPBF6N2uRTUYXrQ", + "name": "Sugars", + "address": "225 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950992, + "longitude": -75.144882, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HappyHour": "True", + "HasTV": "True" + }, + "categories": "Pubs, Nightlife, Bars, Restaurants, Dive Bars", + "hours": { + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0" + } + }, + { + "business_id": "DFjtOliGn9b_DLXqY38Mhg", + "name": "Show of Hands", + "address": "1006 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446299, + "longitude": -75.1585739, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Crafts, Shopping", + "hours": { + "Monday": "11:30-18:0", + "Wednesday": "11:30-18:0", + "Thursday": "11:30-18:0", + "Friday": "11:30-18:0", + "Saturday": "11:30-18:0", + "Sunday": "11:30-17:0" + } + }, + { + "business_id": "cgemMHINNKTtqhTTmdqdOQ", + "name": "Jefferson Facial Plastics", + "address": "925 Chestnut St, Fl 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502469, + "longitude": -75.1566358, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Medical Centers, Cosmetic Surgeons, Doctors, Beauty & Spas, Health & Medical, Skin Care, Medical Spas", + "hours": null + }, + { + "business_id": "-hQIY99jDf1So2cZufUDMw", + "name": "Eds Cleaning Service", + "address": "8253 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.065766, + "longitude": -75.050912, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Pressure Washers, Professional Services, Office Cleaning, Carpet Cleaning, Home Services, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "QWZuvqTYTMncVdhulUU73A", + "name": "Miel Patisserie", + "address": "204 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497118, + "longitude": -75.169361, + "stars": 3.5, + "review_count": 432, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Desserts, Chocolatiers & Shops, Food, Restaurants, Bakeries, Specialty Food, Coffee & Tea", + "hours": { + "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": "8:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "cIkpsNhuUVbdMt5HNwtpAA", + "name": "Philly InMovement", + "address": "500 Kenilworth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406731, + "longitude": -75.1517676, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Climbing, Dance Schools, Dance Studios, Active Life, Fitness & Instruction, Specialty Schools, Gyms, Kids Activities, Yoga, Gymnastics, Education", + "hours": { + "Monday": "9:0-15:30", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-12:30" + } + }, + { + "business_id": "4R2KR_-FybS7oegGrXjHVg", + "name": "Del Frisco's Double Eagle Steakhouse", + "address": "1428-1432 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9509564, + "longitude": -75.1654591, + "stars": 4.0, + "review_count": 1129, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsPriceRange2": "4", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Seafood, Specialty Food, Steakhouses, American (Traditional)", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "15:0-20:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "m5ne44a3Vu7-zILKGxc4SQ", + "name": "Mad River Manayunk", + "address": "4100 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0222502, + "longitude": -75.218689, + "stars": 2.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Restaurants, Bars, American (Traditional), Sports Bars, Nightlife", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "t6g6Lj8WzjIXXucCl9jdTQ", + "name": "T-Swirl Crรชpe", + "address": "150 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550806, + "longitude": -75.1561748, + "stars": 4.0, + "review_count": 401, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "WiFi": "'free'", + "HappyHour": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Salad, Coffee & Tea, Juice Bars & Smoothies, Desserts, Ice Cream & Frozen Yogurt, Food, Creperies, Gluten-Free, Restaurants, Japanese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "hOd0z-9Yj0RWjWkk2Xd-2w", + "name": "Sky River Helicopters", + "address": "11301 Norcom Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0905021115, + "longitude": -75.0074930191, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Real Estate Photography, Active Life, Aerial Tours, Education, Real Estate Services, Home Services, Transportation, Specialty Schools, Real Estate, Airlines, Tours, Flight Instruction, Amusement Parks", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "t_DtEvtiIIg0lvtBTQy0Sg", + "name": "Salon Glam", + "address": "6145 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0349099, + "longitude": -75.2164439, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "False", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': True, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-16:30" + } + }, + { + "business_id": "jmTbULiPTcqJHxctb4wscA", + "name": "Northbrook Apartments", + "address": "1340 Stewart's Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.096651, + "longitude": -74.9848026, + "stars": 1.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "UdbHkdU0EfG-RmVxnvO25A", + "name": "Rocker Head Salon", + "address": "608 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411505, + "longitude": -75.147857, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "TOP2VFlm5DuznrF026CWUQ", + "name": "Centra Associates", + "address": "111 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9483899, + "longitude": -75.1431065, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate Services, Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "YQD_Gm999Cthin64uLdOdA", + "name": "McDonald's", + "address": "3100 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.004757308, + "longitude": -75.1798403263, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "None", + "GoodForKids": "True", + "BikeParking": "True", + "DriveThru": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Coffee & Tea, Food, Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "8iXVU-DFq1r_a3QTn24T8w", + "name": "The Bao Bar", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9551734924, + "longitude": -75.1566696167, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HappyHour": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Barbeque, Nightlife, Sandwiches, Bars, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Axb4x-c2nooyq5Rm4VUP7w", + "name": "The Grey Lodge Pub", + "address": "6235 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0274557, + "longitude": -75.0612236, + "stars": 4.0, + "review_count": 150, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "HappyHour": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "None", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Pubs, Bars, Nightlife", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "oWC9N_oufwSJT0cr7ppyBQ", + "name": "Philadelphia Taxi", + "address": "1501 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529025, + "longitude": -75.1657569, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Taxis", + "hours": null + }, + { + "business_id": "4J06--ty2Ydj1---IsArLw", + "name": "Cantina Los Caballitos", + "address": "1651 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9288976, + "longitude": -75.1644726699, + "stars": 3.5, + "review_count": 874, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Corkage": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "Smoking": "u'outdoor'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BYOBCorkage": "'no'", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': False}", + "Caters": "False", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "DogsAllowed": "True", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "WheelchairAccessible": "False", + "DriveThru": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican, Breakfast & Brunch, Bars, Fast Food, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "_2K8CZTDvIHa80wJ6CjxEg", + "name": "Anthony's Appliances", + "address": "1313 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0583878, + "longitude": -75.0780198, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home & Garden, Shopping, Local Services, Appliances & Repair, Appliances", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-16:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-16:30", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "dBRWKIS7h-qZCi8EjUJ2HA", + "name": "The Franklin Institute Science Museum", + "address": "222 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9582109, + "longitude": -75.1731373822, + "stars": 4.0, + "review_count": 623, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Cinema, Museums, Venues & Event Spaces, Event Planning & Services, Arts & Entertainment, Community Service/Non-Profit, Local Services", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Lw0e3JLpHoxrOzvAoXg3uQ", + "name": "Rittenhouse Manicure & Spa", + "address": "268 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484633, + "longitude": -75.17447, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Nail Salons, Day Spas, Waxing, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:30", + "Sunday": "9:30-18:30" + } + }, + { + "business_id": "LOvrMFpRyXEIvRSG7UkX2w", + "name": "Nest", + "address": "10 W Gravers Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0746639445, + "longitude": -75.2050470561, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Kids Activities", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "NKHiFAO78E_ty7xpK_gVKw", + "name": "The Restaurant at JNA Institute of Culinary Arts", + "address": "1212 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9351965, + "longitude": -75.1676847, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "WheelchairAccessible": "False" + }, + "categories": "American (Traditional), Caterers, Cooking Schools, Specialty Schools, Education, Event Planning & Services, Restaurants", + "hours": { + "Thursday": "16:30-20:0", + "Friday": "16:30-20:0" + } + }, + { + "business_id": "LB9_i89g1iUIInJ7cK9EJw", + "name": "PC Restaurant", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "F3f_EEY7gdivYvtDc__Hsw", + "name": "Cook's Heating and Cooling", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0890568, + "longitude": -75.0435916, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "eAvshvKv5PaUTS3jQROGkA", + "name": "Steven Singer Jewelers", + "address": "739 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948277, + "longitude": -75.1540937, + "stars": 4.0, + "review_count": 131, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-15:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "f1OVLBwgy0Be1lvvlt5vzg", + "name": "Cottman Feet Spa", + "address": "2812 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0439303213, + "longitude": -75.0536907865, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Massage Therapy, Beauty & Spas, Massage, Reflexology, Health & Medical", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "KMm3o506ue6E6sQuRtsyyg", + "name": "Urban Outfitters", + "address": "1627 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501345, + "longitude": -75.1687201, + "stars": 3.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Fashion, Home Decor, Women's Clothing, Home & Garden, Jewelry, Men's Clothing, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "MOzcNxZ-myfX-6H3vAOGVA", + "name": "All Aboard Seafood", + "address": "2624 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9702815, + "longitude": -75.1806097, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood, Soul Food, Restaurants", + "hours": { + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0" + } + }, + { + "business_id": "McQZweV9DLoNzbJWksPJ6w", + "name": "Pilgrim Roasters", + "address": "4120 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0226761, + "longitude": -75.2192502, + "stars": 4.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': True, u'validated': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Coffee & Tea, Coffee Roasteries, Food, Restaurants, Cafes", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "9SmnkhVtULUiD-aH83K5Ow", + "name": "New World Karaoke", + "address": "5501 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0339605, + "longitude": -75.1219384, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "HasTV": "True" + }, + "categories": "Nightlife, Karaoke", + "hours": null + }, + { + "business_id": "ADVW2S9Ucm6UrKSxLOXpxA", + "name": "Saute", + "address": "775 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937879, + "longitude": -75.1445339, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "PrDCOg_lYU9CL1AXnD9rMA", + "name": "The Beehive Hair Salon", + "address": "2323 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967551, + "longitude": -75.176114, + "stars": 4.0, + "review_count": 96, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Skin Care, Hair Salons, Beauty & Spas, Makeup Artists, Massage", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "tutL-M4mH3GA8JtYlpBbaA", + "name": "Cosmos Fine Nail Salon", + "address": "1204 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487, + "longitude": -75.160884, + "stars": 3.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Massage, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "t1eYAQHJXgzj-g-iZF0u_A", + "name": "Petit Roti", + "address": "248 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9471698, + "longitude": -75.1594545, + "stars": 4.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, French, Food, Specialty Food, Sandwiches, Ethnic Food, Meat Shops, Soup", + "hours": { + "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-16:0" + } + }, + { + "business_id": "R0hmtwcPsh3EwjE89-H9Bg", + "name": "Taglio", + "address": "3716 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951131, + "longitude": -75.198256, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "cgbPom8eiQ9ma0PdJBhBww", + "name": "Pennsylvania Hospital Bargain Shop", + "address": "719 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9450057, + "longitude": -75.1541413, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Discount Store", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-15:0" + } + }, + { + "business_id": "XZ5zgtWMhNfYobHCEEVd3Q", + "name": "Off the Cuff", + "address": "3550 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557465, + "longitude": -75.1940257, + "stars": 2.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "False" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "mmYktTUV_ujnw2kOdBGZZg", + "name": "Pronto Uno Pizza", + "address": "5809 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0429939, + "longitude": -75.1038531, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Caterers, Event Planning & Services, Pizza, Restaurants", + "hours": null + }, + { + "business_id": "YsAe4frGGdiN-1f4-rxGkw", + "name": "The Horticulture Center", + "address": "100 N Horticultural Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9834081617, + "longitude": -75.2104556483, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Botanical Gardens, Local Flavor", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "Et8VqhNbnvjVuw7gNtxk2w", + "name": "Lube Master", + "address": "6120 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0276098235, + "longitude": -75.0637252926, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Automotive, Auto Repair", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "mLf2ly4K1d27Gd81UHtBbg", + "name": "Vernalicious", + "address": "101 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9180793, + "longitude": -75.1492252, + "stars": 4.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Salad, Food Trucks, Street Vendors, Restaurants, Sandwiches, Food, Chicken Wings, Burgers, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "IjzcfMi8lQBN5-3CuYm5zQ", + "name": "Otto Schmidt's Florist", + "address": "700 Solly Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0767185, + "longitude": -75.0769476, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home & Garden, Florists, Nurseries & Gardening, Flowers & Gifts", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "5asvaAT-jDbOnCM3iPlScw", + "name": "ReAnimator Coffee", + "address": "310 W Master St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9724323, + "longitude": -75.1410235, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "qswhfcTS2jZozSzswsNSrA", + "name": "The UPS Store", + "address": "1229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508655, + "longitude": -75.1613821, + "stars": 3.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Mailbox Centers, Printing Services, Shipping Centers, Notaries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:30", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "N5X330ct-U8n0-j53dXF6A", + "name": "Moxie Blue Salon", + "address": "205 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9539294, + "longitude": -75.1432262, + "stars": 4.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Nail Salons, Blow Dry/Out Services, Hair Extensions, Hair Salons, Makeup Artists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "Rbxd8BsF_U_lyrx5s8tUHw", + "name": "Capo's Coins", + "address": "1620 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294713, + "longitude": -75.1642171, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Gold Buyers, Shopping, Hobby Shops", + "hours": null + }, + { + "business_id": "n1gQguBwqKGBHjCojEDAog", + "name": "Sweeney's Station Saloon", + "address": "13639 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1314616349, + "longitude": -75.0113320249, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WheelchairAccessible": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Music Venues, Arts & Entertainment, Dive Bars, Bars, Nightlife", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "Q06X6uwnTpH9qKij-KZjGg", + "name": "Pappy's Pizza", + "address": "1212 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9717909, + "longitude": -75.226199, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'loud'" + }, + "categories": "Food, Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "GXJyNhIlZ0_Obeize1Oj7A", + "name": "The Hadley", + "address": "2200 Benjamin Franklin Pkwy, E Tower", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9607681115, + "longitude": -75.1776570082, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "True", + "RestaurantsDelivery": "True", + "Corkage": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True" + }, + "categories": "Desserts, Cocktail Bars, Restaurants, Food, Bars, Nightlife, American (New), Lounges, American (Traditional)", + "hours": { + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "5Gr1_aXcfUhMR1d5ETBuaw", + "name": "Busybee Homestore & Design Center", + "address": "734 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421951, + "longitude": -75.1550737, + "stars": 3.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Furniture Reupholstery, Home Staging, Local Services, Home Decor, Event Planning & Services, Interior Design, Party & Event Planning, Home & Garden, Home Services, Real Estate, Shopping, Real Estate Services", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "K3RURR9lIEE4JjOaPt99zg", + "name": "Sabrina's Cafรฉ", + "address": "910 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938871, + "longitude": -75.158236, + "stars": 4.0, + "review_count": 1176, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BYOB": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Vegetarian, Breakfast & Brunch, American (New), Coffee & Tea, American (Traditional), Caterers, Food, Cafes, Event Planning & Services, Restaurants, Diners", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "DyKNWBu6zNMwsSL0AaDRsg", + "name": "Matthew Rathgeb Painting", + "address": "2632 E Lehigh Ave, Unit 2 19125", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978353, + "longitude": -75.1149835, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Painters, Pressure Washers, Home Services", + "hours": { + "Monday": "7:30-16:30", + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "85S9b55dIToR6N6jdPXK3Q", + "name": "PAWS Downtown Adoption Center", + "address": "100 N 2nd St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.952089, + "longitude": -75.1433987, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": null, + "categories": "Pets, Animal Shelters", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "c4hcdpEPdQDVl7YleEkjeg", + "name": "Wild Mutation Records", + "address": "2223 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9799669, + "longitude": -75.1288708, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vinyl Records, Books, Mags, Music & Video, Music & DVDs, Shopping", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "sjvhHRkY-g7OHHBI8nb5wg", + "name": "Nuts To You", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952335, + "longitude": -75.166486, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Popcorn Shops, Health Markets, Candy Stores, Chocolatiers & Shops, Organic Stores, Specialty Food, Grocery", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "vDEumX1eZTZC6VROCwnnZQ", + "name": "Butcher Burger Philly", + "address": "1016-18 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552705, + "longitude": -75.1566243, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "American (Traditional), Burgers, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ckoB2g8pkGrG5qdwxTPD4w", + "name": "Blue Sole Shoes", + "address": "1805 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951926, + "longitude": -75.1705615, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shoe Stores, Shopping, Fashion", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5Apcp9iRdnIG__iXIEnILA", + "name": "Lit Ultrabar", + "address": "460 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589758, + "longitude": -75.1418219, + "stars": 2.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Lounges, Nightlife, Bars, Dance Clubs", + "hours": { + "Monday": "22:0-3:30", + "Thursday": "22:0-3:30", + "Friday": "22:0-3:30", + "Saturday": "22:0-3:30" + } + }, + { + "business_id": "kGa4HXpd8LOOdZuU7H5NGQ", + "name": "Amazing Escape Room Zombie", + "address": "3502 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0078334, + "longitude": -75.1860604, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Escape Games", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "9:0-23:30", + "Saturday": "9:0-23:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "_LyMQFlhNLiXGElj1A-KEA", + "name": "Ed's Pizza House", + "address": "5308 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0307077, + "longitude": -75.1183491, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "bOy5_IAJ3deKKvWOkDfMbg", + "name": "Bucks Rack City", + "address": "2908 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.90514225, + "longitude": -75.14083505, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "AgesAllowed": "u'21plus'", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': None}", + "RestaurantsReservations": "True", + "GoodForDancing": "True", + "Smoking": "u'no'", + "WiFi": "u'free'", + "CoatCheck": "True", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': True, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "OutdoorSeating": "True", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}" + }, + "categories": "Dance Clubs, Adult Entertainment, Bars, Nightlife", + "hours": { + "Monday": "20:0-2:0", + "Tuesday": "20:0-2:0", + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "YiF1GVo1E6pvwzcjZNIvlg", + "name": "Colonial Dames Society", + "address": "1630 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481992, + "longitude": -75.1690624, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "vCUz-pMC7qqvFziAPDpdRA", + "name": "Kismet Cowork - Chestnut Hill", + "address": "12 W Willow Grove Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0702107, + "longitude": -75.2010011, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Real Estate, Shared Office Spaces, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "wbzPfKwxmaXxfR8B-TJRNw", + "name": "The Dog Alley", + "address": "239 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500993217, + "longitude": -75.1459734445, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Sitting", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0" + } + }, + { + "business_id": "smdNkZDu3eVW1KOljkFYwg", + "name": "ACCT Philly", + "address": "111 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.014568, + "longitude": -75.127169, + "stars": 2.0, + "review_count": 66, + "is_open": 1, + "attributes": null, + "categories": "Animal Shelters, Pets", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "tgHqt91y1HtQy7hKb8J9gg", + "name": "James Oliver Gallery", + "address": "723 Chestnut St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498566, + "longitude": -75.1531928, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Art Galleries, Shopping", + "hours": { + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "xQAr8LBmjvN5ns_oWEDSwA", + "name": "Ro-Zu", + "address": "700 S 7th st", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413387, + "longitude": -75.1541199, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Sushi Bars", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0" + } + }, + { + "business_id": "utk0M6RZXbtTYTbip40Bdw", + "name": "Meskerem Ethiopian Restaurant", + "address": "225 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542756, + "longitude": -75.2115951, + "stars": 4.5, + "review_count": 105, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Ethiopian, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "x27N_KruhWFd7yhwSjVh-g", + "name": "Liberties Walk Dry Cleaners", + "address": "1030 N American St, Ste 1001", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672138, + "longitude": -75.1413663, + "stars": 2.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Dry Cleaning, Laundry Services, Local Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "BRGgmf9d8cCRia4qOR761Q", + "name": "iLoveKickboxing.com", + "address": "734 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422305128, + "longitude": -75.1550581019, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Boxing, Martial Arts, Gyms, Kickboxing, Fitness & Instruction", + "hours": null + }, + { + "business_id": "BZid0h1ggs7Dr3ZiALzoSg", + "name": "Parkway Corporation", + "address": "19-25 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492603, + "longitude": -75.1436147, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "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" + } + }, + { + "business_id": "GAhzoZq315gjxCUeVNQTGA", + "name": "Best Cake Kosher Bakery", + "address": "7594 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9793747, + "longitude": -75.2689266, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Food, Restaurants, Desserts", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "peg-QfuNihvtk4P1jpuMCQ", + "name": "Old Nelson Food Company", + "address": "35 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509674, + "longitude": -75.1614916, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Delis, Convenience Stores, Food, Grocery", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "115Vnqj_18yog_PWIV0JzA", + "name": "Kibitz in the City", + "address": "703 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495193, + "longitude": -75.152609, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": null + }, + { + "business_id": "M7C_U0ORBw9sMcRa3sEQsQ", + "name": "Makkah Barber Shop", + "address": "4249 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955089, + "longitude": -75.2084579, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Stylists, Hair Salons, Barbers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "ktVyJYDAgSxrcuQuSlvIEg", + "name": "Jason's Toridasu City Avenue", + "address": "3800 City Ave, Unit C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0084750866, + "longitude": -75.2097653893, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "HappyHour": "False", + "RestaurantsTableService": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "DogsAllowed": "False" + }, + "categories": "Japanese, Burgers, Sushi Bars, Fast Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Friday": "6:15-6:30" + } + }, + { + "business_id": "1uH04sUUaBmtHq89OIXd_Q", + "name": "Salt & Pepper", + "address": "1623 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929332, + "longitude": -75.163804, + "stars": 4.0, + "review_count": 89, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False" + }, + "categories": "French, Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "8P_tlWPmPHVFWXREQGienA", + "name": "The Attic - Manayunk", + "address": "4335 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025484, + "longitude": -75.223074, + "stars": 4.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Shopping, Fashion, Thrift Stores, Shoe Stores, Used, Vintage & Consignment, Women's Clothing", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "E0PQ4AV8cos828VUWvkbbg", + "name": "City Pizza of 16th St", + "address": "2700 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.917108, + "longitude": -75.1748417, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "6_LnAQQ0-mml8YgpfRjGuA", + "name": "Saad's Halal Restaurant", + "address": "4500 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9549627, + "longitude": -75.2118511, + "stars": 4.5, + "review_count": 702, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "BYOBCorkage": "'no'", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "False", + "HasTV": "True", + "DriveThru": "None", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Halal, Middle Eastern, Restaurants, Food, Indian, Cheesesteaks, Desserts", + "hours": { + "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" + } + }, + { + "business_id": "Ukl4TXKmgmljFn7JpK1LZw", + "name": "Varallo Brothers Bakery", + "address": "1639 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9284291, + "longitude": -75.1615787, + "stars": 4.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Bakeries", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "bpbStpLUHAV7N3iXjfcvcw", + "name": "The Irish Pol", + "address": "114 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94955, + "longitude": -75.14285, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "Music": "{}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "GoodForDancing": "False", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Irish Pub, Nightlife, Pubs, Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "mborC9AxIPJc8itibk62CQ", + "name": "FastServ Home Services", + "address": "3547 Churchill Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0718092, + "longitude": -74.9902285, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Handyman, Electricians, Plumbing, Home Services", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "G-l1Ys-BBsq5JJjJdZzIIg", + "name": "Dental Solutions Market Street", + "address": "722 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9509, + "longitude": -75.15301, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, General Dentistry, Cosmetic Dentists, Endodontists, Dentists, Orthodontists, Pediatric Dentists", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "981Xj6Sey1CjyP6WQ70lzg", + "name": "Waterfront Gourmet Cafe & Deli", + "address": "5 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505446, + "longitude": -75.1393768, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "True" + }, + "categories": "Coffee & Tea, Cafes, American (Traditional), Restaurants, Caterers, Sandwiches, Event Planning & Services, Food, Delis, Bagels", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "cm_mFt0m1HHVBGpFE0u2hg", + "name": "Rothe Florists", + "address": "7148 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059425, + "longitude": -75.190746, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Flowers & Gifts, Nurseries & Gardening, Home & Garden, Florists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "dpdMVwjAFOkwITNnS_Hu7g", + "name": "Philly Cupcake", + "address": "1944 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448366, + "longitude": -75.1749989, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Food, Bakeries", + "hours": { + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "wmVJ-R-kZmWbD65NyWM46g", + "name": "Ghost Tour of Philadelphia", + "address": "5TH And Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490351, + "longitude": -75.1491893, + "stars": 3.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Local Services, Tours", + "hours": null + }, + { + "business_id": "YehrqbbORUjI8hbtk9jFDw", + "name": "DentaLux", + "address": "1308 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0579963, + "longitude": -75.0786896, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'paid'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Endodontists, Cosmetic Dentists, Orthodontists", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0" + } + }, + { + "business_id": "T98nJU1RgjJfRJmJv4cOaA", + "name": "La Lagosta", + "address": "901 E Cayuga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0150652, + "longitude": -75.1090421, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Portuguese, Iberian, Seafood, Food, Spanish, Bars, American (Traditional), Restaurants", + "hours": { + "Monday": "12:0-1:30", + "Tuesday": "12:0-1:30", + "Wednesday": "12:0-1:30", + "Thursday": "12:0-1:30", + "Friday": "12:0-1:30", + "Saturday": "12:0-1:30", + "Sunday": "12:0-1:30" + } + }, + { + "business_id": "V2sYsDcnWlurTTt3QWpIXQ", + "name": "Rittenhouse Orthodontics", + "address": "1518 Walnut St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494256, + "longitude": -75.1668961, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Orthodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "_QvnHaiUSpf3NoEy8nv8iA", + "name": "Time and Gold", + "address": "46 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952054, + "longitude": -75.172026, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "JNmzSRU57m1OsIyC0IudPA", + "name": "Alba Electric And Remodel", + "address": "7521 Horrocks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0527392, + "longitude": -75.0585821, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Contractors, Security Systems, Lighting Fixtures & Equipment, Electricians, Water Heater Installation/Repair", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "1rj-epXF4KW2z2U7FGISKw", + "name": "Mojo's Pizza 2", + "address": "2084 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.991377, + "longitude": -75.110666, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Food Delivery Services, Food, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "8CSTxca6S_c6nr4z_tY0bQ", + "name": "FORMATION sauna + wellness", + "address": "305 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9637852, + "longitude": -75.1433648, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Reiki, Meditation Centers, Beauty & Spas, Massage, Massage Therapy, Fitness & Instruction, Active Life, Health & Medical, Saunas", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "zaeNGZfmOiBzGVqGhRfX3w", + "name": "Le Caveau", + "address": "614 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417309203, + "longitude": -75.1541846618, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "RestaurantsTableService": "True", + "HasTV": "False", + "CoatCheck": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Smoking": "u'no'", + "HappyHour": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "False" + }, + "categories": "Nightlife, Wine Bars, Bars, Restaurants, French", + "hours": { + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-0:0", + "Saturday": "18:0-0:0" + } + }, + { + "business_id": "EHI7zAt0wuI6mVuoXnrBRw", + "name": "Oxford Restaurant Breakfast and Lunch", + "address": "5349 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0294638, + "longitude": -75.0847629, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "7:0-14:30", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-14:30", + "Friday": "7:0-14:30", + "Saturday": "7:0-14:30", + "Sunday": "8:0-14:30" + } + }, + { + "business_id": "NlN1Twh5UwqnZ_KwE4oGBw", + "name": "Payless Airport Parking", + "address": "6938 Norwitch Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9078454, + "longitude": -75.2278967, + "stars": 1.5, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "Jmm8H0GCKaLtKOEM1brLeA", + "name": "Moe's Hot Dog House", + "address": "2601 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9405126, + "longitude": -75.1866827, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "Caters": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Hot Dogs, Diners", + "hours": { + "Monday": "6:30-15:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "CxXYiJBkq9kqsgtdagqVgw", + "name": "Bacio", + "address": "311 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0541409, + "longitude": -75.1944474, + "stars": 4.0, + "review_count": 183, + "is_open": 0, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Italian, Vegan, Gluten-Free", + "hours": { + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:30-21:0" + } + }, + { + "business_id": "PceUQ1uT8ixXTpG1RMSMww", + "name": "Joel F Davidson DDS", + "address": "1919 Chestnut St, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525929355, + "longitude": -75.1718681081, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "General Dentistry, Dentists, Health & Medical, Oral Surgeons", + "hours": null + }, + { + "business_id": "AKrFJ7vuBbLPfE9u2HVEkQ", + "name": "Tai Lake Restaurant", + "address": "134 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546629, + "longitude": -75.156162, + "stars": 3.5, + "review_count": 279, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "Caters": "True", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Noodles, Restaurants, Seafood", + "hours": { + "Monday": "11:30-21:0", + "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" + } + }, + { + "business_id": "C7diOJxxEOJyGOc41PWPRg", + "name": "Ramen Boy", + "address": "204 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9556092217, + "longitude": -75.1544451714, + "stars": 3.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsTableService": "True", + "OutdoorSeating": "False" + }, + "categories": "Japanese, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "VayJyqAwLdMBt9HAINkxrA", + "name": "Jazmin Restaurant", + "address": "2013 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9860854, + "longitude": -75.2475653, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Indian, Restaurants, Pakistani", + "hours": { + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "17:0-21:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "R30PxELpBV31Ugy7n-MZaw", + "name": "Honest Tom's", + "address": "33rd St and Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9576111, + "longitude": -75.1890822, + "stars": 4.0, + "review_count": 58, + "is_open": 0, + "attributes": { + "HasTV": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Food Stands, Breakfast & Brunch, Mexican", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "zByP1OHxcVTyoSpKqsoJsg", + "name": "Steve's Auto Glass", + "address": "10100 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1036605, + "longitude": -75.0288736, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windshield Installation & Repair, Auto Glass Services, Automotive", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "7:30-13:0" + } + }, + { + "business_id": "odfbp-DCgy6wN1USHGDO5g", + "name": "10Below Ice Cream", + "address": "42 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518126, + "longitude": -75.1688683, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "2hvDcM769GC5t6zrkn4A3w", + "name": "Pathmark", + "address": "330 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9134224919, + "longitude": -75.1521657108, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping Centers, Shopping", + "hours": { + "Monday": "6:0-1:0", + "Tuesday": "6:0-1:0", + "Wednesday": "6:0-1:0", + "Thursday": "6:0-1:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-1:0" + } + }, + { + "business_id": "spr67xGmXtCME70IQ_ABtw", + "name": "Aoki Boutique", + "address": "115 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951931, + "longitude": -75.1770312, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Accessories, Jewelry, Fashion, Women's Clothing, Shopping", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "c03A95ESCbxwAtTATBPAag", + "name": "New China Gourmet", + "address": "2552 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985719, + "longitude": -75.104254, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "kNLqsPGiLozSEaXDUApcwg", + "name": "Central Granite Repair", + "address": "4243 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0094192, + "longitude": -75.1952499, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Kitchen & Bath, Home Services, Shopping, Home & Garden, Masonry/Concrete, Contractors", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "phQZ65kaARzcL1fAquR8LQ", + "name": "Breezy's Cafe", + "address": "1200 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9372476, + "longitude": -75.1771019, + "stars": 4.5, + "review_count": 96, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Alcohol": "u'none'" + }, + "categories": "Cafes, Sandwiches, Restaurants, Vegan", + "hours": { + "Tuesday": "10:30-20:30", + "Wednesday": "10:30-20:30", + "Thursday": "10:30-20:30", + "Friday": "10:30-20:30", + "Saturday": "9:0-17:0", + "Sunday": "9:0-15:30" + } + }, + { + "business_id": "4JTY29QkmdbmpMms3Midqg", + "name": "Philly Tacos", + "address": "2011 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9343559, + "longitude": -75.1777433, + "stars": 4.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "DriveThru": "False", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': False}" + }, + "categories": "Tacos, Event Planning & Services, Latin American, Vegetarian, Mexican, Food, Food Delivery Services, Caterers, Restaurants, Vegan, Party & Event Planning, Food Stands, Spanish, American (New), New Mexican Cuisine", + "hours": null + }, + { + "business_id": "AjQGanUkM-SFa7MxwTfMRw", + "name": "Elwood", + "address": "1007 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9664035366, + "longitude": -75.1342273504, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True" + }, + "categories": "American (Traditional), American (New), Food, Tea Rooms, Restaurants", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "hGb-yA-llJ7hnw9NyzE52A", + "name": "Crunchik'n", + "address": "212 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482037845, + "longitude": -75.1593080163, + "stars": 4.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsTableService": "False", + "OutdoorSeating": "None", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Chicken Shop, Restaurants, Korean", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "AItk5AvCyEg65LZMuhj8Vg", + "name": "Enterprise Rent-A-Car", + "address": "6801 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0543781708, + "longitude": -75.1863634586, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "7:30-16:0", + "Friday": "8:0-17:30", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "kYdYcTZMW2_GIuUug0Npjw", + "name": "Asian Chopsticks", + "address": "4044 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0849507806, + "longitude": -74.9706139416, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Soup, Restaurants, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "KMw5seXeJg_evsvsHQMUqw", + "name": "Lombardi's Prime Meats", + "address": "1801 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.912763, + "longitude": -75.1778511, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "WheelchairAccessible": "True" + }, + "categories": "Specialty Food, Meat Shops, Food", + "hours": { + "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-16:0" + } + }, + { + "business_id": "F8XeDi60WOu7ualSNDvvmg", + "name": "Baker the Sign Man", + "address": "1125 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559026, + "longitude": -75.1584643, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Signmaking, Local Services", + "hours": { + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "c_sv3DoQnYHKapUucaZ21w", + "name": "8th Street Gold & Diamond Buyers", + "address": "109 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492272, + "longitude": -75.1537856, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Gold Buyers, Shopping, Antiques, Diamond Buyers, Watches", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:30" + } + }, + { + "business_id": "96wHK5NhBrntjA1VAM4gLA", + "name": "Philadelphia Woodworks", + "address": "4901 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.03436, + "longitude": -75.2341115, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Education, Active Life, Special Education, Specialty Schools, Social Clubs, Arts & Entertainment, Recreation Centers", + "hours": { + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "nchhaG1Ev-4Ctu3MYIOdpA", + "name": "Title Forward - Philadelphia", + "address": "1628 John F Kennedy Blvd, Ste 700", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9534533428, + "longitude": -75.1678537175, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Real Estate, Real Estate Services, Mortgage Brokers, Home Services", + "hours": null + }, + { + "business_id": "N6npQdvORCHmNtZTHUxrKQ", + "name": "International Vision Center", + "address": "1017 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502316, + "longitude": -75.1576644, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Optometrists, Health & Medical, Shopping, Eyewear & Opticians", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "tBVvxMrMnfu_CZctVdK1Bw", + "name": "Bar Noir", + "address": "112 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951299, + "longitude": -75.170682, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'" + }, + "categories": "Bars, Dive Bars, Nightlife", + "hours": null + }, + { + "business_id": "-9CvbWc-vPYsoioAgZii4Q", + "name": "Bocca", + "address": "236 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949801, + "longitude": -75.145145, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "GoodForKids": "False" + }, + "categories": "Bars, Tapas Bars, Lounges, Nightlife, Mediterranean, Restaurants", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0" + } + }, + { + "business_id": "S_tnVfkq5pHY_JpO5NfjYQ", + "name": "Sorrento Bona Pizza", + "address": "742 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1055354, + "longitude": -75.0336936, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "LsNWj4m0GYealI3-GrgRKA", + "name": "King Video Games", + "address": "1146 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350809, + "longitude": -75.1588498, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Electronics, Mobile Phones, Local Services, Gold Buyers, Mobile Phone Repair, Books, Mags, Music & Video, IT Services & Computer Repair, Shopping, Videos & Video Game Rental", + "hours": { + "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" + } + }, + { + "business_id": "BW0Ob67ExhmgppxlU9zTLg", + "name": "Meineke Car Care Center", + "address": "2401-05 Vare Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920175, + "longitude": -75.187872, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Oil Change Stations, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-16:0" + } + }, + { + "business_id": "jYFMSF-AyKrvLPWMW6l5JQ", + "name": "Ortlieb's", + "address": "847 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9645525834, + "longitude": -75.142451269, + "stars": 4.0, + "review_count": 96, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BestNights": "{u'monday': False, u'tuesday': True, u'wednesday': True, u'thursday': True, u'friday': False, u'saturday': False, u'sunday': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': False, u'dinner': True, u'latenight': True, u'dessert': False}", + "HasTV": "True" + }, + "categories": "Tex-Mex, Nightlife, Lounges, Vegan, Bars, Dive Bars, Tacos, Music Venues, Mexican, Arts & Entertainment, Restaurants", + "hours": { + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-0:0" + } + }, + { + "business_id": "RCHS3HKvVtQOf8sZtrLgZg", + "name": "Insomnia Cookies", + "address": "1755 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9790436, + "longitude": -75.1550992, + "stars": 4.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Bakeries, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "11:0-3:0", + "Tuesday": "11:0-3:0", + "Wednesday": "11:0-3:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-3:0" + } + }, + { + "business_id": "AJzAO951NR1LFaBHojeudg", + "name": "Tableau at PAFA", + "address": "128 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556239, + "longitude": -75.1634392, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Museums, Coffee & Tea, Sandwiches, Food, Arts & Entertainment, Cafes", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-15:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "Y93S8ZVnOhXQTkWZQEU5yg", + "name": "Ice Cave", + "address": "4520 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491082, + "longitude": -75.2135989, + "stars": 5.0, + "review_count": 139, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "False", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Food, Shaved Ice, Desserts, Bubble Tea", + "hours": { + "Tuesday": "14:0-19:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "14:0-20:0", + "Saturday": "13:0-20:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "Hnz1_h_D1eHSRtQqHSCZkw", + "name": "Thai Singha House", + "address": "3939 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557722, + "longitude": -75.2016636, + "stars": 3.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Caters": "True" + }, + "categories": "Restaurants, Thai", + "hours": { + "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": "17:0-22:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "2ImusqC58NIe65-N2PQMgQ", + "name": "MANNA - Metropolitan Area Neighborhood Nutrition Alliance", + "address": "420 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9620987, + "longitude": -75.1715848, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Community Service/Non-Profit, Public Services & Government, Local Services", + "hours": { + "Monday": "6:0-19:30", + "Tuesday": "6:0-19:30", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "6:0-14:0" + } + }, + { + "business_id": "Y-uMd9eYbFyFIS2QNn8IhQ", + "name": "Petals Florist and Decorators", + "address": "1641 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9201666, + "longitude": -75.1754573, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "None", + "DogsAllowed": "True" + }, + "categories": "Flowers & Gifts, Florists, Shopping", + "hours": { + "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": "10:0-14:0" + } + }, + { + "business_id": "ol5npt2HXo9r3yKa3wBlYQ", + "name": "Ninja Sushi Hibachi", + "address": "14100 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1319562, + "longitude": -75.0122738, + "stars": 4.0, + "review_count": 224, + "is_open": 1, + "attributes": { + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsReservations": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, Japanese, Sushi Bars", + "hours": { + "Monday": "16:45-21:45", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "16:45-21:45", + "Friday": "16:45-22:45", + "Saturday": "12:30-22:45", + "Sunday": "12:30-21:45" + } + }, + { + "business_id": "Y1UY1YvFguPpr8EXYp1Cwg", + "name": "Enterprise Rent-A-Car", + "address": "10100 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.103668, + "longitude": -75.028873, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "NOBXu1eDYKFg8P3oys4LGg", + "name": "Phu Fha Thai Restaurant", + "address": "6190 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0298872, + "longitude": -75.2187574, + "stars": 3.5, + "review_count": 122, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Thai", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "12:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "5ZJIS8ql9i37Xirg_8jqqQ", + "name": "Thaddeus Kosciuszko National Memorial", + "address": "301 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9434615439, + "longitude": -75.1472549275, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": { + "Wednesday": "12:0-16:0", + "Thursday": "12:0-16:0", + "Friday": "12:0-16:0", + "Saturday": "12:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "hL2YVwnueRqV6SgM9vreeA", + "name": "Defino & Campagna Fine Jewelers", + "address": "134 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484584, + "longitude": -75.1542621, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "rWA6yZrumwkHocyfXKPgxg", + "name": "Ron's Ribs", + "address": "1627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9443093, + "longitude": -75.169731, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-3:0", + "Saturday": "13:0-3:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "euYhP1oVHnXITQ3VldrI9Q", + "name": "Grillicious", + "address": "32 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521484375, + "longitude": -75.1703491211, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Mediterranean, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "11:30-17:0" + } + }, + { + "business_id": "QZahNN5HNXZPloHdTHmeYQ", + "name": "Ulivo", + "address": "521 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9387161, + "longitude": -75.1526154, + "stars": 4.0, + "review_count": 96, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "UIvmSmUminTaDY2OZGDGzw", + "name": "Louis I. Kahn Memorial Park", + "address": "11th & Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9451425841, + "longitude": -75.1600501952, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "YQJznniuBCKrD8LrYE1pYA", + "name": "Powel House", + "address": "244 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457592, + "longitude": -75.1469267, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "Tdb_Nd4EQar9sXE-a8SPSA", + "name": "Gail's Caribbean & American Cuisine", + "address": "5555 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0362043, + "longitude": -75.1302866, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "DogsAllowed": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'" + }, + "categories": "Caribbean, Restaurants, Seafood, American (Traditional), Food, Trinidadian, American (New), Indian, Specialty Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "PlDOQFxA9u51TfQMtcklrw", + "name": "BCBG", + "address": "1601 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497507, + "longitude": -75.167527, + "stars": 2.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Women's Clothing", + "hours": null + }, + { + "business_id": "Uv1GF2ShcfJR4IksZQhI7Q", + "name": "Philadelphia Auto Body", + "address": "230 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.030819, + "longitude": -75.227298, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "vc9FdBs9ApeeiuD-CjqJbQ", + "name": "Spa Casual", + "address": "1726 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506531, + "longitude": -75.1698453, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Day Spas", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "vf2dlfdopFlerxozUwgPDg", + "name": "Dos Hermanos Tacos", + "address": "3342 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555591054, + "longitude": -75.1907571761, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "WiFi": "'no'", + "GoodForKids": "True" + }, + "categories": "Food, Caterers, Event Planning & Services, Food Trucks, Restaurants, Tacos, Mexican", + "hours": { + "Monday": "11:0-14:0", + "Tuesday": "9:30-15:0", + "Wednesday": "9:30-15:0", + "Thursday": "9:30-15:0", + "Friday": "9:30-15:0" + } + }, + { + "business_id": "msWWdElOb9eWFgKZw5tIcg", + "name": "Aprons Restaurant", + "address": "1621-1623 W Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9794398, + "longitude": -75.1619746, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Corkage": "True", + "BYOBCorkage": "'yes_corkage'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Restaurants, Southern", + "hours": { + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "qU04_z622p49wEIFB-9U5w", + "name": "Terakawa Ramen", + "address": "125 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547153584, + "longitude": -75.2020952851, + "stars": 4.0, + "review_count": 147, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HappyHour": "False", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Japanese, Ramen", + "hours": null + }, + { + "business_id": "IRF5JWf1dByxOwRxhz9Sbw", + "name": "Amari's Restaurant", + "address": "5037 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479848, + "longitude": -75.2247445, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Soul Food, American (New), Breakfast & Brunch, Restaurants, Seafood", + "hours": { + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "7:30-15:0", + "Sunday": "7:30-15:0" + } + }, + { + "business_id": "kqAUCdq3iYqMMhfnscZt-g", + "name": "Autoshow Collision Center", + "address": "932 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931867, + "longitude": -75.160558, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:0-11:0" + } + }, + { + "business_id": "HwkfIhwUHcEaRZv84BOMBw", + "name": "Syes Fabricare", + "address": "2131 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947325, + "longitude": -75.17793, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "HfTgJzprirtASpvubd0_rg", + "name": "Ponoci Hair Studio", + "address": "406 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465475, + "longitude": -75.1748582, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "Fms7fXefxckNMTqF6tDiQg", + "name": "Cross Country Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Vehicle Shipping, Movers, Automotive, Self Storage, Local Services, Home Services, Packing Services", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "Fi5K-mlDg6OvNRYM8My2kQ", + "name": "Parkway Garage 12th and Filbert", + "address": "1201 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531992, + "longitude": -75.160217, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "dikz-Ln-YVa1XC7WJQQgbw", + "name": "Concentra Medical Center", + "address": "7000 Holstein Ave, Ste 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9029763, + "longitude": -75.2268484, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Medical Centers, Health & Medical", + "hours": null + }, + { + "business_id": "iDy3fhLV1VAkyY0FhJiWFg", + "name": "Top Hat Dance Studio", + "address": "10771 Buslteton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.109479, + "longitude": -75.024686, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "HasTV": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Fitness & Instruction, Performing Arts, Active Life, Dance Studios, Dance Clubs", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "9:0-1:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "jm28n2u54q46QpeXSyoymA", + "name": "K Diner", + "address": "5717 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.041657, + "longitude": -75.1058466, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "6:30-15:0", + "Tuesday": "6:30-15:0", + "Wednesday": "6:30-15:0", + "Thursday": "6:30-15:0", + "Friday": "6:30-15:0", + "Saturday": "6:30-15:0", + "Sunday": "6:30-15:0" + } + }, + { + "business_id": "sD6MS3Wm4USoBulKswiDUA", + "name": "Philly Fit Dog", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 39.96903, + "longitude": -75.175073, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pet Sitting, Pets", + "hours": { + "Monday": "7:0-21:30", + "Tuesday": "7:0-21:30", + "Wednesday": "7:0-21:30", + "Thursday": "7:0-21:30", + "Friday": "7:0-21:30", + "Saturday": "7:0-21:30", + "Sunday": "7:0-21:30" + } + }, + { + "business_id": "5k5u23L1yS0e5zLouXsSTA", + "name": "Wing Shop", + "address": "7109 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0346506, + "longitude": -75.0440235, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "WiFi": "'free'", + "DriveThru": "False" + }, + "categories": "American (New), American (Traditional), Restaurants, Chicken Wings, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "b-xAMVoLqxw2WEm7EO_UvQ", + "name": "The Cliffs at Callowhill", + "address": "1010 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9586048, + "longitude": -75.1558168, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Climbing, Fitness & Instruction, Active Life, Yoga", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "W_vlLO_fS_MuLTvxt1B7AA", + "name": "Brewers Outlet Of Mt. Airy & Chestnut Hill", + "address": "7401 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0629418275, + "longitude": -75.1929348251, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Grocery, Shopping, Tobacco Shops, Beer, Wine & Spirits, Convenience Stores, Food, Brewing Supplies, Breweries", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:30", + "Saturday": "9:0-20:30", + "Sunday": "12:0-17:30" + } + }, + { + "business_id": "bgLbOwkQ1Qelrd_7OhVXog", + "name": "Theory", + "address": "1616 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949578, + "longitude": -75.168476, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4" + }, + "categories": "Men's Clothing, Accessories, Women's Clothing, Shopping, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "rSINuOQHJo0wp6OdcT38DQ", + "name": "Advanced Diagnostics", + "address": "2487-89 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07977, + "longitude": -75.0250373, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Diagnostic Services, Health & Medical", + "hours": null + }, + { + "business_id": "Yup2oUK2tKI2vvHo3kmscA", + "name": "7-Eleven", + "address": "932 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511690884, + "longitude": -75.1563978195, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "3QTpM6ei47s-8EL_ksB5Ag", + "name": "MacLen's", + "address": "20 W Allens Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0601688, + "longitude": -75.192202, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Wheel & Rim Repair, Automotive, Body Shops, Auto Glass Services", + "hours": null + }, + { + "business_id": "2EMTsTg8876QbtIGDH-69w", + "name": "Uptown Beer Garden", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95391, + "longitude": -75.16923, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}" + }, + "categories": "Beer Gardens, Nightlife, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0" + } + }, + { + "business_id": "doti90GE8LhHP9ssbUuFTg", + "name": "Philly Homebrew Outlet West", + "address": "1314 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9426904, + "longitude": -75.2104835, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Education, Shopping, Hobby Shops, Food, Specialty Schools, Beer, Wine & Spirits, Brewing Supplies", + "hours": { + "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": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "F4cJX9TcdJwO17iGE8Fkjg", + "name": "E-Z Park", + "address": "111 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9483899, + "longitude": -75.1431065, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "LN39WTkNOUCEbcgTq8yY8A", + "name": "Mason's Grocery", + "address": "353 Lyceum Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0298598, + "longitude": -75.2188485, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Convenience Stores, Food", + "hours": { + "Monday": "8:0-20: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:30" + } + }, + { + "business_id": "NSL_2oMWA3JQn4UZMdnyfQ", + "name": "Fresh Image and Grooming", + "address": "1518 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.973462, + "longitude": -75.134073, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "9gIyVKUlA8uTzDHcTyF_og", + "name": "Jack Edmondson", + "address": "3212 Amber St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9925252, + "longitude": -75.1093531, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Home Services, Contractors, Plumbing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:30" + } + }, + { + "business_id": "0Nqa0zPHoB_GVucVMd9f6w", + "name": "Club Risquรฉ", + "address": "1700 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9253969, + "longitude": -75.144875, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "True", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': True}" + }, + "categories": "Arts & Entertainment, Adult Entertainment, Nightlife, Strip Clubs, Restaurants", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "13:0-0:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "HnDdcVLvvpiaoBYXDO73Fw", + "name": "Lucky Garden", + "address": "6631 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0397053, + "longitude": -75.2236804, + "stars": 3.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "JfKe2LI_1F8NhqOsKzHggg", + "name": "Cafe Roma Bakery", + "address": "6147 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0350573, + "longitude": -75.2162958, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Food, Bakeries, Donuts", + "hours": { + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:30", + "Saturday": "7:30-18:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "_NQ07fzmI-75Yk5GUVnp0w", + "name": "Riehl Deli & Cheese Shop", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9510693646, + "longitude": -75.1543807983, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "Caters": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Cheese Shops, Delis, Food, Meat Shops, Specialty Food, Grocery, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "q6xmmfmt8DzOhbIC0WVbvQ", + "name": "Laxmi Indian Grille - Manayunk", + "address": "4425 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0264175031, + "longitude": -75.2256134994, + "stars": 4.0, + "review_count": 203, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "HappyHour": "False" + }, + "categories": "Halal, Restaurants, Food, Food Delivery Services, Indian", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "cwIe1jJEMyy5FGdkaYKq2w", + "name": "The Structural Wellness Center", + "address": "1500 Walnut St, Ste 1305", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19012", + "latitude": 39.948964, + "longitude": -75.166451, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Massage Therapy, Health & Medical, Fitness & Instruction, Physical Therapy, Active Life, Rolfing, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "n1tmHcjBnv64qEO3REm-XA", + "name": "CorePower Yoga", + "address": "1616 Walnut St, Ste #b01", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496503, + "longitude": -75.1684693, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Gyms, Yoga, Fitness & Instruction", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "veLho7eH9YvS4ylnJ8LsLw", + "name": "Melange Tea Cart", + "address": "33rd & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9556124, + "longitude": -75.189485, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "IDJNpNJZ9uVpjPHuAu7c4w", + "name": "Planet Fitness", + "address": "1851 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923712757, + "longitude": -75.1417082706, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Gyms, Fitness & Instruction, Active Life, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "u-O50MSOk5hSUFyHQ6uz3w", + "name": "CVS Pharmacy", + "address": "10901 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1121355149, + "longitude": -75.0230224324, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "DriveThru": "True" + }, + "categories": "Health & Medical, Food, Pharmacy, Convenience Stores, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "xls2j87693NX8dAaqBKfDg", + "name": "Liberty Imports Auto", + "address": "4354 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0092324, + "longitude": -75.082491, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Car Buyers, Used Car Dealers, Car Dealers, Automotive, Car Wash", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "WjicAEVbREGUb16NI3-IFQ", + "name": "Twins Auto Body", + "address": "2525 S 72nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9148156, + "longitude": -75.2396566, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Windshield Installation & Repair, Body Shops, Auto Detailing, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-5:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "-x5Vz35KrGQewp4Wdw_uOQ", + "name": "Triangle Medical", + "address": "253 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468194, + "longitude": -75.1575343, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Neurologist, Osteopathic Physicians", + "hours": null + }, + { + "business_id": "1klxZPiU2BrJdbX6XfxslA", + "name": "Momoyo", + "address": "563 N 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965776, + "longitude": -75.1697329, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "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": "14:0-21:0" + } + }, + { + "business_id": "KYPhGJIibu_7ePIX4HNs6A", + "name": "48th Street Grille", + "address": "310 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9531368, + "longitude": -75.2186607, + "stars": 4.5, + "review_count": 275, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "HappyHour": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Internet Cafes, Restaurants, Food, Seafood, American (New), Vegetarian, Caribbean, Chicken Wings, Caterers, Event Planning & Services, Breakfast & Brunch", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "iDBNClapO1L5ybWbbrMQTQ", + "name": "Top Tails", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pet Stores, Dog Walkers, Pets, Pet Services, Pet Sitting", + "hours": { + "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" + } + }, + { + "business_id": "xellD0NghW7cmmeIgjmEXA", + "name": "Suzani Restaurant", + "address": "1916 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0811093, + "longitude": -75.0382522, + "stars": 4.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Uzbek, Restaurants, Persian/Iranian, Modern European, Middle Eastern, Mediterranean, Russian", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "SwRwejZcoethTZunN6SACA", + "name": "Volume Hair Studio", + "address": "19 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9508755, + "longitude": -75.1453459, + "stars": 4.5, + "review_count": 220, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas, Skin Care", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "45WLhjZ42-_WL1FcDXErsQ", + "name": "Throwbaxx Bar & Grille", + "address": "6800 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0423138, + "longitude": -75.2265452, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "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}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "None", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Restaurants, Sandwiches, Bars, Pubs, Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "j2hzwWttoIQe-g__kTH2AQ", + "name": "24th Street Bar and Restaraunt", + "address": "795 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9697986, + "longitude": -75.1763008, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForDancing": "True", + "HasTV": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "False", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "OutdoorSeating": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'outdoor'" + }, + "categories": "Restaurants, American (Traditional), Beer Bar, Bars, Cocktail Bars, Nightlife", + "hours": { + "Monday": "14:0-21:0", + "Tuesday": "14:0-21:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "d2jeA_Zvohj3uLkFNeguxQ", + "name": "Furniture Mecca", + "address": "1430 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0168733, + "longitude": -75.1511873, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Rugs, Shopping, Home & Garden, Furniture Stores, Mattresses", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:30-18:30" + } + }, + { + "business_id": "1I_8yrXfkqXeTA9wtzE-eA", + "name": "Dong's Hardwood Floors", + "address": "4209 Malta St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0119765, + "longitude": -75.1086383, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Flooring, Home Services", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "NxDm2tuGHZMUCUbGNyJlpQ", + "name": "Fishbox", + "address": "737 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941633, + "longitude": -75.155119, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Couriers & Delivery Services, Local Services, Shipping Centers, Mailbox Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "0SGizd7Kg__usThreMJRLQ", + "name": "Supreme Nails", + "address": "3200 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080816, + "longitude": -74.9952, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "jqFQK9ERUEfsW8Y10XuIpA", + "name": "P'unk Avenue", + "address": "1168 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342984, + "longitude": -75.1582661, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Graphic Design, Professional Services, Web Design, Product Design", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "m2QC6syUBosOCBNTwpci7A", + "name": "Ultimo Coffee", + "address": "5901 Wayne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.033452, + "longitude": -75.181087, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': False}" + }, + "categories": "Food, Coffee & Tea, Coffee Roasteries", + "hours": { + "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": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "A-qwl6bSB-TEFzHF_i5lAQ", + "name": "South Philly Style Shoes", + "address": "2116 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9239332, + "longitude": -75.1700244, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Stores, Fashion, Shopping", + "hours": { + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "IVgqdMqFPjgadEVoPrWKtQ", + "name": "O'Reillys Pub", + "address": "2672 Coral St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.987043, + "longitude": -75.122782, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Pubs, Nightlife, Bars", + "hours": null + }, + { + "business_id": "SVyNizxTxoKSg2FuivsxqQ", + "name": "Free Library of Philadelphia - Falls of Schuylkill Branch", + "address": "3501 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.013904, + "longitude": -75.192311, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Libraries, Public Services & Government, Arts & Entertainment", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "xuC4UNdSvjZckNZFqOklkg", + "name": "Luther ribs", + "address": "4912 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0262339, + "longitude": -75.1330346, + "stars": 3.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Steakhouses, Barbeque", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "NbooU7y6Ctx8M4tmdlt47Q", + "name": "Maui's Dog House", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491834, + "longitude": -75.1647772, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Restaurants, Food, Hot Dogs", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "PHYsNpILKJkwrP1jKkZLCw", + "name": "Old London Style Pizza", + "address": "2047 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0103569283, + "longitude": -75.0790703454, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Delivery Services, Restaurants, Food, Pizza", + "hours": null + }, + { + "business_id": "wjM_MV5wAXaryDJ4QwL8zw", + "name": "Adja Hair Braiding", + "address": "4516 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9488448, + "longitude": -75.2135187, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "X_1PaKwj4GhqwZ9Fi22WRA", + "name": "Homewood Suites by Hilton University City Philadelphia, PA", + "address": "4109 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546572, + "longitude": -75.205593, + "stars": 3.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "BtxUZn4d7yxsHwdlRq1dkw", + "name": "Mount Airy Tap Room", + "address": "300 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0539009, + "longitude": -75.1941853, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Smoking": "u'no'", + "BYOB": "False", + "HasTV": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Breweries, Nightlife, Gastropubs, Bars, Food, Brewpubs, Beer Bar, Sandwiches, American (New), Restaurants, Pubs", + "hours": { + "Monday": "16:0-21:0", + "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": "12:0-21:0" + } + }, + { + "business_id": "rCXBILLkjEWQsNpsDo4oeQ", + "name": "Max Impact Carpet Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Rugs, Home & Garden, Local Services, Carpet Cleaning, Pets, Furniture Reupholstery, Damage Restoration, Home Cleaning, Professional Services, Home Services, Carpeting, Shopping, Tiling, Grout Services, Office Cleaning, Air Duct Cleaning, Pet Stores", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "NK0_YatQwVmIFJJyrdNNpQ", + "name": "The Study at University City", + "address": "20 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544058, + "longitude": -75.1900591, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "q-CEX2F1cs_AO8ToWXWRrw", + "name": "Holy Child Early Childhood Center", + "address": "240 Hermitage St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0328639, + "longitude": -75.227942, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Elementary Schools, Preschools, Education", + "hours": null + }, + { + "business_id": "DomjxCQ9noralgT1ybCFYg", + "name": "Planet Fitness", + "address": "2641 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.97597, + "longitude": -75.12122, + "stars": 3.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Beauty & Spas, Fitness & Instruction, Tanning, Trainers, Active Life, Gyms", + "hours": { + "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" + } + }, + { + "business_id": "SdzgdLRLPXb240bFxMgz5g", + "name": "Roman's Pizza", + "address": "6613 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.039176, + "longitude": -75.223424, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Delivery Services, Food, Pizza, Italian, Restaurants, Sandwiches, American (Traditional), Salad", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "L-43PIGGgYV6BoK-GaW4Vw", + "name": "Sonnys Cocktail Joint", + "address": "1508 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437655, + "longitude": -75.1676599, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Sandwiches, Restaurants, Nightlife, Cocktail Bars", + "hours": null + }, + { + "business_id": "l4AjbrjS91Z70AYQbABxvA", + "name": "Cafe Crema", + "address": "1205 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9339504, + "longitude": -75.1581469, + "stars": 4.0, + "review_count": 147, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "NoiseLevel": "'quiet'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False" + }, + "categories": "Cafes, Gelato, Restaurants, Bakeries, Food, Coffee & Tea, Desserts", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "JAwXfqM-coveEnxOpKhEvg", + "name": "Checkers", + "address": "2340 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9936635969, + "longitude": -75.0976981164, + "stars": 1.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Fast Food", + "hours": { + "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" + } + }, + { + "business_id": "QJxC8Bba6K94hf3pJ-gzeg", + "name": "Elliot Diamond, DPM", + "address": "123 Chestnut St, Ste 201, Philadelphia Podiatrist", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515957403, + "longitude": -75.1482009888, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Acupuncture, Health & Medical, Doctors, Podiatrists, Rehabilitation Center", + "hours": { + "Monday": "14:0-17:0", + "Tuesday": "7:0-12:0", + "Thursday": "14:0-17:0" + } + }, + { + "business_id": "KPPyh-vQI3IbbQJUcegBjg", + "name": "Dark Horse Pub", + "address": "421 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422776, + "longitude": -75.1450063, + "stars": 3.5, + "review_count": 99, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Caters": "True", + "WiFi": "u'free'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pubs, Restaurants, Bars, American (Traditional), Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "Wdg6eL02coEy1kmtsGdMaA", + "name": "7-Eleven", + "address": "2 Penn Center Plz", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9525539, + "longitude": -75.1672965, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Convenience Stores", + "hours": null + }, + { + "business_id": "lSR0JkU7iCnR7sP-8Gjkqw", + "name": "The Garden", + "address": "121 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9525531, + "longitude": -75.1397163, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "DogsAllowed": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "HasTV": "False", + "RestaurantsReservations": "True", + "BikeParking": "True", + "Smoking": "u'no'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "BYOB": "False", + "WheelchairAccessible": "True" + }, + "categories": "Cafes, Beer Gardens, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "M8jDdmyOu0HgAJ1iH14yfA", + "name": "Bon Bon Artisan Gelato", + "address": "229 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950384, + "longitude": -75.144691, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "OutdoorSeating": "True" + }, + "categories": "Desserts, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "cFtVkdtHZuZvCNvkSG-RAg", + "name": "Kurry Shack Francisville ", + "address": "1839 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9713152822, + "longitude": -75.1674203575, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Desserts, Gluten-Free, Food Delivery Services, Food, Vegan, Indian, Restaurants", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "MHldYtfAtcZJ88_45tNRyQ", + "name": "Mannino's Manayunk", + "address": "5154 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0183420327, + "longitude": -75.2111332855, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "LKtbjlUtlRlRCdGAXP00xQ", + "name": "Ginger Fox Photography", + "address": "1220 Buttonwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9609107, + "longitude": -75.1584827, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Photography, Event Planning & Services, Session Photography, Photographers", + "hours": null + }, + { + "business_id": "WVtg_Jx7OfJRdbnKzT2p4w", + "name": "Shot Tower Coffee", + "address": "542 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376078837, + "longitude": -75.1532106847, + "stars": 4.5, + "review_count": 122, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "jmgEQ7co9p5aV7l1EPbvBQ", + "name": "Fruit Salad Truck", + "address": "17th & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955008, + "longitude": -75.167989, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "0WoBBx-XzFD2wET6lJKVKw", + "name": "Lisa's Nail Salon", + "address": "6206 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.035667, + "longitude": -75.2177431, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "RXF1XwYuJbY3Ng0aoIovYA", + "name": "Pretty Photo", + "address": "911 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953709, + "longitude": -75.15522, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Photography Stores & Services", + "hours": null + }, + { + "business_id": "amgCBbemSn2b1zUOoUbjHA", + "name": "Green Soul", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074087, + "longitude": -75.2031841, + "stars": 4.0, + "review_count": 121, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Sandwiches, Salad, Food, Restaurants, Juice Bars & Smoothies", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "xiypSwxmQJ8p7qnYuky6Cg", + "name": "Markward Playground", + "address": "400 S Taney St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9488349281, + "longitude": -75.1819870528, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Playgrounds, Parks", + "hours": null + }, + { + "business_id": "oUtWwORqz6XAhDpAxE1IiQ", + "name": "Won Oriental Restaurant", + "address": "216 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535421, + "longitude": -75.202731, + "stars": 3.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "7xWZSRWBvtQI4-ZcUIpQFw", + "name": "Roxborough Laundromat", + "address": "6608 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0390943, + "longitude": -75.2239682, + "stars": 4.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services, Laundromat", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "-FrAoc8_01YaTiwc1zByOA", + "name": "Bright Common", + "address": "1425 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.973085, + "longitude": -75.138503, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Professional Services, Architects, Interior Design", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "8BfXofH792_mx-d-mqHD6w", + "name": "Doc's Union Pub", + "address": "1843 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9246324, + "longitude": -75.1499583, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'" + }, + "categories": "Bars, Restaurants, Pubs, Nightlife", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "6VD86MURqam8QhJSkzNV4A", + "name": "Adriatic Grill", + "address": "1835 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.980562, + "longitude": -75.153389, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "American (Traditional), Seafood, Fast Food, Sandwiches, Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0" + } + }, + { + "business_id": "8kpPGZlU428scAcEsThdKQ", + "name": "All Tech Automotive", + "address": "1302 S American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9315951, + "longitude": -75.1489386, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Entertainment, Oil Change Stations, Automotive, Auto Repair, Tires", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "VydwD9IzisAQ0EJcw6ExAw", + "name": "Long's Refrigeration", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9678186954, + "longitude": -75.1754615701, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Appliances & Repair, Local Services, Heating & Air Conditioning/HVAC", + "hours": null + }, + { + "business_id": "fU_PgV2qca4dEo2ZPmivPA", + "name": "Dump-N-Roll", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 173, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Food, Food Trucks, Caterers, Chinese, Asian Fusion, Restaurants, Japanese, Event Planning & Services, Italian, Steakhouses, Dim Sum, Street Vendors", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "Rk7WpAeDuEj85ULgWk3xhQ", + "name": "Manatawny Still Works", + "address": "1603 E Passyunk Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9296616, + "longitude": -75.1634617, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForDancing": "False", + "WheelchairAccessible": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "False", + "DogsAllowed": "True", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Food, Cocktail Bars, Shopping, Beer, Wine & Spirits, Distilleries, Bars, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "12:0-20:0", + "Saturday": "14:0-23:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "lc5XG2lUy9Me5Z3qc1hr1g", + "name": "Zen Skin Spa", + "address": "1007 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554814, + "longitude": -75.1561395, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Day Spas, Skin Care, Eyelash Service, Cosmetics & Beauty Supply, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "2AqEWqRbKhcY-30b9geCRQ", + "name": "Dunkin'", + "address": "117 South 16th Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505772, + "longitude": -75.1671469, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "6:0-19:0", + "Sunday": "6:0-19:0" + } + }, + { + "business_id": "ExusAIA__a3IBpX56fzQqw", + "name": "Dimmerman PC", + "address": "1835 Market St, Ste 2626", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536948, + "longitude": -75.1711447, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Personal Injury Law, Divorce & Family Law, General Litigation, Professional Services, Real Estate Law, Criminal Defense Law, Lawyers", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "lENcS1lVrbkCFnXet1LzOg", + "name": "Level 1 Fitness", + "address": "111 North 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524519, + "longitude": -75.1431484, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Fitness & Instruction, Trainers, Boot Camps, Sports Clubs, Active Life, Recreation Centers, Gyms, Health & Medical", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Lf8moegM3j7hz5Kf-sTnFg", + "name": "Rittenhound Dog Walking & Pet Sitting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504278388, + "longitude": -75.1722335815, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pets, Pet Services, Dog Walkers", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "eAm3CB3aM7RjOOqyBKG2Ag", + "name": "Sara's A-List Cleaners", + "address": "269 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464403, + "longitude": -75.1576277, + "stars": 4.5, + "review_count": 104, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Sewing & Alterations, Dry Cleaning, Laundry Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Mk3yEWIvcXrOp3zXIJ_SgA", + "name": "Castor Pediatrics", + "address": "6608 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.042357, + "longitude": -75.0750085, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "MN84SsRAbyYHYw60OR8FwA", + "name": "Farmstead Foods", + "address": "2551 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0012323, + "longitude": -75.076517, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "UfcbFrDXaLpjDh05rlc60g", + "name": "Bella Vista Beverage", + "address": "755 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403808, + "longitude": -75.1604664, + "stars": 3.5, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-21:0", + "Friday": "9:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "XpQz8LfaxU_-epzBZ48s9Q", + "name": "Archies's Restaurant", + "address": "1030 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9354969134, + "longitude": -75.154320095, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "UocjABfzi0iR671BQhsuSg", + "name": "Wang House", + "address": "6649 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.042846, + "longitude": -75.073719, + "stars": 4.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WiFi": "u'no'", + "BikeParking": "False", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "H7sj0yO8iVH8hI0mYQve5A", + "name": "Piazza Farmer's Market", + "address": "N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9629499, + "longitude": -75.140957, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food, Farmers Market", + "hours": null + }, + { + "business_id": "4MQpxMnXusrCkqKgvEZHXw", + "name": "Halal Food Truck", + "address": "6193 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.031943276, + "longitude": -75.2133928236, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Food Trucks, Food, Restaurants, Halal", + "hours": null + }, + { + "business_id": "ZZTJCY44LuvYqfafnUq1Nw", + "name": "Vapor Hut", + "address": "2550 Grant Ave, Ste 340", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Vape Shops, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "LgAuYz5cQe3zTxuteJ4VyQ", + "name": "Fuel Center City", + "address": "1225 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949130566, + "longitude": -75.1616937821, + "stars": 3.5, + "review_count": 432, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants, Cafes, Vegetarian", + "hours": { + "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-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "t-XXKWyHmcd1ioaxlaTv5g", + "name": "American Legion Penn Center Post 204", + "address": "3924 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552636, + "longitude": -75.2011037, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False" + }, + "categories": "Social Clubs, Arts & Entertainment, Local Services, Community Service/Non-Profit", + "hours": null + }, + { + "business_id": "WC7xFGH4hV7ImLI7I0V9mw", + "name": "International Bakery", + "address": "232 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9564551, + "longitude": -75.1558492, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "jijBFe_4hV4PTGuzgz4ZKQ", + "name": "Cultivaire Plant Store", + "address": "2732 W Girard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9741355, + "longitude": -75.181647, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Nurseries & Gardening, Shopping, Home & Garden", + "hours": null + }, + { + "business_id": "_xRXDraCnehWW4mpMsfP2A", + "name": "Dunkin'", + "address": "3216 N. Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0021959, + "longitude": -75.1531016, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "None" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:30-19:0", + "Tuesday": "4:30-19:0", + "Wednesday": "4:30-19:0", + "Thursday": "4:30-19:0", + "Friday": "4:30-19:0", + "Saturday": "4:30-19:0", + "Sunday": "4:30-19:0" + } + }, + { + "business_id": "X97OiYQQun8UpGxqRtgQCQ", + "name": "Chun Hing Restaurant", + "address": "4160 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0027576, + "longitude": -75.2135897, + "stars": 3.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Caters": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Noodles, Chinese, Soup, Food, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "dWy46lxhiTW1haOBtCj9fw", + "name": "Fienman Defense", + "address": "1608 Walnut St, Ste 900", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949521, + "longitude": -75.168082, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Criminal Defense Law, DUI Law, Professional Services, Lawyers", + "hours": { + "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" + } + }, + { + "business_id": "_IBAkhxgAn89aIdrXEoafg", + "name": "Air Done Right", + "address": "7715 Crittenden St, Ste 382", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072768, + "longitude": -75.195099, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Heating & Air Conditioning/HVAC, Home Services, Contractors", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "kC2jUMTWt0v_cSWKa63QQA", + "name": "Fink's", + "address": "4633 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0286011, + "longitude": -75.038928, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Sandwiches, Food, Delis, Restaurants", + "hours": { + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "y0mIE14r7fvOmXzTesiYmw", + "name": "Trek Bicycle Philadelphia Manayunk", + "address": "4159 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023506, + "longitude": -75.219628, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bike Rentals, Sporting Goods, Mountain Biking, Active Life, Bikes, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "9zD3rIBuyiKgz-sUoNJ00g", + "name": "Smooth Moving Pros", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "PkeGb4MKT2nBi_6w73pa6w", + "name": "The Juice Merchant", + "address": "4330 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0251321, + "longitude": -75.2231982, + "stars": 3.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Juice Bars & Smoothies, Vegan, Salad, Food, Sandwiches", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "GXhExRdP5UUDhoxTRWQfcw", + "name": "Lee's Chinese Restaurant", + "address": "9226 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0646797, + "longitude": -75.0210396, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "3W7Oksfp62Ka1KPizI6H5Q", + "name": "Northeast Beer", + "address": "7324 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0529126, + "longitude": -75.0649704, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": null + }, + { + "business_id": "xKyIOJsQdB387ESxUJhWxw", + "name": "Rittenhouse 1715", + "address": "1715 Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484448, + "longitude": -75.1700653, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services, Bed & Breakfast", + "hours": { + "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" + } + }, + { + "business_id": "qPBf1UrJeuMNy2EvBlGThg", + "name": "Hot Nails", + "address": "124 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948392, + "longitude": -75.152695, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-18:30" + } + }, + { + "business_id": "OOVV2JjUjkZUlsEh7q5DCQ", + "name": "Kelly Drive", + "address": "10 Kelly Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.969295957, + "longitude": -75.1847901312, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Local Flavor, Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "bNAT7mJmjQrTNPFEWDro1Q", + "name": "Five Sisters Ice Cream and Sweets", + "address": "1949 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9798433, + "longitude": -75.1331384, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'" + }, + "categories": "Middle Eastern, Food, Ice Cream & Frozen Yogurt, Desserts, Restaurants", + "hours": null + }, + { + "business_id": "9-ZArBggQRzQTg9Mc4uoIw", + "name": "Sadek and Cooper Law Offices", + "address": "1315 Walnut St, Ste 502", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94918, + "longitude": -75.162809, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Divorce & Family Law, Business Law, Real Estate Law, Lawyers, Bankruptcy Law, Professional Services, Tax Law", + "hours": { + "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" + } + }, + { + "business_id": "K2rMB58Z1onV0l47qYnAKw", + "name": "Angelo's Marble and Granite", + "address": "2500 Ellsworth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9389647, + "longitude": -75.1856137, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Countertop Installation, Shopping, Home Services, Building Supplies, Contractors, Kitchen & Bath, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "20:0-23:0" + } + }, + { + "business_id": "yarSpN2HNFH8eAE_eb2Lgw", + "name": "Shamrock Pub", + "address": "1400 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302463, + "longitude": -75.1482759, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": null + }, + { + "business_id": "u6d3yxe7hns5veswWcSdXA", + "name": "Triple Bottom Brewing", + "address": "915 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962137, + "longitude": -75.153399, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Breweries", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "VN_ZDpbJ3R6F-xOJ-ndr6Q", + "name": "Saqqara Cafe", + "address": "1356 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9434957, + "longitude": -75.1650867, + "stars": 3.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False" + }, + "categories": "Hookah Bars, Bars, Nightlife, Food, Cafes, Restaurants, Middle Eastern, Coffee & Tea", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-3:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "ddP7ISSxIhqsyzfx5hGB0w", + "name": "Joshua House Apartments", + "address": "2607 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0678581281, + "longitude": -75.0286968427, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "VYKLHUndDOo-O1R1eZ0qSg", + "name": "Daniel Mele, D.M.D", + "address": "40 W Evergreen Ave, Ste 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0754252, + "longitude": -75.2082497, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "8:0-20:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "ItX4pzCynRB3s_toSaT5QQ", + "name": "US Post Office", + "address": "1234 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951662, + "longitude": -75.160977, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Post Offices, Shipping Centers, Public Services & Government", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "P5puexbwvEzaKV7cAdWxeQ", + "name": "Mavis Discount Tire", + "address": "6301 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0273433274, + "longitude": -75.0592911243, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-20:30", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "2JJO0xpG5J93Ic8top5luQ", + "name": "Diablo's Pizzas", + "address": "34 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9686538, + "longitude": -75.1359472, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "Caters": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Pizza, Tacos, Mexican, Chicken Wings", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0" + } + }, + { + "business_id": "TscQPQs3PfumGLq6KEoRmA", + "name": "Spak Group", + "address": "5020 Pentridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.946513, + "longitude": -75.222813, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Services, Real Estate Agents, Real Estate, Home Services, Property Management, Apartments", + "hours": null + }, + { + "business_id": "LkasU7-347mpSm3erAQHyA", + "name": "Walnut Street Cafe", + "address": "2929 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9522079227, + "longitude": -75.183563153, + "stars": 3.5, + "review_count": 253, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': True, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "CoatCheck": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "False", + "Music": "{u'dj': False, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Wine Bars, American (Traditional), Nightlife, Restaurants, Bars, Cafes, American (New)", + "hours": { + "Tuesday": "11:30-20:0", + "Wednesday": "11:30-20:0", + "Thursday": "11:30-20:0", + "Friday": "11:30-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Z4Bg-Z-_ld2onuMdbOvv6A", + "name": "Dunkin'", + "address": "329 Spring Garden", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614268, + "longitude": -75.144403, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "DriveThru": "None" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "6:0-17:0", + "Sunday": "6:0-17:0" + } + }, + { + "business_id": "BHOAydya5hkpHVlcmHo_xA", + "name": "Quaker Diner", + "address": "7241 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0605583, + "longitude": -75.0844072, + "stars": 3.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': True}" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "EzrG51vVwwaIrFt8Q5o2Gg", + "name": "Blaze Pizza", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9573344402, + "longitude": -75.1915253645, + "stars": 4.0, + "review_count": 126, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "Caters": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Pizza, Gluten-Free, Fast Food, Restaurants, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "BHVsvLOJ81zTsPP2XMy3zQ", + "name": "Flawless Finish Artistry", + "address": "1534 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.911405, + "longitude": -75.17524, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Makeup Artists, Hair Stylists, Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "L7R7CGnHw2jlAw2MMRUQow", + "name": "Brick House Pizza & Restaurant", + "address": "3332 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.068067, + "longitude": -75.006396, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:59", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "xI_IeVoVXLcXv77Yt7mY9g", + "name": "Krakus Market", + "address": "3150 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.983154, + "longitude": -75.102457, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "HasTV": "True" + }, + "categories": "Restaurants, Delis, Polish", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "Pdz_XHdrQDRtcbDNocaL9A", + "name": "H&R Block", + "address": "922 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951075685, + "longitude": -75.1560933963, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Tax Services, Financial Services, Accountants, Professional Services, Financial Advising", + "hours": { + "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-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "_f6Nt2ANNIkemPuA_QnsmA", + "name": "PrimoHoagies", + "address": "2417 Welsh Rd, Ste 12", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0718679468, + "longitude": -75.0304493308, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Sandwiches, Italian", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "LxdhZeAfCW8eAbSjwPv0JQ", + "name": "Don's Dental", + "address": "6829 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0452149, + "longitude": -75.071395, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:30-16:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "xW0SIKSv4igdkz78KYLIZg", + "name": "Hot Pot Cuisine", + "address": "4234 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0188931, + "longitude": -75.1560202, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "WiFi": "'free'", + "OutdoorSeating": "None", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "GSw55M0Aq9D_78Ot8J51BQ", + "name": "Delicias", + "address": "526 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941934, + "longitude": -75.149329, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "False" + }, + "categories": "Spanish, Seafood, Latin American, Restaurants, Vegetarian, Salad", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "WEirCDpQAg2Fe5Qkl8cmFg", + "name": "La Guerrerense", + "address": "1143 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350819, + "longitude": -75.1585329, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": null + }, + { + "business_id": "F9cYW9x0BTqWowB6v31oXw", + "name": "Industrious Avenue of the Arts", + "address": "230 South Broad St, 17th Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484263, + "longitude": -75.1652545, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Shared Office Spaces", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-14:0", + "Wednesday": "8:30-14:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "yLFglYm8SBX05KIdFGuFbQ", + "name": "Foreign Auto Hospital", + "address": "100 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.112223, + "longitude": -75.0485658, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "Pc1I2FSLx-ci57ejlJPZRg", + "name": "Mighty Bread Company", + "address": "1211 Gerritt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9322098, + "longitude": -75.164839, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Specialty Schools, Cooking Schools, Desserts, Education, Food, Bakeries", + "hours": { + "Monday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "11uo3yawm_d1DWCCMpM1tw", + "name": "Barrel's Fine Food", + "address": "1725 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9228596, + "longitude": -75.1759474, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:45", + "Saturday": "11:0-21:45" + } + }, + { + "business_id": "OaTNoQOXH6JW4lK9pITYGg", + "name": "Munk & Nunn", + "address": "4382 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256739, + "longitude": -75.2244545, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'casual': True}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Greek", + "hours": null + }, + { + "business_id": "rXtCbAdbixJbk23uwXcCmg", + "name": "Sin City Ultra Club", + "address": "6130 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9171320225, + "longitude": -75.2119935023, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Strip Clubs, Nightlife, Club Crawl, Adult Entertainment", + "hours": { + "Monday": "17:0-3:0", + "Tuesday": "17:0-3:0", + "Wednesday": "17:0-3:0", + "Thursday": "17:0-3:0", + "Friday": "17:0-3:0", + "Saturday": "17:0-3:0", + "Sunday": "17:0-3:0" + } + }, + { + "business_id": "DgF4_72z6UkiGxtPnSJCfg", + "name": "Rabbit Hole Cafe", + "address": "800 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631059, + "longitude": -75.1411268, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "HappyHour": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "HasTV": "False" + }, + "categories": "Cafes, Restaurants, Food, Coffee & Tea, Bubble Tea, Shaved Ice", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "DXZ1v8Kqr_fB9knSByVKrw", + "name": "Gucci Roofing", + "address": "10212 Woburn Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.079156, + "longitude": -74.9947773, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Windows Installation, Roofing, Siding, Home Services, Real Estate, Commercial Real Estate, Gutter Services", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "v_LOlXjMbIwqUbK96Nj14w", + "name": "Ted's Montana Grill", + "address": "260 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9466081, + "longitude": -75.1651048, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "D6ITIj1MwI1aZP0X-DceqA", + "name": "Forrest Theatre", + "address": "1114 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948586, + "longitude": -75.1595544, + "stars": 3.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Cinema, Performing Arts, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Sunday": "0:15-0:30" + } + }, + { + "business_id": "CVK8ENkVyoxfIHdrupIc2A", + "name": "Moctezuma Restaurant", + "address": "1108 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9359818, + "longitude": -75.158665, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "HJzg9b6lTivOIKJRv3Q_GA", + "name": "Christmas Village In Philadelphia", + "address": "1500 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953661, + "longitude": -75.165097, + "stars": 3.5, + "review_count": 140, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Home Decor, Shopping, Arts & Entertainment, Flowers & Gifts, Venues & Event Spaces, Home & Garden, Arts & Crafts, Event Planning & Services, Party Supplies, Gift Shops, Accessories, Festivals, Fashion", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "DJk8xrCvpN9MmG6mQbn0lQ", + "name": "New Century Travel", + "address": "55 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953175, + "longitude": -75.157882, + "stars": 3.0, + "review_count": 59, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Transportation", + "hours": null + }, + { + "business_id": "otNLgiQCkEzyA9ThokH_7g", + "name": "John Anthony Hair Styling For Men", + "address": "1600 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929506, + "longitude": -75.1618529, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "UZcmazUpa0BBBzJ6dfueEQ", + "name": "A's Pizza", + "address": "7100 Edmund St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0268758, + "longitude": -75.0375563, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "t__uhj_OeSyWKQ4RLXIraA", + "name": "Hendrix Vision Center", + "address": "11685 Bustleton Ave, Ste 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1183233, + "longitude": -75.017623, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical, Eyewear & Opticians, Ophthalmologists, Doctors, Shopping", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "FbMWMAcJz0bzK3dizVNb-A", + "name": "Sweet As Fudge Candy Shoppe", + "address": "12th & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539394, + "longitude": -75.1594308, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Specialty Food, Candy Stores, Food, Chocolatiers & Shops, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "-FSNRWP_3twzsH-qliHcZQ", + "name": "Starbucks", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957031, + "longitude": -75.191356, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "f1E17mHo-hC0iLw7Bgtp2g", + "name": "Philly Cleaning Pros", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Home Services, Office Cleaning, Carpet Cleaning, Local Services, Professional Services", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "B2HjQWqb-u9DvZE9N4nCqw", + "name": "Dave's Salon and Barber Shop", + "address": "47 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492033, + "longitude": -75.1473875, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "GoodForKids": "True" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "yHF4IJeFnmnVwlfkO1RZQA", + "name": "Mexibike", + "address": "1139 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935319, + "longitude": -75.1584713, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Bike Repair/Maintenance, Bikes, Local Services, Bike Rentals, Active Life, Shopping, Sporting Goods", + "hours": { + "Monday": "13:0-20:30", + "Tuesday": "13:0-20:30", + "Wednesday": "13:0-17:30", + "Thursday": "13:0-20:30", + "Friday": "13:0-20:30", + "Saturday": "13:0-20:30" + } + }, + { + "business_id": "i5ou_YMyPOvthL-v5t3MyQ", + "name": "Checkers", + "address": "4813-23 Lancaster Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9732217, + "longitude": -75.2180736, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "10:0-4:0", + "Tuesday": "10:0-4:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-5:0", + "Saturday": "10:0-5:0", + "Sunday": "10:0-4:0" + } + }, + { + "business_id": "D4Z4Wun4iYG2C4AgVkarag", + "name": "T&N HomeMade Kitchen", + "address": "1820 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9143957, + "longitude": -75.1781475, + "stars": 4.0, + "review_count": 83, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "NoiseLevel": "'average'", + "HasTV": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Sandwiches, Caterers, Restaurants, Breakfast & Brunch, Fast Food, Delis, Event Planning & Services, Italian", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "7mlVa9-CgYL_M6moJXLCfQ", + "name": "Venturef0rth", + "address": "417 N 8th St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9590819, + "longitude": -75.1515932, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Marketing, Event Planning & Services, Professional Services, Shared Office Spaces, Home Services, Real Estate, Local Flavor, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "dfoptDebFhEZCZwFxuZ6_w", + "name": "Somerset Splits", + "address": "2600 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9805573775, + "longitude": -75.1131156832, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "nfs-_MV9_9sM8uhFEppjfg", + "name": "Daniels HVAC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0542169, + "longitude": -75.1603752, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Plumbing, Electricians, Home Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "S9_8MQFIsLhX9HBIoUIh_w", + "name": "5th Street Lounge", + "address": "5929 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0417969, + "longitude": -75.1291049, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Lounges, Nightlife, Bars, Cocktail Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "RoUP3lcY4wEtdASLNIcmSw", + "name": "Water Works Restaurant & Lounge", + "address": "640 Waterworks Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687665251, + "longitude": -75.1836919785, + "stars": 3.0, + "review_count": 150, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Corkage": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "HasTV": "False", + "BYOBCorkage": "'yes_corkage'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Seafood, Mediterranean, American (New), Breakfast & Brunch, Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "iiAcJGb2RJEAF1ssvbMh7g", + "name": "Pretzel Park Farmers Market", + "address": "4300 Silverwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255502, + "longitude": -75.2210708, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Farmers Market", + "hours": { + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "-trR0p3U6i4MEzj0MwpQ6A", + "name": "Rosa Photo & Fingerprinting", + "address": "420 North 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9599111004, + "longitude": -75.1651004015, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Photographers, Translation Services, Notaries, Professional Services, Event Planning & Services, Fingerprinting, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-15:30", + "Friday": "8:0-17:0", + "Saturday": "12:0-17:0" + } + }, + { + "business_id": "XwJVx2d8wuWyyhehlcErDA", + "name": "Club 27", + "address": "27 S Bank St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948918, + "longitude": -75.144979, + "stars": 2.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'" + }, + "categories": "Dance Clubs, Nightlife", + "hours": null + }, + { + "business_id": "QtGyR20LDmhjhpMFrrswFw", + "name": "Temple Orthopedic & Sports Medicine", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1012088804, + "longitude": -75.0080156287, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Orthopedists, Sports Medicine, Health & Medical", + "hours": null + }, + { + "business_id": "fGrMJ-dPxk-fZdbxT8b69A", + "name": "East Girard Cleaners", + "address": "221 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9694736, + "longitude": -75.1332061, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services, Sewing & Alterations", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "oXw9R3-fdgAzv0K6d35lkA", + "name": "QU JAPAN BISTRO & BAR", + "address": "1635 Market St, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953712, + "longitude": -75.168052, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "Caters": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': None}", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "HasTV": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Smoking": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BYOB": "False" + }, + "categories": "Ramen, Japanese, Nightlife, Restaurants, Beer, Wine & Spirits, Food, Cocktail Bars, Sushi Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "13:0-22:30" + } + }, + { + "business_id": "LaNTydbNkpZexx14Jd1Nzg", + "name": "Jd's Barber Shop", + "address": "3300 Aldine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0404299, + "longitude": -75.0425915, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "CR7A7uxsq46VbjqwMZeObA", + "name": "Elfreths Alley Museum", + "address": "126 Elfreth's Aly", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9527089, + "longitude": -75.1424869, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "UOv2_2Mf9NjVvjmwQuK5qA", + "name": "Lil Lina's Slices & Scoops", + "address": "2513 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9812557819, + "longitude": -75.1232787037, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Salad, Food, Ice Cream & Frozen Yogurt, Pizza", + "hours": { + "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", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "AzgU5eQmzYK2Qan4Tm3uiw", + "name": "Perfect Touch Auto Repair", + "address": "2101 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9823165, + "longitude": -75.1364893, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Parts & Supplies, Automotive, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "h2Xj9MEYcffZi8h8A-SRgg", + "name": "Ploome Pilates", + "address": "1040 N American St, Ste 1001", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672681, + "longitude": -75.1409028, + "stars": 5.0, + "review_count": 54, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barre Classes, Fitness & Instruction, Gyms, Active Life, Cardio Classes, Pilates, Yoga, Trainers", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-20:0", + "Sunday": "6:0-20:0" + } + }, + { + "business_id": "_zDW4XPZ9w0Yvg6cbSeffQ", + "name": "Maulana's Cafe", + "address": "4700 Wissahickon Ave, Bldg Q", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0155545, + "longitude": -75.1728699, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Cafes", + "hours": null + }, + { + "business_id": "g-cP3MZdhcLNCCmNEESpKg", + "name": "Gentlemen's Touch Cutting and Styling", + "address": "2851 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0570801, + "longitude": -75.0306875, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "7:0-16:30" + } + }, + { + "business_id": "tvWOM-OCBbhWisUt3E6ytA", + "name": "Pediatric Dental Team", + "address": "2010 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9251237159, + "longitude": -75.1685149, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists, Pediatric Dentists, Orthodontists", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "6tgrhfz8XsTH2ItEShoohA", + "name": "Starbucks", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.875945, + "longitude": -75.242743, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "None", + "DogsAllowed": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "6:0-14:0", + "Tuesday": "6:0-14:0", + "Wednesday": "6:0-14:0", + "Thursday": "6:0-14:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-14:0", + "Sunday": "6:0-14:0" + } + }, + { + "business_id": "PNUlEKpol0VjT7rjXa10_w", + "name": "Nicole Dominican Beauty Salon and Spa", + "address": "5009 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0294194, + "longitude": -75.1465921, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30" + } + }, + { + "business_id": "uxPKXkQXVptsahM9-uKaaw", + "name": "Walgreens", + "address": "1800 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9443069, + "longitude": -75.1721818, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Beauty & Spas, Food, Photography Stores & Services, Drugstores, Convenience Stores, Cosmetics & Beauty Supply", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "Iippi8QXGvHycSGaaeQThg", + "name": "Tildie's Toy Box", + "address": "1829 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9270344, + "longitude": -75.1664564, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Toy Stores, Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-14:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "XTQWHOY2W2AhWuL0VakAgg", + "name": "Ryan's Pub", + "address": "4301 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0249636228, + "longitude": -75.2218963578, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "RestaurantsTakeOut": "None", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForKids": "None", + "Smoking": "u'outdoor'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Irish Pub, Pubs, Nightlife, Restaurants", + "hours": { + "Wednesday": "16:0-0:0", + "Thursday": "20:0-2:0", + "Friday": "16:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "93sFzeimmZU5CFluTazIaw", + "name": "Monk Seafood", + "address": "5018 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0278198, + "longitude": -75.1327267, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False", + "BYOB": "False", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "HasTV": "False", + "Corkage": "False", + "Alcohol": "u'none'" + }, + "categories": "Seafood Markets, Restaurants, Food, Seafood, Specialty Food, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-21:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-19:30", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "lsDw9DHpC2XADe5rvxrRQQ", + "name": "Airis Roll & Rice", + "address": "8 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950475645, + "longitude": -75.1456904411, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "GoodForKids": "True" + }, + "categories": "Poke, Japanese, Sushi Bars, Food, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "hA74tGz6pYD7IxOxL9NfzA", + "name": "Honey Restaurant", + "address": "618 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950749, + "longitude": -75.15146, + "stars": 2.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food Delivery Services, Restaurants, Food, Event Planning & Services, American (Traditional), Caterers", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "PxG1rLAfbvtoAWrsq5Rhog", + "name": "Center City Pretzel Co", + "address": "816 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9359328, + "longitude": -75.1575251, + "stars": 4.5, + "review_count": 140, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True" + }, + "categories": "Bakeries, Food, Pretzels", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-11:0", + "Wednesday": "6:0-11:0", + "Thursday": "6:0-11:0", + "Friday": "6:0-11:0", + "Saturday": "6:0-10:0" + } + }, + { + "business_id": "IZIS2BYNDD9VDB2p5a35dw", + "name": "Colonial Cava Marble & Granite", + "address": "2000 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938786, + "longitude": -75.176811, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Masonry/Concrete, Shopping, Flooring, Interior Design, Home Services, Kitchen & Bath, Contractors", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "W-RVZSGas8B26O-kx5MD3A", + "name": "Osaka Japanese Restaurant", + "address": "8605 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0768634, + "longitude": -75.2074063, + "stars": 4.0, + "review_count": 178, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BikeParking": "True" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "ZSsXld7GD5pahxHB3HG4GA", + "name": "High Tech Automotive", + "address": "7507 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0659973, + "longitude": -75.0834948, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "ma_wImjFvkKpUPrfChZkLA", + "name": "Cedar Street Barbell Club", + "address": "2860 Memphis St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985219, + "longitude": -75.1144255, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Active Life, Fitness & Instruction, Gyms, Trainers", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "mR-zdKpv2UVr94lRglEu2w", + "name": "Eagle Bar", + "address": "3653 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0089586, + "longitude": -75.1504451, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Nightlife, Bars, Restaurants", + "hours": null + }, + { + "business_id": "v7p5tXAdbk9b2HTPY3uB1w", + "name": "HSBC Bank", + "address": "1027 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539778, + "longitude": -75.1575479, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "0-tNITJZLzSARsR_rtkgvw", + "name": "Mavis Discount Tire", + "address": "3755 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9952091551, + "longitude": -75.092086494, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Tires, Oil Change Stations, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-20:30", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Jj4TRoceBE0dNpS1rKHAyg", + "name": "Revolutions at Penn Treaty", + "address": "1009 Canal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9649463654, + "longitude": -75.1349523511, + "stars": 2.5, + "review_count": 83, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "WiFi": "'free'", + "HappyHour": "True", + "Smoking": "u'no'" + }, + "categories": "Active Life, Bowling, Bars, Nightlife, Arts & Entertainment, Arcades, Restaurants, American (Traditional), Sports Bars", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "BLdx9HaexMj6UXnGNaD9hA", + "name": "South Square Paint & Hardware", + "address": "2235 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944893, + "longitude": -75.179912, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hardware Stores, Home Services, Keys & Locksmiths, Home & Garden, Shopping, Paint Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "eDbULfWrlrmdkyy_VKvzgg", + "name": "Bobby Schorr's", + "address": "422 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942532, + "longitude": -75.1456067, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Dry Cleaning, Sewing & Alterations", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "Ezv9L84ZSjtjxpLUKkIE0A", + "name": "J & C Sunoco", + "address": "12291 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0956356, + "longitude": -74.9769731, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Gas Stations", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "UfS8yZKnqNCRR6zxvityMQ", + "name": "Stephanie Saracini - RE/MAX ONE Realty", + "address": "1842 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9266977, + "longitude": -75.1674205, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Services, Real Estate, Real Estate Agents, Home Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "16vIo7ReRv8U-vLFmJqolg", + "name": "Four Seasons Cleaners", + "address": "48 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952157, + "longitude": -75.171972, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sewing & Alterations, Local Services, Laundry Services, Dry Cleaning & Laundry, Dry Cleaning", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "G1q1IeNbiRJL5bReBLFdzQ", + "name": "Mercer Cafe", + "address": "2619 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9864461, + "longitude": -75.1006826, + "stars": 4.0, + "review_count": 90, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Pizza, Sandwiches, American (New), Cafes", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "LJk9GA_C5zj-VgGCTTp5zw", + "name": "O & R Glass Repairs", + "address": "3628 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0067936, + "longitude": -75.1371022, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Glass & Mirrors, Contractors, Door Sales/Installation, Windows Installation", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "C0ZxJF8o_CEDKtpRQ5kGTw", + "name": "Todds Towing", + "address": "5300 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0404753, + "longitude": -75.2438269, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Towing", + "hours": { + "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" + } + }, + { + "business_id": "TN4i2C_5DXxYmAA8Zt2Bdg", + "name": "McClain Bros", + "address": "2635 S Percy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9163849, + "longitude": -75.1632323, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Web Design, Plumbing, Professional Services, Water Heater Installation/Repair, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "DAbpxhhHOxInDNLdvWrTTQ", + "name": "Smile Cafe", + "address": "105 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521517, + "longitude": -75.1768973, + "stars": 4.0, + "review_count": 303, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BYOB": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Corkage": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Noodles, Thai, Restaurants, Salad", + "hours": { + "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": "17:0-22:0" + } + }, + { + "business_id": "Kap3gxlPeVEWaVyCYgyUgw", + "name": "Zulyka Restaurant and Bakery", + "address": "136 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9594938, + "longitude": -75.2415367, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Caribbean, Bakeries, Restaurants, Haitian, Food", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "-5Rah4ZvWsDu4oilUZxhtw", + "name": "World Cafe Live", + "address": "3025 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9520744759, + "longitude": -75.1851766256, + "stars": 4.0, + "review_count": 350, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "GoodForKids": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "False", + "GoodForDancing": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "HappyHour": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "False", + "CoatCheck": "True" + }, + "categories": "Nightlife, Arts & Entertainment, Restaurants, Music Venues, American (New), Bars, Jazz & Blues", + "hours": { + "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": "10:0-22:0" + } + }, + { + "business_id": "ToabDnA0weGn7M-x7ljGnw", + "name": "The Parking Spot", + "address": "7601 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8995729451, + "longitude": -75.2279456254, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Hotels & Travel, Parking, Transportation, Airport Shuttles", + "hours": { + "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" + } + }, + { + "business_id": "im_zPCUFisTElWND32Ka8A", + "name": "Beauty Recipe Wellness Salon Spa", + "address": "6437 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.050515, + "longitude": -75.094192, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas, Tattoo, Skin Care, Day Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "gYufeBwyhEHV7l2mkEaxtg", + "name": "Bagel Bagel", + "address": "1600 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9272959914, + "longitude": -75.1453870162, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Bagels", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "7:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "-Is2hkDjuguxmahjh8Spjw", + "name": "KC's Car Wash", + "address": "7539 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.979355, + "longitude": -75.268067, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Car Wash, Auto Detailing", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "1FliMoYQnq72HRxEIPY0_A", + "name": "Subway", + "address": "801 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9534075108, + "longitude": -75.1536959659, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Sandwiches, Fast Food", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-16:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "BCAeju4OGjYbIok7DNNcjw", + "name": "Supreme Oasis Bakery & Deli-Philly", + "address": "4401 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9692521, + "longitude": -75.2116916, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "HasTV": "False", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Soul Food, American (New)", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "yvdAiv-eNOxlw6kRq5_HEg", + "name": "E-z Rent-a-car", + "address": "1 Scott Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8743959, + "longitude": -75.2424229, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "7qTmmwQvJqZWEjJZUFyY6A", + "name": "Mitchum Wilson Funeral Home", + "address": "1412 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9336961, + "longitude": -75.1777257, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": null + }, + { + "business_id": "F-QvJFjFPcFsTLWzrFywRQ", + "name": "Bruce Slemmer Blonde Specialist", + "address": "47 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492033, + "longitude": -75.1473875, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons, Blow Dry/Out Services", + "hours": { + "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" + } + }, + { + "business_id": "dMjsYCAwxkA6nhdsPBvhsQ", + "name": "Lax Clippers", + "address": "2039 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922311996, + "longitude": -75.1527238637, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Men's Hair Salons, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "CsZJYRcHFzkhqGBBnoIKaA", + "name": "Sue's Produce Market", + "address": "114 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512371, + "longitude": -75.1707037, + "stars": 4.5, + "review_count": 119, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Specialty Food, Grocery, Fruits & Veggies", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "7:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "7WD63dyoVXKdCFb9ly5EhA", + "name": "DoubleTree by Hilton Hotel Philadelphia Airport", + "address": "4509 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8889615, + "longitude": -75.2325572, + "stars": 2.5, + "review_count": 146, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "1iE5POC7JT8fKs2tZ-CJnA", + "name": "Wawa", + "address": "1038 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533758716, + "longitude": -75.1577233755, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Convenience Stores, Delis, Food, Restaurants", + "hours": null + }, + { + "business_id": "vFDCP9D0UYsnqBw57Mp8DQ", + "name": "Drexel Center for Women's Health", + "address": "219 N Broad St, Fl 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9567897, + "longitude": -75.1625084, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Medical Centers, Doctors", + "hours": null + }, + { + "business_id": "0nwOwZGlB4v6XfuPLd-HWA", + "name": "Pizza Rustica", + "address": "3602 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9545061, + "longitude": -75.1947435, + "stars": 2.5, + "review_count": 128, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "HasTV": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "dyuJT1kr1UlojGwPX70w1A", + "name": "Johnny Goodtimes", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9396284, + "longitude": -75.1866396, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False" + }, + "categories": "Event Planning & Services, Arts & Entertainment", + "hours": null + }, + { + "business_id": "TFbTZyxS6wN469IyN4BCRQ", + "name": "Golden Crust Pizza III", + "address": "3732 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.009208, + "longitude": -75.1936719, + "stars": 2.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'paid'", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "Ptu4RUf3xsFMQhZ6s9d_Jw", + "name": "Berk A & M Tax Service", + "address": "1505 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629305, + "longitude": -75.1632753, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Accountants", + "hours": null + }, + { + "business_id": "sWQT-pneaa7biBbIC26eVQ", + "name": "ABC Nanny Source - A Philadelphia Nanny Agency", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nanny Services, Local Services, Home Services, Child Care & Day Care", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "TP9cWd0vRUZtXCbyts3b6g", + "name": "VWC Nails", + "address": "2020 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9127368, + "longitude": -75.1828536, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "1ZgE6rlUr2YD697vFjVoQg", + "name": "Gearo's", + "address": "1913 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0820736, + "longitude": -75.0372482, + "stars": 3.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Italian, Restaurants, Sandwiches, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "0Qea74cLG3aZNCWC5L_6jA", + "name": "Bebe's Barbecue", + "address": "1017 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9371811, + "longitude": -75.158225, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Food, Barbeque", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "fOwHOKYxvgeYDaSKDEBKDA", + "name": "Pond Lehocky", + "address": "2005 Market St, Fl 18", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9541840185, + "longitude": -75.1746907288, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Personal Injury Law, Lawyers, Social Security Law, General Litigation, Workers Compensation Law, Professional Services, Disability Law, Legal Services, Employment Law", + "hours": null + }, + { + "business_id": "l4lBlwQSWYt0z19MnukCHA", + "name": "The Event Studio", + "address": "7709 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0681469, + "longitude": -75.197429, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Party & Event Planning, Flowers & Gifts, Venues & Event Spaces, Shopping, Event Planning & Services, Florists", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0" + } + }, + { + "business_id": "hoyRkF8LNDylctjM8ZUKyA", + "name": "Tower Investments Inc", + "address": "817 N 3rd St, Ste 2A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9672404, + "longitude": -75.1400212, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Property Management, Home Services, Apartments", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "nmT6X4V47hERBPqQU-n1Zg", + "name": "The Beer Garden", + "address": "Reading Terminal Market, 1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538018, + "longitude": -75.158459, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "qGiHlPHKvIRFd5dl3C88yQ", + "name": "Blinebury Design", + "address": "2027 E Sergeant St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9856567, + "longitude": -75.1260145, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Web Design, Graphic Design, Professional Services", + "hours": null + }, + { + "business_id": "yr3zZAhrSUwBb135uLb6Yw", + "name": "Villa Fresh Italian Kitchen", + "address": "8500 Essington Ave, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8744888285, + "longitude": -75.2471410745, + "stars": 2.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": null + }, + { + "business_id": "HpFEBBqIQOo5QdBTVZ3FyA", + "name": "Azuka Theatre", + "address": "302 S Hicks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9471795, + "longitude": -75.1670282, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "NRcVU0DW2OGaXrmXpBtLzg", + "name": "Cafe Nhu Quynh", + "address": "5520 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0355248, + "longitude": -75.1003312, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Vietnamese, Bubble Tea, Restaurants, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "Z6ksQ8Hwlb44vC0M2MThXw", + "name": "DetailXPerts", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9759847, + "longitude": -75.2537397, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Detailing, Car Dealers, Car Wash", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "KU3Elc91d2M3tkzcDN5tAA", + "name": "Exit Skate Shop", + "address": "825 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9636227929, + "longitude": -75.14049, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Men's Clothing, Sporting Goods, Shopping, Skate Shops", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "28IblvkeYgdqa7Wzbv030g", + "name": "Fine Wine & Good Spirits", + "address": "1237 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933681, + "longitude": -75.1617889, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "ntiIq1FNqduOyyowMFGh5A", + "name": "Nan Zhou Hand Drawn Noodle House", + "address": "1022 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554005671, + "longitude": -75.1569010986, + "stars": 4.0, + "review_count": 2188, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "Caters": "False", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'none'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Noodles, Ethnic Food, Chinese, Comfort Food, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "nUpoI2WXmhGcFr59nCbKkA", + "name": "Philly Appliance Services", + "address": "479 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959891, + "longitude": -75.1431911, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Appliances & Repair, Local Services, Air Duct Cleaning", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "gukm3CH5Wm3iDyQfpuBiLg", + "name": "Bokeh Fire Lens Rentals", + "address": "1909 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521126, + "longitude": -75.1722996, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Photography Stores & Services", + "hours": { + "Wednesday": "12:0-16:0" + } + }, + { + "business_id": "OqQAPZaJ8IKQCxCjs34sXA", + "name": "Spruce Street Espresso", + "address": "1101 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9464186, + "longitude": -75.1595766, + "stars": 4.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "QtuoqpyD0YnnQLOD3jGMBQ", + "name": "Hannah Nails & Spa", + "address": "2253 S Hicks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9222819914, + "longitude": -75.172323958, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Makeup Artists, Nail Salons, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "x-eCOnXocZIlaAZznK8E_Q", + "name": "Tagliare", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8749289791, + "longitude": -75.2441923187, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "vpV8g_SAY8TR8Jmzevuw5g", + "name": "Subway", + "address": "2920 Robert's Ave, Ste 1040", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0110715055, + "longitude": -75.1765092338, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Sandwiches, Restaurants, Salad, American (Traditional)", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "JtcwxCtg9Dc3WfNMIcIJxg", + "name": "Mama's Grill", + "address": "630 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420524, + "longitude": -75.1531772, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Vegetarian", + "hours": null + }, + { + "business_id": "LTSlKMxPKHmOCFluV-j17Q", + "name": "Falone's Steaks & Hoagies", + "address": "7337 Elmwood Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.91357, + "longitude": -75.24283, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Sandwiches, Cheesesteaks", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-1:0", + "Saturday": "7:0-1:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "12VKtbzIL5tfb3LCOLk43Q", + "name": "Nafi Food Express", + "address": "3400 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95558, + "longitude": -75.193029, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Indian, Food, Food Trucks, Halal, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "FcZCU1-T43sEh8nzoUTnQA", + "name": "Artifax", + "address": "2446 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0464192, + "longitude": -75.0581274, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Vape Shops, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VEoqI5nI1lj56SVUvhufuA", + "name": "The Philly Pack", + "address": "1715 Mckean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9265718, + "longitude": -75.1746251, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shopping, Pet Services, Pet Training, Pet Stores, Pets, Dog Walkers", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "ryGCYr4qNQnDVtji9RmbEA", + "name": "Ciao Pizza", + "address": "1709 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951761, + "longitude": -75.16913, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "Caters": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "jIQSl2OCPYChWvy9IpgBwg", + "name": "Blink Optical", + "address": "1824 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514111, + "longitude": -75.1715139, + "stars": 2.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Eyewear & Opticians", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "yr20bgnPsoAj0TT8s_HbSg", + "name": "The Indie Shelf", + "address": "2247 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944733, + "longitude": -75.180212, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Skin Care", + "hours": { + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "t53GwxrCdm0z29xrYUyQYQ", + "name": "Armand Records", + "address": "1108 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949915, + "longitude": -75.1589878, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Books, Mags, Music & Video, Shopping, Home Services, Real Estate, Music & DVDs, Property Management", + "hours": null + }, + { + "business_id": "91MKqVpXVT6kFWgd1mHYXQ", + "name": "Lombardi's Specialty Hoagies", + "address": "1226 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.920145, + "longitude": -75.167952, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True" + }, + "categories": "Sandwiches, Salad, Restaurants, Delis", + "hours": null + }, + { + "business_id": "10fGe6z0yZwESO3uE1NXlw", + "name": "Careful Moving Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9549708, + "longitude": -75.143987, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Movers, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "57j2jUyvPq0YfR8wYKiIcQ", + "name": "AT&T Store", + "address": "3741 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537027, + "longitude": -75.1982106, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Mobile Phones, Mobile Phone Accessories, Telecommunications, IT Services & Computer Repair, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "5oGU8pPBMwZq3ZIgmk0RgA", + "name": "West Philly Community Acupuncture", + "address": "4636 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9433403015, + "longitude": -75.2105331421, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Monday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Saturday": "11:0-15:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "qyHFUF1ZuPh0IJv1dT4s_g", + "name": "Knit Wit", + "address": "1729 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518397, + "longitude": -75.1698155, + "stars": 2.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Local Services, Accessories, Sewing & Alterations, Women's Clothing, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "uR1U7vHyaIbq0u4aNHx6Hg", + "name": "Jeffrey D Glen, DDS", + "address": "5224 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0194871, + "longitude": -75.2109622, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetic Dentists, Health & Medical, Dentists, Oral Surgeons, General Dentistry", + "hours": { + "Monday": "8:0-13:0", + "Tuesday": "8:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "8:0-17:30" + } + }, + { + "business_id": "P_xteYw9HVSMjmKoszdHpA", + "name": "Conroy Catering", + "address": "8001 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0730846, + "longitude": -75.0746121, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Caterers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "b52IxTcvrbe2JAXVWXXghg", + "name": "Dalian on the Park", + "address": "500 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630516325, + "longitude": -75.1736927032, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "11:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "LcYUTKRAZo12b9QnIg0pXA", + "name": "GPS Transportation", + "address": "9237 E Rooselvet Blvd, Ste 203", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.074405, + "longitude": -75.0318179, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Hotels & Travel, Transportation, Health & Medical, Airport Shuttles, Limos, Medical Transportation, Town Car Service", + "hours": { + "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" + } + }, + { + "business_id": "qZN7FFXvMOPGq4m36rzd6Q", + "name": "Red's Hoagies & Groceries", + "address": "1900 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9256685, + "longitude": -75.1609566, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Breakfast & Brunch, Bagels, Food, Delis, Restaurants", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0", + "Saturday": "8:0-15:30" + } + }, + { + "business_id": "vlUDK6R08DZAmTzaIsFuPQ", + "name": "Pennsylvania Wine & Spirits", + "address": "4906-4908 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9478887, + "longitude": -75.2216292, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "12:30-20:0", + "Tuesday": "12:30-20:0", + "Wednesday": "12:30-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "8G_S5A-MlOnvqbyVP788iA", + "name": "Pete's Pizza Joint", + "address": "215 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94862, + "longitude": -75.144761, + "stars": 4.0, + "review_count": 73, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Pizza, Italian, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "NuZ_XZ4wV2PjvKQkEqvWIw", + "name": "Diesel", + "address": "1507 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949717813, + "longitude": -75.1663371416, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Women's Clothing, Men's Clothing, Accessories", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "0:0-18:0" + } + }, + { + "business_id": "VloXQYI96uthg31NVaO20Q", + "name": "Michael Garden Group", + "address": "2200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507934, + "longitude": -75.1775433, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Services, Home Services, Real Estate Agents, Real Estate", + "hours": null + }, + { + "business_id": "_RRGOrzVgsEE4MlHHZE6iQ", + "name": "Great Awakenings Cafe", + "address": "1466 E Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.02944, + "longitude": -75.081142, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "HasTV": "False", + "RestaurantsReservations": "False" + }, + "categories": "Desserts, Bakeries, Bagels, Coffee & Tea, Restaurants, Cafes, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "hZvvMGGQ4PYmZ9lNBBKvtg", + "name": "Computer Mafia", + "address": "2417 Welsh Rd, Ste 21-325", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0366255827, + "longitude": -75.0202247, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Home Theatre Installation, TV Mounting, Shopping, Home Network Installation, IT Services & Computer Repair, Local Services, Electronics, Web Design, Computers, Professional Services", + "hours": { + "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": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "ImfWM_EShTaz4F300vZs5Q", + "name": "Walgreens", + "address": "1607 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0229910417, + "longitude": -75.0759100914, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Cosmetics & Beauty Supply, Convenience Stores, Drugstores, Beauty & Spas, Food, Shopping, Photography Stores & Services", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "qnlupHx2Oyle1fQtxDeeRQ", + "name": "Tipsy Bistro", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524461, + "longitude": -75.1873206, + "stars": 4.5, + "review_count": 169, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "CoatCheck": "False", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': False, u'classy': None, u'upscale': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "HasTV": "True", + "Caters": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Bars, American (New), Restaurants, Sports Bars, Nightlife, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "kzy0Kf7z1ucbL2sVbfAFsg", + "name": "Ruth's Chris Steak House", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529565, + "longitude": -75.1702986, + "stars": 3.5, + "review_count": 184, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsAttire": "u'dressy'" + }, + "categories": "Wine Bars, Seafood, Restaurants, Steakhouses, Bars, American (Traditional), Nightlife", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "16:30-21:0", + "Wednesday": "16:30-21:0", + "Thursday": "16:30-21:0", + "Friday": "16:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "D-7A7PLj1bMvSKiHR6oSUw", + "name": "Diamond Car Audio", + "address": "1429 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.936158, + "longitude": -75.168403, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Car Stereo Installation, Auto Glass Services, Auto Customization, Auto Parts & Supplies", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "nlbyk0ueeAvh60cc5Rq7YA", + "name": "Sanremo's Pizza", + "address": "6230 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0338693, + "longitude": -75.071936, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'paid'", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "-5ink0kIoVfuS5Zi_6QBnQ", + "name": "Liberties Parcel", + "address": "800 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631059, + "longitude": -75.1411268, + "stars": 5.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Local Services, Screen Printing, Shipping Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:30" + } + }, + { + "business_id": "gVSqIz0HbzbNzo5q1qECGA", + "name": "Mike's Bikes", + "address": "1901 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926472, + "longitude": -75.1669893, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Bikes, Sporting Goods", + "hours": null + }, + { + "business_id": "mSYJrkfeS5Ifa05t0f1nqQ", + "name": "Brinkman's Live Bait & Tackle", + "address": "4999 Linden Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0461986, + "longitude": -74.9945285, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sporting Goods, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "7:0-16:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "vz0oI7GR9AOtmJpO5o_Ucw", + "name": "The Artful Dodger", + "address": "400 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430788, + "longitude": -75.1454035, + "stars": 4.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BYOBCorkage": "'no'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Irish, Pubs, American (Traditional), Bars, Nightlife, Restaurants, British", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "z4EPGizY26AmNwy3N5CX_w", + "name": "La Catrachita Food Truck", + "address": "1211 E Passyunck St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9338740361, + "longitude": -75.1583071211, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Food, Food Trucks, Honduran, Restaurants, Mexican, Tacos", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "Qt_gJJ0BmFB1lwfp1XS-sw", + "name": "Giuseppe's Market at Samuels and Son Seafood", + "address": "3400 S Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9049727, + "longitude": -75.1588247, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "OutdoorSeating": "False", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "HasTV": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Seafood Markets, Food, Specialty Food, Seafood", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "kqIENT-CoSkcDGtrZk35Rw", + "name": "Arterial Agents", + "address": "700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484629, + "longitude": -75.15268, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, Souvenir Shops, Food, Fashion, Specialty Food, Books, Mags, Music & Video, Shopping, Newspapers & Magazines, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "ZH41CKIlAZrrQD-DMV2TWA", + "name": "Bob & Barbara's", + "address": "1509 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94405, + "longitude": -75.16755, + "stars": 4.0, + "review_count": 295, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "WiFi": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Lounges, Bars, Nightlife, Dive Bars, Adult Entertainment", + "hours": { + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "AZPMbVuT-IXxcMuheTh87A", + "name": "Locust Moon Comics", + "address": "34 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956189, + "longitude": -75.202474, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Comic Books, Music & DVDs, Arts & Entertainment, Bridal, Books, Mags, Music & Video, Hobby Shops, Shopping, Art Galleries", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "GzSBK3xn2zL9of5-GoRQHA", + "name": "Kale Yeah", + "address": "301 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612137, + "longitude": -75.1436613, + "stars": 5.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False" + }, + "categories": "Cafes, Sandwiches, Breakfast & Brunch, Restaurants, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "brtpHEdo2n0fGJO-yMBCYg", + "name": "Maaco Auto Body Shop & Painting", + "address": "6717 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9111754934, + "longitude": -75.2233652338, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Auto Detailing, Automotive, Body Shops, Auto Repair", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "lFYqN66bnwx8MiaIAtesoA", + "name": "Perch Pub", + "address": "1345 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9482894, + "longitude": -75.1639634, + "stars": 3.5, + "review_count": 295, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True" + }, + "categories": "Bars, Pubs, Nightlife, Restaurants, Gastropubs, Breakfast & Brunch", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "NmzGFQAQBZOSL6nY4dXfPQ", + "name": "Jin Jin Chinese Restaurant", + "address": "9865 Bustleton Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0922845, + "longitude": -75.0310643, + "stars": 3.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "DriveThru": "False", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Seafood, Soup, Chinese", + "hours": { + "Monday": "10:45-22:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-23:0", + "Saturday": "10:45-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "QS884ZcHmkTaWAmjrXyFlg", + "name": "Miya Lunch Box and Catering", + "address": "1705 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515577, + "longitude": -75.1690522, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "sEA4rp2JGOR7YE_SuoJSGQ", + "name": "Ma Lessie's Chicken and Waffles", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Shop, Restaurants, Waffles, Food, Soul Food, Food Trucks", + "hours": null + }, + { + "business_id": "mdxTBY30zvwlDa3r5hgffA", + "name": "Fixit", + "address": "1800 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9769429, + "longitude": -75.13194, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Services, IT Services & Computer Repair, Mobile Phones, Mobile Phone Repair, Shopping, Data Recovery, Electronics Repair", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "11:30-17:0", + "Sunday": "11:30-17:30" + } + }, + { + "business_id": "4gYq8KgFxvNWmzThbt_Vwg", + "name": "The Laundry Cafรฉ", + "address": "915-933 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9706801, + "longitude": -75.1516795, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dry Cleaning & Laundry, Laundromat, Laundry Services, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "RLXT0560avopHK4fJ5LFHA", + "name": "Fair Food Farmstand", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531914, + "longitude": -75.1594066, + "stars": 4.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Meat Shops, Food, Grocery, Fruits & Veggies, Farmers Market, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "qRgeV1CMZawRblc2qjHo_g", + "name": "El Jarocho", + "address": "1138 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936492, + "longitude": -75.165011, + "stars": 4.0, + "review_count": 445, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsCounterService": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "WheelchairAccessible": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HappyHour": "False", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "2AbSvsWmKx6Uzw6dfnFpcA", + "name": "Little Angels", + "address": "615 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9455407, + "longitude": -75.1521824, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Elementary Schools, Child Care & Day Care, Local Services, Preschools, Education", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0" + } + }, + { + "business_id": "_7b9HAH2lJoeLfHTldZ9hA", + "name": "Signature by Joseph Lentini", + "address": "116 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.96244, + "longitude": -75.19993, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "MCP-kgDw_aP3yw4ReWXafw", + "name": "Subway Restaurants", + "address": "3228 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0023489, + "longitude": -75.1530902, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Fast Food, Sandwiches, Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "jF5XeCVL6MrA2IcLIHy1JQ", + "name": "Starbucks", + "address": "4415 Main Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026234, + "longitude": -75.225274, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:30-19:30", + "Tuesday": "5:30-19:30", + "Wednesday": "5:30-19:30", + "Thursday": "5:30-20:0", + "Friday": "5:30-21:30", + "Saturday": "6:0-20:0", + "Sunday": "5:30-19:30" + } + }, + { + "business_id": "BPBTCvmUfRnEH6yyABzOzA", + "name": "Evil Genius Beer", + "address": "1727 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9757885, + "longitude": -75.133938, + "stars": 4.0, + "review_count": 283, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForDancing": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Nightlife, Beer Gardens, Gastropubs, Food, Breweries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "0mq2S1lNMy7rtR3eGVjSYg", + "name": "Hollywood Collision", + "address": "4831 Duffield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.016863, + "longitude": -75.0793352, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Body Shops, Automotive", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "Ty9WWJ3OmDg8UbiTA8Eufw", + "name": "Smoker's Palace", + "address": "6301 Keystone St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0179686, + "longitude": -75.0513235, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tobacco Shops, Shopping", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "3FlUa98PjRhFEfmMkJlOMw", + "name": "The Tanning And Facial Bar", + "address": "1512 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9733495, + "longitude": -75.134154, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Spray Tanning, Hair Removal, Eyelash Service, Beauty & Spas, Tanning, Waxing, Skin Care, Makeup Artists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "13:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "Z2hjANoopPaPIut7h1hADQ", + "name": "Harry Richards Grooming", + "address": "406 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.946558, + "longitude": -75.1748582, + "stars": 4.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Hair Salons, Barbers, Tanning, Hair Stylists, Beauty & Spas, Men's Hair Salons, Spray Tanning", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:30-16:0" + } + }, + { + "business_id": "hofPeOqyE9LRx0NzbvH0Qg", + "name": "Focus Travel Bus", + "address": "55 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533458, + "longitude": -75.157878, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Buses, Hotels & Travel, Transportation", + "hours": null + }, + { + "business_id": "Mcw56HK9GOPTKEL_9ExVEQ", + "name": "Northern Liberties Veterinary Center", + "address": "622 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961651, + "longitude": -75.1414493, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Veterinarians, Pet Sitting, Pets, Pet Groomers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "iGBNtwOI_v23D61f2R7e-w", + "name": "Popeyes Louisiana Kitchen", + "address": "2440 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0791915023, + "longitude": -75.027881, + "stars": 2.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Fast Food, American (Traditional), Chicken Wings", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "2pjrY3JvBJoB91n1-ayTLw", + "name": "Thrive Pilates", + "address": "2016 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950454, + "longitude": -75.174567, + "stars": 5.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Barre Classes, Pilates, Yoga, Beauty & Spas, Trainers, Massage, Fitness & Instruction, Active Life", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:30", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-19:30", + "Saturday": "8:0-14:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Iq5svbpQv05faAs1i4G-IA", + "name": "Johnny Chang's", + "address": "2601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9179792, + "longitude": -75.1707493, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Restaurants, Thai, Japanese, Chinese", + "hours": { + "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": "12:0-23:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "gvPQfpdVHiksyjid6aJ6xQ", + "name": "Maple Star", + "address": "1521 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9790688131, + "longitude": -75.1603825314, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Food Delivery Services, Food, Diners, Restaurants, Chinese", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "OZnU--KfAdDwJarO8roRig", + "name": "Via Bicycle", + "address": "622 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9430458, + "longitude": -75.1658924, + "stars": 4.0, + "review_count": 160, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bike Repair/Maintenance, Shopping, Bike Rentals, Active Life, Sporting Goods, Local Services, Bikes", + "hours": { + "Tuesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "GxHVyjdwP6T412vxpuIW-w", + "name": "Beke Beau", + "address": "4100 Main St, Ste 401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0222502, + "longitude": -75.218689, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Makeup Artists", + "hours": null + }, + { + "business_id": "vOzoWhLhsGyyR8DSvU3nNA", + "name": "Parker-Spruce Hotel", + "address": "261 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469753, + "longitude": -75.1624159, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": null + }, + { + "business_id": "VIYvcX9SScnqmoI0so1KZA", + "name": "PrimoHoagies", + "address": "2043 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523626789, + "longitude": -75.1750177145, + "stars": 4.0, + "review_count": 154, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Sandwiches, Restaurants, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "LR36pCDNMp08zRLvjGYVjw", + "name": "Mia's of Philadelphia", + "address": "1748 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277946, + "longitude": -75.1661268, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Accessories, Women's Clothing, Shopping, Fashion", + "hours": null + }, + { + "business_id": "3yNmHvU7wkgI64WRReCrHg", + "name": "PLCB Wine & Spirits Store", + "address": "1218 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505069004, + "longitude": -75.1612887637, + "stars": 3.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ncxNTG_MMPzO1M7RWG5CZA", + "name": "LAGOS", + "address": "1735 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502094, + "longitude": -75.1704746, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "sHMDEnakjYpAtsAWLr-GsQ", + "name": "Big Charlie's Saloon", + "address": "11TH St McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9249816447, + "longitude": -75.1640190527, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "GoodForDancing": "False" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": null + }, + { + "business_id": "UKc5vOMEHIPD-CY82NqTcA", + "name": "1210 Chestnut", + "address": "1210 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504097142, + "longitude": -75.1608582236, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": null + }, + { + "business_id": "i4lQ-RodAuQLYBiJtUdP8A", + "name": "Fruit Salad & Smoothie Cart", + "address": "13th & Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505512096, + "longitude": -75.1618480682, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "HasTV": "True" + }, + "categories": "Food, Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "AhdX38dZJjyXspHCxr9odQ", + "name": "CDM Tires", + "address": "4158 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.965941, + "longitude": -75.2068514, + "stars": 5.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Wheel & Rim Repair, Auto Repair, Tires, Towing", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "SByH9Gjdr_bt_PD8N3hbCQ", + "name": "Chick-fil-A", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87596, + "longitude": -75.243216, + "stars": 3.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "Caters": "True", + "HasTV": "True", + "DriveThru": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "False" + }, + "categories": "Event Planning & Services, Fast Food, Caterers, Restaurants, Chicken Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0" + } + }, + { + "business_id": "mN6eQvxxECXSQsv_SVwfRg", + "name": "ACME Markets", + "address": "7010 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0566437, + "longitude": -75.1895744, + "stars": 2.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Bakeries, Drugstores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "D2OcZHMkznF5bbelwZ7TPw", + "name": "Molly Malloy's", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531200778, + "longitude": -75.1589835418, + "stars": 4.0, + "review_count": 339, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HappyHour": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "American (New), Breakfast & Brunch, Gastropubs, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "-iejZ38ttViiaaHIAl5iYg", + "name": "Philadelphia International Festival of the Arts PIFA Street Fair", + "address": "300 S Broad St Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9466218, + "longitude": -75.1649506, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor, Festivals, Performing Arts, Arts & Entertainment", + "hours": null + }, + { + "business_id": "z77ABD_iz8lAGOJM5UPljg", + "name": "Fresh Places Real Estate", + "address": "1624 Locust St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486, + "longitude": -75.168999, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Real Estate Services, Home Services, Real Estate Agents", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "k647hNu0xbCXcVxPQvqbwQ", + "name": "Forever Valentine Beauty", + "address": "1901 South 9th St, Ste 529", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9251978, + "longitude": -75.1600816, + "stars": 5.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'paid'" + }, + "categories": "Makeup Artists, Shopping, Permanent Makeup, Cosmetics & Beauty Supply, Beauty & Spas", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1LhpU1alopR_l-bWVQPkUA", + "name": "Oh Shea's Pub", + "address": "1907 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951175, + "longitude": -75.1723916, + "stars": 3.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Smoking": "u'outdoor'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Nightlife, Bars, American (New), Pubs", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "6lZJoDkDMluXojctJ5RBnw", + "name": "New Star Express Pizza", + "address": "5202 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9771528, + "longitude": -75.2271105, + "stars": 1.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "nA6zjguOkl4bYNv3deSbUA", + "name": "Museum Hack", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Tours, Event Planning & Services, Team Building Activities, Active Life, Hotels & Travel, Scavenger Hunts", + "hours": { + "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" + } + }, + { + "business_id": "9SxY5MIhjrnOSKtz9kDqOA", + "name": "Tuff Pup Training", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 48, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Training, Pets", + "hours": { + "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", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "AnhgZCyjhzU8JVxl2ftJKQ", + "name": "Cosmi's Deli", + "address": "1501 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302586, + "longitude": -75.1579964, + "stars": 4.0, + "review_count": 391, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "OutdoorSeating": "None" + }, + "categories": "Delis, Restaurants, Food, Bakeries, Sandwiches, Cheesesteaks", + "hours": { + "Monday": "10:0-20:30", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "h6jLBqYsg70klZfcXK4Pjg", + "name": "Gino's Bakery", + "address": "7142 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0355169, + "longitude": -75.0437628, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": null + }, + { + "business_id": "DONT5k0tyFreFzJQXQWsRQ", + "name": "Cliff's", + "address": "40TH St And Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548764, + "longitude": -75.202428, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Shoe Repair", + "hours": null + }, + { + "business_id": "poa82qNZZZlBMr9dSuMn2w", + "name": "Checkers", + "address": "5943 North Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0442427387, + "longitude": -75.1431878119, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "10:0-5:0", + "Tuesday": "10:0-5:0", + "Wednesday": "10:0-5:0", + "Thursday": "10:0-5:0", + "Friday": "10:0-6:0", + "Saturday": "10:0-6:0", + "Sunday": "10:0-5:0" + } + }, + { + "business_id": "5nMoZ755uD8mCM6xAj8kpQ", + "name": "Barton & Chase", + "address": "731 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481672, + "longitude": -75.1537856, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Watch Repair, Local Services, Wholesalers, Professional Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "G5L3yo64MIor3JLUSNfaQA", + "name": "Viva Love Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Photographers, Event Photography, Event Planning & Services, Session Photography", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "GibAacxd1kRIi2WU5DN4-w", + "name": "Performance Meal Prep", + "address": "5070 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9800094, + "longitude": -75.2210804, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Caterers, Personal Chefs, Food, Food Delivery Services, Event Planning & Services", + "hours": null + }, + { + "business_id": "qnVbh30JVGjen-vkLVzC3Q", + "name": "Bee Natural", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953647, + "longitude": -75.158911, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "False", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "Open24Hours": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Home & Garden, Shopping, Candle Stores, Honey, Flowers & Gifts, Specialty Food, Beauty & Spas, Skin Care, Health Markets, Gift Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "rKm8EyKQRHxidls2Pns_cw", + "name": "Body+Beauty Lab - Philadelphia", + "address": "834 Chestnut St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False" + }, + "categories": "Tattoo Removal, Medical Spas, Beauty & Spas, Skin Care, Health & Medical, Laser Hair Removal, Hair Removal, Doctors, Body Contouring", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Zv_42lh9tJzyH65l6PVQjA", + "name": "Skin Deep", + "address": "2055 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9820288, + "longitude": -75.1366596, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Piercing, Tattoo", + "hours": null + }, + { + "business_id": "Ipkx4Sa7ybn8C6LtTqTztw", + "name": "Double Knot", + "address": "120 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496993, + "longitude": -75.162185, + "stars": 4.5, + "review_count": 1140, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "Alcohol": "u'full_bar'", + "WiFi": "'no'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "Smoking": "u'no'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': True, u'thursday': True, u'friday': False, u'saturday': True, u'sunday': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Nightlife, Sushi Bars, Cafes, Japanese, Bars, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "0w_FJ-oa1NnjWYiUQdG-Ow", + "name": "Demetris Pizzeria & Mediterranean Cuisine", + "address": "4438 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956484, + "longitude": -75.211282, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Pizza, Mediterranean, Restaurants, Greek", + "hours": null + }, + { + "business_id": "JSg7qVsK6Z8uFhDKRyDMcA", + "name": "The Personal Chef", + "address": "6833 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0551258, + "longitude": -75.186993, + "stars": 3.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "Caters": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True" + }, + "categories": "Venues & Event Spaces, Restaurants, Specialty Food, Caterers, Event Planning & Services, Soul Food, Seafood Markets, Food, Seafood", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "4GDK7TSLy_L_kcJwmDxZGw", + "name": "Premier Dentistry of Philadelphia", + "address": "1601 Walnut St, Ste 1025", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950007, + "longitude": -75.167691, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, General Dentistry, Dentists", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "6id5WCI3awUbvs6R5ND0tw", + "name": "Steve Stein's Famous Deli-Restaurant, Inc", + "address": "9359 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08618, + "longitude": -75.0461632, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False" + }, + "categories": "Caterers, Event Planning & Services, Restaurants, Delis", + "hours": { + "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-18:0" + } + }, + { + "business_id": "GPcmuZ9f8qlzq4F27QV2jQ", + "name": "The Lash Boutique", + "address": "615 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940704, + "longitude": -75.1455653, + "stars": 5.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Eyelash Service, Cosmetics & Beauty Supply, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "GqFZg-duGej4VifTbTDJVw", + "name": "Arslan Salon and Spa", + "address": "4801 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.952806, + "longitude": -75.218563, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Massage, Nail Salons, Hair Salons", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "WD8eORi_jAuKOqEn1R-t9w", + "name": "Cupmakes", + "address": "Abbott's Square Building, 520A S. 2nd Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941757, + "longitude": -75.145726, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Desserts, Food", + "hours": null + }, + { + "business_id": "QcP1I2ky1Ynkl7bAxEGWcQ", + "name": "Korman Residential at 3737 Chestnut", + "address": "3737 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95541, + "longitude": -75.197645, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate, Apartments, Property Management, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "JzZyST-19Zhs5zA7Mw2Y9Q", + "name": "Concetta's Pizza", + "address": "4625 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0287705, + "longitude": -75.0391079, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "Wlvr5wT9ztlJb4eNVAKxIw", + "name": "Ellen's Bagels Hoagies & More", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949046, + "longitude": -75.164491, + "stars": 4.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "Caters": "True" + }, + "categories": "Sandwiches, Breakfast & Brunch, Food, Bagels, Restaurants", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "QSzK9qwKPOIuxjflT6GOkg", + "name": "Georgian Bakery & Cafe", + "address": "11749 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1202789666, + "longitude": -75.0159822922, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cafes, Bakeries, Mediterranean, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-1:0", + "Saturday": "9:0-1:0", + "Sunday": "9:0-1:0" + } + }, + { + "business_id": "NjrciCa7tG_Xm5wKLcOL9g", + "name": "Lenny's Shoe & Leather Repair", + "address": "256 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466389, + "longitude": -75.157995, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "AcceptsInsurance": "False" + }, + "categories": "Shoe Repair, Orthotics, Shipping Centers, Medical Supplies, Local Services, Shopping, Education, Automotive, Specialty Schools, Shoe Shine, Vocational & Technical School, Mobility Equipment Sales & Services, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-14:0", + "Wednesday": "5:0-14:0", + "Thursday": "5:0-14:0", + "Friday": "5:0-15:0", + "Saturday": "5:0-14:0", + "Sunday": "5:0-12:0" + } + }, + { + "business_id": "VgGmMEc68H1ZB_mtk83Cgg", + "name": "Jimmy John's", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.947631, + "longitude": -75.192604, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "HappyHour": "False", + "DriveThru": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Delis, Food Delivery Services, Sandwiches, Restaurants, Fast Food, Food", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "gFMwtO0TSHZbm44fai2DjA", + "name": "Happy Sign", + "address": "338 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9584401, + "longitude": -75.1552362, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Graphic Design", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "tqdpJoM3m2kfItuiD4qP7Q", + "name": "Pathmark", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0715636, + "longitude": -75.1939105, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "_oMy4L-7HOyS8VFG0YAsJg", + "name": "Jay Michael Salon and Spa", + "address": "1600 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954582, + "longitude": -75.166997, + "stars": 3.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Day Spas, Laser Hair Removal, Massage, Hair Removal, Hair Salons, Skin Care, Beauty & Spas", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "hP6QTyULhqUwr7ScFaiMQQ", + "name": "Zakia's Brow Bar", + "address": "5151 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0436985, + "longitude": -75.180639, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Waxing, Cosmetics & Beauty Supply, Eyelash Service, Permanent Makeup, Hair Removal, Beauty & Spas, Shopping, Makeup Artists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "gHNo1Vh-Ymwv4y_zBYcDNg", + "name": "Broad Street Tires", + "address": "840 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9693549, + "longitude": -75.1602881, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Automotive, Wheel & Rim Repair, Tires", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "7NhDWaGc7xQfSDj3XKJq1w", + "name": "Lebel Pizza", + "address": "5601 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9708487, + "longitude": -75.2327512, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "gYYMQeg4X8FUcCxXI4c2Tw", + "name": "Steve's Prince of Steaks", + "address": "7200 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0456111, + "longitude": -75.0609207, + "stars": 4.0, + "review_count": 488, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "False", + "HappyHour": "False" + }, + "categories": "Restaurants, Sandwiches, Cheesesteaks, Steakhouses, American (Traditional)", + "hours": { + "Monday": "9:30-23:0", + "Tuesday": "9:30-23:0", + "Wednesday": "9:30-23:0", + "Thursday": "9:30-23:0", + "Friday": "9:30-3:0", + "Saturday": "9:30-3:0", + "Sunday": "9:30-23:0" + } + }, + { + "business_id": "3rfuvMPsAWPuBcgbJfGRnA", + "name": "Little Caesars", + "address": "1701 Welsh Rd, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0875627874, + "longitude": -75.0392593629, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Food, Fast Food, Restaurants", + "hours": null + }, + { + "business_id": "FtyrXpqxGT0Py-940r1VRg", + "name": "Blue Bell Park", + "address": "842 Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.030109, + "longitude": -75.20231, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Hiking, Mountain Biking, Dog Parks, Active Life, Parks, Recreation Centers", + "hours": null + }, + { + "business_id": "zqWQ7ghq_qRnVOogdYXp6A", + "name": "Rustica Rosticceria", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949756235, + "longitude": -75.1480621845, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Sandwiches, Restaurants, Chicken Shop", + "hours": null + }, + { + "business_id": "jBwfTPuxHgyAhsfTUONXdA", + "name": "Euphoria Cafe", + "address": "1001 N 2nd St, Ste 22-23", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399345, + "stars": 4.0, + "review_count": 86, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Juice Bars & Smoothies, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "_TazuLCE8YDVK2JIj2SCYw", + "name": "Bain's Deli", + "address": "427 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9446992, + "longitude": -75.1649011, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Delis, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "U9BNibUtLnp8v9jBMPvLhA", + "name": "Chickieโ€™s and Peteโ€™s", + "address": "8000 Essington Ave, Terminal C, Philadelphia Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.87273, + "longitude": -75.252014, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Bars, Chicken Wings, Sports Bars, Nightlife, Specialty Food, American (Traditional), Seafood", + "hours": { + "Monday": "4:45-22:0", + "Tuesday": "4:45-22:0", + "Wednesday": "4:45-22:0", + "Thursday": "4:45-22:0", + "Friday": "4:45-22:0", + "Saturday": "4:45-22:0", + "Sunday": "4:45-22:0" + } + }, + { + "business_id": "HD89IKBPqc29dK8qpu6dVg", + "name": "Pret A Manger", + "address": "3730 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529106, + "longitude": -75.1982674, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Salad, Cafes, Coffee & Tea, Food, Restaurants, Sandwiches", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "va40jWz1dr0CHG4fIJgaHA", + "name": "Olde Creamery Cafe", + "address": "105 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948214025, + "longitude": -75.144035627, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Bakeries, Restaurants, Cafes, Ice Cream & Frozen Yogurt, Coffee & Tea", + "hours": { + "Tuesday": "14:0-18:0", + "Wednesday": "14:0-18:0", + "Thursday": "14:0-18:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "vhLq2M_NAAHLsLVNDER92w", + "name": "Supercuts", + "address": "3200 Chestnut St, Drexel University", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953444, + "longitude": -75.188935, + "stars": 3.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "jM3C2n2JyDKDK4dp5R-6Vw", + "name": "Delancey Street Pizzeria", + "address": "5701 Delancey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9554326, + "longitude": -75.2362495, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "m44H1_CBLtR2FZDApiCmuQ", + "name": "Body World", + "address": "1622 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245827, + "longitude": -75.1737023, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": null + }, + { + "business_id": "E7jw4bNYxy00T1vIkzOdzQ", + "name": "The Kettle Black", + "address": "631 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615500201, + "longitude": -75.141204568, + "stars": 4.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "Caters": "False", + "WheelchairAccessible": "True", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Bagels, Food, Bakeries, Coffee & Tea", + "hours": { + "Thursday": "7:0-12:0", + "Friday": "7:0-12:0", + "Saturday": "8:0-12:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "FeHhy-6uPJUMyVYPAwYjKA", + "name": "Jet Wine Bar", + "address": "1525 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94403, + "longitude": -75.16799, + "stars": 4.0, + "review_count": 166, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': False, u'dinner': None, u'latenight': True, u'dessert': False}", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "Music": "None", + "RestaurantsGoodForGroups": "False" + }, + "categories": "American (New), Bars, Sandwiches, Wine Bars, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "jgHrwlWf6IzmtHcsuQOq9w", + "name": "Palladino's", + "address": "1934 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9259194, + "longitude": -75.1684683, + "stars": 3.5, + "review_count": 102, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "Music": "{}", + "HappyHour": "True", + "CoatCheck": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Steakhouses, Cocktail Bars, Italian, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "13:30-0:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "4V6BpKsB68F9W8MQSfe1Zg", + "name": "Lincoln Financial Field Tours", + "address": "One Lincoln Financial Field Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.900998, + "longitude": -75.167496, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Professional Sports Teams, Stadiums & Arenas, Hotels & Travel, Tours, Arts & Entertainment", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "vejODO0L4F5tcnDkBq1_Ig", + "name": "Fiesta Pizza III", + "address": "8339 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0751999, + "longitude": -75.2045458, + "stars": 2.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Greek, Breakfast & Brunch, Pizza, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "q5v3wowN5iqGHSUALGF5Rg", + "name": "Foghorn", + "address": "4213 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0091071614, + "longitude": -75.1941820979, + "stars": 4.0, + "review_count": 150, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "WiFi": "'no'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Chicken Shop, Southern", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "TqCOt7qlUjH-0EGBs258RQ", + "name": "K & A Sandwiches & Grocery", + "address": "1439 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9330013, + "longitude": -75.1774748, + "stars": 5.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Grocery, Sandwiches, Convenience Stores, Food", + "hours": { + "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": "8:0-18:0" + } + }, + { + "business_id": "Ax2N_NOnazartWbmi6Rckg", + "name": "Rocky Steps", + "address": "2600 Benjamin Franklin Pkw", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9658014703, + "longitude": -75.1811616495, + "stars": 4.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "GvlQw5zpaCLBY0pW4pm4_A", + "name": "Tiger Sugar", + "address": "6201 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0457879427, + "longitude": -75.1191237563, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Bubble Tea, Coffee & Tea, Desserts, Food", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "vVLquxE6dPVhZZ5ZqTol9A", + "name": "The Link University City by CA Ventures", + "address": "3600 Lancaster AVE", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9584151, + "longitude": -75.1938661, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5TSYMfTMdLvmgmKZkzKNnA", + "name": "Philly Unleashed", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19099", + "latitude": 39.95, + "longitude": -75.16, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Pet Training, Pet Services, Pets", + "hours": null + }, + { + "business_id": "yswMnHbSPhZoTdGO8a9ckQ", + "name": "Fatboy and Slim's", + "address": "3929 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9548253, + "longitude": -75.2009783, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Bars, Nightlife, Pubs, Sports Bars, Restaurants, American (Traditional)", + "hours": null + }, + { + "business_id": "-T_lkOvaK39R-Ufg6VUyxg", + "name": "Magpie", + "address": "1622 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439921, + "longitude": -75.1695863, + "stars": 4.5, + "review_count": 308, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Coffee & Tea, Restaurants", + "hours": { + "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": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "8JCa-QUoVG5PXfa_C-7rWA", + "name": "Labcorp", + "address": "2300 S Broad St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9219, + "longitude": -75.17022, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laboratory Testing, Diagnostic Services, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30", + "Saturday": "7:0-11:0" + } + }, + { + "business_id": "N29UW_f0SUXEBWHB20hwvw", + "name": "Everyday Good House", + "address": "5501 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0348033, + "longitude": -75.1214392, + "stars": 3.5, + "review_count": 66, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Barbeque, Asian Fusion, Korean, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "hQ0LlCrkRdS12ZqhebKXzQ", + "name": "Jimmy's Water Ice", + "address": "2251 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9192063, + "longitude": -75.148602127, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Pretzels, Shaved Ice, Cheesesteaks, Restaurants", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "I0zkCIn32FyVn4k4e25qBw", + "name": "Sassy Nails", + "address": "6426 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0505022, + "longitude": -75.0950486, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "8:30-15:0", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "68jYcCg7p8zEeArIUgky9Q", + "name": "James", + "address": "824 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388772, + "longitude": -75.1563327, + "stars": 4.0, + "review_count": 101, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'dressy'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "4", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "'full_bar'", + "HappyHour": "True" + }, + "categories": "Automotive, Bars, Restaurants, Nightlife, American (New), Lounges", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "zjTBfbvbN2Ps6_Ar0w-fuQ", + "name": "Hinge Cafe", + "address": "2652 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9792581, + "longitude": -75.1121554, + "stars": 4.5, + "review_count": 292, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "BYOB": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'average'", + "Corkage": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Nightlife, Arts & Entertainment, Caterers, Diners, Event Planning & Services, Restaurants, Coffee & Tea, Desserts, Food, Music Venues, Breakfast & Brunch, American (New), Cafes, Comfort Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "4ejwoBxCDUgTPjaaOXLuDQ", + "name": "George Street Photo & Video", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559380521, + "longitude": -75.1574567, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Session Photography, Event Photography, Event Planning & Services, Videographers, Photographers", + "hours": null + }, + { + "business_id": "oGQ4T5ks2N7NwD-jKAzKQw", + "name": "Tyree Strickland Electric, LLC", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0473872956, + "longitude": -75.1233831693, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Electricians, Home Services", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "kNyBq-P2264BP2Hw0E0_7w", + "name": "Fusion Tumbling & Fitness", + "address": "1617 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9752939, + "longitude": -75.1380288, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Active Life, Trainers, Gyms, Fitness & Instruction, Gymnastics", + "hours": null + }, + { + "business_id": "usjoCLqbwVNeogTY5tU3AQ", + "name": "Burholme Park", + "address": "1400 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.056179, + "longitude": -75.0756701, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Playgrounds, Active Life", + "hours": null + }, + { + "business_id": "PGjt9nBqcFeKWXJhHBmo2Q", + "name": "5th Ave Hair Studio", + "address": "4354 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0252838, + "longitude": -75.2238392, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "oZ6TD3rkhTjzBKrN3FnLhw", + "name": "Polaris Nail Spa", + "address": "2001 Hamilton St, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962601, + "longitude": -75.171965, + "stars": 2.5, + "review_count": 123, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "b4Ill0aK9lPx990CsjHX-g", + "name": "West Point Pizza", + "address": "201 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9658774, + "longitude": -75.2458779, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "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", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "sk455ItxuanT8Bq6raXLpQ", + "name": "Red Lotus Spa & Nails", + "address": "4610 Cedar Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9489676768, + "longitude": -75.215200223, + "stars": 3.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Waxing, Nail Salons, Hair Salons, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:30-20:30", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "MGBwmxMKV4s-wq_OhHl_8A", + "name": "Carley Cakes", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19444", + "latitude": 40.0864274, + "longitude": -75.2537397, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Specialty Food, Desserts, Cupcakes, Bakeries, Food", + "hours": null + }, + { + "business_id": "0PTuPOOXkmoP0s5STUBY1w", + "name": "Chez Ben", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490604639, + "longitude": -75.147732608, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, Bars, Wine Bars, Brasseries, French, Restaurants, Nightlife, Coffee & Tea, Food", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "0Dw9eqJsbfuVKsgAoc9NZg", + "name": "Wild Crab Cajun Seafood & Bar", + "address": "2051 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0505154, + "longitude": -75.0641719, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BYOB": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTableService": "True", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Corkage": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Seafood, Bars, Nightlife, Beer Bar, Karaoke, Cocktail Bars", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "E_EJIx6Qw74r6clNeVpldQ", + "name": "Chester Family Pizza", + "address": "5504 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9385041, + "longitude": -75.2243642, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "qz4q9Bx1yTTQyszX9SseKw", + "name": "Sansom Precious Metals", + "address": "730 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485021, + "longitude": -75.1537051, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gold Buyers, Shopping, Jewelry", + "hours": null + }, + { + "business_id": "RHUHCFXI5aJRiv5mP9A4rQ", + "name": "The Clay Studio", + "address": "137-139 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9529487948, + "longitude": -75.1427832073, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Art Classes, Arts & Entertainment, Active Life, Education, Shopping, Specialty Schools, Summer Camps, Arts & Crafts, Art Schools, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Nd5_2zQ1SQuNd8UbBOFKQw", + "name": "Hat Stop!", + "address": "524 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419625, + "longitude": -75.1492562, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hats, Fashion, Shopping", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "kSns65NAHr7zqVkf6kMSBg", + "name": "Pamela R Wilkins - State Farm Insurance Agent", + "address": "8912 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0511943, + "longitude": -75.009875, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Home & Rental Insurance, Life Insurance, Auto Insurance, Insurance", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "iXJNxreQ5ImDklYG3L-YvQ", + "name": "penrose cheesesteak", + "address": "2201 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9102487, + "longitude": -75.1869588, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Sandwiches, Ice Cream & Frozen Yogurt, Restaurants, Food, Bubble Tea, Cheesesteaks, Burgers, Seafood", + "hours": { + "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" + } + }, + { + "business_id": "krC4geEoBG3Y1SOK8i_nug", + "name": "The Crazy Leprechaun Bar & Grill", + "address": "3589 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9876447657, + "longitude": -75.092066549, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, American (Traditional), Restaurants, Sports Bars, Bars, Irish Pub", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "ZzFKPTk9zdsY-YgW3_sPPg", + "name": "Copper Bistro", + "address": "614 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961471, + "longitude": -75.141782, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "1Vq7DR9FRh_ud2EMA3ldpw", + "name": "Park Towne Place Apartment Homes", + "address": "2200 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960774, + "longitude": -75.177658, + "stars": 3.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "XAyJt3DXSKf2f_EYrG5Z8Q", + "name": "Barbershop Denim", + "address": "1517 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440248, + "longitude": -75.167781, + "stars": 5.0, + "review_count": 110, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': True, u'curly': False, u'perms': False, u'extensions': False, u'straightperms': False, u'coloring': False, u'kids': False}", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Kids Hair Salons, Hair Salons, Men's Hair Salons, Barbers, Hair Stylists", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "8iE8NiEwXw46Agudv7B64w", + "name": "Massage Bella Vista", + "address": "750 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403959, + "longitude": -75.1558122, + "stars": 4.5, + "review_count": 58, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Health & Medical, Day Spas, Massage, Beauty & Spas, Reflexology", + "hours": { + "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": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "iEaiQGM23OWKGCybkvd4Pg", + "name": "Jiffy Lube", + "address": "3658 Aramingo Ave.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9943287, + "longitude": -75.0959496, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Oil Change Stations, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "hP_lCIvlKQvGzr1otFxMKw", + "name": "LA Fitness", + "address": "2560 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0764743937, + "longitude": -75.0283483194, + "stars": 2.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Yoga, Gyms, Fitness & Instruction, Trainers, Sports Clubs, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "PdBwl7tlFhOBR3p4kMd9Hw", + "name": "A C Moore Arts and Crafts", + "address": "1851 S Columbus Blvd, Ste F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923491, + "longitude": -75.1405828, + "stars": 3.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Framing, Shopping, Arts & Crafts, Art Supplies", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "a4wVXGsGgVyhIX5iGInrQQ", + "name": "Philly Art Center Queen Village Location", + "address": "514 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408227, + "longitude": -75.1516021, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Active Life, Shopping, Art Galleries, Venues & Event Spaces, Event Planning & Services, Art Classes, Education, Summer Camps", + "hours": null + }, + { + "business_id": "OstyTgWTBX3pUEBrpeQRWA", + "name": "New Garden", + "address": "8033 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0604703365, + "longitude": -75.0519053265, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "OutdoorSeating": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "t3e6vLLB9ZzVuv0Cz4QukA", + "name": "Nom Nom Bowl", + "address": "1608 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504783, + "longitude": -75.168001, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Noodles, Food, Restaurants, Poke, Japanese", + "hours": { + "Monday": "9:0-15:30", + "Tuesday": "9:0-15:30", + "Wednesday": "9:0-15:30", + "Thursday": "9:0-15:30", + "Friday": "9:0-15:30" + } + }, + { + "business_id": "TVicVvII4Fp9FtfEc8RBRw", + "name": "Jules Goldman Books and Antiques", + "address": "29 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507335, + "longitude": -75.1430684, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Antiques, Books, Mags, Music & Video, Local Flavor, Bookstores", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "G1eSeHP8jXpNjU1LscMhfQ", + "name": "Dwelling", + "address": "4050 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0218439, + "longitude": -75.2182787, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "8CiOiANqGJHTQJuTvgiBgA", + "name": "Bridget Foy's", + "address": "200 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411099, + "longitude": -75.1458162, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': None}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "Caters": "False", + "BikeParking": "True", + "Corkage": "False", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (Traditional), Salad, Soup, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "fbkdwbIawWmDhgSrlI8Akw", + "name": "SkyBrunch", + "address": "1717 Arch St, Fl 50", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556823161, + "longitude": -75.1689702394, + "stars": 3.5, + "review_count": 78, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "OutdoorSeating": "False", + "HasTV": "False" + }, + "categories": "Event Planning & Services, Restaurants, Breakfast & Brunch, Venues & Event Spaces, Wedding Planning, Caterers", + "hours": { + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "q0SDTH2aS9Dk5xlgU51nAQ", + "name": "Banana Republic Factory Store", + "address": "1911 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520168521, + "longitude": -75.1725150825, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Women's Clothing, Shopping, Fashion, Accessories", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "P4Vjui9a6lIHJp3-N3RiOw", + "name": "Holiday Thriftway", + "address": "5147 Frankford Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0220502, + "longitude": -75.0779253, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "tE0u6LlEQ9Wz9cx8_F7r3g", + "name": "No. 1 Cafe", + "address": "2731 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9834633, + "longitude": -75.1015268, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BikeParking": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "vVrnNrZKh_2v6TTSknZnAw", + "name": "Barber on 24th", + "address": "2401 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9466763, + "longitude": -75.1806603, + "stars": 4.0, + "review_count": 130, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Beauty & Spas, Hair Salons, Barbers", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "ZVjNax0O1qixmtZJ11jpkg", + "name": "Will BYOB", + "address": "1911 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262603, + "longitude": -75.1674579, + "stars": 4.0, + "review_count": 229, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Restaurants, French, American (New)", + "hours": { + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "_oUaLCE7VmRf4mLhVJVd6w", + "name": "TD Bank", + "address": "399 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506555, + "longitude": -75.1468309, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-13:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "zkk9mNwJS7va4l0Dp1HPEw", + "name": "Rico Mexican Tacos", + "address": "2084 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9920377, + "longitude": -75.109829, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "BOq6aYbFAyCYNv_7O2mIMg", + "name": "Ishkabibble's", + "address": "517 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419643, + "longitude": -75.1513895, + "stars": 3.5, + "review_count": 191, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "DriveThru": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "Caters": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Burgers, Cheesesteaks, American (Traditional)", + "hours": { + "Monday": "9:30-23:0", + "Tuesday": "9:30-23:0", + "Wednesday": "9:30-23:0", + "Thursday": "9:30-23:0", + "Friday": "9:30-0:0", + "Saturday": "9:30-0:0", + "Sunday": "9:30-23:0" + } + }, + { + "business_id": "S851KGYBBWp1RKDtHf4lPw", + "name": "Textures The Salon", + "address": "2479 Napfle St, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.052546, + "longitude": -75.052064, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Shopping, Hair Salons, Beauty & Spas, Cosmetics & Beauty Supply, Hair Removal, Waxing, Eyelash Service", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-19:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "Od-nWGiNKZuMtqkUjAfomg", + "name": "Optique", + "address": "222 W Rittenhouse Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9491842, + "longitude": -75.173361, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Optometrists, Sunglasses, Fashion, Health & Medical, Eyewear & Opticians, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "Fpbs--9KYumLMhZwB8YfUg", + "name": "Heaven Sent Courier", + "address": "421 N 7th St, Ste 422", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589273, + "longitude": -75.1500189, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Couriers & Delivery Services", + "hours": { + "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" + } + }, + { + "business_id": "gDQxNJCOsHbRTdSWu1w2mA", + "name": "Kildare's", + "address": "509 S 2nd Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941893, + "longitude": -75.1455042, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Irish, Restaurants, Pubs, Bars, Nightlife", + "hours": null + }, + { + "business_id": "Peh5wF6dwIdXELAZgeR1ug", + "name": "Clenz Philly Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Office Cleaning, Professional Services, Carpet Cleaning, Local Services, Home Services, Home Cleaning", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "oyn3kA6HCreBhJm1EDhrCQ", + "name": "Sensational Nail Salon", + "address": "2228 Bryn Mawr Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9911432, + "longitude": -75.2268396, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "kSEEqMG_inCYG4GpAppi8g", + "name": "Jefferson Center For Women's Medical Specialties", + "address": "834 Chestnut St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "qONVcsU_vo3KFve4PtZqpg", + "name": "El Provocon", + "address": "6620 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0426716777, + "longitude": -75.0743865967, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'" + }, + "categories": "Imported Food, Ethnic Food, Local Flavor, Spanish, Food, Dominican, Latin American, Specialty Food, Caribbean, Restaurants", + "hours": null + }, + { + "business_id": "0f4snVRBbsomhoGkFD7GUA", + "name": "City Pizza", + "address": "100 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9214837, + "longitude": -75.1485312, + "stars": 3.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "HasTV": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "4jDVTz29O3Czmf6VHoBelA", + "name": "Contessa's French Linens", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953078, + "longitude": -75.159203, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Decor, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "mrF5yU8TBZDAeSyUq-6LSg", + "name": "Argento's Pizza & Spaghetti House", + "address": "Andorra Shopping Center, 8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.0626352, + "longitude": -75.23727, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "Jict4YkvVVV4ERgxu3JuxQ", + "name": "Margaret Delcolle - Coldwell Banker Preferred", + "address": "325 Chestnut St, Ste 1300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Real Estate Agents, Real Estate, Commercial Real Estate", + "hours": null + }, + { + "business_id": "RdiBHiNnJ0RbtTUYbfie3g", + "name": "Rhawn Pub", + "address": "2420 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.05699, + "longitude": -75.04776, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': True, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "SsvsXv1rtb9YWDXbvQt3wA", + "name": "3rd & Girard", + "address": "1176 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969463, + "longitude": -75.1418317, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "CoatCheck": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForDancing": "True", + "Smoking": "u'outdoor'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Bars, Music Venues, Nightlife, Dive Bars, Arts & Entertainment", + "hours": { + "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" + } + }, + { + "business_id": "LxYJJbrttkwqoExkwa8xWg", + "name": "XO Lounge", + "address": "1437 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.94403, + "longitude": -75.1666722, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "NoiseLevel": "'loud'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True" + }, + "categories": "Dance Clubs, Nightlife, Arts & Entertainment, Music Venues", + "hours": { + "Thursday": "21:0-3:0", + "Friday": "21:0-3:0", + "Saturday": "21:0-3:0" + } + }, + { + "business_id": "lHK9hMs-GzSHuuN9uyZQKA", + "name": "Kimmel Cultural Campus", + "address": "300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.946823, + "longitude": -75.165018, + "stars": 4.0, + "review_count": 155, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Music Venues, Performing Arts, Cinema, Nightlife, Arts & Entertainment", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "1iFeA_iosPL9pWa3acFKJA", + "name": "PrimoHoagies", + "address": "2703 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9828810847, + "longitude": -75.1046955585, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Ambience": "None", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Sandwiches, Italian, Food", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "UpmQ5hH-MDE2XLDBVqUFXA", + "name": "The Manhattan Room", + "address": "15 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9689304, + "longitude": -75.1350098, + "stars": 3.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Music Venues, Restaurants, Diners", + "hours": null + }, + { + "business_id": "HFHLReRcAlrehyEJje-PZw", + "name": "Super Laundry Cycle Laundromat", + "address": "5018 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.99971, + "longitude": -75.22902, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Laundromat, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "OZ9AZsh_l2iDpJ5VZnRRbw", + "name": "Genesis Nail Salon", + "address": "729 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9481696, + "longitude": -75.1537286, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Eyebrow Services, Massage, Skin Care", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "4wSIW4SSuGia8Lmet860_g", + "name": "The UPS Store", + "address": "1755 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979297, + "longitude": -75.154939, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Notaries, Local Services, Mailbox Centers, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "liGDprT3LE4g1QC6_aOgDQ", + "name": "City Fitness - South Philly", + "address": "1148 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9334768626, + "longitude": -75.1637674714, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Active Life, Fitness & Instruction, Weight Loss Centers, Gyms, Health & Medical, Trainers", + "hours": { + "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" + } + }, + { + "business_id": "Pela9KXyn_tHiQP5df1mUg", + "name": "Philly Pretzel Factory", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557798717, + "longitude": -75.1819683239, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pretzels, Food, Restaurants, Hot Dogs, Bakeries", + "hours": { + "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": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "sAHzX-w3I13Yvp5d-Jb9hg", + "name": "Yuya Nail Spa", + "address": "624 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950693, + "longitude": -75.1515902, + "stars": 3.5, + "review_count": 125, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "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": "10:30-20:0" + } + }, + { + "business_id": "r8rY6hJGtmVkJw1L--EDwg", + "name": "Joe Santucci's Square Pizza Bar & Grill", + "address": "4050 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0859595, + "longitude": -74.9711521, + "stars": 3.5, + "review_count": 136, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Corkage": "False", + "WheelchairAccessible": "True", + "BYOB": "False", + "Caters": "True" + }, + "categories": "Food, Bars, Grocery, Pizza, Italian, Restaurants, Sandwiches, Nightlife, Salad, Seafood", + "hours": { + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "rxZrMZzxazo5EeGAgMgmpA", + "name": "The Chair Caners", + "address": "7534 Valley Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0508626, + "longitude": -75.2344377, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Furniture Reupholstery, Furniture Repair", + "hours": { + "Monday": "9:0-15:30", + "Tuesday": "9:0-15:30", + "Wednesday": "9:0-15:30", + "Thursday": "9:0-15:30", + "Friday": "9:0-15:30", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "CfQ7JZbNDQFaFcwuoOv62g", + "name": "Locksmith PHILLY", + "address": "212 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9619869313, + "longitude": -75.14182, + "stars": 5.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "nmCUtvQX64b_fdVeb6vCSg", + "name": "The Loft Lounge", + "address": "3847 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0204544, + "longitude": -75.2123412, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': None, u'validated': None}", + "HasTV": "True" + }, + "categories": "Bars, Lounges, Dive Bars, Nightlife", + "hours": { + "Monday": "10:0-14:30", + "Tuesday": "10:0-14:30", + "Wednesday": "10:0-14:30", + "Thursday": "10:0-14:30", + "Friday": "10:0-14:30", + "Saturday": "10:0-14:30", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "AGJqNt-EYaLZv9ilGF_iqw", + "name": "Four Seasons Childcare & Preschool", + "address": "433 Lyceum Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0315153, + "longitude": -75.2162975, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Child Care & Day Care, Local Services, Education, Preschools", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0" + } + }, + { + "business_id": "hMMN-y22t0RQitwCQHFNkA", + "name": "New China", + "address": "3977 Ford Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9995765686, + "longitude": -75.2093887329, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "QxS5bctiBVJXKwSKRjr-eQ", + "name": "Alpha Dental Care", + "address": "7439 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0364660003, + "longitude": -75.0358808041, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Periodontists, Endodontists, Health & Medical, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "mX0rpBrntRi5FX4gZ7tKuw", + "name": "Briar Vintage", + "address": "4324 Tackawanna St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0101155, + "longitude": -75.0841997, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Used, Vintage & Consignment, Fashion, Shoe Stores, Accessories", + "hours": { + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "EplLH353uir93Jo_Py3xww", + "name": "Franklin Social", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490604639, + "longitude": -75.147732608, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Restaurants, Cafes", + "hours": null + }, + { + "business_id": "pBguunWb0Mu6hDxgZ6j1AQ", + "name": "Guy Fieriโ€™s Taco Joint", + "address": "900 Packer Ave, Live! Casino Hotel", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Tacos, Mexican, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "n9laTguU-iYpQZhgCmra8g", + "name": "Tang's", + "address": "37TH St And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510287, + "longitude": -75.1972745, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "oLG2xLxPUDLUMGuDRfkuuQ", + "name": "Giant Steps Picture Framing", + "address": "229 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495931, + "longitude": -75.1739148, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Art Galleries, Arts & Crafts, Jewelry, Framing, Arts & Entertainment, Shopping", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "5aLpBa7mPb7JGOgcRHpYdA", + "name": "The Law Offices of Greg Prosmushkin, PC", + "address": "9637 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.087944, + "longitude": -75.03447, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Lawyers, Criminal Defense Law, DUI Law, Divorce & Family Law, Personal Injury Law", + "hours": { + "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" + } + }, + { + "business_id": "KKXjBP81nd_F5H0-fke3Jg", + "name": "Atlas Glass Repair Company", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622043, + "longitude": -75.1721077, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Contractors, Home Services, Building Supplies, Windows Installation", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "XPwT83sQMlVCh8_ztbyCFw", + "name": "Philly's Gourmet Steaks", + "address": "114 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496413446, + "longitude": -75.142798014, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Cheesesteaks, Buffets, Sandwiches, Burgers, Restaurants, Breakfast & Brunch, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "YNzyPt4RdhDGUDlwxFtTQQ", + "name": "Zavino", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536479551, + "longitude": -75.1891877265, + "stars": 4.0, + "review_count": 314, + "is_open": 0, + "attributes": { + "CoatCheck": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False}", + "WiFi": "'free'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Tapas/Small Plates, Nightlife, Italian, Restaurants, Wine Bars, Pizza", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "9fKBmH9_Wp44it_bDpWSLQ", + "name": "Le Champignon De Tokio Sushi Bar", + "address": "124-126 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419732, + "longitude": -75.1448595, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Japanese, Asian Fusion, Sushi Bars", + "hours": { + "Tuesday": "16:30-22:30", + "Wednesday": "16:30-22:30", + "Thursday": "16:30-22:30", + "Friday": "16:30-23:30", + "Saturday": "16:30-23:30" + } + }, + { + "business_id": "wPSQ2EGGlpTpjC4fsICQsg", + "name": "Batter & Crumbs Vegan Bakery and Cafe", + "address": "1401 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.933173, + "longitude": -75.168853, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "Corkage": "False" + }, + "categories": "Bakeries, Custom Cakes, Food, Coffee & Tea, Restaurants, Cafes, Vegan", + "hours": { + "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-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "at4y2FFxGBtSrZHYreNYCA", + "name": "P&S Ravioli Company", + "address": "1722 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9173293, + "longitude": -75.1771444, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Food, Sandwiches, Specialty Food, Italian", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:30", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "kbXpjBSweedxQ1WrlJ5i7Q", + "name": "Dan Dan", + "address": "126 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950247, + "longitude": -75.167598, + "stars": 4.0, + "review_count": 860, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BYOB": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "Caters": "True" + }, + "categories": "Taiwanese, Restaurants, Noodles, Szechuan, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "aPI5KpboojbTqLEMH_oY7w", + "name": "Little Delicious", + "address": "4821 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9415445, + "longitude": -75.2123184, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Su1Ghu4OcR0d-xDLGPkNYQ", + "name": "7-Eleven", + "address": "4201-59 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954902973, + "longitude": -75.2067187428, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Food, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "2YyIIdwnYv5cApn1gZo_gw", + "name": "Field House", + "address": "1150 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952616, + "longitude": -75.159445, + "stars": 2.5, + "review_count": 491, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "BYOB": "False" + }, + "categories": "Bars, Sports Bars, Nightlife", + "hours": { + "Monday": "11:30-23:30", + "Tuesday": "11:30-23:30", + "Wednesday": "11:30-23:30", + "Thursday": "11:30-23:30", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-23:30" + } + }, + { + "business_id": "J6dd1EFN19qXrgviccL5ng", + "name": "PNC Bank", + "address": "1849 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504875, + "longitude": -75.1720507, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Investing, Home Services, Real Estate, Banks & Credit Unions, Mortgage Brokers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "mlS4Q5pZXcY7NgdvfdBuBA", + "name": "Masters Bar & Restaurant", + "address": "1535 N Carlisle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977071, + "longitude": -75.1590949, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "GoodForDancing": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "OutdoorSeating": "True", + "CoatCheck": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Smoking": "u'outdoor'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Burgers, Nightlife, Bars, American (Traditional), Restaurants, Pubs", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "e8l4qKiNMzEOqm2PH18E2A", + "name": "Aviation Grill", + "address": "One Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.877855, + "longitude": -75.244711, + "stars": 2.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': None, 'classy': None, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': True}", + "RestaurantsDelivery": "False", + "Caters": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': None, u'validated': None}" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "D5KUjLVbe3CXIGlIEzUWwg", + "name": "Adelphia Moving", + "address": "2400 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9878181, + "longitude": -75.1061243, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Local Services, Junk Removal & Hauling, Building Supplies, Packing Services, Movers", + "hours": { + "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" + } + }, + { + "business_id": "sKsW3OGR6-q1DKx7kgRr0g", + "name": "Cozymeal Cooking Classes", + "address": "325-41 Chestnut St, Ste 800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949056, + "longitude": -75.1472, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Cooking Classes, Arts & Crafts, Cooking Schools, Event Planning & Services, Education, Team Building Activities, Shopping, Specialty Schools", + "hours": { + "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" + } + }, + { + "business_id": "w9o0TzusrCcaeniqyW4NCg", + "name": "Yunique Noodle House", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9490779, + "longitude": -75.1648579, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Noodles, Restaurants, Korean", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "oBXdVA8_gHq2ML2dkv6nhg", + "name": "Strange Brew Coffee", + "address": "1321 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310268, + "longitude": -75.1478088, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'" + }, + "categories": "Music Venues, Food, Arts & Entertainment, Restaurants, Cafes, Coffee & Tea, Nightlife", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "FP5fr2zUeTEhI4-TGEeVCA", + "name": "Vietnam Express", + "address": "101 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954055, + "longitude": -75.1575729, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'" + }, + "categories": "Vietnamese, Sandwiches, Juice Bars & Smoothies, Restaurants, Bubble Tea, Food", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0" + } + }, + { + "business_id": "yfRWuLFs-mp9GbG82yyeTQ", + "name": "Pita Pit", + "address": "110 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506105, + "longitude": -75.1676072, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "BYOBCorkage": "'yes_free'" + }, + "categories": "American (Traditional), Greek, Mediterranean, Vegetarian, Restaurants", + "hours": { + "Monday": "8:30-22:0", + "Tuesday": "8:30-22:0", + "Wednesday": "8:30-22:0", + "Thursday": "8:30-22:0", + "Friday": "8:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "e7_srfXOYuHkX6fAim1T1g", + "name": "Fathom Seafood House", + "address": "200 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968877, + "longitude": -75.133443, + "stars": 3.5, + "review_count": 76, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True" + }, + "categories": "Food, Seafood, Beer, Wine & Spirits, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "LQZdcwfqneUIrZTy1VvWfg", + "name": "Baan Thai", + "address": "1030 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671988, + "longitude": -75.140984, + "stars": 4.0, + "review_count": 235, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "BYOB": "True", + "Corkage": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Thai, Desserts, Salad, Food", + "hours": { + "Monday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "JofztY500JID_vLJxtyVBw", + "name": "Al-Sham Restaurant", + "address": "6738 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0402499, + "longitude": -75.0661113, + "stars": 4.0, + "review_count": 206, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Kosher, Restaurants, American (Traditional), Food Delivery Services, American (New), Halal, Middle Eastern", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "jeJbUi0s_NpObUfKOQZWqw", + "name": "Luxxe Nail Spa", + "address": "2714 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974114, + "longitude": -75.181087, + "stars": 4.5, + "review_count": 103, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'paid'" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "TxblhpgMehO8a3pgIvE0Eg", + "name": "Chinatown Popup Beer Garden", + "address": "212 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9561544, + "longitude": -75.1575744, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer Gardens, Nightlife", + "hours": { + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-23:0" + } + }, + { + "business_id": "XC1Fczx4xltzA_3NIotsuA", + "name": "Throwhouse", + "address": "1121 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0807518, + "longitude": -75.1808491, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Axe Throwing", + "hours": { + "Thursday": "16:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "emeIVZ3qJEb070uh1cucXQ", + "name": "The Locks At Sona", + "address": "4417 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026275, + "longitude": -75.225367, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}" + }, + "categories": "Restaurants, Nightlife, Arts & Entertainment, Music Venues", + "hours": null + }, + { + "business_id": "-v8dtO9BZmKidXLMohiQhQ", + "name": "Urban Saloon", + "address": "2120 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670245, + "longitude": -75.1729544, + "stars": 3.0, + "review_count": 320, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Nightlife, Restaurants, Barbeque, Whiskey Bars, American (New), Sports Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "D5sobMXHhktSZUnWtj8I0A", + "name": "Top of the Hill Orthodontics and Pediatric Dentistry", + "address": "10 W Gravers Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0746365, + "longitude": -75.205043, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Orthodontists, Dentists, Pediatric Dentists, Health & Medical", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "Phde8iK9NVUClxBZnKuQyg", + "name": "The Mulberry", + "address": "1835 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556688, + "longitude": -75.1708177, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}" + }, + "categories": "American (Traditional), Pizza, Bars, Restaurants, Nightlife", + "hours": null + }, + { + "business_id": "wn8PDBejGwgX8pkUh7cJHw", + "name": "Lucky Auto Glass", + "address": "5141 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0301943, + "longitude": -75.1336597, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Glass Services, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "JIepYkB28YEsV-WVzlhv7w", + "name": "LL Pavorsky Jewelers", + "address": "707 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480714, + "longitude": -75.1529762, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "DFZnh7ApQMk0nYvwTlRUxw", + "name": "Cheekadee Makeup Artists", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0703334, + "longitude": -75.2070644, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Makeup Artists", + "hours": null + }, + { + "business_id": "MlusAk1IRU1M9E31CjjmPQ", + "name": "Yunkers Pub", + "address": "4421 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026415, + "longitude": -75.225467, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True" + }, + "categories": "Bars, Nightlife, Pubs", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "AV0oofqbYjWYXPQzxNDj2w", + "name": "Miller's Ale House", + "address": "9495 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0798351, + "longitude": -75.0285769, + "stars": 3.0, + "review_count": 237, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "'average'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "HappyHour": "True", + "CoatCheck": "False", + "DogsAllowed": "False", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Nightlife, Restaurants, Seafood, American (New), Bars, Sports Bars, American (Traditional)", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "I0Vb3hAvqdYfpYvZ3U0sXQ", + "name": "A Criniti Realty", + "address": "1633 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9291637, + "longitude": -75.1639663, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Real Estate, Real Estate Services, Real Estate Agents", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30" + } + }, + { + "business_id": "LJQzAt-l3G8l12WPwrwZPw", + "name": "Ocho Rios Parrilla", + "address": "1710 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928481, + "longitude": -75.1653571, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Smoking": "u'outdoor'", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "BYOB": "False" + }, + "categories": "Cocktail Bars, Vegetarian, Caribbean, Seafood, Nightlife, Bars, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "fGeaHPDRkZj6ZUF37fe-XQ", + "name": "Panda Garden", + "address": "275 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0546452, + "longitude": -75.1939214, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BikeParking": "False", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "NoiseLevel": "u'quiet'", + "WiFi": "'no'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "f8xbJqPZepSdmQjaHz25YA", + "name": "Termini Bros Bakery", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954737, + "longitude": -75.168614, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Bakeries", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "7_8IYxOFYh3fsYAcyXVkpg", + "name": "Canto House", + "address": "941 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955579, + "longitude": -75.1556782, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Chinese, Cantonese, Barbeque, Noodles", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "oDUOu3W3pO2PG4QzzlxUfg", + "name": "Enterprise Rent-A-Car", + "address": "727 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497084, + "longitude": -75.1535006, + "stars": 3.5, + "review_count": 62, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "7:30-16:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "h-FHLH-8QY3Jk3FYCW8h8w", + "name": "NOTO Philadelphia", + "address": "1209 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9577258682, + "longitude": -75.1589915156, + "stars": 2.0, + "review_count": 178, + "is_open": 1, + "attributes": { + "AgesAllowed": "u'21plus'", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "4", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "None", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "True", + "HasTV": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "Music": "{u'dj': True, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Dance Clubs, Nightlife", + "hours": { + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "3-71QXMKNtHi4DvSFogm-Q", + "name": "Angie's Kitchen", + "address": "618 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.94995, + "longitude": -75.2272969, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, African", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30" + } + }, + { + "business_id": "sjTU0K9HQBijcMOGcThDpQ", + "name": "Upholstery By Kormondy", + "address": "2628 Martha St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9850596, + "longitude": -75.1223844, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Furniture Reupholstery", + "hours": null + }, + { + "business_id": "Le6m4lVrBQdBY3u0xOd_hA", + "name": "Popeyes Louisiana Kitchen", + "address": "2934 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9023035, + "longitude": -75.242038, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fast Food, Southern, Chicken Wings, American (Traditional), Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "_Re2IwkeFUqUsPMRZK8jng", + "name": "Freebyrd Chicken", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "u'beer_and_wine'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "False", + "BYOB": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Caterers, Event Planning & Services, Restaurants, Sandwiches, Chicken Shop", + "hours": { + "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-18:0" + } + }, + { + "business_id": "FIFi_8eNmc-jPHZVHPS3NQ", + "name": "China Gourmet", + "address": "2842 St Vincent Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041592, + "longitude": -75.055007, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Chinese, Cantonese, Dim Sum", + "hours": { + "Monday": "9:30-22:0", + "Tuesday": "9:30-22:0", + "Wednesday": "9:30-22:0", + "Thursday": "9:30-22:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "9:30-22:0" + } + }, + { + "business_id": "o8k9ub9eaG8mxImsovmTBQ", + "name": "Gerald Regni, DMD", + "address": "937 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939275887, + "longitude": -75.1590642, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetic Dentists, Endodontists, Dentists, Health & Medical, General Dentistry, Oral Surgeons", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "5UhVJcfIEI0Lude5csrqpA", + "name": "Greenstreet Coffee Roastery", + "address": "1919 Alter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9386566, + "longitude": -75.1758508, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Food, Coffee Roasteries", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "4VgCffIuFrsANi3p85hceg", + "name": "Helen Nail & Spa", + "address": "13635 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.13126781, + "longitude": -75.0104105473, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Removal, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "082Z772_Ig8SXp9DibYCAA", + "name": "La Casa Bella", + "address": "4452 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0265248, + "longitude": -75.2265609, + "stars": 3.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "WiFi": "'no'" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0" + } + }, + { + "business_id": "z3RdarkVy7JIwIICn-eT9A", + "name": "Mako's Retired Surfers Bar & Grill", + "address": "301 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415863, + "longitude": -75.1476509, + "stars": 3.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Caters": "False", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Dive Bars, American (New), Bars, Restaurants", + "hours": null + }, + { + "business_id": "0dBIX6e31XhUSMqL7SoATg", + "name": "Philly Auto", + "address": "4530 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.010115, + "longitude": -75.0810556, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Car Dealers, Used Car Dealers", + "hours": { + "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-18:0" + } + }, + { + "business_id": "0zWYKUPvImD7ufl1RQ1jhw", + "name": "Don's Auto Repair", + "address": "1132 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9348206, + "longitude": -75.1577759, + "stars": 5.0, + "review_count": 207, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "CvDPDrGIMUQsZ8NeDWu2Ag", + "name": "Bisou Bistro", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0235355, + "longitude": -75.219757, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'dressy'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "French, American (New), Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "_rOID4bGl3smVndJQXd2GA", + "name": "Fairdale Laundromat", + "address": "4023 Fairdale Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0843971, + "longitude": -74.9724533, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services, Laundromat", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "7cpj7hjDTX5fb-6pYcZiGQ", + "name": "Hungry Pigeon", + "address": "743 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93906, + "longitude": -75.14959, + "stars": 4.0, + "review_count": 449, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "ByAppointmentOnly": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food, Comfort Food, American (New), Breakfast & Brunch, Restaurants", + "hours": { + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "uf4gH2bLBox8bCHw30kJxQ", + "name": "Bao Nine", + "address": "38 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523066495, + "longitude": -75.1719804481, + "stars": 4.5, + "review_count": 138, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WheelchairAccessible": "True" + }, + "categories": "Taiwanese, Restaurants, Asian Fusion", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "QdJx1wQwd3UNkrWanF7QmQ", + "name": "Park America Inc", + "address": "2107 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516013, + "longitude": -75.175977, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "8GTViyjR-lBVuZZLfcVx6Q", + "name": "Star Fusion Express", + "address": "5178 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.981332, + "longitude": -75.223961, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood, Asian Fusion, Restaurants, Chicken Wings", + "hours": null + }, + { + "business_id": "ROIohZxWgigjxjLQQ81Adw", + "name": "Tony's Place", + "address": "6300 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0284115716, + "longitude": -75.0590577797, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "rOspf7E1Y8YAbVXTZyl-tQ", + "name": "Cedar Point Bar and Kitchen", + "address": "2370 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9768423, + "longitude": -75.1277643, + "stars": 4.0, + "review_count": 313, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "GoodForKids": "True", + "BYOB": "False", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Corkage": "False" + }, + "categories": "Southern, Bars, Cocktail Bars, Restaurants, Nightlife, Barbeque, Sandwiches, Beer, Wine & Spirits, American (Traditional), Food, American (New), Gastropubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "H4l7sUyE7aWFL6Cmc725kw", + "name": "The Next Page", + "address": "722 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949277, + "longitude": -75.153438, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "a1lImbWQDu4bcqLgwKCnQw", + "name": "Trolley Car Table Tennis Club", + "address": "3300 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.012131, + "longitude": -75.183342, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Active Life, Local Services, Sports Clubs, Community Service/Non-Profit", + "hours": null + }, + { + "business_id": "oqy15jhe1lOXttEvd4Srog", + "name": "El Poquito", + "address": "8201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0735965366, + "longitude": -75.2026142093, + "stars": 3.0, + "review_count": 394, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Smoking": "u'no'", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "CoatCheck": "False", + "RestaurantsReservations": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False", + "HappyHour": "True", + "DogsAllowed": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True" + }, + "categories": "Mexican, Bars, Food, Nightlife, Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "5lQ-79KpRgbQozCIF5Q1rA", + "name": "Singh Tire Center", + "address": "240 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9821647, + "longitude": -75.138462, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Tires", + "hours": null + }, + { + "business_id": "fRiGyKVgVyVe5DtB5mMAFQ", + "name": "Bella T's Pizza", + "address": "2900 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.031117, + "longitude": -75.062881, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "NoiseLevel": "'very_loud'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Pizza, Restaurants", + "hours": null + }, + { + "business_id": "4vy8j-L9zXXFH_wh2sVzAw", + "name": "Bower Cafe", + "address": "263 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946556, + "longitude": -75.157584, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Cafes, Food, Coffee & Tea", + "hours": { + "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": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "jMYwBxdECwJWB-5-yvHyyQ", + "name": "Mikawa", + "address": "425 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.944753, + "longitude": -75.16489, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Japanese, Sushi Bars, Chinese", + "hours": null + }, + { + "business_id": "knMaadLnS34vPDNkNlRLrA", + "name": "City View Pizza and Grill", + "address": "5608 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0395546, + "longitude": -75.1449725, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Pizza, Restaurants", + "hours": null + }, + { + "business_id": "YI594HdujKJ6qV6_v7STCA", + "name": "Brazen Boxing & MMA", + "address": "45 N 3rd St, 3rd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514983, + "longitude": -75.1448583, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Fitness & Instruction, Sports Clubs, Active Life, Trainers, Martial Arts", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-20:30", + "Saturday": "10:0-17:30", + "Sunday": "11:0-13:0" + } + }, + { + "business_id": "ptXuSpg-ScJpAyE2QoLU4Q", + "name": "West Tavern", + "address": "1440 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9595144642, + "longitude": -75.1634573936, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "False", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Dive Bars, Nightlife, Restaurants, Bars, Karaoke", + "hours": { + "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" + } + }, + { + "business_id": "XGsA7MQTM6MuUNcfjsmWRg", + "name": "Labcorp", + "address": "7124 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0449709756, + "longitude": -75.231214878, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Diagnostic Services, Health & Medical, Laboratory Testing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "cbr2Db20L6P50CsxsX6c2A", + "name": "Apricot Stone", + "address": "1040 N American St, Ste 601", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673315908, + "longitude": -75.1404441921, + "stars": 4.5, + "review_count": 310, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "HappyHour": "False", + "BYOB": "True", + "HasTV": "False", + "Caters": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "DriveThru": "False", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': True}" + }, + "categories": "Food, Restaurants, Armenian, Middle Eastern, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "80CuLvezLk7SkkzWbcv1Dg", + "name": "C19 Cichetteria Venezia", + "address": "267 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482333, + "longitude": -75.1726372, + "stars": 3.5, + "review_count": 116, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True" + }, + "categories": "Italian, Bars, Nightlife, Restaurants, Wine Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "u7t-oHdbEUotwSV9bDmEWg", + "name": "Chops Cheesesteaks", + "address": "602 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941913, + "longitude": -75.152519, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Cheesesteaks, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "mRAEDyKqT5pXYLYJDoh6Rg", + "name": "Paolo Gourmet Pizzeria", + "address": "1336 Pine St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9452319, + "longitude": -75.1643118, + "stars": 3.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Corkage": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'beer_and_wine'", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WheelchairAccessible": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "S0RPkPnxukVcbV_UY8Pe3Q", + "name": "Nail Bar", + "address": "133 S 18th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950617, + "longitude": -75.170465, + "stars": 3.0, + "review_count": 205, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "WiFi": "u'no'", + "AcceptsInsurance": "False" + }, + "categories": "Waxing, Hair Removal, Health & Medical, Beauty & Spas, Nail Salons, Reflexology", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "lSZEa0IsVPWCT6Ym9NF6jw", + "name": "Billy Murphy's Irish Saloon", + "address": "3333 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.010788133, + "longitude": -75.1877212755, + "stars": 4.5, + "review_count": 159, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Caters": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Irish Pub, Restaurants, Burgers, Nightlife, Dive Bars, American (New), Irish, Bars", + "hours": { + "Monday": "11:0-14:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-14:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "IWHdx0NhDKADkGOgXgOFKQ", + "name": "Tommy DiNic's", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.95347837, + "longitude": -75.1593960603, + "stars": 4.0, + "review_count": 2221, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (Traditional), Sandwiches", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "iaZavx63kGEoiqAmMuOSew", + "name": "Las Rancheritas", + "address": "3956 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0118579, + "longitude": -75.1361246, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "A37C-01zpQty9FmxvZrxEg", + "name": "El Taco", + "address": "3233 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.960636, + "longitude": -75.1891359, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "DriveThru": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Caters": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30" + } + }, + { + "business_id": "_q-ndCLtdC2BjSfO3238PQ", + "name": "ShopRite of Bridge & Harbison", + "address": "5597 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0127313147, + "longitude": -75.0660249442, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Delis, Restaurants, Bakeries, Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "228lDMkEO2aH7CboBIXSwQ", + "name": "Torresdale Pizza", + "address": "7517 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.032389, + "longitude": -75.0301971, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "American (Traditional), Pizza, Restaurants, Burgers", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:15", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "qfAEbGBZSq4oi6nkr9gOiQ", + "name": "Jo Jo Place", + "address": "2004 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521115, + "longitude": -75.1738349, + "stars": 3.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Delivery Services, Chinese, Restaurants, Food, Ethnic Food, Specialty Food", + "hours": null + }, + { + "business_id": "zXifwnYDGPBd0bAWco777w", + "name": "The Schuylkill River Loop", + "address": "1 Boathouse Row", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9695828, + "longitude": -75.1876317, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Boating, Local Flavor", + "hours": null + }, + { + "business_id": "2UXAIQZWJACELFmyHFCHaw", + "name": "Black Vulture Gallery", + "address": "208 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9689943, + "longitude": -75.13321, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Art Galleries, Beauty & Spas, Arts & Entertainment, Tattoo, Shopping", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0" + } + }, + { + "business_id": "DXc0jSP1Kpm5jtck9o7zlg", + "name": "Family Style Pizza", + "address": "7033 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9162164, + "longitude": -75.2200845, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "mAEA3VaTrvs64VLP2p_SsQ", + "name": "Wendy's", + "address": "5534 Wayne Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0310497, + "longitude": -75.1782729, + "stars": 1.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Food, Fast Food, Burgers", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "5q0tP9K8kmnphKK8pEtUlg", + "name": "Smile Team", + "address": "9301 Banes St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0830977, + "longitude": -75.0410032, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Endodontists, Health & Medical, General Dentistry, Dentists, Cosmetic Dentists", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0" + } + }, + { + "business_id": "Y5-BP4GZhmS-yGP-ZQdpwA", + "name": "Torresdale Flower Shop", + "address": "7332 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037482, + "longitude": -75.0395301, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Event Planning & Services, Shopping, Flowers & Gifts, Florists, Floral Designers, Wedding Planning", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "HhaL0aFNFXsxitfL4E7upQ", + "name": "Suburban Station", + "address": "34 N 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9536403, + "longitude": -75.1666555, + "stars": 2.5, + "review_count": 84, + "is_open": 1, + "attributes": null, + "categories": "Train Stations, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "C9C-JQOdb5iywv7MzBiUVw", + "name": "Starbucks", + "address": "1701 John F Kennedy Blvd, Ste 136, Comcast Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954701, + "longitude": -75.168954, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-14:30", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "ziMvN9iVXWQJrBtzcEONMg", + "name": "Philly Pretzel Factory", + "address": "1532 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950452, + "longitude": -75.1670215, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Pretzels, Hot Dogs, Bakeries, Restaurants, Local Flavor", + "hours": { + "Monday": "4:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "8mFAM9zata2b0FEBkWJovA", + "name": "Cobbs Creek Golf Course", + "address": "7400 Lansdowne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9674957, + "longitude": -75.265338, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Golf, Active Life", + "hours": null + }, + { + "business_id": "vEgKBcuZxPsaExMXBP0SgQ", + "name": "Palm Tree Market", + "address": "717 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9623128, + "longitude": -75.140731, + "stars": 4.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WiFi": "u'free'" + }, + "categories": "Food, Convenience Stores, Grocery, Delicatessen, Restaurants, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "_IMYHwq1YIkuyliJVivpAA", + "name": "Frusco's Steak Shop", + "address": "7220 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0360695, + "longitude": -75.0428276, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "Corkage": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "False" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks, Steakhouses", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "WnnfNMayJxtPBEHqR9EbrQ", + "name": "Chestnut Hill Coffee Company", + "address": "8620 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0769931299, + "longitude": -75.2083828102, + "stars": 4.5, + "review_count": 198, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "7:30-13:30", + "Tuesday": "7:30-13:30", + "Wednesday": "7:30-13:30", + "Thursday": "7:30-13:30", + "Friday": "7:30-13:30", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "bFY909_bPhYnMpO4r5AUzg", + "name": "Lisa Dee Reiki", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Reiki, Health & Medical", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0" + } + }, + { + "business_id": "sklR_i9tYQZEcfpRjpJtJQ", + "name": "Lakeside Chinese Deli", + "address": "207 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554851, + "longitude": -75.1540231, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "ZVw7toJMOG7Dm6S1JlOOhQ", + "name": "Unlock Gadget", + "address": "8033 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19027", + "latitude": 40.0764698, + "longitude": -75.1274836, + "stars": 1.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "IT Services & Computer Repair, Computers, Shopping, Mobile Phones, Local Services, Electronics Repair", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "edglJsudUEULkxm-rLtQbg", + "name": "Brigantessa", + "address": "1520 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930511, + "longitude": -75.162822, + "stars": 3.5, + "review_count": 215, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "GoodForDancing": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Italian, Bars, Nightlife, Restaurants, Pizza", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "15:0-22:30", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "KHxnvzKcekc-dC_52q1j6g", + "name": "Denim Lounge", + "address": "1712 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497186, + "longitude": -75.1698503, + "stars": 2.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'dressy'", + "GoodForKids": "False", + "OutdoorSeating": "False" + }, + "categories": "Bars, Nightlife, Lounges, Restaurants", + "hours": null + }, + { + "business_id": "WP9GAuhvmUhm8MAxMqhgrQ", + "name": "Indian Kitchen Lovash", + "address": "236 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94126, + "longitude": -75.1470703, + "stars": 3.5, + "review_count": 278, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "CoatCheck": "True", + "HappyHour": "True", + "BYOB": "True", + "Smoking": "u'no'", + "DriveThru": "False", + "HasTV": "True" + }, + "categories": "Beer, Wine & Spirits, Gluten-Free, Salad, Vegan, Nightlife, Desserts, Event Planning & Services, Halal, Caterers, Pakistani, Bars, Food, Restaurants, Indian, Vegetarian, Cocktail Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "uM0Q93Z2szhUicYgAhU7VQ", + "name": "Ying's Hair Salon", + "address": "153 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9549777189, + "longitude": -75.1542733315, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Hair Salons, Blow Dry/Out Services, Barbers, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "9:30-19:0" + } + }, + { + "business_id": "2pR3PHYNIXajxkIIByKdtw", + "name": "Pimsleur Direct", + "address": "1200 Callowhill St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9523527438, + "longitude": -75.1592066455, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": null + }, + { + "business_id": "LzWvZFkxO-9tHfV0kX1EFQ", + "name": "Read and Eat", + "address": "6156 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0346421281, + "longitude": -75.2166539803, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Used Bookstore, Books, Mags, Music & Video, Restaurants, Coffee & Tea, Bookstores, Shopping, Food, Bakeries", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "PhvIKjKB-tkC6Lld0gQn9Q", + "name": "Pandora's Lunchbox", + "address": "1221 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491161725, + "longitude": -75.1615435784, + "stars": 4.0, + "review_count": 103, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Italian, Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "SWBlUyFbyG_G_52ni9sS2A", + "name": "Syes Cleaners", + "address": "1226 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9342201, + "longitude": -75.1639663, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Dry Cleaning & Laundry, Sewing & Alterations, Local Services, Laundry Services, Dry Cleaning", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "oXjSx3T9NeWRKMDBFt1ZZQ", + "name": "The Latest Dish", + "address": "613 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411828, + "longitude": -75.1491621, + "stars": 4.5, + "review_count": 108, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False" + }, + "categories": "Restaurants, Vegetarian, American (New)", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "a5ILWy379guj-6Y3Fu3s4A", + "name": "Manny's Appliance Service", + "address": "1210 Passmore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.042856, + "longitude": -75.0815899, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Appliances & Repair, Local Services", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "PVkZ_ms1oVj5YKqmIxFhmA", + "name": "Red Mango", + "address": "1425 Locust St, Unit 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948595, + "longitude": -75.165898, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Juice Bars & Smoothies, Food, Ice Cream & Frozen Yogurt", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "DYolheNYiFUtyvbeu8nesQ", + "name": "Germantown Cricket Club", + "address": "411 W Manheim St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0236465, + "longitude": -75.1733712, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sports Clubs, Wedding Planning, Event Planning & Services, Caterers, Active Life, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "usFKC_KMRYVMiVEfz2lI8g", + "name": "Limo in Philly", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9226914, + "longitude": -75.2304038, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'" + }, + "categories": "Limos, Taxis, Transportation, Travel Services, Hotels & Travel, Airport Shuttles, Airports", + "hours": { + "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" + } + }, + { + "business_id": "Wto3Qt5k0W-2MesnTF-8qA", + "name": "Indigo Arts Gallery", + "address": "1400 N American St, Ste 408", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9732491, + "longitude": -75.1404004, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home & Garden, Jewelry, Arts & Entertainment, Home Decor, Shopping, Antiques, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "qSeAn4hZV7QzpdqyHQ0ZKg", + "name": "Crispy Pizza", + "address": "1858 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9951676, + "longitude": -75.1126054, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "ZAMybVR3hls1b2G8mi4iiw", + "name": "AAA Chimney Experts", + "address": "1 International Plaza Dr, Ste 550", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.8746064417, + "longitude": -75.2591563548, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Fireplace Services, Masonry/Concrete, Chimney Sweeps, Contractors, Gutter Services, Stucco Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "9:0-16:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-15:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "PPEjKBvE2lV6JNUVnSHkFA", + "name": "Philadelphia Brewing Company", + "address": "2440 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9826101, + "longitude": -75.1273561, + "stars": 4.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Breweries, Food, Local Flavor", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "gPcRKxd7PsGL6LoUDFbF2Q", + "name": "The Healing Arts Center of Philadelphia", + "address": "123 Chestnut St, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948553, + "longitude": -75.143952, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Tai Chi, Fitness & Instruction, Acupuncture, Traditional Chinese Medicine, Massage Therapy, Health & Medical, Chiropractors, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "F_spp-lH3b9Gtn7smRPXEA", + "name": "Trullo Pilates", + "address": "813 N 5th St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9645889, + "longitude": -75.146032, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Gyms, Trainers, Rehabilitation Center, Active Life, Fitness & Instruction, Pilates, Health & Medical", + "hours": null + }, + { + "business_id": "9TcnWPAlS4sMJPNyWlgi2A", + "name": "Elaine Nails & Spa", + "address": "10 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9510386, + "longitude": -75.1570577, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Massage, Hair Removal, Waxing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "zOKaw5aadadq7KJc0TPENw", + "name": "Caraland", + "address": "241 S 6th St, Ste 140", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9457637, + "longitude": -75.1511634, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "TpW2PPipD_Eq6csy8s2RSg", + "name": "The Alley Hair Salon", + "address": "118 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409077, + "longitude": -75.1447164, + "stars": 4.0, + "review_count": 92, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "-6nQZ-QCkAyNHdtaxOxDpQ", + "name": "Bimini Juice Bar & Salad Bar", + "address": "807 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631993932, + "longitude": -75.1408262551, + "stars": 4.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BYOB": "False", + "GoodForKids": "True" + }, + "categories": "Salad, Restaurants, Juice Bars & Smoothies, Vegan, Vegetarian, Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0" + } + }, + { + "business_id": "asI2vQzWZq9xBFUpfHNu4w", + "name": "Wax + Wine", + "address": "1034 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9442985881, + "longitude": -75.1595780792, + "stars": 5.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Decor, Wine Bars, Flowers & Gifts, Gift Shops, Art Classes, Beer, Wine & Spirits, Team Building Activities, Bars, Nightlife, Food, Paint & Sip, Candle Stores, Education, Home & Garden, Arts & Entertainment, Shopping, Event Planning & Services, Venues & Event Spaces", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "bi8cQT77t7hOlKbB7diCPg", + "name": "Tiffin - Mount Airy", + "address": "7105 Emlen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0530319, + "longitude": -75.1956803, + "stars": 3.0, + "review_count": 176, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pakistani, Restaurants, Indian", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "lHN1ljK30dCRgV6de1fFPw", + "name": "Takka Grill & Shrimpie's", + "address": "1910 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0675197, + "longitude": -75.1471273, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Seafood, Barbeque, American (Traditional), Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "L7wxpQOteDpED0zcn4hsHQ", + "name": "OCF Coffee House", + "address": "2001 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9374279, + "longitude": -75.1767938, + "stars": 3.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Food, Coffee & Tea, Bagels, Internet Cafes", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "F2VLDCdsb8ewXyleu8l1rw", + "name": "Nickels Tavern", + "address": "2655 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9144249, + "longitude": -75.151323, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "American (Traditional), Restaurants, Dive Bars, Nightlife, Bars", + "hours": { + "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": "12:0-2:0" + } + }, + { + "business_id": "qvfkT03PHLf4_Ejs4gtAFQ", + "name": "Painting with a Twist", + "address": "611 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942221, + "longitude": -75.1527801, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Paint & Sip, Art Classes, Venues & Event Spaces, Event Planning & Services, Local Flavor, Education, Nightlife, Wine Bars, Arts & Entertainment, Bars, Party & Event Planning, Social Clubs", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "WwycApucrNV4kFMvIxlknQ", + "name": "T-House Screen Printing", + "address": "5040 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0282594, + "longitude": -75.1325443, + "stars": 5.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Screen Printing/T-Shirt Printing, Local Services, Printing Services, Shopping, Screen Printing, Fashion", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "H6kzeEtNaghedfO5yoC0Sw", + "name": "J Squared Salon", + "address": "1142 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9298248, + "longitude": -75.1645933, + "stars": 4.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "D3X5ajVPRLdsSYywnSnsfQ", + "name": "Restaurant Depot", + "address": "2950 Roberts Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0095345, + "longitude": -75.1773381, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Wholesale Stores, Shopping, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "7:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "erbA3m2FNa6BKMlW0a8P_w", + "name": "Xinying Chinese Restaurant", + "address": "2403 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.983144, + "longitude": -75.114942, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:45", + "Saturday": "11:0-23:45", + "Sunday": "12:0-22:45" + } + }, + { + "business_id": "QOAImlvMOgmXPRe2Ug75Cg", + "name": "Real-Time Delivery & Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 40.0972222, + "longitude": -75.3761952, + "stars": 4.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Couriers & Delivery Services, Movers, Self Storage, Local Services, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "WmGSfx0JbwNRT03ozyjb6A", + "name": "Federal Donuts", + "address": "540 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418004, + "longitude": -75.1522351, + "stars": 4.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Donuts, Food, Restaurants, Coffee & Tea, Chicken Shop", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "h6qJEi7ZvVrUMtExPb4kfg", + "name": "Cold Cut Hut", + "address": "2147 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9236465, + "longitude": -75.1730178, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Delis, Food, Grocery, Convenience Stores, Restaurants", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "3I0HYiNaQjHDVGEQbtwL1A", + "name": "Carousel Vintage & Contemporary Design", + "address": "234 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95193, + "longitude": -75.144486, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Jewelry, Fashion, Shopping, Used, Vintage & Consignment", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "W05Sre_mDBPxyILHATDiLQ", + "name": "Gizmo Repair", + "address": "3508 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0373552, + "longitude": -75.0423937, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shopping, Local Services, Electronics Repair, Professional Services", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "10:0-14:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "3zEedfqHtCrQEUsmPsDNsA", + "name": "$5 Fresh Burger Stop", + "address": "2100 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9185202597, + "longitude": -75.1827766004, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Food Stands, Burmese", + "hours": null + }, + { + "business_id": "vESmLNVMC9q7ZYKIwOtO8w", + "name": "Gearo's", + "address": "6836 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 40.04152, + "longitude": -75.064943, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "3F-gHA6221D7GndrYI63Qw", + "name": "SMart Loft Studio", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Arts & Entertainment, Professional Services, Web Design, Graphic Design", + "hours": null + }, + { + "business_id": "Pk3pxdU9Cp-xuL4oKn0KXQ", + "name": "Dave's Auto and Truck Service", + "address": "100 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1120203, + "longitude": -75.0485521, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "yhMpYBlu_yimn9sT-cIayA", + "name": "Fitz and Starts", + "address": "743 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939060062, + "longitude": -75.1495900378, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "Caters": "True", + "DogsAllowed": "True", + "Corkage": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Food, Restaurants, Bakeries, Wine Bars, Bars, American (New), Breakfast & Brunch, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-15:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "kaTTFu29eFdLiie5-44yPA", + "name": "Hawthorne Park", + "address": "1200 Catherine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406571912, + "longitude": -75.1628391445, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Parks, Active Life", + "hours": null + }, + { + "business_id": "OFSrGC3hrP3SvZcernZl8Q", + "name": "Society Hill Playhouse", + "address": "507 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9429837, + "longitude": -75.1550145, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Cinema, Performing Arts", + "hours": null + }, + { + "business_id": "NVQOP3yp16mU4tqCw89T9g", + "name": "Lee's Hoagie House", + "address": "246 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9472360555, + "longitude": -75.159381777, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Wraps, Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "IWaYoVUU-qbH_nTjgG4gdw", + "name": "Scubadelphia Diveseekers", + "address": "4322 Bermuda St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.004429, + "longitude": -75.081881, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Scuba Diving, Active Life, Diving", + "hours": { + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "YiS4cHUiwLiK0enXRZX-Hg", + "name": "King's Music", + "address": "1828 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9269079, + "longitude": -75.1671335, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": { + "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" + } + }, + { + "business_id": "q0TlPACVyrQeXp48j0bsDg", + "name": "Vesper Dayclub", + "address": "1031 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9662103, + "longitude": -75.1378919, + "stars": 3.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "True" + }, + "categories": "Swimming Pools, Bars, Active Life, Nightlife", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fIx3drk3VZoUwoq5VdM4nw", + "name": "Firefly Car Rental", + "address": "7500 Holstein Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.901084, + "longitude": -75.2287105, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "YqVGfM1gx4DmIzxFXPLSaQ", + "name": "Ninth Street Internal Medicine", + "address": "805 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472201193, + "longitude": -75.1555609703, + "stars": 3.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Health & Medical, Internal Medicine", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-19:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "HxX6dXDeAOpkUPT4xT1wiw", + "name": "Hokkaido", + "address": "1316 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948862, + "longitude": -75.162895, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Japanese, Asian Fusion, Sushi Bars, Restaurants, Thai", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "12:30-22:30" + } + }, + { + "business_id": "GtC_ResrQIJid_WKLtrZeQ", + "name": "Founding Fathers Outfitters", + "address": "9280 Ridge Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0747869, + "longitude": -75.2445106, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Sporting Goods, Shopping, Guns & Ammo, Gunsmith, Hunting & Fishing Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "8:0-20:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "rcmvoFr_DyXdaxoTvHJEHQ", + "name": "C&D's Triangle Tavern", + "address": "1338 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9323114, + "longitude": -75.1609358, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, American (Traditional), Dive Bars, Bars, Nightlife", + "hours": null + }, + { + "business_id": "5z6oUQ_5d5VR33Pt1FYB0w", + "name": "B&D Auto Service Center", + "address": "2516 E Dauphin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.976181, + "longitude": -75.124802, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Gas Stations, Automotive, Smog Check Stations, Auto Repair, Tires", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "g-GrCwWLEsOW1HNzim-5dw", + "name": "The Lofts at Logan View by Reinhold Residential", + "address": "1666 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.959927, + "longitude": -75.166466, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "w9yjK_llCIvSPkEsx9qJrA", + "name": "Mango", + "address": "8442 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.075704, + "longitude": -75.2063327, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Accessories, Women's Clothing, Fashion, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "1WKvYtPoYKqzDhIduuHkqg", + "name": "Hookah at 5th", + "address": "524 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422084, + "longitude": -75.150819, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Nightlife, Hookah Bars, Bars", + "hours": { + "Monday": "18:0-0:0", + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-0:0", + "Thursday": "18:0-0:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-0:0" + } + }, + { + "business_id": "WrBTJTa7q6Ju44d0A7rJyA", + "name": "European Republic", + "address": "602 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941873, + "longitude": -75.1525336, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Specialty Food, Ethnic Food, Modern European, Seafood, Imported Food, Food, American (New), Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "d4llp0qNSbkSxGIMRvYprg", + "name": "Euphoria Nail Bar", + "address": "4430 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261848, + "longitude": -75.2257373, + "stars": 3.0, + "review_count": 102, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "6DtGkpDoTc5ORb6ZUMkd8A", + "name": "Locksmith Philadelphia", + "address": "413 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9463827, + "longitude": -75.1745557, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Garage Door Services, Keys & Locksmiths, Home Services", + "hours": null + }, + { + "business_id": "fjPsBdE-5ORzbEZ5pnloRA", + "name": "Patou Restaurant", + "address": "312 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501162, + "longitude": -75.1463155, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "French, Restaurants, Bars, Lounges, Nightlife", + "hours": null + }, + { + "business_id": "tZkX-qmF2u8ROXUJKuH88A", + "name": "PT Nails Plus", + "address": "4910 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947866, + "longitude": -75.2217659, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Massage, Eyelash Service, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "DhyRD0x7S-jav9DZN5ZusA", + "name": "Sabir's Restaurant", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9523072, + "longitude": -75.1873948, + "stars": 2.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'" + }, + "categories": "Indian, Restaurants, Convenience Stores, Food", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:30", + "Saturday": "10:0-2:30" + } + }, + { + "business_id": "uH2p7qPdU4wUHyP2vxVNZg", + "name": "KFC", + "address": "3655 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.99406085, + "longitude": -75.0949740366, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Caters": "True", + "BusinessParking": "None", + "Ambience": "None", + "NoiseLevel": "'average'", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chicken Wings, Fast Food, Restaurants, Chicken Shop", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "PP3BBaVxZLcJU54uP_wL6Q", + "name": "Pat's King of Steaks", + "address": "1237 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9332010583, + "longitude": -75.159265814, + "stars": 3.0, + "review_count": 4250, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Caters": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Italian, American (Traditional), Sandwiches, Fast Food, Restaurants, Local Flavor, Cheesesteaks", + "hours": { + "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" + } + }, + { + "business_id": "nUWed8AXq019fq2PLz4vmw", + "name": "Society Hill Dermatology", + "address": "932 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9444015, + "longitude": -75.1580267, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "zY32Vxx4-cUfowaGRUCEYA", + "name": "Holiday Hair", + "address": "6441 Sackett St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.02985, + "longitude": -75.057111, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "l2AIWFZ3ILuS4ovhdp_eeA", + "name": "Steaks On South", + "address": "308 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413318, + "longitude": -75.1480397, + "stars": 3.5, + "review_count": 97, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "HasTV": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Cheesesteaks, Sandwiches, Burgers, Pizza, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-16:0", + "Saturday": "10:30-16:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "f4QAry-KSSkNT3fZ034NQw", + "name": "Danny's Cafe", + "address": "1730 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924954, + "longitude": -75.175654, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Restaurants, Cambodian, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "tZ3Sq_Jpt81gsDDO0jQXyA", + "name": "Fairmount Cleaners", + "address": "2208 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9672185, + "longitude": -75.1741843, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WiFi": "u'no'" + }, + "categories": "Laundry Services, Local Services, Sewing & Alterations, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "OEt7gcCT8YFjeZqSiwVTAQ", + "name": "Gerhardโ€™s Scratch & Dent Outlet", + "address": "9475 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0789586, + "longitude": -75.0281662, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Grilling Equipment, Local Services, Appliances, Home & Garden, Mattresses, Appliances & Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "lewqGloU_GAxjmyw8yZkTA", + "name": "Harriet's Innerwear", + "address": "1725 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9279649, + "longitude": -75.1654856, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Lingerie", + "hours": { + "Tuesday": "11:0-17:30", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-17:30", + "Friday": "11:0-17:30", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "D7CBOXSfm0RetkuMbJ0KkA", + "name": "The Fresh Grocer - Progress Plaza", + "address": "1501 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766631335, + "longitude": -75.1577826341, + "stars": 2.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Food, Juice Bars & Smoothies, Grocery, Delis", + "hours": { + "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" + } + }, + { + "business_id": "AXinWDle4ZYGtkdwqkBETQ", + "name": "Penrose Hotel", + "address": "2033 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.912507, + "longitude": -75.18395, + "stars": 1.0, + "review_count": 148, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "DIdq4o8AUR6xYPPPoP8sQw", + "name": "The Condo Shop", + "address": "1425 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948588, + "longitude": -75.1658929, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Agents, Real Estate, Home Services, Apartments, Property Management, Real Estate Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "owjryf1VM333UrGOnHzqDQ", + "name": "Wired Beans", + "address": "6734 Germantown Ave., Ste 36", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0530987, + "longitude": -75.1860726, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Bagels, Food, Coffee & Tea, Bakeries", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "yjeqvAvwWq000TWF1KQH2A", + "name": "Admirals Club", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.873411, + "longitude": -75.252034, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "HappyHour": "False", + "NoiseLevel": "'quiet'", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "Alcohol": "'full_bar'", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Smoking": "u'no'" + }, + "categories": "Bars, Nightlife, Airport Lounges", + "hours": { + "Monday": "4:30-21:30", + "Tuesday": "4:30-21:30", + "Wednesday": "4:30-21:30", + "Thursday": "4:30-21:30", + "Friday": "4:30-21:30", + "Saturday": "4:30-21:30", + "Sunday": "4:30-21:30" + } + }, + { + "business_id": "pFMGXlE1NwEXYPBgw3kRnA", + "name": "Southern Inn", + "address": "5741 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9326866, + "longitude": -75.2245579, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "None" + }, + "categories": "Hotels, Event Planning & Services, Restaurants, Hotels & Travel, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "ivscxN13LC9eJgkob-cwGQ", + "name": "Gold Club Northern Liberties", + "address": "58 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9690490587, + "longitude": -75.136365786, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Adult Entertainment, Nightlife, Bars", + "hours": null + }, + { + "business_id": "1MzQZ7lSQ35_ZRmrTGRC5A", + "name": "Nail Polish Bar & Spa", + "address": "519 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416092783, + "longitude": -75.1454074681, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Hair Removal, Waxing, Nail Salons, Day Spas", + "hours": { + "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": "10:0-19:0" + } + }, + { + "business_id": "p9bz6eZT4y7He03nfLlQxQ", + "name": "NE Flower Boutique - Old City", + "address": "60 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515015227, + "longitude": -75.143539, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Floral Designers, Wedding Planning, Shopping, Flowers & Gifts, Event Planning & Services, Florists", + "hours": { + "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": "9:0-19:0" + } + }, + { + "business_id": "6Pyndi-qzq7AKuGHKD9WoQ", + "name": "La Casa Del Buen Gusto", + "address": "186 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9911070666, + "longitude": -75.1346839964, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mexican, Restaurants, Latin American, Puerto Rican, Dominican, Caribbean", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "h19gWCpOaU-oMwfybICyBw", + "name": "El Punto", + "address": "4460 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0171903, + "longitude": -75.1168879, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': None}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': None, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "LrH3WQwkAQqe9LmhQJocOA", + "name": "Pinnacle Auto Repair and Tires", + "address": "1119 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403319, + "longitude": -75.1614468, + "stars": 3.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Automotive, Tires, Auto Repair, Body Shops, Auto Parts & Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "fWRWzBfQnMcNiaOi5TJVdw", + "name": "Cafe V and Kitchen", + "address": "1318 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943354, + "longitude": -75.164005, + "stars": 3.0, + "review_count": 140, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Coffee & Tea, Restaurants, Cafes", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "FYhsm9Efvw8lw7zAOIDUbg", + "name": "Rosa Blanca", + "address": "707 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949786, + "longitude": -75.152623, + "stars": 3.5, + "review_count": 224, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WiFi": "'no'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Cuban, Restaurants, Diners", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "cD4fV8Qzpwne5MRwfu4SuQ", + "name": "Wild Flour Bakery", + "address": "8701 Torresdale Ave, Ste I", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.043007493, + "longitude": -75.0064884844, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Wholesalers, Professional Services, Bakeries, Food", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0" + } + }, + { + "business_id": "qcBnk_bxSGxCqu1Qn1BpeA", + "name": "Souped Up Hotpot and Asian Bistro", + "address": "705 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949672, + "longitude": -75.152562, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Korean, Hot Pot, Restaurants, Bars, Japanese, Nightlife, Pan Asian, Ramen", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "Do8A2VD9PxryefEJICHrDg", + "name": "Baldwin Fine Custom Tailoring Formal Wear", + "address": "751 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388327, + "longitude": -75.1495786, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "D4nBEzrfPgblamQcCCUe8A", + "name": "215 Motoring", + "address": "13440 Damar Dr, Unit E1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.121638, + "longitude": -75.000662, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Arts & Entertainment, Auto Glass Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "AERr7jPbAZmShrwfKzUqfA", + "name": "Big Blue Marble Bookstore", + "address": "551 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0467033, + "longitude": -75.1958835, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Bookstores, Books, Mags, Music & Video", + "hours": { + "Tuesday": "11:0-17:30", + "Wednesday": "11:0-17:30", + "Thursday": "11:0-17:30", + "Friday": "11:0-17:30", + "Saturday": "11:0-17:30", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "D2bbNgi7HlkxbXk4nhI9yA", + "name": "Wawa Food Markets", + "address": "2847 Tyson Ave, Ste 49", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.039375, + "longitude": -75.0562099, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "3p2XX3lfKPKtYWCopERzzw", + "name": "Herringbone Salon", + "address": "1854A Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978220724, + "longitude": -75.1309222059, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "yqE7ay5N7hf5qqcxV0COrA", + "name": "UNTUCKit", + "address": "1611 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499331445, + "longitude": -75.1680306, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Clothing, Fashion, Women's Clothing, Accessories, Plus Size Fashion, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "YTNZzsHBX8pUVqdsDrT9Yg", + "name": "Selah Sanctuary Spa", + "address": "2116 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950649, + "longitude": -75.176703, + "stars": 3.5, + "review_count": 77, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Day Spas, Skin Care, Massage, Hair Salons", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "frBofeY7WTNQXXaVGuCdAw", + "name": "Royall Companies Flyer Distribution & Billboards", + "address": "4614 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0245595, + "longitude": -75.1618162, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Graphic Design, Professional Services, Advertising", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "LizaSXXtaPjbxGtwo_rw9Q", + "name": "Gnocchi", + "address": "613 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413851, + "longitude": -75.1503311, + "stars": 4.0, + "review_count": 260, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "wnTVzPN7A6q1FZHI6a3FyQ", + "name": "Hip City Veg", + "address": "301 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9450420789, + "longitude": -75.1411627865, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Burgers, Salad, Vegetarian, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "0_DvJq6ywKf6qpiassAGqw", + "name": "Stokes Sports Bar", + "address": "2651 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9174069, + "longitude": -75.1743826, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False" + }, + "categories": "Sports Bars, Nightlife, Bars", + "hours": null + }, + { + "business_id": "gi0spJVFEYqfDWv0cI1KgQ", + "name": "Ramona Susan's Bake Shop", + "address": "1255 Marlborough St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9711751, + "longitude": -75.1323409, + "stars": 5.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False" + }, + "categories": "Food, Custom Cakes, Desserts, Bakeries, Cupcakes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:30-20:0", + "Wednesday": "15:30-20:0", + "Thursday": "15:30-20:0", + "Friday": "15:30-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "fwy1vZ0YFbQwi-JNXkLdcw", + "name": "Liberty All Floor Care", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618676, + "longitude": -75.0465123, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Flooring, Home Cleaning, Home Services, Carpet Installation, Local Services, Carpeting, Carpet Cleaning", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "Cz-2ekKVyKheFccKtYP1YA", + "name": "Philly Pokรฉ", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552705, + "longitude": -75.1566319, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTableService": "False", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Restaurants, Sushi Bars, Fast Food, Poke", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "5S8GAXKwiu4K7gtd2z0Osw", + "name": "Taqueria La Prima", + "address": "1104 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360406751, + "longitude": -75.1585772758, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Tacos, Restaurants, Mexican", + "hours": null + }, + { + "business_id": "BP5xXMzcmqIilbvK9zlp3Q", + "name": "Paul's Cement Work", + "address": "2014 E Stella St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9913285, + "longitude": -75.1157248, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Stucco Services, Waterproofing, Home Services, Masonry/Concrete", + "hours": null + }, + { + "business_id": "c55AdvCHm8YVwgZtWhT-Vg", + "name": "North American Home Warranty", + "address": "325 Chestnut St, Ste 800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19046", + "latitude": 39.949105, + "longitude": -75.147155, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Professional Services, Financial Services, Heating & Air Conditioning/HVAC, Real Estate, Home & Rental Insurance, Real Estate Services, Insurance, Appliances & Repair, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "eZ-t73r7ETHjyclRB7SnwQ", + "name": "Bliss", + "address": "220 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948591, + "longitude": -75.164706, + "stars": 3.5, + "review_count": 121, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'dressy'", + "Alcohol": "'full_bar'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "WiFi": "'no'", + "HasTV": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "OmZVD58AuM-gZUsVaJlp0A", + "name": "Greensgrow West", + "address": "5123 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480069, + "longitude": -75.226321, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Home Services, Specialty Food, Farmers Market, Nurseries & Gardening, Shopping, Gardeners, Floral Designers, CSA, Event Planning & Services, Local Services, Community Service/Non-Profit, Christmas Trees, Home & Garden, Food", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-18:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "vOIREhuiq543Q5qXRjoFIw", + "name": "Gianfranco Pizza Rustica", + "address": "248 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947168, + "longitude": -75.1594219, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'paid'", + "HasTV": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Pizza, Sandwiches, Italian", + "hours": { + "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": "12:0-23:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "JXHEyz6h5xl5Xd2ZpmXceQ", + "name": "Sacred Paradise Spa", + "address": "7203 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0604616, + "longitude": -75.1909623, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Pilates, Nail Salons, Weight Loss Centers, Nail Technicians, Body Contouring, Fitness & Instruction, Skin Care, Beauty & Spas, Acupuncture, Reflexology, Health & Medical, Massage, Active Life, Day Spas, Food, Juice Bars & Smoothies, Medical Spas, Massage Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "bMMf5bjTAT8LrwhE84ZuNw", + "name": "Chipotle Mexican Grill", + "address": "1512 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495628765, + "longitude": -75.1666627067, + "stars": 3.5, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Mexican, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "DaQwz_kDKnv_kplacSUC7A", + "name": "Burger King", + "address": "171 W Chelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.032104028, + "longitude": -75.1790517569, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Fast Food, Burgers", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "vhOXL8_Z5goUiv9MNaD80A", + "name": "Taste of Asia", + "address": "2515 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.912509, + "longitude": -75.2429554, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Laotian, Thai, Chinese, Vietnamese, Food, Restaurants", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "mdD_JS-xG5EX_QxVGD1dYw", + "name": "Fairmount Park", + "address": "4231 N Concourse Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9987353985, + "longitude": -75.198543291, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Local Flavor, Parks", + "hours": null + }, + { + "business_id": "Vnh_rLa0jrd4Tqjh4633Aw", + "name": "Dunkin'", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566244, + "longitude": -75.194436, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "DriveThru": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "'free'" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "6AFzUToxt_6rkhkZgFlPSA", + "name": "In & Out Express Pizza", + "address": "5811 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0418304, + "longitude": -75.1437069, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "xbaxgLzJEM7AtrNJCPhkmg", + "name": "Odd Fellows Cafรฉ", + "address": "1201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467659, + "longitude": -75.1611269, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Latin American, Cafes, Restaurants", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-18:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "fMnuBdRbVo5EkkgvuJi7PQ", + "name": "Philadelphia Fish & Co.", + "address": "207 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485577, + "longitude": -75.1443304, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "HappyHour": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Seafood, Restaurants", + "hours": null + }, + { + "business_id": "fsCTI3UO1AB1LuoRNOudfA", + "name": "Soul Boat", + "address": "1422 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9316669734, + "longitude": -75.1691339538, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HasTV": "True" + }, + "categories": "Restaurants, Seafood, Soul Food", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "0EpCmB1qbtH6Xh1RgBnQaQ", + "name": "Moldova Restaurant", + "address": "9808 Bustleton Ave, Unit H", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0878058324, + "longitude": -75.0353127586, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Modern European, Restaurants, Steakhouses, Russian, Breakfast & Brunch", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "6KXJk2AWH3NxZBuCdkggVQ", + "name": "Whipped Bakeshop", + "address": "636 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9745564, + "longitude": -75.1275515, + "stars": 4.5, + "review_count": 235, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "False" + }, + "categories": "Desserts, Food, Custom Cakes, Bakeries", + "hours": { + "Monday": "10:0-15:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "uTZNjhXe5yCTMuEEN_xwEQ", + "name": "Philadelphia Hotel Bella Vista", + "address": "752 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403402, + "longitude": -75.1594404, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Event Planning & Services, Bed & Breakfast, Hotels", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "i_WhxBtlyL02ek-GHLfuzQ", + "name": "The UPS Store", + "address": "1201 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.969885, + "longitude": -75.141263, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shredding Services, Notaries, Local Services, Shipping Centers, Professional Services, Mailbox Centers, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "DdJybF-pDd47ibomniz7Cg", + "name": "GNC", + "address": "8500 Henry Ave, Sp 39", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0635823129, + "longitude": -75.2364255469, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health Markets, Vitamins & Supplements, Food, Specialty Food, Shopping", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Emrw1nbhx9i3_y05V3Y70w", + "name": "Cosi", + "address": "1800 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9810059401, + "longitude": -75.157750994, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'" + }, + "categories": "Salad, American (New), Pizza, Sandwiches, Restaurants, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "eoN0GAIRV0WmwUm7FmzKgQ", + "name": "Yakitori Boy", + "address": "211 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559497, + "longitude": -75.1571603, + "stars": 3.5, + "review_count": 748, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': True}", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Caters": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "HappyHour": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "False", + "CoatCheck": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True" + }, + "categories": "Japanese, Sushi Bars, Karaoke, Nightlife, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "11:30-1:0", + "Saturday": "11:30-1:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "EMviUh7Lud2nqnarrqi_tQ", + "name": "Microtel Inn & Suites by Wyndham Philadelphia Airport", + "address": "8840 Tinicum Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8889605, + "longitude": -75.2457544, + "stars": 2.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "p6BHu9wwWTWpVgGcnZOQqA", + "name": "Wooden Shoe Books", + "address": "704 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420813, + "longitude": -75.1541618, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "vdLG5B0Csu4CGrCDd5IFIQ", + "name": "MaxAesthetics", + "address": "2137 East Huntingdon St, Ste W-1000", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9841569, + "longitude": -75.1230572, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Doctors, Beauty & Spas, Hair Removal, Massage, Laser Hair Removal, Hair Salons, Skin Care, Day Spas, Cosmetic Surgeons", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "HAYfJc20CxJjvI72NmmV6A", + "name": "Los Amigos Food Market", + "address": "735 South 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408491873, + "longitude": -75.1589482279, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "HasTV": "True" + }, + "categories": "Ethnic Food, Meat Shops, Specialty Food, Food, Butcher, Grocery, Mexican, Restaurants", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "1NMz64NAM9ED-x6-dbVxdw", + "name": "Buffalo Billiards", + "address": "118 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94819, + "longitude": -75.1433, + "stars": 3.5, + "review_count": 241, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "GoodForDancing": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'full_bar'", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Sports Bars, Pool Halls, Nightlife, Restaurants, Bars, American (Traditional)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "iT7J1EMIY_by5_vH4XVA0w", + "name": "Tundella Salon Spa & Extensions", + "address": "108 Market St, Ste 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496431, + "longitude": -75.1426617, + "stars": 3.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Blow Dry/Out Services, Hair Stylists, Hair Extensions, Beauty & Spas, Makeup Artists, Hair Salons", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "ownBP9VYlgCDMBnXLXkVog", + "name": "Affordable Legal Center", + "address": "2448 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0461755, + "longitude": -75.0577077, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Divorce & Family Law, Lawyers, Criminal Defense Law, Professional Services, Personal Injury Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "P-PBH28Ck3jaUY660VTuAw", + "name": "Expresspark North Lot", + "address": "1070 Tinicum Island Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19113", + "latitude": 39.86492399, + "longitude": -75.27243441, + "stars": 4.0, + "review_count": 88, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Parking, Automotive, Airport Shuttles, Hotels & Travel, Transportation", + "hours": { + "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" + } + }, + { + "business_id": "nDWDC9JyQSMGnyrMxeGmwQ", + "name": "Wood Street Pizza", + "address": "325 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9584362305, + "longitude": -75.1583431994, + "stars": 4.0, + "review_count": 139, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Salad, Burgers, Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Y96aX7yEyFan_zuQcl6BFA", + "name": "Food Designs by Axelrod & Bennett", + "address": "4429 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0167, + "longitude": -75.1158388, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Planning, Flowers & Gifts, Event Planning & Services, Food, Shopping, Florists, Party & Event Planning, Caterers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "6085NRg7QH3vXpc50F4UHQ", + "name": "Chiquita's Pizzeria & Mexican Grill", + "address": "746 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229037, + "longitude": -75.1596341, + "stars": 5.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Corkage": "False", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, Pizza, Restaurants, Italian", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "qsm7SkX60JsajT7Yz248FA", + "name": "Cafรฉ Soho", + "address": "468 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0550205, + "longitude": -75.1260334, + "stars": 4.0, + "review_count": 800, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "WiFi": "u'no'", + "HasTV": "True", + "Caters": "False", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Coffee & Tea, Food, Japanese, Restaurants, Chicken Wings, Korean, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:30-23:30", + "Wednesday": "12:30-23:30", + "Thursday": "12:30-23:30", + "Friday": "12:30-23:30", + "Saturday": "12:30-23:30", + "Sunday": "12:30-23:30" + } + }, + { + "business_id": "iInBHV5h8zQlnau2Fe5OmA", + "name": "Angelo & Josephine's Gourmet", + "address": "4241 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.024532, + "longitude": -75.22095, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Sandwiches, Specialty Food, Food", + "hours": { + "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" + } + }, + { + "business_id": "O3S4jdMvdf1VCPDoLYtqaA", + "name": "El Cafeito", + "address": "1700 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976615, + "longitude": -75.140854, + "stars": 4.5, + "review_count": 60, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Coffee & Tea, Food, Cuban, Restaurants, Latin American", + "hours": { + "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": "9:0-16:0" + } + }, + { + "business_id": "fPmJpsMSGIs9qXGMV0TPMg", + "name": "Viet Tofu", + "address": "1110 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9366266, + "longitude": -75.1619548, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Restaurants, Food, Ethnic Food, Vietnamese, Grocery", + "hours": { + "Monday": "9:0-20: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" + } + }, + { + "business_id": "rha33rq2sF-OpIL0peRVfA", + "name": "Park Towne Place Apartment Homes", + "address": "2200 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9606281, + "longitude": -75.1778218, + "stars": 1.5, + "review_count": 83, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "lUg3B3KycJSwWJqZsQ_ZBA", + "name": "New Deal Restaurant", + "address": "1600 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669602, + "longitude": -75.1639195, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Diners", + "hours": null + }, + { + "business_id": "LidsceHUX-lNtk9W3YzAXA", + "name": "US Post Office", + "address": "2500 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925975, + "longitude": -75.1886154, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shipping Centers, Public Services & Government, Post Offices, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "KLhihQ0r0BYD9ySP-WMT9A", + "name": "Rite Aid", + "address": "2017-2023 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92494, + "longitude": -75.169119, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "Caters": "False", + "DriveThru": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Shopping, Drugstores, Photography Stores & Services, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "_1erJ4alN71jOjeoThCfxg", + "name": "Green Garden", + "address": "4626 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485776, + "longitude": -75.2162769, + "stars": 2.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "WiFi": "u'no'", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0" + } + }, + { + "business_id": "2UJGBc63o8XAWqzYIfhijQ", + "name": "Grant Nails & Spa", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0879055312, + "longitude": -75.0392154604, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "SaFc1qGgO2eX_rPRC9y2Vw", + "name": "The Classy Taxi", + "address": "1003 Watkins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9281428, + "longitude": -75.1622864, + "stars": 5.0, + "review_count": 33, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Airport Shuttles, Hotels & Travel, Taxis, Local Services, Couriers & Delivery Services", + "hours": { + "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" + } + }, + { + "business_id": "uvLWDDTcBRrVeOCnv9DrBQ", + "name": "Sphinx Cafe", + "address": "100 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9479756, + "longitude": -75.1426049, + "stars": 3.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'paid'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Middle Eastern, Restaurants", + "hours": { + "Monday": "18:0-1:0", + "Tuesday": "18:0-1:0", + "Wednesday": "18:0-1:0", + "Thursday": "18:0-1:0", + "Friday": "17:0-4:0", + "Saturday": "17:0-4:0", + "Sunday": "18:0-1:0" + } + }, + { + "business_id": "A9sMtVnx0mc6juPNExJJfg", + "name": "The Handle Bar", + "address": "1102 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.967112, + "longitude": -75.134637, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "WheelchairAccessible": "False", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "Smoking": "u'yes'" + }, + "categories": "Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "5cEQaJqw26YMX9vdZ2lndg", + "name": "Missy Meyers Massage", + "address": "440 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9705012, + "longitude": -75.129032, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Massage Therapy", + "hours": { + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30" + } + }, + { + "business_id": "SesTnjerNDxwA6vQniod2g", + "name": "Vincenzo's Auto Body & Repair", + "address": "1935 S Bancroft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.926514, + "longitude": -75.1730074, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Body Shops, Auto Repair", + "hours": { + "Monday": "5:30-20:0", + "Tuesday": "5:30-20:0", + "Wednesday": "5:30-20:0", + "Thursday": "5:30-20:0", + "Friday": "5:30-20:0" + } + }, + { + "business_id": "NcN7HHJONu9xoWfgGPqITA", + "name": "Tailhook", + "address": "3522 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0371742, + "longitude": -75.0420841, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "CoatCheck": "False", + "BikeParking": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "Smoking": "u'outdoor'", + "OutdoorSeating": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'" + }, + "categories": "Sports Bars, Bars, Dive Bars, Nightlife", + "hours": null + }, + { + "business_id": "EbH3eLngUakDg24XjaA5Ow", + "name": "Happy Buffet", + "address": "2210 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9182916, + "longitude": -75.1851187, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Food, Buffets, Restaurants", + "hours": null + }, + { + "business_id": "s8NjvzYuOefJMCPp_119cQ", + "name": "Manayunk Pizza", + "address": "4222 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0268363, + "longitude": -75.21633, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "HasTV": "True", + "DogsAllowed": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Corkage": "False", + "Caters": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "GhWF18Fsz3nGC914WPBVVg", + "name": "Milan's Restaurant", + "address": "140 W Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0216770872, + "longitude": -75.126149148, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "7:0-14:0", + "Tuesday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-14:0" + } + }, + { + "business_id": "2BeDv6iW6L1BMxjAdDq_ww", + "name": "Ramen Bar", + "address": "3438-48 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957586, + "longitude": -75.1917594, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "GoodForDancing": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "CoatCheck": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsTableService": "True" + }, + "categories": "Ramen, Bars, Japanese, Nightlife, Restaurants", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "DPrljq4TfnQe2UK5TR1K7Q", + "name": "Visionworks Cottman Ave", + "address": "2118 Cottman Ave, Ste 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.049305, + "longitude": -75.06356, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Eyewear & Opticians, Health & Medical, Optometrists", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "Zpaf7JKJ7Z1F7bcpKnBBNg", + "name": "Midtown", + "address": "114 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498583, + "longitude": -75.1604545, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Restaurants, American (Traditional), Bars, Nightlife", + "hours": null + }, + { + "business_id": "SLWYIXWq2hAJAErn_icdXw", + "name": "Factory Donuts", + "address": "7114 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.035071, + "longitude": -75.0446184, + "stars": 4.5, + "review_count": 139, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "WiFi": "'no'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Food, Donuts, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "12G2rEudBUiAcFUd5DGhpA", + "name": "Planet Fitness", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.899422, + "longitude": -75.240868, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BikeParking": "False" + }, + "categories": "Active Life, Fitness & Instruction, Gyms, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "S32DQsh-gIGeIiJoL3qZvA", + "name": "Human Zoom Bikes & Boards", + "address": "4159 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023506, + "longitude": -75.219628, + "stars": 3.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bike Repair/Maintenance, Local Services, Sporting Goods, Bike Rentals, Active Life, Bikes, Shopping", + "hours": { + "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": "10:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "_MWECHurycXN4TW4rQSJNA", + "name": "Holiday Pizza", + "address": "7415 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0609134, + "longitude": -75.1673179, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "Sc4zXubCVhKsQs9zuCLjIA", + "name": "Flying Pig Picture Frames", + "address": "1720 N Randolph St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9772796, + "longitude": -75.1447392, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Arts & Crafts, Arts & Entertainment, Art Galleries, Framing", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "GKN4PuboPpC51eRSvgIqSQ", + "name": "Julissa Dominican Hair Salon", + "address": "4801 Walnut St, Ste 19139", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9562155, + "longitude": -75.217764, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Eyelash Service, Beauty & Spas, Hair Salons, Hair Stylists, Blow Dry/Out Services, Hair Extensions", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "7WxwNLWCalq4m3r0Y3nMlg", + "name": "Franco's Osteria", + "address": "3900 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0085168, + "longitude": -75.2102466, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "OutdoorSeating": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "wqpTOjsmogJy7syELpUE0g", + "name": "La Virgen De Las Nieves", + "address": "1839 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9255887619, + "longitude": -75.1592664421, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WheelchairAccessible": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'quiet'", + "RestaurantsTableService": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "True", + "HappyHour": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "qD5_El9SoKo0qJCdgQvivw", + "name": "Crescent City", + "address": "900 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9425522, + "longitude": -75.1573231, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Cajun/Creole, American (New)", + "hours": null + }, + { + "business_id": "K4iDK3cRduiaJ6eL5jHrgw", + "name": "Liberty Bell Diner", + "address": "8445 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.044553, + "longitude": -75.017575, + "stars": 3.5, + "review_count": 153, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "BYOB": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Food, Breakfast & Brunch, Desserts, Diners, American (Traditional)", + "hours": { + "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" + } + }, + { + "business_id": "H0mtZ81wzpV0yh11x2iCUA", + "name": "Tasty Twisters Bakery", + "address": "5002 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0356086771, + "longitude": -75.235882548, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pretzels, Bakeries, Food, Restaurants, Fast Food", + "hours": { + "Monday": "7:30-16:30", + "Tuesday": "7:30-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "7:30-16:30", + "Friday": "7:30-16:30", + "Saturday": "7:30-16:30", + "Sunday": "7:30-15:0" + } + }, + { + "business_id": "i4uxP1u2a-t82ELdNrVCKA", + "name": "Jyoti Indian Bistro", + "address": "7220 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0604497, + "longitude": -75.1915154, + "stars": 3.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "KxccJ1WW9J-I7TxHQazA_Q", + "name": "TT Skewer", + "address": "225 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9563999, + "longitude": -75.1570804, + "stars": 4.5, + "review_count": 118, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "None", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "Corkage": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HappyHour": "False", + "BYOB": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Barbeque, Hot Pot, Halal, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:15-21:0", + "Thursday": "11:15-21:0", + "Friday": "11:15-21:0", + "Saturday": "11:15-21:0", + "Sunday": "11:15-21:0" + } + }, + { + "business_id": "Sdial8c9KUdPRfE-2z2qHA", + "name": "Walnut Lane Golf Club", + "address": "800 Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0302273, + "longitude": -75.2028247, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Local Flavor, Golf", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "7:0-20:30", + "Sunday": "7:0-20:30" + } + }, + { + "business_id": "vsjZ6QzDk-gZwh3b1a9r0A", + "name": "Horn & Hardart Coffee", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542677, + "longitude": -75.1678993, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, Vegetarian, Coffee & Tea, Juice Bars & Smoothies, Food, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "SIIBqOMbh35p308vuAOLjg", + "name": "Philly Bagels", + "address": "1811 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544386, + "longitude": -75.1702347, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Food, Bagels", + "hours": null + }, + { + "business_id": "HNI6qvswn1KYybgJVqUWGg", + "name": "Marinucci's Deli - Mayfair", + "address": "2852 Saint Vincent St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0415039, + "longitude": -75.0541217, + "stars": 4.5, + "review_count": 130, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "-lOZM47MomBU4JYkzvN4Ww", + "name": "Pennsylvania Driving School", + "address": "9881 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1014222, + "longitude": -75.0400787, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Education, Registration Services, Driving Schools, Specialty Schools, Automotive, Local Services", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "5sC333jexxCw6xhCgkkjhw", + "name": "Jonathan Adler", + "address": "33 North 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9511823, + "longitude": -75.1452806, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Shopping, Arts & Crafts, Fashion, Accessories, Cards & Stationery, Flowers & Gifts", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "5U9v508p73HneXWg3_4Www", + "name": "Crispy Sweetie", + "address": "434 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9524731, + "longitude": -75.2266484, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Hot Dogs, Specialty Food, Food, Breakfast & Brunch, Candy Stores, Donuts", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "7pEK40Lzs6Rkz8O7jfNsmg", + "name": "Pietro Jewelers", + "address": "1501 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9123021, + "longitude": -75.1742149, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Tuesday": "11:30-17:30", + "Wednesday": "11:30-18:0", + "Thursday": "11:30-17:30", + "Friday": "11:30-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "0WnfHcKIzFgf3kAIP4NEbQ", + "name": "The Mood", + "address": "531 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420313, + "longitude": -75.1519082, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Lingerie, Shopping, Adult, Fashion", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "_x7zjCoV1w5J-u5Ih2kKrQ", + "name": "Sweet Flights", + "address": "8800 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8822661, + "longitude": -75.2324662, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Desserts, Candy Stores, Specialty Food, Food", + "hours": null + }, + { + "business_id": "Dy_fP3cm42iXovWsyTmiPw", + "name": "Goffredo Vincent Plmbr", + "address": "806 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948376, + "longitude": -75.2171196, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Plumbing", + "hours": null + }, + { + "business_id": "OxQK9EMUXqynT7dbWAP9wA", + "name": "Mission BBQ", + "address": "11000 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1005522045, + "longitude": -75.0092536759, + "stars": 4.0, + "review_count": 242, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Barbeque, Restaurants", + "hours": { + "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", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "qoHgAxwNTiNCli9d7RQl2w", + "name": "Sweet Charlie's", + "address": "1921 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506847, + "longitude": -75.173394, + "stars": 3.5, + "review_count": 103, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Dhhzvru7z1dfqoSbSKHZ_A", + "name": "Angel Heating & Cooling", + "address": "6044 Castor Ave, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.035591, + "longitude": -75.08167, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Water Heater Installation/Repair, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "bG5alCzwoomtIEyOq7z4Ew", + "name": "Au Bon Pain", + "address": "1701 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547208, + "longitude": -75.1689532, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries", + "hours": null + }, + { + "business_id": "Mv_tlEWZVfKguCRl22WbqQ", + "name": "The View at Old City", + "address": "401 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9546116737, + "longitude": -75.1470439, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "83Fw7PpQR9GY-IEokD7mmg", + "name": "1201 Bar", + "address": "1201 S 28th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9389811, + "longitude": -75.1898882, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Dive Bars, American (Traditional), Nightlife, Restaurants, Bars", + "hours": null + }, + { + "business_id": "XK6ylL44zvCOM0bfQGK5tA", + "name": "Raymour & Flanigan Furniture and Mattress Store", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.030638, + "longitude": -75.102346, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Home Decor, Home & Garden, Shopping, Mattresses, Furniture Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "9ZcxmF09BwB7K2R_I0yU1g", + "name": "Buttercream Cafe & Bakery", + "address": "2015 Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9229547652, + "longitude": -75.1526948586, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "False" + }, + "categories": "Food, Bakeries, Cafes, Restaurants", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "RUgJgDeBNtRVBr8T8q8gQg", + "name": "Papery of Philadelphia", + "address": "57 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951955, + "longitude": -75.145, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Crafts, Flowers & Gifts, Shopping, Books, Mags, Music & Video, Cards & Stationery, Event Planning & Services", + "hours": null + }, + { + "business_id": "-cSHu3A9IalZn8s7NGJagw", + "name": "Phila Massages", + "address": "132 S 17th St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950504, + "longitude": -75.169215, + "stars": 5.0, + "review_count": 84, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Health & Medical, Massage Therapy, Active Life, Beauty & Spas, Massage", + "hours": { + "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": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "s9ceDy-cVHe0uzvZpWq87Q", + "name": "E Mei Restaurant", + "address": "915 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536815, + "longitude": -75.1554273, + "stars": 4.0, + "review_count": 407, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "False", + "HasTV": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "OutdoorSeating": "None", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}", + "WheelchairAccessible": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True" + }, + "categories": "Szechuan, Chinese, Restaurants, Noodles, Soup", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "oBpjZ_1m_Z8ELdq_1btj8Q", + "name": "Black Diamond Transportation", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Airport Shuttles, Limos, Airports, Travel Services, Transportation, Hotels & Travel, Taxis", + "hours": { + "Monday": "0:0-23:30", + "Tuesday": "0:0-23:30", + "Wednesday": "0:0-23:30", + "Thursday": "0:0-23:30", + "Friday": "0:0-23:30", + "Saturday": "0:0-23:30", + "Sunday": "0:0-23:30" + } + }, + { + "business_id": "1fIcH6EfKXuE5gi7WiRcAg", + "name": "Bonded Boutique", + "address": "3724 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9511662, + "longitude": -75.1985445, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Jewelry, Women's Clothing, Fashion", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "6yXQIqM6397s8VY0jutUFg", + "name": "Dunkin'", + "address": "5301 Chew Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0433623186, + "longitude": -75.1592284707, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "4:30-20:0", + "Tuesday": "4:30-20:0", + "Wednesday": "4:30-20:0", + "Thursday": "4:30-20:0", + "Friday": "4:30-20:0", + "Saturday": "4:30-20:0", + "Sunday": "4:30-20:0" + } + }, + { + "business_id": "9-tv34085lueairnehLvEg", + "name": "C&C Plastering", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9938284, + "longitude": -75.1399443, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Stucco Services, Building Supplies, Painters, Waterproofing, Home Services, Masonry/Concrete, Professional Services", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-18:0" + } + }, + { + "business_id": "o996tDYd0KRgeuY9mDeAGg", + "name": "Abner's Cheesesteaks", + "address": "3813 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553957, + "longitude": -75.1986337, + "stars": 3.5, + "review_count": 223, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "'beer_and_wine'", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BikeParking": "True" + }, + "categories": "Cheesesteaks, Restaurants, Sandwiches, Pizza, American (Traditional)", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:30-14:30", + "Saturday": "11:30-14:30", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "udg8hY-1iGS9aQmEDLGR1Q", + "name": "Woodland Village Restaurant", + "address": "6234 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.927412, + "longitude": -75.231476, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "n39G9yntG2OZFQOZfq6s-A", + "name": "Ontario Street Comics", + "address": "2235 E Ontario St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9930948, + "longitude": -75.1033299, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Comic Books, Books, Mags, Music & Video, Shopping", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "RY0ojWzOlDOjEjiAOsSMVQ", + "name": "Kadillac Tattoo Mt Airy", + "address": "7102 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.058369, + "longitude": -75.189722, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Tattoo, Piercing", + "hours": { + "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": "13:0-20:0" + } + }, + { + "business_id": "iRp8WsHdN1Acmp-P5Tx-mg", + "name": "Long Shot BBQ", + "address": "2900 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387267, + "longitude": -75.1923844, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "Corkage": "False", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Barbeque, Sandwiches, Food Delivery Services, Wraps", + "hours": { + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "_qgqa4X1OiMLqub1hHaMjg", + "name": "Res Ipsa Cafe", + "address": "2218 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508611, + "longitude": -75.1783641, + "stars": 4.0, + "review_count": 205, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "HasTV": "True", + "DogsAllowed": "False", + "Alcohol": "'none'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Coffee & Tea, Cafes, Food, Breakfast & Brunch, Italian", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-22:30", + "Thursday": "7:0-22:30", + "Friday": "7:0-22:30", + "Saturday": "8:0-17:0", + "Sunday": "8:0-22:30" + } + }, + { + "business_id": "JhAyG4TYH9sFGVGhxjHsSQ", + "name": "Smoker's Zone", + "address": "6810 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.055119, + "longitude": -75.090484, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Shopping, Vape Shops, Cigar Bars, Nightlife, Bars, Head Shops", + "hours": { + "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-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "p32eg0OGN731AMsi3QzBMw", + "name": "JD Mcgillicuddy's Manayunk", + "address": "111 Cotton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255643503, + "longitude": -75.2222046729, + "stars": 3.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "Caters": "True", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Music": "{u'dj': True, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}" + }, + "categories": "Restaurants, Nightlife, Beer, Wine & Spirits, Food, American (Traditional), Bars, Sports Bars, Chicken Wings", + "hours": { + "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" + } + }, + { + "business_id": "g7gNnk1bzEMCyK8tWXplow", + "name": "South Street Magic", + "address": "617 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411731, + "longitude": -75.1505156, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hobby Shops, Shopping, Event Planning & Services, Magicians", + "hours": { + "Tuesday": "12:30-19:0", + "Wednesday": "12:30-19:30", + "Thursday": "12:30-19:30", + "Friday": "12:30-21:30", + "Saturday": "12:30-20:30", + "Sunday": "12:30-19:30" + } + }, + { + "business_id": "YWadWCZXRiNU1Q0XwOvyEw", + "name": "EZE Laundry", + "address": "6608 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0390943, + "longitude": -75.2239833, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laundry Services, Shopping, Home & Garden, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "69ke4OmxhjG6-7L_rhc-mQ", + "name": "Little John's Pizza", + "address": "161 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.957553, + "longitude": -75.17403, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers, Restaurants, Pizza, Cheesesteaks", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "gEnNOVdZmrM7rGLWodm16w", + "name": "Better Off Bowling", + "address": "1336 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508089, + "longitude": -75.1635747, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Social Clubs, Active Life, Arts & Entertainment, Bowling", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "c9xznvN0pQeFwzZCPbO__A", + "name": "Unitea", + "address": "265 S 44th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531852, + "longitude": -75.2103487, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'" + }, + "categories": "Food, Tea Rooms, Coffee & Tea, Restaurants, Brasseries", + "hours": { + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-20:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "wpNlcIJiWlUlGxwafLKYYA", + "name": "Frontpoint Home Security", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Security Systems, Home Services", + "hours": { + "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": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "xOeBBrc2l5OfjX_cY4bIvA", + "name": "Sor Ynez", + "address": "1800 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9786174929, + "longitude": -75.1396162445, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BusinessAcceptsCreditCards": "True", + "BYOB": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, New Mexican Cuisine, Restaurants", + "hours": { + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "UQ8UKfNSUT0aKu4naioVqw", + "name": "Tortorice's Italian Specialty Sandwiches", + "address": "233 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9494916, + "longitude": -75.1739356, + "stars": 4.5, + "review_count": 101, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "None", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Event Planning & Services, Food, Italian, Coffee & Tea, Sandwiches, Restaurants, Caterers, Delis", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:30-17:0", + "Thursday": "10:30-17:0", + "Friday": "10:30-17:0", + "Saturday": "10:30-16:0", + "Sunday": "10:30-16:0" + } + }, + { + "business_id": "6TZF6iIH1k0MLf486gBMHg", + "name": "Astro Jewelery & Gifts", + "address": "6158 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0346793, + "longitude": -75.216706, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "NitglJNDVoAM_Wr5q_mM7w", + "name": "Metropolitan Pizza & Cafe", + "address": "264 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482403, + "longitude": -75.1728287, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Cafes, Coffee & Tea, Restaurants, Food", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "AaTpjyw-EiODgi3tR4Xr-g", + "name": "Estia", + "address": "1405 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9483920508, + "longitude": -75.1653502258, + "stars": 4.0, + "review_count": 761, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "Alcohol": "'full_bar'", + "HasTV": "False", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HappyHour": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Greek, Mediterranean, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-20:30", + "Wednesday": "15:0-20:30", + "Thursday": "15:0-20:30", + "Friday": "15:0-21:30", + "Saturday": "15:0-21:30", + "Sunday": "15:0-20:30" + } + }, + { + "business_id": "_7wNcARcLtZWDeurAa6H5g", + "name": "Spirits of '76 Ghost Tours", + "address": "325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Hotels & Travel, Tours, Arts & Entertainment", + "hours": { + "Monday": "19:30-21:0", + "Tuesday": "19:30-21:0", + "Wednesday": "19:30-21:0", + "Thursday": "19:30-23:0", + "Friday": "19:30-23:0", + "Saturday": "19:30-23:0", + "Sunday": "19:30-21:0" + } + }, + { + "business_id": "piTT5OuV6ePIc_awSG0caQ", + "name": "Sweets & Curry House", + "address": "7630 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0572043, + "longitude": -75.0609549, + "stars": 3.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "HasTV": "True" + }, + "categories": "Indian, American (Traditional), Event Planning & Services, Diners, Pakistani, Restaurants, Caterers", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "14:0-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "ROs0p-56kxQL2lgV00c0yQ", + "name": "South Philly Community Acupuncture", + "address": "1532 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302488, + "longitude": -75.1630919, + "stars": 5.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage Therapy, Health & Medical, Acupuncture, Traditional Chinese Medicine", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "lWedWkinrM5j13pyimbpbA", + "name": "Miles Table", + "address": "1620 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944043, + "longitude": -75.1695127, + "stars": 4.5, + "review_count": 514, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "Alcohol": "'beer_and_wine'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "u'yes_free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Caters": "True", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "WheelchairAccessible": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food, Breakfast & Brunch, Event Planning & Services, American (Traditional), Caterers", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "jndqIGsMQnDB0dMHTZ3GNA", + "name": "Stir", + "address": "2600 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.965847, + "longitude": -75.181147, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': False, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, American (New), Nightlife, Bars", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-20:45", + "Thursday": "10:0-17:0", + "Friday": "10:0-20:45", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "jxEMFqwDJXjCxmcm5t5jVQ", + "name": "Cleavers", + "address": "108 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514103, + "longitude": -75.1706011, + "stars": 4.0, + "review_count": 1304, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Corkage": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "BYOB": "False", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Food, Restaurants, Cocktail Bars, Cheesesteaks, Beer, Wine & Spirits, Sports Bars, Lounges, Sandwiches, Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:45", + "Wednesday": "11:0-20:45", + "Thursday": "11:0-21:45", + "Friday": "11:0-21:45", + "Saturday": "11:0-21:45", + "Sunday": "11:0-20:45" + } + }, + { + "business_id": "rKmDniVMLBN_WS8RaU-IGA", + "name": "vybe urgent care", + "address": "1420 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950924, + "longitude": -75.1650573, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "False", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Walk-in Clinics, Urgent Care, Medical Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "VyhC6xK8VgTT_geFqhb-xw", + "name": "Dutch Dessert", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "DogsAllowed": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "WheelchairAccessible": "True" + }, + "categories": "Desserts, Food, Food Trucks, Bakeries", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "6rCL1hsSx2KEzq0oDfBcWA", + "name": "Le Cat Cafe", + "address": "2713 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9744442, + "longitude": -75.1809288, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Pet Adoption, Pets, Community Service/Non-Profit, Local Services, Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-15:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "I7Uj583oxTXdbmqAEfCtaw", + "name": "DeLisi Dental", + "address": "1707 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924723, + "longitude": -75.1749035, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Dentists, General Dentistry, Pediatric Dentists, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-17:30" + } + }, + { + "business_id": "vmpC7L9ifa12joDqZR5LIQ", + "name": "Big Lots", + "address": "15501 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1332062, + "longitude": -75.00946, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Furniture Stores, Fashion, Shopping, Department Stores, Home & Garden, Home Decor, Discount Store", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "25sLng-w7vBXbZfyBNeOWg", + "name": "Museum Deli", + "address": "333 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9613057, + "longitude": -75.1444538, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Salad, Grocery, Delis, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "MJX-MMS0Z0PRTBY2cVqIXA", + "name": "Bralow's Fresh Fish & Seafood", + "address": "8006 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.060106, + "longitude": -75.0523306, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Seafood Markets, Specialty Food, Food", + "hours": { + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "VFdwCUNqF2TLHElyhCXgMg", + "name": "Lucky Red", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9638134, + "longitude": -75.1324645, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False" + }, + "categories": "Bars, Arts & Entertainment, Sports Bars, Lounges, Casinos, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "lmRr6WjnhfItBZWZEdAfsQ", + "name": "Advocare Fairmount Pediatrics and Adolescent Medicine", + "address": "2000 Hamilton St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Pediatricians, Health & Medical, Doctors", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "10:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:15-20:0", + "Friday": "8:15-16:30", + "Saturday": "9:30-12:30" + } + }, + { + "business_id": "vZd1_LWEn7ae2feeXLNCRw", + "name": "Gap", + "address": "8500 Essington", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876216, + "longitude": -75.242183, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BikeParking": "False" + }, + "categories": "Men's Clothing, Fashion, Children's Clothing, Shopping, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "ME7nOO4hHoCwkbssGqsyPA", + "name": "Blackbird Pizzeria", + "address": "507 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427139128, + "longitude": -75.1521387816, + "stars": 4.0, + "review_count": 716, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Pizza, Vegan", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Pmb8DDl9ATf0Q8pIev13ZQ", + "name": "Intermezzo Cafe", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524388, + "longitude": -75.1873387, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "6QXA4z4DeURa9cWZYodPcg", + "name": "Mecca Unisex Salon", + "address": "1432 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.978714, + "longitude": -75.159409, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "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-18:0" + } + }, + { + "business_id": "dtOiL5peZcmq0XU3HOdHVw", + "name": "Kurry Shack", + "address": "6 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504385693, + "longitude": -75.1457622327, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "qievsN2fQbRZXywsQFf1AQ", + "name": "Bucks County Coffee Co", + "address": "3430 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535647, + "longitude": -75.1933406, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Food, Restaurants", + "hours": null + }, + { + "business_id": "8CgkoWyVbwX7D9OMdMTcIA", + "name": "Daffy's", + "address": "1700 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512836, + "longitude": -75.1689903, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Jewelry, Department Stores, Fashion, Shopping, Sporting Goods, Sports Wear, Men's Clothing", + "hours": null + }, + { + "business_id": "LTPgXy4GNrOQ7cHgAPEOGg", + "name": "Furniture Mecca", + "address": "101 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0046351, + "longitude": -75.1276659, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Home & Garden, Furniture Stores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Ytr6wJ0Y6SXOgM0ea9RSXQ", + "name": "Pura Vida", + "address": "527 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963675, + "longitude": -75.1476332, + "stars": 4.0, + "review_count": 144, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Spanish, Restaurants, Seafood, Latin American, Mexican, Tapas Bars", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "10:0-22:0" + } + }, + { + "business_id": "HppAioydGJk_W09OJXw_QQ", + "name": "Avant Gardens", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9795244, + "longitude": -75.145782, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Snow Removal, Local Services, Fences & Gates, Home Services, Landscaping, Gardeners", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "JIvfg4W979rqqfGDRD4MXA", + "name": "Cafรฉ Rue 52", + "address": "503 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9518141, + "longitude": -75.2263297, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Caters": "True" + }, + "categories": "Creperies, Coffee & Tea, Food, Desserts, Restaurants", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-19:0", + "Saturday": "7:30-19:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "wKTKon1F5krJ35zAEtEqxw", + "name": "Tree of Zen Spa", + "address": "100 S Broad St, Ste 920", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 39.9502943, + "longitude": -75.1645249, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage Therapy, Nail Salons, Massage, Reflexology, Beauty & Spas, Health & Medical, Skin Care, Reiki, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:30" + } + }, + { + "business_id": "1MVoJvPhP5SkrJGCxuriaQ", + "name": "Chipotle", + "address": "1851 S Columbus Blvd, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923491, + "longitude": -75.1405828, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Fast Food, Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "SGi8AJhR8iS-LsQwcMOAVA", + "name": "Eulogy Belgian Tavern", + "address": "136 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9483817004, + "longitude": -75.1438970408, + "stars": 4.0, + "review_count": 678, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "None", + "OutdoorSeating": "True", + "BYOBCorkage": "'no'", + "Caters": "True", + "WiFi": "u'free'", + "Smoking": "u'outdoor'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "CoatCheck": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "HappyHour": "True", + "WheelchairAccessible": "True", + "Corkage": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "True" + }, + "categories": "Food, Belgian, Fish & Chips, Nightlife, Beer, Wine & Spirits, Food Delivery Services, Bars, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "8iXOCgIvyCWxoE8gnX3IIw", + "name": "IHOP", + "address": "10740 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.0996149, + "longitude": -75.01003, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "Caters": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "CoatCheck": "False", + "WiFi": "'free'", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}" + }, + "categories": "American (New), Restaurants, American (Traditional), Breakfast & Brunch, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "NGSPSm2NCaLMPo7d_33LIg", + "name": "Ding Shi Foot Spa", + "address": "600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9344152, + "longitude": -75.1543726, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Massage", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "Aga2sEL7yQSycmx3Txk_XA", + "name": "Indonesia", + "address": "1725 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.92523, + "longitude": -75.17543, + "stars": 4.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "HasTV": "False", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Indonesian, Ethnic Food, Food, Restaurants, Specialty Food", + "hours": { + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "hz_jlKOsbQT3bsucp670qA", + "name": "Ochatto", + "address": "3608 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9545950448, + "longitude": -75.1951047019, + "stars": 3.5, + "review_count": 217, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "True", + "BYOB": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "'beer_and_wine'" + }, + "categories": "Noodles, Food, Restaurants, Japanese, Chinese, Bubble Tea", + "hours": { + "Monday": "11:15-22:0", + "Tuesday": "11:15-22:0", + "Wednesday": "11:15-22:0", + "Thursday": "11:15-22:0", + "Friday": "11:15-23:0", + "Saturday": "11:15-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "70VI6reR3oDXWhRRgpTRTQ", + "name": "3J's Food Market Fishtown", + "address": "1140 Shackamaxon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9687912, + "longitude": -75.13376, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'" + }, + "categories": "Food, Grocery, Delis, Beer, Wine & Spirits, Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "8awz5GSXpwf3MIxztHmoGg", + "name": "Paganos Market and Bar", + "address": "2001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9543093077, + "longitude": -75.1739177338, + "stars": 3.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Wineries, Caterers, Bars, Italian, Food Delivery Services, Food, Event Planning & Services, Nightlife, Cocktail Bars, Arts & Entertainment, Sandwiches, Restaurants", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0" + } + }, + { + "business_id": "lV9H0KkYHI1bghGioXcLYA", + "name": "The Fix Car Care Clinic", + "address": "2424 E Harold St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9803402886, + "longitude": -75.1193508133, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Automotive, Auto Customization, Car Inspectors, Smog Check Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "AhhnXOh0skWXOVoQjD9FNA", + "name": "Club Heat", + "address": "112 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.948073, + "longitude": -75.143088, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Dance Clubs", + "hours": { + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "IsRc98sNAR3tuPDB1GJrZQ", + "name": "Santucci Brothers V", + "address": "3862 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0207263, + "longitude": -75.2129837, + "stars": 3.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "tJH6fNXoMkgWRyN_Y76eZg", + "name": "New China Court", + "address": "7700 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0731087397, + "longitude": -75.1946631098, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BYOBCorkage": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "False", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "nk9CYmNy0mxuu3dosjyV3Q", + "name": "The Flying Saucer Cafe", + "address": "2545 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9704241, + "longitude": -75.1794779, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Breakfast & Brunch, Bagels, Restaurants, Food, Coffee & Tea", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "urNCR3wXVxLdIhH-_wy5HA", + "name": "Santander Bank", + "address": "8623 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.07678421, + "longitude": -75.2074745628, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "KTU_vMbHV3Jq7MV_4KDECQ", + "name": "Katz Foam and Fabrics", + "address": "857 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9656804, + "longitude": -75.1459302, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shopping, Fabric Stores, Mattresses, Arts & Crafts, Interior Design, Home & Garden, Home Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "PkZLk4nDljDyxICCh5mB_g", + "name": "SS United States", + "address": "82 S Delaware Ave & Pier 70 Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9247029, + "longitude": -75.1415258, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Education, Museums", + "hours": null + }, + { + "business_id": "CbGP2eUbHu8Jyl28yYmG2Q", + "name": "Aerosoles of Philadelphia", + "address": "1700 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498224, + "longitude": -75.1692601, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Shopping, Shoe Stores", + "hours": null + }, + { + "business_id": "_pKEjjvNINYXArJwQSsoOg", + "name": "Carman's Country Kitchen", + "address": "1301 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933334, + "longitude": -75.162014, + "stars": 4.0, + "review_count": 135, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "NoiseLevel": "u'average'" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "8:0-14:0", + "Friday": "8:0-14:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "AnRagaVBS-KkftZX8oewdA", + "name": "Philadelphia Parking Authority", + "address": "913 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9526515, + "longitude": -75.1552577, + "stars": 1.5, + "review_count": 117, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "fRswP6Az7tOnNWmKpcPScQ", + "name": "Dhyana Yoga", + "address": "3945 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557105, + "longitude": -75.2019318, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Fitness & Instruction, Active Life, Yoga", + "hours": null + }, + { + "business_id": "UumD7BwTFSRciH8FiwDXVw", + "name": "Re:Vive Bar", + "address": "8000 Essington Ave, Terminal F - Gate F24, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951784, + "longitude": -75.2279726, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "BJwbPjeIg6qImoAXAd981Q", + "name": "DM Garage Door Solutions", + "address": "1137 Carpenter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386651, + "longitude": -75.1624669, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Garage Door Services, Door Sales/Installation, Home Services, Security Systems", + "hours": { + "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" + } + }, + { + "business_id": "okt7nWlgNNwqBzzWOKNEgA", + "name": "Nathaniel's Multi - Cultural Barbershop", + "address": "535 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9714325, + "longitude": -75.1275274, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False" + }, + "categories": "Hair Extensions, Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "gdklkhsq4C7KANfnXaTlWg", + "name": "Lil' Pop Shop & Cafe", + "address": "229 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495931, + "longitude": -75.1739148, + "stars": 4.5, + "review_count": 152, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "14:0-19:0", + "Thursday": "14:0-19:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "oLvV8WLyIKaO9HFMf_cYfg", + "name": "Insomnia Cookies", + "address": "3417 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510626215, + "longitude": -75.1942340591, + "stars": 3.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "WiFi": "'no'", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Food Delivery Services, Bakeries, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "6IXhWRi8KK2PwWxyZXTd6Q", + "name": "MM Partners", + "address": "2511 W Girard Ave, Unit 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974031, + "longitude": -75.1780297, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Services, Apartments, Real Estate, Home Services, Property Management", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "uJZgom8HpK74xz8IojpT0A", + "name": "Pizzeria Beddia", + "address": "1313 North Lee St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.970799, + "longitude": -75.134989433, + "stars": 4.0, + "review_count": 599, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Caters": "False", + "GoodForDancing": "False", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "HappyHour": "False", + "Corkage": "True", + "BestNights": "{u'monday': True, u'tuesday': False, u'wednesday': False, u'thursday': True, u'friday': False, u'saturday': True, u'sunday': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Italian, Specialty Food, Pizza, Food, Restaurants, Nightlife, Bars, Juice Bars & Smoothies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:30-20:45", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "16:0-22:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "Ova0c27WAdEEG4zl_cUyEw", + "name": "Blue Bananas Cafรฉ", + "address": "223 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412971, + "longitude": -75.1466064, + "stars": 3.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "Caters": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "ZdbGLJwrZ-gSAjiLfkECsQ", + "name": "RK Pest Control", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19428", + "latitude": 40.0824359, + "longitude": -75.3004009, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "Td58H4YnsoaEYdGZcEuHIw", + "name": "DJCRE", + "address": "1611 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925004, + "longitude": -75.173337, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Property Management, Real Estate Services, Home Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "pnZBmmQzR7bBwjhALksMjg", + "name": "Monster Pets", + "address": "1575 N 52nd St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9795824, + "longitude": -75.2248884, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Pet Services, Pets, Pet Stores", + "hours": null + }, + { + "business_id": "7geAJeOuW4DagLILNAWTjA", + "name": "Ursula Hobson Fine Art Framing", + "address": "1528 Waverly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9454763, + "longitude": -75.1680218, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Arts & Crafts, Arts & Entertainment, Framing, Shopping, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "UVmjxbmreidwhwoFpYaczA", + "name": "Pho Street", + "address": "1230 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953971063, + "longitude": -75.1608616859, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Corkage": "False", + "BYOB": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "Gluten-Free, Restaurants, Vietnamese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "cRGPe5rkMWKBhNyoLHMWFQ", + "name": "Fine Wine & Good Spirits", + "address": "4301 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9566997243, + "longitude": -75.2087265023, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Q7g4-82HBQVlC9u1xqKrCQ", + "name": "Teresa's Hair Fantasy", + "address": "3021 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9820219, + "longitude": -75.1062937, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "12:0-21:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-20:0" + } + }, + { + "business_id": "nwb6p59YvyZi0j4k0rUVlQ", + "name": "ProTri StateMovers", + "address": "7425 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0276583, + "longitude": -75.0271621, + "stars": 1.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "p9Dd6AjOawHGGzcUntYr-A", + "name": "Pho & Cafe Saigon", + "address": "4248 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9522455215, + "longitude": -75.2091038318, + "stars": 3.5, + "review_count": 183, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "BYOB": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "WheelchairAccessible": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Vietnamese, Ethnic Food, Specialty Food", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "ojOQ0TTxPhiEVISLbNGXGA", + "name": "Women's Health Care Group", + "address": "7996 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0776027, + "longitude": -75.0860725, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Doctors, Health & Medical, Obstetricians & Gynecologists", + "hours": null + }, + { + "business_id": "pq-vWtG-d6bvzCnE-dKShQ", + "name": "Kai Japanese Cuisine", + "address": "12 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950949, + "longitude": -75.1570348, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "True", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "14:30-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "N9S8P_ff8ERsqzpyvK-pUw", + "name": "Philadelphia Guitar Instruction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": null + }, + { + "business_id": "9oWrha3zItGZe3xdGNbBiA", + "name": "InksterPrints T-Shirts", + "address": "226 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9254934, + "longitude": -75.1505819, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "False" + }, + "categories": "Screen Printing/T-Shirt Printing, Local Services, Shopping, Customized Merchandise", + "hours": { + "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": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "GyfQaqe9MIMMuyInV_ACig", + "name": "Bonel Medical Equipment", + "address": "4817 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0266788, + "longitude": -75.1470518, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "QXGnmsKYANxOyZBqM-zlJA", + "name": "The Plough & the Stars", + "address": "123 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948524, + "longitude": -75.1437297, + "stars": 3.5, + "review_count": 454, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "Caters": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BYOB": "False", + "RestaurantsTableService": "True" + }, + "categories": "Nightlife, Irish, Restaurants, Bars, Gastropubs, Pubs", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "9tUPs9tYs1pzqqvAgjziQQ", + "name": "Kenny My Carpet Cleaner", + "address": "1520 N 57th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.975391, + "longitude": -75.2354291, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Carpet Cleaning", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "4tU9hlfzrCpcGWTIm-OKVA", + "name": "Rouge", + "address": "205 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949638, + "longitude": -75.170671, + "stars": 3.5, + "review_count": 495, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BYOB": "False", + "HappyHour": "True", + "WiFi": "u'free'", + "DogsAllowed": "True", + "Caters": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}" + }, + "categories": "Breakfast & Brunch, Lounges, Restaurants, Food, Burgers, American (Traditional), Asian Fusion, American (New), Tapas Bars, French, Bars, Beer, Wine & Spirits, Nightlife", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "vM2wY0rll14F8sZIvJGG5w", + "name": "Traditional Szechuan Restaurant", + "address": "4002 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951523, + "longitude": -75.2032843, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'quiet'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Chinese, Nightlife, Szechuan, Restaurants, Bars, Karaoke", + "hours": { + "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" + } + }, + { + "business_id": "6H7A587AUkBnmxRJ4tHV2g", + "name": "Gerry Pascal, CPE", + "address": "525 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419044, + "longitude": -75.1488744, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Hair Removal, Beauty & Spas, Skin Care", + "hours": null + }, + { + "business_id": "Yu401DtSmkXpJhgXnQcFrg", + "name": "Joy Tsin Lau Chinese Restaurant", + "address": "1026 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95544, + "longitude": -75.156989, + "stars": 3.0, + "review_count": 398, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Alcohol": "'full_bar'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, Venues & Event Spaces, Chinese, Dim Sum, Event Planning & Services", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "JUiwOZynj3Wid_spJoxUug", + "name": "Breezy's Cafe", + "address": "2011 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9342445, + "longitude": -75.1778899, + "stars": 4.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Vegan, Vegetarian, Cafes, Restaurants", + "hours": { + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-21:30", + "Saturday": "9:0-21:30", + "Sunday": "9:0-15:30" + } + }, + { + "business_id": "2cW157i_WdukZArr2eW1Qg", + "name": "Roar Nightclub", + "address": "720 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9529135, + "longitude": -75.1524825, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Dance Clubs, Nightlife", + "hours": { + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "7eo0DMXbqr53l_30mnD8ZA", + "name": "FDR Golf Course", + "address": "1954 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9048734, + "longitude": -75.1836541, + "stars": 2.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "None", + "BikeParking": "False" + }, + "categories": "Active Life, Golf", + "hours": null + }, + { + "business_id": "hex9car-68VjhaBCxWJWjg", + "name": "W P Cooke", + "address": "4731 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.025425, + "longitude": -75.147164, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Tires, Automotive", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "JtxubrvRdst9xsmCZV6keg", + "name": "Atlantis, The Lost Bar", + "address": "2442 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9825469, + "longitude": -75.1267973, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "GoodForDancing": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "DogsAllowed": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Pubs, Nightlife, Dive Bars", + "hours": { + "Monday": "12:30-2:0", + "Tuesday": "12:30-2:0", + "Wednesday": "12:30-2:0", + "Thursday": "12:30-2:0", + "Friday": "12:30-2:0", + "Saturday": "12:30-2:0", + "Sunday": "12:30-2:0" + } + }, + { + "business_id": "EYc-VtaD12M38OBnqFS32g", + "name": "Surf City Squeeze", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558028837, + "longitude": -75.1819517991, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Food, Fast Food, Juice Bars & Smoothies", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "ueAkLzWFFTzQkq3jzyBlnA", + "name": "Pho Xe Lua Viet Thai Restaurant", + "address": "907 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553922, + "longitude": -75.1546977, + "stars": 4.0, + "review_count": 708, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Thai, Vietnamese, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Li0rvEbw0kGwYcwGM2HJxg", + "name": "Indian Cafe & Grille", + "address": "501 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633909, + "longitude": -75.1468081, + "stars": 4.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Vegetarian, Indian, Seafood, Halal, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "f4d3IOHDiGQHMACtyVOtbg", + "name": "Chop Shop", + "address": "1930 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982268, + "longitude": -75.155856, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "Xjm9AUpS1_bVi5PjTF0K0w", + "name": "Soul Food Artist", + "address": "8052 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.04246, + "longitude": -75.0259933333, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cajun/Creole, Soul Food, Restaurants", + "hours": { + "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": "12:0-19:0" + } + }, + { + "business_id": "_gQm87rcFS0V8c-yiKGgZQ", + "name": "AT&T Store", + "address": "1701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953528915, + "longitude": -75.1685357138, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Mobile Phone Accessories, Shopping, Television Service Providers, Mobile Phones, Home Services, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "9St4eM436810TH4hE5sbSg", + "name": "Old City Oyster Bar", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480692, + "longitude": -75.1430342, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HappyHour": "True", + "OutdoorSeating": "False", + "Caters": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "WheelchairAccessible": "False", + "Corkage": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Piano Bars, Nightlife, Restaurants, Seafood, Bars", + "hours": null + }, + { + "business_id": "yibLWvjBEtmxSvanv8q3NQ", + "name": "Libertad Lounge", + "address": "1601 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.975671, + "longitude": -75.1433112, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "NoiseLevel": "u'very_loud'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Bars, Nightlife, Lounges", + "hours": null + }, + { + "business_id": "BDJe5GnHM__g0YyfZS3DkQ", + "name": "Five Star Restaurant", + "address": "6667 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0512612, + "longitude": -75.1848304, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "oZ8ET_Z6UQi7qrW4OTOPtg", + "name": "Kadillac Tattoo Deuce", + "address": "6722 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0540417, + "longitude": -75.0915586, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Piercing, Tattoo", + "hours": null + }, + { + "business_id": "pQNkUQwI_YXmoukFlu3YoQ", + "name": "Meritage", + "address": "500 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9457655, + "longitude": -75.1750607, + "stars": 4.0, + "review_count": 162, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Local Flavor, Wine Bars, Restaurants, American (Traditional)", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30" + } + }, + { + "business_id": "-5uzjjKUA-kt81j605d5Jg", + "name": "Balance Chiropractic Health Center & Spa", + "address": "112 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515402, + "longitude": -75.1737556, + "stars": 4.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "AcceptsInsurance": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False" + }, + "categories": "Massage, Active Life, Health & Medical, Fitness & Instruction, Chiropractors, Beauty & Spas, Dance Studios, Acupuncture, Yoga", + "hours": { + "Monday": "9:0-13:0", + "Wednesday": "9:0-13:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "8jY6KM_74NZp6yomYtpouQ", + "name": "Yoshi", + "address": "1600 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9620123879, + "longitude": -75.200058746, + "stars": 3.5, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'free'" + }, + "categories": "Sushi Bars, Restaurants, Bubble Tea, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0" + } + }, + { + "business_id": "pJrwr8WXv6HRbAhYazA9HA", + "name": "Car Pretty", + "address": "9915 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0977999, + "longitude": -75.0301515, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Home Services, Auto Parts & Supplies, Vehicle Wraps, Car Window Tinting, Car Stereo Installation, Automotive, Auto Detailing, Home Window Tinting, Auto Glass Services, Auto Customization", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "hcP48OHgtr-YbdDiQ81qBg", + "name": "Red Zone Old City", + "address": "35 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948923, + "longitude": -75.143534, + "stars": 2.0, + "review_count": 46, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "Caters": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Burgers, Restaurants, Nightlife, Bars, Food, Beer, Wine & Spirits, Sports Bars", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0: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" + } + }, + { + "business_id": "ZcoFKz51qDVS5xET5RxcwQ", + "name": "K&G Fashion Superstore", + "address": "7201 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04262, + "longitude": -75.05493, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Men's Clothing, Shopping, Women's Clothing, Formal Wear, Fashion", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "G_0iXYnyIbmYKEMJLNWD6A", + "name": "Curio Theatre Company", + "address": "815 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948201, + "longitude": -75.218418, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Performing Arts", + "hours": null + }, + { + "business_id": "6cD-vBZ3lg-9Fk_NkAVcaQ", + "name": "Rapid Delivery Service", + "address": "1933 Chestnut St, Ste 1R", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521493, + "longitude": -75.1731016297, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Professional Services, Couriers & Delivery Services, Shredding Services, Personal Assistants, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "G0NSmjqBQetKio5DSP7t0w", + "name": "Mew Gallery", + "address": "906 Christian St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.938816, + "longitude": -75.158121, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Arts & Crafts", + "hours": null + }, + { + "business_id": "W23Gvu7dJDjPq3PC8Q-f6A", + "name": "Wah-Gi-Wah", + "address": "4447 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95705, + "longitude": -75.2111445, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "RestaurantsReservations": "False" + }, + "categories": "Halal, Restaurants, Indian, Food, Pakistani", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "J8S7cPPlTgsQnXKVfTyN8g", + "name": "PYT", + "address": "The Piazza At Schmidts, 1050 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665050097, + "longitude": -75.1391493002, + "stars": 3.0, + "review_count": 806, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "HasTV": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Food, Salad, Burgers, Bars, Nightlife, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "WyPYFSlb_DnWWym87brdbA", + "name": "Expressions of You Card & Gift Shop", + "address": "7200 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0641875, + "longitude": -75.1538198, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Flowers & Gifts", + "hours": null + }, + { + "business_id": "wtFgXCVy9IVDo10PLU_bjg", + "name": "F45 Training Northern Liberties", + "address": "117 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9608513, + "longitude": -75.1395338, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Fitness & Instruction, Trainers, Active Life, Gyms, Interval Training Gyms, Circuit Training Gyms", + "hours": { + "Monday": "17:30-19:30", + "Tuesday": "17:30-19:30", + "Wednesday": "17:30-19:30", + "Thursday": "17:30-19:30", + "Friday": "16:30-17:30", + "Saturday": "8:30-12:0", + "Sunday": "8:30-10:30" + } + }, + { + "business_id": "l2H2TDEpnAGSi9SG6evqww", + "name": "Grill N Dutchy", + "address": "5522 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.034592, + "longitude": -75.173702, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "BRLMLt3k6NqDDPezHIS8hw", + "name": "Walter Wood Real Estate", + "address": "4005 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9559525, + "longitude": -75.2025511, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Property Management, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "1gWKVWJN2Hy8Hw7WJz5POA", + "name": "Quisqueya", + "address": "345 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9589466, + "longitude": -75.158145, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Latin American, Food, Restaurants, Ethnic Food, Specialty Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "10:0-22:0" + } + }, + { + "business_id": "502_oIIGv3G7ZHXUeMiZvA", + "name": "Johnny Rock's Grill", + "address": "8601 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.046191, + "longitude": -75.0150899, + "stars": 4.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Food Delivery Services, Barbeque, Restaurants, Cheesesteaks", + "hours": { + "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", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "TWUrms4SJGGkDlsQpWJ5DA", + "name": "Highline Automotive", + "address": "4343 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0395985, + "longitude": -75.082729, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Auto Repair, Commercial Truck Dealers, Car Dealers, Automotive", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "41ZygSobaaAr84ZkLGjY0A", + "name": "Edible Arrangements", + "address": "2308 West Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9178706, + "longitude": -75.1869588, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Florists, Flowers & Gifts, Food, Gift Shops, Chocolatiers & Shops, Specialty Food, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Hr6aM0s-woIJaW6DJSbvNQ", + "name": "Aki Nom Nom Sushi & Ramen", + "address": "1210 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948896, + "longitude": -75.1611319, + "stars": 3.5, + "review_count": 573, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "Smoking": "u'no'" + }, + "categories": "Sushi Bars, Restaurants, Lounges, Ramen, Japanese, Nightlife, Bars", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-20:0", + "Saturday": "16:0-0:0", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "AuGJDBeJb6lwq734qfyDoA", + "name": "Rauchut's Tavern", + "address": "6501 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0293137, + "longitude": -75.0558632, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "tvVN3BCrAW5yOdkSqbtMrw", + "name": "Amigos Spanish Immersion Preschool", + "address": "107 S 2nd St, STE: 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480196, + "longitude": -75.1439646, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Education, Preschools", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "e4hdGUQH8IX0Tcx1Aa3Ltw", + "name": "McDonald's", + "address": "1575 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9799311011, + "longitude": -75.2242517721, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "DriveThru": "True" + }, + "categories": "Coffee & Tea, Food, Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "4:0-0:0", + "Tuesday": "4:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "4:0-0:0" + } + }, + { + "business_id": "UG_sJQNAK4D2KmBYTfXLoQ", + "name": "Pop-A-Lock Locksmith", + "address": "7047 Germantown Ave, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0582733, + "longitude": -75.1887825, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Keys & Locksmiths, Local Services, Automotive, Home Services, Security Systems, Professional Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "EPMHuTHu46B123ivRIZ-Xg", + "name": "Magic Carpet", + "address": "34th & Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9528123, + "longitude": -75.1920992, + "stars": 4.0, + "review_count": 135, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True" + }, + "categories": "Food Stands, Vegetarian, Restaurants, Mediterranean, Food", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "clQli6NG7s8zMj5xdLjHmw", + "name": "Wilson's Beverages", + "address": "101 E Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.039225, + "longitude": -75.11817, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "kXzYfIPhf5G19hm0hwM8Qw", + "name": "Leziz Turkish Cuisine", + "address": "611 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414289, + "longitude": -75.1503017, + "stars": 4.0, + "review_count": 238, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "False" + }, + "categories": "Vegetarian, Middle Eastern, Restaurants, Turkish, Seafood", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "mx5y-OB9CHv80wcJ8SieEg", + "name": "Jeff City Block - City Block Team / Compass RE", + "address": "1624 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486, + "longitude": -75.168999, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Real Estate Agents, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "X_VJmXGiV6NqPwCrqjwPyw", + "name": "Nathan's Famous", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955346, + "longitude": -75.182122, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "None", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Ambience": "None", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Hot Dogs, Restaurants", + "hours": null + }, + { + "business_id": "8JSUpnzIRstdC4VnOrHGXA", + "name": "Divan Turkish Restaurant", + "address": "811 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490326, + "longitude": -75.1546258, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Mediterranean, Restaurants, Falafel, Turkish, Sandwiches", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "7U8PPZ2b2OVZpOBRaw3guQ", + "name": "Walgreens", + "address": "901 Market Street, Space 2260", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Drugstores, Shopping, Photography Stores & Services, Beauty & Spas, Cosmetics & Beauty Supply, Food, Convenience Stores", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "2YoJUob1RL-LCYGiXdq8dg", + "name": "McDonald's", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.063816, + "longitude": -75.238823, + "stars": 2.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "DriveThru": "True" + }, + "categories": "Restaurants, Fast Food, Coffee & Tea, Burgers, Food", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "S7ISxkEZrgcsQpNKTvdyNg", + "name": "Police and Fire Federal Credit Union", + "address": "901 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535311284, + "longitude": -75.1548496699, + "stars": 2.5, + "review_count": 39, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "OOfY8bhTuC5A4qbdn8wFBA", + "name": "Desi Village", + "address": "4527 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491434, + "longitude": -75.2142152, + "stars": 3.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Restaurants, Pakistani, Indian, Vegan", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "IA4QzPw-IFXwqgTg1XMN_g", + "name": "Lonnie's BBQ Lunch Truck", + "address": "525 N 41st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.96213, + "longitude": -75.205103, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Barbeque, Food Stands", + "hours": null + }, + { + "business_id": "-NQgfwpVyvDlA7pmmeNwrg", + "name": "Superior Auto Care", + "address": "900 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9353865, + "longitude": -75.1470931, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0" + } + }, + { + "business_id": "klkMDRLSe0cLkqKEBsujtw", + "name": "Chef Tony's Kitchen", + "address": "4320 Megargee St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.048232, + "longitude": -75.0119634, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "DriveThru": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Caterers, Event Planning & Services, Food, Farmers Market, Cajun/Creole, Street Vendors, Restaurants, Burgers, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "qgQne6KhPvazQw9GLkov2g", + "name": "Smokin Stogies N Stuff", + "address": "102 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515388, + "longitude": -75.1705174, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Head Shops, Vape Shops, Tobacco Shops", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "WMhwDub5KIuvGCjXH0fuVQ", + "name": "Art Star", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Arts & Crafts, Shopping, Fashion, Women's Clothing, Jewelry", + "hours": { + "Monday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0", + "Sunday": "12:0-15:0" + } + }, + { + "business_id": "WjCPK_Y67TuiFLLHc_NHoA", + "name": "Salon Mane", + "address": "4151 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0233192053, + "longitude": -75.2196568369, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Extensions, Hair Salons, Hair Stylists", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "funsVnBxQ2iskjcdjyhg6g", + "name": "Meridian Medica", + "address": "1124 Walnut St, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486134, + "longitude": -75.1602156, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Traditional Chinese Medicine, Beauty & Spas, Tui Na, Reflexology, Health & Medical, Massage, Acupuncture, Massage Therapy", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "d_mwzVgpkFo_D9mjSC36_w", + "name": "She Moves Philly", + "address": "1619 Walnut St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 5.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Agents, Real Estate Services, Real Estate, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "MPkF262tEuAYhiCWjWld_g", + "name": "Barry Bush Home Improvements", + "address": "237 S Melville St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9537438, + "longitude": -75.2128198, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Drywall Installation & Repair, Pressure Washers, Painters, Home Services, Decks & Railing", + "hours": { + "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" + } + }, + { + "business_id": "Unw031KzD4WIWWKve0-Jxw", + "name": "Julio's Mufflers", + "address": "2200 N Hope St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9834266, + "longitude": -75.1331697, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Parts & Supplies, Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "5ct34otoSU9jVmeLb7LNFQ", + "name": "Harry's Occult Shop, Inc", + "address": "1238 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432958, + "longitude": -75.1628455, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Grocery, Hobby Shops, Food, Local Services, Shopping", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:30" + } + }, + { + "business_id": "743qnQR06E9kUnq1uaS7rw", + "name": "Todd A Fleischman, DMD and Associates", + "address": "1608 Walnut St, Ste 1100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495016, + "longitude": -75.1680817, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WiFi": "u'free'" + }, + "categories": "Dentists, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "BObbU6CXdn1G5O2JkKJMgA", + "name": "Lineage Gallery", + "address": "21 N. 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9505915, + "longitude": -75.1435088, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Arts & Entertainment, Art Galleries", + "hours": null + }, + { + "business_id": "k_CZOE7EDy3aE-LqzB3CXg", + "name": "Philadelphia Lactation", + "address": "827 North 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9698933, + "longitude": -75.1693471, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Lactation Services, Pediatricians, Doctors, Doulas", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-12:0", + "Sunday": "10:0-12:0" + } + }, + { + "business_id": "lhGBI6YnRnPuuGNfWCMwRA", + "name": "Safelite AutoGlass", + "address": "709 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9360010235, + "longitude": -75.1557, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windshield Installation & Repair, Auto Glass Services, Body Shops, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "QvwfN9izvSDcj5OxRJgIfQ", + "name": "TP.Top Salon", + "address": "7934 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0585658936, + "longitude": -75.0527792593, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': True, 'asian': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Technicians, Beauty & Spas, Hair Salons, Nail Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "ekpKX6X9ibPOnmQSaTfRGg", + "name": "Philly Art Collective", + "address": "253 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955475, + "longitude": -75.144287, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Entertainment, Shopping, Art Galleries", + "hours": null + }, + { + "business_id": "VZPqQGDDGRwKFG79eP-ZjQ", + "name": "Oteri's Italian Bakery", + "address": "499 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.04494, + "longitude": -75.2311762, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Bakeries", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "35GnZKj5t18rDyA1PyQENA", + "name": "Ridge Ave Pizza & Grill", + "address": "1500 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967954, + "longitude": -75.1621932, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "xKPf2mNMmhm39CArujn2Wg", + "name": "Xiang Gourmet", + "address": "1304 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489101, + "longitude": -75.1624159, + "stars": 4.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': True, 'classy': None, 'casual': True}", + "HasTV": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "wF978e1ynly8szIHIoLiRA", + "name": "The Suit Store", + "address": "1225 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506393407, + "longitude": -75.1614636149, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Men's Clothing, Fashion, Shopping, Formal Wear", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "11:0-17:30" + } + }, + { + "business_id": "mJqwqXTua2ow3zHEyMm7Bw", + "name": "Raykin Watch Repairs", + "address": "60 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531598, + "longitude": -75.1549052, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Watch Repair, Watches, Local Services, Jewelry, Shopping", + "hours": null + }, + { + "business_id": "su6_gdnoo5W15eAOahdnuQ", + "name": "Pita Uno", + "address": "138 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489971, + "longitude": -75.1590285, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Food, Local Flavor, Specialty Food, Mediterranean, Restaurants, Ethnic Food", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "6teUhC1N3bSFJX4dcKfrHg", + "name": "Alden Park", + "address": "2979 W School House Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0274997, + "longitude": -75.1881398, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": null + }, + { + "business_id": "GkjA0yHcFU2yGMBq72jEyw", + "name": "Devilfish Ink", + "address": "2424 Martha St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9825781, + "longitude": -75.1275614, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Screen Printing, Professional Services, Screen Printing/T-Shirt Printing, Graphic Design", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "Hj0DOOPs2bW_Rqd_Zv1MPQ", + "name": "Abrams Plumbing and Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Plumbing, Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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" + } + }, + { + "business_id": "lh3zX7KElyS3Gc5Iqn7Cnw", + "name": "City Running Tours", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Active Life, Hotels & Travel, Tours", + "hours": null + }, + { + "business_id": "8uc-V5fIPcsHfLc6wR6aOQ", + "name": "Redwood", + "address": "340 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941523, + "longitude": -75.148861, + "stars": 3.0, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, American (New), Restaurants, Bars, Breakfast & Brunch", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "MiZceSdvf3etkKX_jYwQHA", + "name": "Pompanoosuc Mills", + "address": "4120 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0226761, + "longitude": -75.2192502, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Home Decor, Shopping, Furniture Stores, Home & Garden", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "WixiQugMjFgCF_MBN8YSzg", + "name": "Smoked and Chopped", + "address": "3300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9661569, + "longitude": -75.1910622, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, American (Traditional), Food Delivery Services, Barbeque, Food", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0" + } + }, + { + "business_id": "zcio2NjmGKZFOXfTtQA4ZA", + "name": "Mexican Post", + "address": "104 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948011, + "longitude": -75.142785, + "stars": 2.5, + "review_count": 90, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Mexican, Tex-Mex", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-22:0" + } + }, + { + "business_id": "M-xyLgKg_Tno6GTRWu8JIw", + "name": "Temple University Orthodontic Department", + "address": "3223 N Broad St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.002206, + "longitude": -75.1519535, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Orthodontists, Health & Medical, Dentists", + "hours": null + }, + { + "business_id": "N2WMU2coC-SK8opsRkj1Og", + "name": "US Post Office", + "address": "1500 John F Kennedy Blvd, Ste C31", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Public Services & Government, Post Offices, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "bYLtRQuVUmpPdMCq9-NSlQ", + "name": "MindEscape", + "address": "521 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420277917, + "longitude": -75.1489698, + "stars": 5.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Team Building Activities, Active Life, Event Planning & Services, Arts & Entertainment, Escape Games, Arcades", + "hours": { + "Monday": "16:0-21:30", + "Tuesday": "16:0-21:30", + "Wednesday": "16:0-21:30", + "Thursday": "16:0-21:30", + "Friday": "16:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "obIvMFT-JNT54N7lcrtjDg", + "name": "The Lennox Apartments", + "address": "236 W Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0365003, + "longitude": -75.1827251, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "5ICrDkwtX4ykKOLVJ1tFJA", + "name": "Kaffa Crossing", + "address": "4421 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568639964, + "longitude": -75.2104099153, + "stars": 4.0, + "review_count": 207, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Coffee & Tea, Ethiopian, Food, Breakfast & Brunch, Juice Bars & Smoothies", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "h8wRltXO0JinD5BwEPtFrA", + "name": "Philly Sweettooth", + "address": "630 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408545, + "longitude": -75.1494532, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "WiFi": "'free'", + "BikeParking": "True" + }, + "categories": "Food, Specialty Food, Ice Cream & Frozen Yogurt, Candy Stores", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "A8wTbf5kgFdcqxOl04Cu7w", + "name": "Dino's Party Center", + "address": "1638 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92831, + "longitude": -75.160391, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Party & Event Planning, Party Supplies, Wedding Planning, Furniture Stores, Event Planning & Services, Home & Garden, Balloon Services, Shopping, Party Equipment Rentals", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-15:30", + "Saturday": "10:0-15:30", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "xgCDtx95_83aF3lU-30noA", + "name": "Gap Factory", + "address": "1912-18 Chestnut St, Ste 700", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951746, + "longitude": -75.17248, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False" + }, + "categories": "Men's Clothing, Sporting Goods, Shopping, Sports Wear, Women's Clothing, Fashion, Outlet Stores, Children's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "BDwjyU57qzycgtwW8OCfGA", + "name": "Wee Ones", + "address": "7816 Halstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0718783, + "longitude": -75.0825823, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Child Care & Day Care", + "hours": null + }, + { + "business_id": "4lwprLC0sYS3isHe3_qqyw", + "name": "Strands 25", + "address": "2504 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9192392, + "longitude": -75.1711482, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "b0PRhOHyCi4AjQAMfWnjjQ", + "name": "Amalgam Comics & Coffeehouse", + "address": "2578 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9850487942, + "longitude": -75.1244196271, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "DogsAllowed": "False", + "Caters": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsDelivery": "False" + }, + "categories": "Comic Books, Shopping, Coffee & Tea, Food, Bakeries, Books, Mags, Music & Video", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "Q_t5XEiOLDVVYke9u7_uew", + "name": "Styledelphia", + "address": "8113 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.05733, + "longitude": -75.235933, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Makeup Artists, Fashion, Beauty & Spas, Shopping, Hair Salons, Used, Vintage & Consignment, Hair Stylists, Cosmetics & Beauty Supply", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "xWCERoeAakW3OiA4DR9iqw", + "name": "Pat's Place", + "address": "4200 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0261995, + "longitude": -75.2158057, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Burgers, Delis, Breakfast & Brunch, Sandwiches, Food, Food Delivery Services, Restaurants", + "hours": { + "Monday": "9:0-12:0", + "Tuesday": "9:0-12:0", + "Wednesday": "9:0-12:0", + "Thursday": "9:0-12:0", + "Friday": "9:0-12:0", + "Saturday": "9:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "oDKGXVSQfegQt1QU9KLiJA", + "name": "McDonald's", + "address": "2801 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0444786018, + "longitude": -75.0533566577, + "stars": 1.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True" + }, + "categories": "Restaurants, Burgers, Coffee & Tea, Fast Food, Food", + "hours": { + "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" + } + }, + { + "business_id": "T3VOEncALh9RJXFUcDiqUQ", + "name": "The Mini Trini Truck", + "address": "16th & JFK Love Park", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Street Vendors, Food Trucks, Food", + "hours": { + "Monday": "11:30-15:30", + "Thursday": "14:0-20:0" + } + }, + { + "business_id": "2fDxegMVGVUY31L3V__MgQ", + "name": "Kirk G Kredell", + "address": "2636 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9753594, + "longitude": -75.1220195, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Home & Garden, Hardware Stores", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "DBcy7rP5chQyvZ4nMTkBFA", + "name": "Oxford Rehabilitation Center", + "address": "6735 Harbison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0398013, + "longitude": -75.064948, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Acupuncture, Health & Medical, Fitness & Instruction, Chiropractors, Physical Therapy, Active Life, Gyms", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-20:0" + } + }, + { + "business_id": "t1QrCzXpmtHpPzTggqKUaQ", + "name": "Checkers", + "address": "5129 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9600697, + "longitude": -75.2245007, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'free'", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Food, Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-4:0", + "Thursday": "10:0-4:0", + "Friday": "10:0-4:0", + "Saturday": "10:0-4:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "8voubLtV5i1Vs4ieTq_gcA", + "name": "Chesterbrook Academy Preschool", + "address": "510 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947595, + "longitude": -75.150164, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Private Schools, Child Care & Day Care, Preschools, Education, Day Camps, Elementary Schools, Summer Camps, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "nAFLBslPK9GxNqzvHhiEwQ", + "name": "Pelvic and Sexual Health Institute", + "address": "207 N Broad St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9564474, + "longitude": -75.1623361, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Medical Centers", + "hours": null + }, + { + "business_id": "1RhquR9-ODyfNxMNUnXmxA", + "name": "OffShoots", + "address": "440 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0433916, + "longitude": -75.2354631, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Florists, Event Planning & Services, Shopping, Local Services, Floral Designers, Flowers & Gifts, Sewing & Alterations", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "X6sTEsFWj1ZdiuGcUj9uYQ", + "name": "JC's Deli", + "address": "2300 S Croskey St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923563, + "longitude": -75.1840635, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Italian, Delis", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "O7V5-EkWlcNUbZFMcrSpSQ", + "name": "Dentists On Washington", + "address": "544 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9349007, + "longitude": -75.1536716, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "General Dentistry, Health & Medical, Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-18:0", + "Wednesday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "9:30-13:30" + } + }, + { + "business_id": "Y7bpk83gKWgCmi7yKGTTug", + "name": "Wendy's", + "address": "2130 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.918945, + "longitude": -75.140839, + "stars": 1.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "True", + "BikeParking": "False", + "NoiseLevel": "'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "EQDtTsve_bNxhQzxfVy9nA", + "name": "ReLet's Foot SPA", + "address": "132 S 17th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504874, + "longitude": -75.1691989, + "stars": 4.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Health & Medical, Beauty & Spas, Massage Therapy, Reflexology, Massage, Tui Na, Traditional Chinese Medicine, Acupuncture, Day Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-20:30", + "Saturday": "10:0-20:30", + "Sunday": "10:0-20:30" + } + }, + { + "business_id": "q-qDww0P3s7GFhyII4TYbg", + "name": "Three Trees Custom Framing", + "address": "722 South 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9400423, + "longitude": -75.1496698, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Arts & Crafts, Framing", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "eyH035q5IorJQjKDAZQm6g", + "name": "Wayne Kee Hardware & Kitchen Supplies", + "address": "936 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95332, + "longitude": -75.156147, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hardware Stores, Home & Garden, Shopping, Kitchen Supplies, Kitchen & Bath", + "hours": null + }, + { + "business_id": "z8PyCPTIHTFmbb7cQVWUKg", + "name": "Dukeโ€™s Of Marlborough", + "address": "1429 Marlborough St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9733597, + "longitude": -75.1336174, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "KCl9Smwz_UwRqStq6dTC2A", + "name": "ALDI", + "address": "4421 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9592785, + "longitude": -75.2130031, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Discount Store, Meat Shops, Shopping, Grocery, Food, Beer, Wine & Spirits, Fruits & Veggies, Organic Stores, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "tFs9MbABAZeHLhfMh_mV6g", + "name": "M's on the Square", + "address": "604 S Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459518, + "longitude": -75.1523091, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Hair Extensions, Beauty & Spas, Blow Dry/Out Services, Hair Salons", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "e_lqKAWIiE8wU6mk2HPI-Q", + "name": "Taco Bell", + "address": "1037 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502, + "longitude": -75.15762, + "stars": 2.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Tacos, Mexican, Fast Food, Tex-Mex", + "hours": { + "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:30-23:0", + "Sunday": "8:30-23:0" + } + }, + { + "business_id": "i021iBZ1SatdR-NzBuR7Cw", + "name": "Tano's Deli", + "address": "7401 Bingham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0621974, + "longitude": -75.0804316, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Delis", + "hours": null + }, + { + "business_id": "iOKdzs-arrM9Jv4TKz5M1Q", + "name": "Little Italy Pizza & Trattoria", + "address": "342 Queen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9374108, + "longitude": -75.1499642, + "stars": 3.5, + "review_count": 101, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Pizza", + "hours": { + "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" + } + }, + { + "business_id": "OEeQTVPtrKq4kPqdIJLrKw", + "name": "McDonald's", + "address": "29 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394621, + "longitude": -75.1912313, + "stars": 1.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Fast Food, Burgers, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "4:0-0:0" + } + }, + { + "business_id": "y7XfZ8xgOggcqoiyRHfwDg", + "name": "Excel Physical Therapy - Center City", + "address": "1608 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496657, + "longitude": -75.1680264, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'no'" + }, + "categories": "Physical Therapy, Trainers, Fitness & Instruction, Health & Medical, Active Life", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "HhVtu9x95-hygnUjQn6yBQ", + "name": "The Down Town Club", + "address": "600 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490638, + "longitude": -75.150979, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Caterers, Event Planning & Services, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "lRrpp0s9X7i7zfrFk5YW0A", + "name": "Helena Raju Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Session Photography, Photographers, Event Planning & Services, Event Photography", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "GWv1-6HFvZf4cOy1J6_CKQ", + "name": "Taqueria Feliz", + "address": "4410 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258865, + "longitude": -75.2250971, + "stars": 4.0, + "review_count": 460, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Corkage": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False", + "Caters": "False", + "BikeParking": "True", + "BYOB": "False", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "PrYSQ_FVZAXB46KcscmLrw", + "name": "Sandler's On 9th", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493831, + "longitude": -75.1551309, + "stars": 4.0, + "review_count": 246, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "Caters": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "uJxUDvRd89bHePJOD0-n3g", + "name": "Cicala at the Divine Lorraine", + "address": "699 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9666803, + "longitude": -75.160056, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BYOB": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "Corkage": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsTableService": "True" + }, + "categories": "Italian, Breakfast & Brunch, Restaurants, Wine Bars, Nightlife, Bars", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "x19ByetjgKorjAfoDtZx0w", + "name": "myDoc Urgent Care", + "address": "1501 N Broad St, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9761809, + "longitude": -75.158122, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Laboratory Testing, Health & Medical, Diagnostic Services, Urgent Care, Medical Centers, Emergency Rooms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "V7xcLU1vsRTQHcPkZwHr2g", + "name": "Muntin Modern Asian Cuisine", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946666, + "longitude": -75.163993, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "hzMUPss52CP-xg5BO6TIfw", + "name": "Chop Shop", + "address": "4151 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0233831, + "longitude": -75.2195936, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "JLmaVSOfJFz4fRdLg-qLqA", + "name": "Midvale Avenue Automotive", + "address": "3629 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0120501, + "longitude": -75.1927189, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Tires, Motorcycle Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "KYm8YRuovy8PmTTzcMEPNg", + "name": "Replica Creative", + "address": "1516 N 5th St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9751266, + "longitude": -75.1440055, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Print Media, Mass Media, Local Services, Professional Services, Graphic Design", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-13:0", + "Friday": "8:30-13:0" + } + }, + { + "business_id": "L0fjkXDSwAlKFMX8mQ5ziQ", + "name": "Henry of Mayfair", + "address": "7402 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0381918, + "longitude": -75.0379556, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gold Buyers, Shopping, Watches, Local Services, Clock Repair", + "hours": { + "Tuesday": "11:30-17:30", + "Wednesday": "11:30-17:30", + "Thursday": "11:30-17:30", + "Friday": "11:30-17:30", + "Saturday": "10:30-16:0" + } + }, + { + "business_id": "-DGsnMlRrR_tv8avrpQLQw", + "name": "Sam's Morning Glory Diner", + "address": "735 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408607, + "longitude": -75.1589045, + "stars": 4.0, + "review_count": 741, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "Corkage": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, Diners", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "9omg3tNM7oSaZPkiWzYFFQ", + "name": "Philadelphia Inquirer", + "address": "801 Market St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951459, + "longitude": -75.154083, + "stars": 1.5, + "review_count": 75, + "is_open": 1, + "attributes": null, + "categories": "Print Media, Mass Media", + "hours": { + "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" + } + }, + { + "business_id": "EHWWQjzRwSBceWSZXtc2VA", + "name": "StrEATS of Philly Food Tours", + "address": "1500 Market St, Ste W-3110", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Tours, Event Planning & Services, Farmers Market, Hotels & Travel, Food, Personal Chefs, Food Tours, Walking Tours", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "10:0-18:30", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "bmUqwzIQiB6NR0rT2RIXdA", + "name": "Pound Cake Heaven", + "address": "5029 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479101288, + "longitude": -75.224631618, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Cupcakes, Bakeries", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "Y5bhZvSbmRU5sO3aEzIR_w", + "name": "Akira Sushi", + "address": "15501 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1339739, + "longitude": -75.0095741, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'upscale': False, 'divey': False, 'classy': False, 'trendy': False, 'hipster': False, 'casual': True}", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Sushi Bars", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30" + } + }, + { + "business_id": "32It9NN_lVismU9tcuLB0A", + "name": "Relish", + "address": "7152 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0634207, + "longitude": -75.1531244, + "stars": 3.5, + "review_count": 368, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "'no'", + "DogsAllowed": "False" + }, + "categories": "Caterers, Arts & Entertainment, Nightlife, Desserts, Jazz & Blues, Event Planning & Services, Food, Seafood, Southern, Soul Food, Restaurants", + "hours": { + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "72_X-wxr9TyT6OqYb-y0sA", + "name": "Crafty's Tap Room", + "address": "3332 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0682106059, + "longitude": -75.0063144735, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "GoodForDancing": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "HasTV": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Bars, Pubs, American (New), Nightlife, American (Traditional)", + "hours": { + "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" + } + }, + { + "business_id": "yED-u9Fi-MxUFs_69ogRQA", + "name": "Lee's Hoagie House", + "address": "7328 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0530181, + "longitude": -75.0648791, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Cheesesteaks, Sandwiches, Delis, Wraps", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "kiA1mrC2ZVoRmpsWgAT7ow", + "name": "Hippot Shabu Shabu", + "address": "1002 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953486, + "longitude": -75.156575, + "stars": 3.5, + "review_count": 302, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "WiFi": "'free'", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BYOB": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Asian Fusion, Chinese, Hot Pot, Restaurants", + "hours": { + "Monday": "12:0-23:30", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-23:30", + "Thursday": "12:0-23:30", + "Friday": "12:0-0:30", + "Saturday": "11:30-0:30", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "GsVytpXDRdxZUbV2WLJzxw", + "name": "Brandon Electric Inc", + "address": "7335 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0624525, + "longitude": -75.0827191, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Electricians", + "hours": { + "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" + } + }, + { + "business_id": "pN9VuJ3zu8TflAbqrjj5eQ", + "name": "PPS Properties", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Real Estate, Property Management", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "cEdeefPXaqdofYinWRvCcg", + "name": "JG Real Estate", + "address": "1140 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968013, + "longitude": -75.1346779, + "stars": 3.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Property Management, Real Estate Services, Home Services, Real Estate, Real Estate Agents", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "kK1re49IK3jmCYTL6B6_lw", + "name": "Trolley Car Diner", + "address": "7619 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.065613, + "longitude": -75.195784, + "stars": 3.5, + "review_count": 363, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Caters": "True", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Delis, Breakfast & Brunch, American (Traditional), Diners, Bagels, Food", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "mEMcdzVzuSX34TXRKG83iA", + "name": "King Wok Restaurant", + "address": "13631 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1314848, + "longitude": -75.0107537, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "CIj45EneoM8hkcFGjuY4DQ", + "name": "Reinherz & Reinherz Law Offices", + "address": "1315 Walnut St, Ste 804", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949195, + "longitude": -75.1629437, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Immigration Law, Divorce & Family Law, Personal Injury Law, Lawyers, Bankruptcy Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "UwkrmLk--LT65HndB1Odhw", + "name": "Pennsylvania Academy of Fine Arts", + "address": "118-128 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.955637, + "longitude": -75.16349, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Art Schools, Museums, Specialty Schools, Art Galleries, Arts & Entertainment, Education, Adult Education", + "hours": { + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "utUdOwhOK7bnleFIT8lxpA", + "name": "Old City Frozen Yogurt & Crepes", + "address": "229 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501921, + "longitude": -75.1447468, + "stars": 3.5, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Food, Restaurants, Desserts, Ice Cream & Frozen Yogurt, Creperies, Coffee & Tea, Do-It-Yourself Food", + "hours": { + "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" + } + }, + { + "business_id": "msQY4av6Jqr0u0oodARXyQ", + "name": "Pizza Boli's", + "address": "3883 Glendale St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.005815, + "longitude": -75.101674, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Caters": "True" + }, + "categories": "Restaurants, Pizza, Italian, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-2:30", + "Wednesday": "10:0-2:30", + "Thursday": "10:0-2:30", + "Friday": "10:0-2:30", + "Saturday": "10:0-2:30", + "Sunday": "11:0-2:30" + } + }, + { + "business_id": "NAONCnQTKzBl40hQ0oFYgw", + "name": "IHOP", + "address": "3400 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.99218, + "longitude": -75.09995, + "stars": 2.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "DriveThru": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "HappyHour": "False", + "WiFi": "'no'", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': True}", + "ByAppointmentOnly": "False" + }, + "categories": "Restaurants, American (New), American (Traditional), Breakfast & Brunch, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-14:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "JdaAaoijcQRYWXz-BMNkyA", + "name": "The Classical Guitar Store", + "address": "2038 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513543, + "longitude": -75.1748417, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BikeParking": "True" + }, + "categories": "Musical Instruments & Teachers, Shopping, Arts & Entertainment, Performing Arts", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "7ooLXitHwbAHX0b-Qf_Syw", + "name": "Under the Oak Cafรฉ", + "address": "804 Oak Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.054949944, + "longitude": -75.1372146606, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (Traditional), Food, American (New), Bakeries, Cooking Schools, Education, French, Specialty Schools", + "hours": { + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "4Do_B7sfhfsn4TQV1h0psg", + "name": "Canton 11", + "address": "1025 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540272, + "longitude": -75.1573997, + "stars": 3.5, + "review_count": 100, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "NoiseLevel": "'average'", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "DogsAllowed": "False", + "BikeParking": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "True", + "HappyHour": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Food, Dim Sum, Cantonese, Szechuan, Bars, Cocktail Bars, Nightlife, Karaoke, Food Delivery Services, Chinese, Sushi Bars", + "hours": { + "Monday": "10:30-2:0", + "Tuesday": "10:30-2:0", + "Wednesday": "10:30-2:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-3:0", + "Saturday": "10:30-3:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "Akk5eHutsuuukz6GlgT_kw", + "name": "Tasty Pot - Philadelphia", + "address": "513 Adam Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.039051, + "longitude": -75.107404, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "HasTV": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Caters": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BikeParking": "False", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': None, u'validated': False}", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BYOB": "False" + }, + "categories": "Taiwanese, Hot Pot, Restaurants, Bubble Tea, Food", + "hours": { + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "MNVLWshDR0bkCopl7WFoiQ", + "name": "Blue Banyan Yoga", + "address": "7153 Sprague St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0637888, + "longitude": -75.186594, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Yoga, Fitness & Instruction, Active Life", + "hours": { + "Monday": "7:30-20:30", + "Tuesday": "7:30-20:30", + "Wednesday": "7:30-20:15", + "Thursday": "8:0-9:30", + "Friday": "9:30-10:30", + "Saturday": "7:30-11:15", + "Sunday": "7:30-18:15" + } + }, + { + "business_id": "XRwbAt8LnTux_TaCmI2tJA", + "name": "Stiletto", + "address": "124 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951004, + "longitude": -75.170705, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Shoe Stores, Fashion, Shopping", + "hours": null + }, + { + "business_id": "JwKs0t30KXFg1B-Pnm5FKA", + "name": "Mrs. K's Koffee Shop", + "address": "325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490386, + "longitude": -75.1471998, + "stars": 3.0, + "review_count": 215, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Corkage": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Food, Diners, Coffee & Tea, Restaurants, Breakfast & Brunch, Burgers", + "hours": { + "Monday": "6:0-15:30", + "Tuesday": "6:0-15:30", + "Wednesday": "6:0-15:30", + "Thursday": "6:0-15:30", + "Friday": "6:0-15:30", + "Saturday": "7:0-14:30", + "Sunday": "7:0-14:30" + } + }, + { + "business_id": "-xRCCsf4QUp7jTjEHngPsQ", + "name": "Chestnut Hill Cycle Fitness", + "address": "89 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0799695, + "longitude": -75.2080902, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Gyms, Cycling Classes, Active Life", + "hours": { + "Monday": "17:0-19:30", + "Tuesday": "18:0-19:30", + "Wednesday": "8:0-9:30", + "Thursday": "17:0-19:30", + "Friday": "16:0-17:30", + "Saturday": "8:30-11:30" + } + }, + { + "business_id": "c0knN2GfCb8sde71S4ln2Q", + "name": "Little Morocco", + "address": "1431 W Passyunk Ave, 1f", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9254615695, + "longitude": -75.1707379, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "None", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "American (Traditional), Mediterranean, Soul Food, Restaurants, Moroccan", + "hours": { + "Monday": "14:0-23:30", + "Tuesday": "14:0-23:30", + "Wednesday": "14:0-23:30", + "Thursday": "14:0-23:30", + "Friday": "14:0-23:30", + "Saturday": "14:0-23:30", + "Sunday": "14:0-23:30" + } + }, + { + "business_id": "NpmsoGDvs1fiiu-l_E73yQ", + "name": "DFTI Boutique", + "address": "2032 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519754, + "longitude": -75.1748531, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Women's Clothing, Fashion, Personal Shopping, Shopping, Accessories", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "RMS7BsRVNLOb2Dm8LQP7yA", + "name": "ViVi Bubble Tea", + "address": "701 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402929, + "longitude": -75.150923, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Food, Bubble Tea", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-20:0", + "Sunday": "12:30-20:0" + } + }, + { + "business_id": "yvpwN5321mM3x8G2ZiEZmw", + "name": "Little Istanbul", + "address": "11728 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1198872, + "longitude": -75.0180567, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BYOB": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Turkish, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "-ooQlxiWp21ubVBlLSzM2w", + "name": "Philly Self Defense", + "address": "1333 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.971148, + "longitude": -75.1352238, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True" + }, + "categories": "Boxing, Martial Arts, Active Life, Fitness & Instruction", + "hours": { + "Monday": "18:0-21:0", + "Wednesday": "18:0-21:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "bN6cunaPCFpKwm8aj7a1Qg", + "name": "Franklin Square Mini Golf", + "address": "200 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9558477204, + "longitude": -75.1504862309, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Kids Activities, Golf, Parks, Active Life, Mini Golf", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "BSZEO8iiTWI1oF6RgaUTyA", + "name": "PRO Mobile Detailing", + "address": "200 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.969293, + "longitude": -75.1390595, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Auto Detailing, Automotive, Car Wash, Local Services, Carpet Cleaning", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "BwP0b-WOMiwFlTeVzEwWfA", + "name": "Lumos Yoga & Barre", + "address": "2001 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9652187, + "longitude": -75.1707493, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Barre Classes, Yoga, Active Life, Fitness & Instruction", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:30-20:0", + "Wednesday": "17:15-20:0", + "Thursday": "9:15-11:30", + "Friday": "16:45-18:15", + "Saturday": "8:30-13:0", + "Sunday": "17:0-19:0" + } + }, + { + "business_id": "MnpMn0jfeRxwnHTNJjVmZQ", + "name": "The Pennsylvania SPCA", + "address": "350 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.007007, + "longitude": -75.121254, + "stars": 3.0, + "review_count": 78, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pets, Veterinarians, Animal Shelters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "tdg29KEyOSZ5A5GKX_fsvA", + "name": "Got Laundry?", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0635817, + "longitude": -75.0786357, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-21:0" + } + }, + { + "business_id": "qPXZFVTkXNvb9PR2Muz8CQ", + "name": "Stephen Brown, DDS - The Perio Group", + "address": "220 S 16th St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9490852, + "longitude": -75.1678993, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Cosmetic Surgeons, Periodontists, Doctors, Health & Medical, Dentists, Oral Surgeons", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "TWBFhg59aLP1fefTqMDZSw", + "name": "MrKitt's Service Center", + "address": "4501 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0240963, + "longitude": -75.1591554, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Automotive, Smog Check Stations, Tires, Oil Change Stations, Body Shops, Auto Repair, Towing, Commercial Truck Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0" + } + }, + { + "business_id": "skhuBeLD__mzjRBGCDtopw", + "name": "Ryan McLaughlin", + "address": "1616 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669432, + "longitude": -75.1643539, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate Agents, Real Estate", + "hours": null + }, + { + "business_id": "DUb37wPM8xzM3HJtniNtOQ", + "name": "Marian Anderson Recreation Center", + "address": "740 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.942105, + "longitude": -75.171135, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Recreation Centers, Active Life, Local Flavor", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "lTk4efVzepR0PIPayrHojA", + "name": "Kayuh Bicycles & Cafe", + "address": "1900 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9723137, + "longitude": -75.1675798, + "stars": 5.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bagels, Food, Coffee & Tea, Active Life, Bike Repair/Maintenance, Local Services, Bike Rentals, Mountain Biking, Bikes, Shopping, Sporting Goods", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "pX8P31z1ixaMp3iViINrjA", + "name": "KX Automotive", + "address": "2429-31 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9402856, + "longitude": -75.1842911, + "stars": 5.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Glass Services, Oil Change Stations, Transmission Repair, Auto Repair, Smog Check Stations, Auto Customization, Auto Detailing, Tires", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "2yuwjVRHUCs9tCAYjISaag", + "name": "The Barn", + "address": "4901 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9484077767, + "longitude": -75.2213600568, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "False", + "Caters": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "BYOB": "False", + "WiFi": "u'free'", + "Smoking": "u'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "WheelchairAccessible": "False", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Bars, Dive Bars, Nightlife, Restaurants, Sports Bars, Vegan, Pool Halls, Music Venues, Arts & Entertainment", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "hq0pGGIfaqBG36518UsWcw", + "name": "ICandy", + "address": "254 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470655, + "longitude": -75.1612074, + "stars": 3.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'paid'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True" + }, + "categories": "Dance Clubs, Gay Bars, Bars, Nightlife", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "UNgDjuoxliw5vGyj22GvmQ", + "name": "Lee's Foodway", + "address": "1422 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9786499, + "longitude": -75.1590756, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Grocery, Food", + "hours": null + }, + { + "business_id": "kaUqJ4AgfXxdwjF8rSQZqQ", + "name": "Rittenhouse Tavern", + "address": "251 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948237, + "longitude": -75.170793, + "stars": 3.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "American (Traditional), American (New), Restaurants", + "hours": { + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "EPs_rI2_l5C3-iXTGcR9Vg", + "name": "Tucker's Digs", + "address": "611 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941241, + "longitude": -75.149077, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Shopping, Antiques", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "36rXK3hy6OR0k-tMBf1Ltw", + "name": "Starbucks", + "address": "1 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953073, + "longitude": -75.164642, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "pKpu9LDo8jndikkkAHoAsw", + "name": "Pagano's Steaks & Shakes", + "address": "6300 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.02078, + "longitude": -75.053761, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Steakhouses, Food", + "hours": null + }, + { + "business_id": "_2BPnrpByKEPgHDlpfpQfA", + "name": "J&J Studios", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Photography Stores & Services, Session Photography, Event Planning & Services, Professional Services, Shopping, Videographers, Event Photography, Photographers, Video/Film Production", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "ZPjokVSTWDyRMWxaW7z_9A", + "name": "Green Line Cafe - Powelton Village", + "address": "3649 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.959375, + "longitude": -75.194875, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Breakfast & Brunch, Food, Arts & Entertainment, Bagels, Coffee & Tea, Restaurants, Art Galleries, Shopping", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "XPFWVkd0TIUoALjPknfgZw", + "name": "Laudenbach Periodontics & Dental Implants", + "address": "1520 Locust St, Ste 600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482048, + "longitude": -75.1671697, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Periodontists, Dentists, Oral Surgeons, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "QOUqT4PuH2Xm-ky0R87JNg", + "name": "Old Navy", + "address": "1851 S Columbus Blvd, Ste G", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923493, + "longitude": -75.140583, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Children's Clothing, Fashion, Women's Clothing, Men's Clothing, Department Stores, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "YpUowEOcZNehoBv0lxqlpA", + "name": "Popeyes Louisiana Kitchen", + "address": "4211 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.017796, + "longitude": -75.148528, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "HasTV": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "BikeParking": "False" + }, + "categories": "American (Traditional), Restaurants, Chicken Wings, Fast Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "wkKOXNzFjTgWLqZXl2MW1A", + "name": "City Line Sports Center", + "address": "7900 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.97487, + "longitude": -75.279145, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Shopping, Mini Golf, Sporting Goods, Active Life, Golf", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "9:0-12:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "BaSwNEingTmrBw4shffK5w", + "name": "Function Coffee Labs", + "address": "1001 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378379, + "longitude": -75.1594805, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "DriveThru": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "Corkage": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BYOB": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Restaurants, Breakfast & Brunch, Desserts, Food, Coffee Roasteries, Coffee & Tea", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "7:30-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "EaBgGhjd8rB9KVvCXKaiAw", + "name": "Aloft Philadelphia Downtown", + "address": "101 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546225, + "longitude": -75.1627921, + "stars": 3.5, + "review_count": 104, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "WiFi": "'free'" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "_s_51Vmq1LVQnGFSa-KfUw", + "name": "Alla Spina", + "address": "1410 Mt Vernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9644843888, + "longitude": -75.1618600599, + "stars": 3.5, + "review_count": 395, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Smoking": "u'no'", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Breakfast & Brunch, Italian, Bars, Nightlife, American (New), Gastropubs, Restaurants", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-23:0", + "Wednesday": "16:30-23:0", + "Thursday": "16:30-23:0", + "Friday": "16:30-0:0", + "Saturday": "11:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "4zi1ILKHmeqXsaa3SR4k5g", + "name": "Gap", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953106, + "longitude": -75.193375, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Fashion, Women's Clothing, Children's Clothing, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "s6nOfGZJpkZ3JplCO9lGiA", + "name": "Starbucks", + "address": "3421 Chestnut St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95455, + "longitude": -75.192474, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "5:30-23:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:0-22:30", + "Friday": "5:30-22:0", + "Saturday": "5:30-22:0", + "Sunday": "5:30-23:0" + } + }, + { + "business_id": "0yW90oISSiOYmJBiu9RFuw", + "name": "Oral Surgery Consultants of Pennsylvania", + "address": "2546 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9183086, + "longitude": -75.1713513, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Dentists, Oral Surgeons", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "Kx6kRvz-qqhpLdZtcTXiEQ", + "name": "Liberty Mutual", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Insurance, Financial Services", + "hours": null + }, + { + "business_id": "939xMaZPJWoWdzFHt0oMOg", + "name": "Wake Up Yoga", + "address": "2329 Parrish St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9710951, + "longitude": -75.175708, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "8:0-12:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Sq7r_Bqcoy8uSoqA-FHzpQ", + "name": "Smooth 'N' Pops", + "address": "315 E Girard Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9700954, + "longitude": -75.1314189, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "True", + "BusinessParking": "None", + "BikeParking": "True", + "WiFi": "u'free'", + "Caters": "True" + }, + "categories": "Food, Candy Stores, Ice Cream & Frozen Yogurt, Specialty Food, Juice Bars & Smoothies, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "15:0-21:0", + "Sunday": "14:0-18:0" + } + }, + { + "business_id": "kcU75m4dj2F5RrwbM_94Cg", + "name": "Chelten Market IGA", + "address": "176 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0317738909, + "longitude": -75.1776030287, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "mXolKQ_KssnFVuDi9oEryg", + "name": "Austin's Plumbing Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Plumbing, Home Services, Water Heater Installation/Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "UHsSmMt8fGRaewOpJ7OsOg", + "name": "Paris Restaurant", + "address": "9309 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.085969, + "longitude": -75.0463651, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Food, Russian", + "hours": null + }, + { + "business_id": "zPl2SR6S2-X4T40DQdnoTw", + "name": "Night Owls Fast Food", + "address": "1454 S Newkirk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9348377485, + "longitude": -75.1916793432, + "stars": 3.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Nightlife, Caterers, American (New), Restaurants, Chicken Wings, American (Traditional), Fast Food", + "hours": { + "Monday": "21:0-4:0", + "Tuesday": "21:0-4:0", + "Wednesday": "21:0-4:0", + "Thursday": "21:0-4:0", + "Friday": "21:0-4:0", + "Saturday": "21:0-4:0", + "Sunday": "21:0-4:0" + } + }, + { + "business_id": "GpOC-e2vWYi1gADV1SI8eg", + "name": "Dunkin'", + "address": "634 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506786925, + "longitude": -75.1519587636, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "5:0-20:30", + "Tuesday": "5:0-20:30", + "Wednesday": "5:0-20:30", + "Thursday": "5:0-20:30", + "Friday": "5:0-20:30", + "Saturday": "5:0-20:30", + "Sunday": "5:0-19:30" + } + }, + { + "business_id": "dTUoJr7XqWGX4ijtXzq7-g", + "name": "TD Bank", + "address": "2201 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229962341, + "longitude": -75.169792046, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "BBQg4nLtw1po64JVfm6SFw", + "name": "Island Design Natural Hair Salon", + "address": "1410 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9745885946, + "longitude": -75.2266224101, + "stars": 4.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Shopping, Hair Extensions, Cosmetics & Beauty Supply", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "nrVsBtcTsTvSWXi893aePQ", + "name": "Old Original Bookbinders Restaurant", + "address": "125 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9467881, + "longitude": -75.1437994, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "HappyHour": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Public Services & Government, Landmarks & Historical Buildings, Restaurants, Seafood", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "17:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "58YlriLggVr4_5yShAhA3g", + "name": "Super Fresh", + "address": "1851 S Columbus Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9234256, + "longitude": -75.1403901, + "stars": 2.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "r5yb5JfWV4TryNZlMBHPng", + "name": "Saxbys", + "address": "4000 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527910361, + "longitude": -75.2031435956, + "stars": 3.0, + "review_count": 104, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea, Restaurants, Breakfast & Brunch, Juice Bars & Smoothies", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-14:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "9:0-14:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "OAWa1WML2V1ZLJGD6V3nBQ", + "name": "Middle Child", + "address": "248 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9471698, + "longitude": -75.1594404, + "stars": 4.5, + "review_count": 426, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "None" + }, + "categories": "Coffee & Tea, Sandwiches, Delis, Diners, Food, Restaurants, Salad, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "t5n5IBvXYG55xXrq6hga3Q", + "name": "Caffe Ida", + "address": "1732 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.924223, + "longitude": -75.175689, + "stars": 5.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BYOB": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "True" + }, + "categories": "Sandwiches, Food, Coffee & Tea, Restaurants, Italian", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "41LEg4ZgFDVnZfToxGXiGA", + "name": "Federal Donuts", + "address": "3428 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535536, + "longitude": -75.1931768, + "stars": 4.0, + "review_count": 322, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Coffee & Tea, Comfort Food, Donuts, Food, Restaurants", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "qJxOT7bo-PdW1-xx3nK8SQ", + "name": "JJ Bootleggers", + "address": "35 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948986, + "longitude": -75.14377, + "stars": 3.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "CoatCheck": "False", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "Music": "{'dj': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Food, Sports Bars, Comfort Food, Beer, Wine & Spirits, Restaurants, Barbeque, Bars, Lounges", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "g0P_dN-XGVsVlWAtNoTDbA", + "name": "The Inkwell 215 Custom Tattoo Studio", + "address": "7344 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0376688, + "longitude": -75.0392633, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Piercing, Arts & Entertainment, Shopping, Tattoo, Art Galleries", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "5bwz54LwCqSx48cF-n0_Tw", + "name": "Painted Bride Art Center", + "address": "230 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955502, + "longitude": -75.143895, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Entertainment, Performing Arts, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "h696v2N0hcOOdsg1ebt5Ig", + "name": "McDonald's", + "address": "7800 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.068736, + "longitude": -75.199149, + "stars": 1.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "BikeParking": "False", + "DriveThru": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'" + }, + "categories": "Coffee & Tea, Food, Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "Lr79G0jxKFfR2DyX7tpMsw", + "name": "The Wax Spot", + "address": "1816 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9250263778, + "longitude": -75.1498470779, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "KQjn_DBqJFMQouZ3eBoQ-A", + "name": "Choice Beer Deli", + "address": "1642 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441335608, + "longitude": -75.1701828754, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Sandwiches, Delis, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "-qP1L9kx0FoH-kFwHXEwbw", + "name": "Popeyes Louisiana Kitchen", + "address": "1100 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.970596, + "longitude": -75.155029, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Fast Food, Chicken Wings, American (Traditional), Restaurants, Desserts, Sandwiches, Seafood", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "10:30-22:30" + } + }, + { + "business_id": "2TeXhKB-GtjgbYlNO5GYoQ", + "name": "9th Street Bottle Shop", + "address": "920 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383019717, + "longitude": -75.1581519842, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Beer, Wine & Spirits, Food, Specialty Food", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "mUdjeVjdsiOQMBK41x0Bow", + "name": "Sancho Pistola's", + "address": "19 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9688395, + "longitude": -75.1351413, + "stars": 4.0, + "review_count": 347, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "OutdoorSeating": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}" + }, + "categories": "Mexican, Nightlife, Restaurants, Cocktail Bars, Sports Bars, Bars", + "hours": { + "Monday": "13:0-21:0", + "Tuesday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "rS2z1SZHNFHIU0_KWcUgsw", + "name": "Dunkin'", + "address": "6190 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0443656, + "longitude": -75.1194962, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "None", + "WiFi": "u'free'", + "OutdoorSeating": "False" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0", + "Sunday": "5:0-20:0" + } + }, + { + "business_id": "3maqld7j2e5GZ2SMqUqHyg", + "name": "Blanc Dental Studio", + "address": "716 Chesnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949243, + "longitude": -75.1532384, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry, Periodontists, Cosmetic Dentists", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0" + } + }, + { + "business_id": "iB3HjB9Bj80_WYO0SHsqtg", + "name": "Top Cut Hair Salon", + "address": "9975 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1013327, + "longitude": -75.0287367, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:30", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "pvIYKxKojjAoTH3yCethdQ", + "name": "Nora's Food Cart", + "address": "38th & Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9512799829, + "longitude": -75.1992098987, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Food Trucks, Street Vendors", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0" + } + }, + { + "business_id": "Ieb62CSuneOJhW9rJOT8hQ", + "name": "Planet Fitness", + "address": "1128 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500015127, + "longitude": -75.1601109117, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "JGhgV4FBAwMTr8w-_UcZJA", + "name": "Omni Hotel at Independence Park", + "address": "401 Chestnut St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490605, + "longitude": -75.1477326, + "stars": 3.5, + "review_count": 106, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "KofmXktylwRz6ziJqW24tg", + "name": "Delilah's Southern Cafe", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552303, + "longitude": -75.1823196, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "HasTV": "False", + "OutdoorSeating": "True" + }, + "categories": "Southern, Soul Food, Restaurants", + "hours": null + }, + { + "business_id": "Ix_88gFalSxSCsz5Fbnl7A", + "name": "@Ramen", + "address": "4357 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025762, + "longitude": -75.223853, + "stars": 4.0, + "review_count": 190, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Japanese, Restaurants, Ramen", + "hours": { + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "H7XDiKMUTh4qmB4I3U8A8A", + "name": "Snip Philadelphia", + "address": "2052 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96712, + "longitude": -75.1720307, + "stars": 4.5, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "RtGoar2B8lbGP2fr94OWLQ", + "name": "The American Pub", + "address": "1500 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95232, + "longitude": -75.166485, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pubs, Nightlife, Bars, American (New), Restaurants", + "hours": null + }, + { + "business_id": "EKSmnS-fup3HNFLR9J17mQ", + "name": "Midtown II Restaurant", + "address": "122 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949392, + "longitude": -75.159059, + "stars": 3.0, + "review_count": 100, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True" + }, + "categories": "Sandwiches, Diners, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "HCN3XWVqv04fws8vkC4H7w", + "name": "Tavern On Camac", + "address": "243 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472463, + "longitude": -75.1615494, + "stars": 4.0, + "review_count": 153, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HappyHour": "True" + }, + "categories": "Gay Bars, Nightlife, Dance Clubs, Restaurants, Bars, American (New)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "a0uqlRKRxn9nmlNDefTVdg", + "name": "Enterprise Rent-A-Car", + "address": "7601 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0496641956, + "longitude": -75.0503003597, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Car Dealers, Automotive, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-13:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "UMdy-hcoLE5-zLgCrURvXQ", + "name": "Dunkin'", + "address": "2308 W. Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9223434, + "longitude": -75.1859215, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Donuts, Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "VLWyxPrA7kFO4kv9mvsf_w", + "name": "Serene Blรผ", + "address": "1455 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0885647088, + "longitude": -74.9600174026, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Massage Therapy, Beauty & Spas, Massage, Day Spas", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "nRUkftRs2wHBLe90trrZYw", + "name": "Mattress Firm Aramingo", + "address": "3664 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9943656586, + "longitude": -75.0955001732, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Decor, Furniture Stores, Home & Garden, Mattresses, Shades & Blinds, Shopping, Home Services", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "ffG3NisSX1FN3GuG3T1EGQ", + "name": "Jason's Cozyday", + "address": "4371 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0259119, + "longitude": -75.2243072, + "stars": 4.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "OutdoorSeating": "False", + "Smoking": "u'no'", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Bars, Nightlife, Korean, Restaurants", + "hours": { + "Thursday": "18:0-23:0", + "Friday": "18:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "_aD7u8K3xF9atNM_YmG1lw", + "name": "Free Library South Philadelphia Branch", + "address": "1700 South Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9291433, + "longitude": -75.1690827, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "'free'" + }, + "categories": "Libraries, Public Services & Government", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "Ag0C5OfkIYHUBXrnnUwBHw", + "name": "Philadelphia Magazine", + "address": "1818 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9532621988, + "longitude": -75.1713269231, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mass Media, Pop-up Shops, Print Media, Shopping, Newspapers & Magazines, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "h1lWjQMjLdAkC-BARvZAZg", + "name": "Get Fried", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fast Food, American (Traditional), Restaurants, Cafes, Waffles", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "xucuWBRkLRVwqGcOvq_vPA", + "name": "Jefferson Dermatology Associates", + "address": "833 Chestnut St, Ste 740", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501044443, + "longitude": -75.1549236975, + "stars": 3.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Urologists, Health & Medical, Dermatologists, Cosmetic Surgeons", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "7kXtMrS6tdCKv0-fP_JtTA", + "name": "Center City Dental Arts - Hamida Shirazy, DMD", + "address": "1601 Walnut St, Ste 604", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950017, + "longitude": -75.168375, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Health & Medical, Cosmetic Dentists, General Dentistry", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0" + } + }, + { + "business_id": "gSU9KcwFT7hrcu1t5F2VKg", + "name": "A Plus A Personal Touch Car Wash", + "address": "4600 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9568617, + "longitude": -75.2139253, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Automotive, Auto Detailing", + "hours": null + }, + { + "business_id": "woX1g_c-fxzhl15mKK_ILg", + "name": "Penn Hardware", + "address": "7404 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0381798, + "longitude": -75.0378643, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Water Heater Installation/Repair, Plumbing, Shopping, Home & Garden, Hardware Stores, Home Services, Keys & Locksmiths", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:30" + } + }, + { + "business_id": "PNhX-dBU4CSGoMaFFUkReg", + "name": "AOK Auto Body & Glass", + "address": "1330 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9376284, + "longitude": -75.166014, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Body Shops, Auto Repair, Automotive, Auto Glass Services", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "-3m_nXlyvdKAVNNmVirpGQ", + "name": "Rana Halal Cuisine", + "address": "3513 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583155, + "longitude": -75.1928745, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Halal, Restaurants, Middle Eastern", + "hours": { + "Monday": "10:30-0:30", + "Tuesday": "10:30-0:30", + "Wednesday": "10:30-0:30", + "Thursday": "10:30-0:30", + "Friday": "10:30-1:30", + "Saturday": "10:30-1:30", + "Sunday": "10:30-0:30" + } + }, + { + "business_id": "V_UiHni9L3Cpfpr9BnRNcA", + "name": "Arts Ballroom", + "address": "1324 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948003557, + "longitude": -75.1635797694, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Wedding Planning, Caterers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "sKsPL_J5lcdAN7Plk1t-aQ", + "name": "Fishtown Auto Tags", + "address": "2401 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978243, + "longitude": -75.124466, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Insurance, Financial Services, Local Services, Notaries, Automotive, Auto Loan Providers, Auto Detailing, Registration Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "Iat9GjPmYd_mh-7gvkGI-A", + "name": "Vikrant Photography", + "address": "1714 N Mascher St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9763803, + "longitude": -75.1364325, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Event Planning & Services, Event Photography, Session Photography, Photographers", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "AtIoYEt1adgp0SXhm9sh7A", + "name": "Park 'N Fly Philadelphia", + "address": "7780 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951007, + "longitude": -75.2279424, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'no'" + }, + "categories": "Transportation, Airport Shuttles, Hotels & Travel, Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "5IEkofnAwaleuGjfBVsrvw", + "name": "Turpโ€™s Kitchen", + "address": "2101 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9218264, + "longitude": -75.150924, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Soul Food, Chicken Wings, Sandwiches", + "hours": { + "Monday": "13:0-21:0", + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "13:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "SjqQq0vHnrwPE1YEj_UJiA", + "name": "Jennifer Nizen, MD", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Internal Medicine", + "hours": null + }, + { + "business_id": "a91F98AJr1tvjefU4eRv6w", + "name": "Burrito Elito", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.895526886, + "longitude": -75.2283859253, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsReservations": "False" + }, + "categories": "Tex-Mex, Food, Mexican, Restaurants, Vegetarian", + "hours": null + }, + { + "business_id": "d7DoRFqo7MTQG6SSNuHoKA", + "name": "Mickey's Auto Repairs", + "address": "1937 S Chadwick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9265787, + "longitude": -75.1734396, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Auto Repair, Automotive, Transmission Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "UID6BhXxbS28lca0bCYDig", + "name": "Carey Motors Auto Sales", + "address": "3019 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9909324, + "longitude": -75.113897, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Automotive", + "hours": null + }, + { + "business_id": "35nXBvLjbzzZZTrY9SQnkA", + "name": "Fine Wine & Good Spirits", + "address": "3720 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.015694, + "longitude": -75.211434, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "DriveThru": "None" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "d-DX_AGIwXTmCjvLQYIckw", + "name": "Dollar General", + "address": "501 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616736, + "longitude": -75.1470351, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Discount Store", + "hours": null + }, + { + "business_id": "GqrCrEwm94IY3rHbL9wRug", + "name": "Target", + "address": "1020 Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9382594, + "longitude": -75.1673402411, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "HasTV": "False", + "HappyHour": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "CoatCheck": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Shopping, Fashion, Department Stores, Furniture Stores, Home & Garden, Electronics", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "5Gdz1b4bffTJAWXENGtQPA", + "name": "Pastificio", + "address": "1528 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9115113, + "longitude": -75.17466, + "stars": 4.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BYOB": "False", + "RestaurantsTableService": "False", + "Corkage": "False" + }, + "categories": "Delis, Restaurants, Sandwiches, Food Delivery Services, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "ObGjKm_zRPzCbpq1x2jEjA", + "name": "Allegro Pizza City Line", + "address": "4160 Monument Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0027576, + "longitude": -75.2135897, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "4tyoxyxyCKpcRwkbyIizpw", + "name": "Schmear It", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": null, + "categories": "Food Trucks, Food, Bagels", + "hours": null + }, + { + "business_id": "tt_n0ZJ-rd-yftr_5RQLhg", + "name": "Best Deli II", + "address": "2616 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9787426, + "longitude": -75.1153371, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "BikeParking": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "xxwFeRxm6SYJcWvAPWqB5w", + "name": "EBE Talent", + "address": "1030 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9657132, + "longitude": -75.1331165, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Entertainment, Venues & Event Spaces, Party & Event Planning, DJs, Wedding Planning, Event Planning & Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "3qHsDIR_2B_zIvgX_0CqXw", + "name": "Jim Loewer Glass", + "address": "1241 Carpenter St, Ste 250", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388759, + "longitude": -75.1639665, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Art Schools, Home Decor, Arts & Entertainment, Specialty Schools, Flowers & Gifts, Art Galleries, Education, Art Classes, Glass Blowing, Arts & Crafts, Gift Shops, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "ArZe7cgHZhD4-3jOema4PA", + "name": "Washington Monument", + "address": "2451 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629268, + "longitude": -75.1782361, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings, Public Art, Local Flavor", + "hours": null + }, + { + "business_id": "Ktg3ahIxk0JIkJwXAqu2ew", + "name": "Hikari Sushi", + "address": "1040 N American St, Ste 701", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674016, + "longitude": -75.1411529, + "stars": 5.0, + "review_count": 155, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HappyHour": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BYOB": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': True, u'classy': True, u'upscale': False}" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "QOn9vTJX7-GH7FW_kZ_oLg", + "name": "Galaxy Pizza", + "address": "1239 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.058619097, + "longitude": -75.0787411445, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza, Food", + "hours": { + "Monday": "10:0-22:45", + "Tuesday": "10:0-22:45", + "Wednesday": "10:0-22:45", + "Thursday": "10:0-22:45", + "Friday": "10:0-23:45", + "Saturday": "10:0-23:45", + "Sunday": "12:0-21:45" + } + }, + { + "business_id": "iPr31XB3GJFEUHKCHLCDkw", + "name": "South Helm", + "address": "100 E Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263481425, + "longitude": -75.1474416351, + "stars": 4.5, + "review_count": 64, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "WiFi": "'no'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30" + } + }, + { + "business_id": "hid9ixP7Rtoj2pR4EBrcGg", + "name": "Irie Jamaican Restaurant", + "address": "2629 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974236, + "longitude": -75.179942, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Caribbean, Comfort Food, Soul Food", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "bj0zTuE10-knRtHeoRkAJQ", + "name": "Chipotle Mexican Grill", + "address": "8500 Essington Ave, Ste FH13", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.880567, + "longitude": -75.237312, + "stars": 2.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "NoiseLevel": "u'loud'", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WiFi": "'free'" + }, + "categories": "Food, Mexican, Restaurants, Fast Food", + "hours": { + "Monday": "7:0-20:30", + "Tuesday": "7:0-20:30", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-20:30", + "Saturday": "7:0-20:30", + "Sunday": "7:0-20:30" + } + }, + { + "business_id": "gzDJSSkr3VD2ON7yWnCavA", + "name": "Bluebird Distilling", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523254153, + "longitude": -75.1684459233, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Distilleries, Food", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "buPWCjX9ON8CGkXlAzK4Ng", + "name": "Diantonio's Catering", + "address": "228 Krams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0309468, + "longitude": -75.225253, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Food Delivery Services, Event Planning & Services, Personal Chefs, Caterers, Food", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "VqTDgcll_F_bqSRJ2r784A", + "name": "Milk House", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9542677, + "longitude": -75.1678993, + "stars": 3.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks, Ice Cream & Frozen Yogurt, Salad, Soup, Food", + "hours": { + "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" + } + }, + { + "business_id": "NWF16GKQyZNVHo086gIVzQ", + "name": "Kamals Middle Eastern Specialties", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9528558776, + "longitude": -75.1586364432, + "stars": 3.5, + "review_count": 187, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Middle Eastern, Food, Restaurants, Mediterranean, Juice Bars & Smoothies", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "qYTB5zSzKXGHOv-XYHKiHg", + "name": "SA VA", + "address": "1700 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950727, + "longitude": -75.1691418, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-8:0", + "Wednesday": "10:0-8:0", + "Thursday": "10:0-8:0", + "Friday": "10:0-8:0", + "Saturday": "10:0-8:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "5E7Zk3g6kLsB72J4EX4YkA", + "name": "Bufad", + "address": "1240 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618428098, + "longitude": -75.1592463255, + "stars": 4.0, + "review_count": 266, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Desserts, Event Planning & Services, Caterers, Vegetarian, Pizza, Restaurants, Food, Italian, Venues & Event Spaces", + "hours": { + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "JW8GAI4_RwyNorbQnouyFQ", + "name": "Ice Land", + "address": "224 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562529, + "longitude": -75.1558834, + "stars": 4.0, + "review_count": 195, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Food, Bubble Tea, Shaved Ice, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "JdiS_2HdAMtBprXgX0zkqg", + "name": "Dunkin'", + "address": "1551 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938628, + "longitude": -75.169742, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "ZLjUCF2UaML7S5pSmn5BKg", + "name": "Canopy by Hilton Philadelphia Center City", + "address": "1180 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509385644, + "longitude": -75.1599574301, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "American (New), Hotels & Travel, Restaurants, Event Planning & Services, Venues & Event Spaces, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "eJDUZMLSwYT8QRKbZVTZKg", + "name": "Bop", + "address": "220 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486240291, + "longitude": -75.1646459475, + "stars": 3.5, + "review_count": 104, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "CoatCheck": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cocktail Bars, Asian Fusion, Nightlife, Korean, Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "lAnCT6ipJzKxFyR3fC7g4A", + "name": "Barneys New York, Philadelphia", + "address": "1811 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950434, + "longitude": -75.171217, + "stars": 3.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True" + }, + "categories": "Men's Clothing, Shopping, Shoe Stores, Women's Clothing, Fashion, Department Stores", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "0:0-19:0" + } + }, + { + "business_id": "AZsVCKIWWVE1T8IlFVfcKA", + "name": "The Halal Guys", + "address": "2550 Grant Ave, Ste 320", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0779888, + "longitude": -75.0273447, + "stars": 3.5, + "review_count": 71, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BusinessParking": "None", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Halal, Restaurants, Mediterranean, Middle Eastern", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "tlSkVi6m7Rah2oKhhT-5dA", + "name": "Signature Community", + "address": "2025 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508118, + "longitude": -75.1746707, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Property Management, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "h22TVwTYENne7QPKz0lxHg", + "name": "Hello Cafe", + "address": "600 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.933864, + "longitude": -75.154684, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Chinese, Food", + "hours": null + }, + { + "business_id": "or4yTLBsR0iXUUrDIl6oEg", + "name": "The Spicy Belly", + "address": "3847 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0204445, + "longitude": -75.2123509, + "stars": 4.0, + "review_count": 251, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "Smoking": "u'outdoor'", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "GoodForKids": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "CoatCheck": "True" + }, + "categories": "Cocktail Bars, Caribbean, Restaurants, Korean, Nightlife, Breakfast & Brunch, Bars, Asian Fusion, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-22:30", + "Saturday": "16:30-22:30", + "Sunday": "12:0-18:30" + } + }, + { + "business_id": "phAQorb2ixobqKKZC5Qmgw", + "name": "HNT Chicken", + "address": "477 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0871317, + "longitude": -74.9652167, + "stars": 1.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Sandwiches, Chicken Shop, Chicken Wings, Fast Food, American (Traditional), Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "17PrL-uGEg4kPvxZpYe00g", + "name": "Yogorino", + "address": "3201-3229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542308991, + "longitude": -75.1883378997, + "stars": 4.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "14:30-22:0", + "Tuesday": "14:30-22:0", + "Wednesday": "14:30-22:0", + "Thursday": "14:30-22:0", + "Friday": "14:30-22:0", + "Saturday": "14:30-22:0", + "Sunday": "14:30-22:0" + } + }, + { + "business_id": "xV32Y7jne4duaM3H_r_ryQ", + "name": "Holiday Inn Express Philadelphia - Penns Landing", + "address": "100 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9528054, + "longitude": -75.140446, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Event Planning & Services, Hotels, Venues & Event Spaces, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "cZ6YWew2gxzggyqKcm74AQ", + "name": "Drain Conquerors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9591692932, + "longitude": -75.1984187251, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Plumbing", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "_jnX0tG-hlvJEFfYYm_fdQ", + "name": "John Snyder Plumbing and Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0366500533, + "longitude": -75.2188084647, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Plumbing, Water Heater Installation/Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-12:30", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-13:30" + } + }, + { + "business_id": "J14P8Bo0yDYYXyASbht5xQ", + "name": "Huff & Puff BBQ", + "address": "246 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472278303, + "longitude": -75.1594518498, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "nOEuF2LUxnHSqjLLbg8VKQ", + "name": "Saxbys", + "address": "1818 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529493, + "longitude": -75.1710235, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0" + } + }, + { + "business_id": "hN_ThL45R2cctTFW1Ep3TA", + "name": "Tres Fiori", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cupcakes, Food", + "hours": null + }, + { + "business_id": "iYcDcwUehtwBoIxOCfQZlA", + "name": "LashMePhilly", + "address": "13023 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1239074, + "longitude": -75.014565, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Eyelash Service", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "10:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "zUH7pZU7kDydLIgNTxu1qw", + "name": "Skyline Property Management", + "address": "311 Bainbridge St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407353, + "longitude": -75.1482105, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Real Estate Services, Real Estate, Property Management, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Pms6nHJq_fBkBn3HlI1DyA", + "name": "Subway", + "address": "400 Market St, Ste 105", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950265, + "longitude": -75.147745, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, Food, Restaurants, Fast Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "b4CVy0YUvupO6mTAPI11rQ", + "name": "Hair Cuttery", + "address": "2201 E Butler St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9953324386, + "longitude": -75.0891631786, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "4TGIrdvZXiO-JxCpaaYUbg", + "name": "Maxie's Daughter", + "address": "724 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9398489, + "longitude": -75.149692, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fabric Stores, Arts & Crafts, Shopping", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "T3qEkRnwtd9s7WXktmUAPg", + "name": "Joey's Stone Fired Pizza", + "address": "517 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419082, + "longitude": -75.1514397, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "Ki2BtVpfsuY07u7j-qtXbQ", + "name": "Sticks & Stones", + "address": "1909 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926358, + "longitude": -75.167504, + "stars": 3.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Restaurants, Nightlife, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "CR_hm3-T9HEGGWTElXErRw", + "name": "McDonald's", + "address": "1601 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924036, + "longitude": -75.142563, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "Ambience": "None", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "HasTV": "True" + }, + "categories": "Restaurants, Fast Food, Food, Burgers, Coffee & Tea", + "hours": { + "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": "7:0-23:0" + } + }, + { + "business_id": "q_ETKH71b9B7-vPJ4__-8w", + "name": "The Philadelphia Shakespeare Theatre", + "address": "2111 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517253, + "longitude": -75.176107, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Local Flavor, Arts & Entertainment, Cinema, Performing Arts", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "QvHhFHrfLoRe-UbW4w_LPw", + "name": "Garland of Letters Bookstore", + "address": "527 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942065, + "longitude": -75.151769, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "Open24Hours": "False" + }, + "categories": "Gift Shops, Spiritual Shop, Shopping, Flowers & Gifts, Fitness & Instruction, Books, Mags, Music & Video, Active Life, Bookstores, Yoga", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "j58chGXdwNBjXYGCOHpxag", + "name": "Yiro Yiro", + "address": "125-29 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546911, + "longitude": -75.202183, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForMeal": "None", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'" + }, + "categories": "Greek, Mediterranean, Event Planning & Services, Caterers, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "EOw5-JPXAJoR0nI3Sd5ClA", + "name": "Davis Pharmacy", + "address": "4523 Baltimore Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491304, + "longitude": -75.2141027, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "9:0-18:0", + "Wednesday": "8:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "CNVC7kz8xTaRMOiE7XdEQw", + "name": "26 North BYOB", + "address": "26 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 39.9509776032, + "longitude": -75.1456010771, + "stars": 4.0, + "review_count": 49, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Seafood", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "RnczmQeyeJPAupC2xLQqlA", + "name": "Ibis Lounge", + "address": "5420 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9791574, + "longitude": -75.2312813, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'paid'", + "Caters": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'very_loud'", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Nightlife, Lounges, Caribbean, Restaurants", + "hours": null + }, + { + "business_id": "3N4Tv-FymDtYGABlQBxwYw", + "name": "Yudy's Dominican Beauty Salon", + "address": "1320 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9710007779, + "longitude": -75.1577718809, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "yB2OawAQ_U8qwv7gu1huMg", + "name": "Five Guys", + "address": "1527 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512973, + "longitude": -75.1665774, + "stars": 3.5, + "review_count": 208, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Sandwiches, Fast Food, American (New), Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "cOXc8c85Ms6dMEAJazLXHQ", + "name": "McGillin's Olde Ale House", + "address": "1310 Drury St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950168, + "longitude": -75.162607, + "stars": 4.0, + "review_count": 979, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "GoodForDancing": "False", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "HappyHour": "True", + "DogsAllowed": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BYOB": "False", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Nightlife, Pubs, American (Traditional), Event Planning & Services, Karaoke, Restaurants, Venues & Event Spaces, Irish Pub, Sports Bars, Irish", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "cf1VJvJIjwccYXwk16U4xA", + "name": "TLA Video", + "address": "517 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420538, + "longitude": -75.1489686, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Books, Mags, Music & Video, Shopping, Videos & Video Game Rental", + "hours": null + }, + { + "business_id": "UXOji-MYsS0SL_0ccTjbKQ", + "name": "PrimoHoagies", + "address": "304 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949975, + "longitude": -75.146054, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "Caters": "True" + }, + "categories": "Italian, Restaurants, Sandwiches", + "hours": { + "Monday": "10:0-20: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", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "Ee8FPJNn4WHLsBhyFrQJhA", + "name": "Irish Pub", + "address": "1123 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489881, + "longitude": -75.1600788, + "stars": 3.0, + "review_count": 155, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForKids": "False", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Bars, Irish, Restaurants, Nightlife, Pubs", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "KUHuylryakAeMPUVkZ5HxA", + "name": "S & H Hardware & Supply", + "address": "6700 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0435006, + "longitude": -75.0739363, + "stars": 2.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "8:30-17:30", + "Sunday": "9:30-14:0" + } + }, + { + "business_id": "3BTUfOkX26Y5dGOh5jLfTg", + "name": "Rocco's Collision Center", + "address": "1021 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923931, + "longitude": -75.1635217, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Towing, Body Shops, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "hOcIEm-TAig-_y3Roeu4DA", + "name": "Paul Bros Auto Body", + "address": "4850 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9573238, + "longitude": -75.2191448, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Repair, Body Shops, Automotive, Towing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "mXs8s6TRlzm0yADf9s8Gyg", + "name": "Rittenhouse Smiles", + "address": "255 S 17th St, Ste 2306", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Oral Surgeons, Cosmetic Dentists, Dentists, Health & Medical, General Dentistry", + "hours": { + "Monday": "7:30-15:30", + "Tuesday": "10:0-19:0", + "Wednesday": "9:0-14:0", + "Thursday": "7:30-15:30", + "Friday": "7:0-13:30" + } + }, + { + "business_id": "R9VYqhQeGtHpaadx4eK3_A", + "name": "Fuel", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953629286, + "longitude": -75.1880672411, + "stars": 3.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'very_loud'", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Cafes, Food, Sandwiches, Vegetarian, Juice Bars & Smoothies, Specialty Food, Coffee & Tea, Health Markets, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "o6Om36i4Hq7hMAW5dnJquA", + "name": "Mavis Discount Tire", + "address": "4401 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0821763082, + "longitude": -74.9653540386, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Wheel & Rim Repair, Oil Change Stations, Automotive, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-20:30", + "Friday": "8:0-16:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "KLVK8gSFZhB5FVexhUKykQ", + "name": "Goldtex Apartments", + "address": "315 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.958381, + "longitude": -75.158062, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "rc8c-tp32B71Y-yx2AFZCA", + "name": "Central Nails", + "address": "1535 Chestnut St, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491849041, + "longitude": -75.1658233228, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "sBtVDqQEll-83ywL6yml9g", + "name": "Big Red Pedal Tours", + "address": "218 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497522, + "longitude": -75.1444806, + "stars": 4.0, + "review_count": 92, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'" + }, + "categories": "Tours, Pubs, Hotels & Travel, Bike tours, Bars, Historical Tours, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "2EGNOPTha-XMYIVabDJIGw", + "name": "In Touch Hair & Spa", + "address": "2020 Penrose Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9127368, + "longitude": -75.1828536, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': True, 'asian': False}", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'no'" + }, + "categories": "Day Spas, Hair Salons, Massage, Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "t1IpUoqNpeBednKVwpx3pA", + "name": "New York Bakery", + "address": "2215 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921583, + "longitude": -75.1647187, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": { + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-17:0", + "Sunday": "6:0-13:0" + } + }, + { + "business_id": "rKHK9NryBZ0BKS7PnHsZdw", + "name": "Boba King", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536510916, + "longitude": -75.1883245315, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bubble Tea, Specialty Food, Juice Bars & Smoothies, Food, Coffee & Tea", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "PLn7sTtwMxnSBrSg0t1VAg", + "name": "Tokyo Mandarin", + "address": "7030 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0476834355, + "longitude": -75.0701225869, + "stars": 4.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "WiFi": "u'no'", + "Caters": "False" + }, + "categories": "Chinese, Restaurants, Japanese", + "hours": null + }, + { + "business_id": "8KjJlBiO_ILI_Fvti_Hmfg", + "name": "Apollo Pizza", + "address": "9227 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.055265, + "longitude": -75.0036855, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "ehHQQflMgSUX5T3PFyjBWQ", + "name": "Tortas & Pizza El Sabor De Mi Tierra", + "address": "2413 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9188059, + "longitude": -75.1588809, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "NoiseLevel": "'very_loud'", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Sandwiches, Pizza, Tacos, Mexican", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0" + } + }, + { + "business_id": "SmoEzF8pka2rCG_HgE21zw", + "name": "Dunkin'", + "address": "10050 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.095777, + "longitude": -75.0152496, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "DriveThru": "None", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "KJg0FBg_SxpyKDlxx7EuOQ", + "name": "Artist & Craftsman Supply", + "address": "7926A Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0699518, + "longitude": -75.2008187, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Toy Stores, Shopping, Art Supplies, Hobby Shops, Arts & Crafts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "TVgd0ElNu0HwIZbTfmeFwA", + "name": "J & O Fabric Center", + "address": "8101 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0421868, + "longitude": -75.0252908, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Arts & Crafts, Fabric Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "N177sRwTB3qHaiCIPdYrvA", + "name": "Wingstop", + "address": "6024 Ridge Ave, Ste 118", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0322069, + "longitude": -75.2142546, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Chicken Wings, Restaurants", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "CXw0reinHayhSMvwxkNORw", + "name": "Eminence Nail Bar", + "address": "10101 B Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1048955461, + "longitude": -75.0330261465, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Technicians, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:30" + } + }, + { + "business_id": "8_pMdcAhH1XrAXvgFcWTDw", + "name": "New York Halal Kart", + "address": "800 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9457034402, + "longitude": -75.1548281219, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Street Vendors, Specialty Food, Imported Food, Food, Ethnic Food, Food Trucks", + "hours": null + }, + { + "business_id": "FGu7K0mI91Q0yW3orPY99Q", + "name": "Palace at the Ben", + "address": "834 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496293122, + "longitude": -75.1553547225, + "stars": 4.0, + "review_count": 143, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "Corkage": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "3", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Restaurants, Pakistani, Indian", + "hours": { + "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" + } + }, + { + "business_id": "YjW9E8SRBNNxdEdWf4ZjgQ", + "name": "Health Harbor Spa", + "address": "2006 South St 1F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448069267, + "longitude": -75.1754296946, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "None" + }, + "categories": "Massage, Beauty & Spas, Reflexology, Massage Therapy, Health & Medical", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "6h7C53qLfwM7v3zKRqG0yA", + "name": "Iztaccihuatl", + "address": "1122 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9352068, + "longitude": -75.1572477, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Desserts, Specialty Food, Food, Latin American, Vegetarian, Mexican, Ethnic Food, Spanish, Seafood", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "olqTsVDufyeaqXx585Uv2Q", + "name": "Dunkin'", + "address": "11725 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1192596, + "longitude": -75.0149301, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BikeParking": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'" + }, + "categories": "Coffee & Tea, Donuts, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "NbMr4k4jbP2NjxeGfk-PsQ", + "name": "Papa John's Pizza", + "address": "713 West Girard Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9706939, + "longitude": -75.1486323, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "QP-LvnkFoesBMCps7HuAWg", + "name": "Prestige Movers", + "address": "1735 Market St, Ste 3750", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536328, + "longitude": -75.1695319, + "stars": 1.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BikeParking": "False" + }, + "categories": "Shopping, Local Services, Home Services, Junk Removal & Hauling, Home & Garden, Self Storage, Movers", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30" + } + }, + { + "business_id": "6qZUd9hqa0Rcp3Sz-ZDH-g", + "name": "Cool Moving", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Packing Services, Home Services, Movers", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "Edwz_unf39oePX5M7d4S3g", + "name": "Philly Team Store", + "address": "1720 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951294, + "longitude": -75.169652, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Sporting Goods, Sports Wear", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "H0i9L8ReZOYWV-BkvKlgNw", + "name": "The Vitamin Shoppe", + "address": "1-99 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0024171375, + "longitude": -75.225046277, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Specialty Food, Shopping, Vitamins & Supplements, Health Markets, Food", + "hours": null + }, + { + "business_id": "z3jJc2dxTpEbFt4IBuYQiQ", + "name": "Tires Plus", + "address": "800 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.09355, + "longitude": -74.95757, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive, Oil Change Stations, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-16:0", + "Saturday": "7:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "1FeB0RbAz9kdoZsTf05arw", + "name": "Orient Express", + "address": "1835 N 12th St, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9809158, + "longitude": -75.153284, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': None, 'valet': False}" + }, + "categories": "Food Stands, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "y7WPOc2_vCoBkwK3xPJ8XA", + "name": "Unit Su Vege", + "address": "2000 Hamilton St, Ste 106", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 4.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HappyHour": "False", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "OutdoorSeating": "None", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': True}" + }, + "categories": "Restaurants, Chinese, Vegetarian", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "iH9fT2RCB0u4cVl2HLDtqg", + "name": "The Franklin Bar", + "address": "112 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951299, + "longitude": -75.1706467, + "stars": 4.0, + "review_count": 823, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "ByAppointmentOnly": "False", + "CoatCheck": "True", + "RestaurantsAttire": "u'dressy'", + "GoodForDancing": "False", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "False", + "OutdoorSeating": "True" + }, + "categories": "Cocktail Bars, Nightlife, Lounges, Bars", + "hours": { + "Monday": "0:0-0:0", + "Friday": "14:0-22:0", + "Saturday": "14:0-22:0", + "Sunday": "14:0-22:0" + } + }, + { + "business_id": "tR8W8VnxEb5OsXI4tAfw5A", + "name": "Men's Wearhouse", + "address": "1624 Chestnut St 1626", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95128, + "longitude": -75.16842, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Fashion, Men's Clothing, Shoe Stores, Formal Wear, Bespoke Clothing, Plus Size Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "6tBjU-CvMSf15Rkmy_xnlQ", + "name": "Quintessence Theatre Group", + "address": "7137 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0595323, + "longitude": -75.1901731, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Cinema, Arts & Entertainment, Performing Arts, Ticket Sales", + "hours": { + "Monday": "12:0-16:0", + "Tuesday": "12:0-16:0", + "Wednesday": "10:0-19:0", + "Thursday": "13:0-19:0", + "Friday": "13:0-19:0", + "Saturday": "13:0-19:0", + "Sunday": "12:30-17:0" + } + }, + { + "business_id": "RyHUDTZXbjk2tWAQFhe2Mw", + "name": "Supercuts", + "address": "6024 Ridge Ave, Roxborough Ridge Commons, Roxborough Ridge Commons", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.032364, + "longitude": -75.214102, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Men's Hair Salons, Hair Stylists, Cosmetics & Beauty Supply, Waxing, Hair Salons, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "sNsTaKQVajoHTltd_HK-_Q", + "name": "Wawa", + "address": "6506 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19101", + "latitude": 40.030023, + "longitude": -75.0562, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Coffee & Tea, Sandwiches, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "d5fAUl4lKaNxGfiXj4Kygg", + "name": "Little Italy Pizza", + "address": "901 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942855, + "longitude": -75.157207, + "stars": 3.5, + "review_count": 241, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False" + }, + "categories": "Pizza, Food, Italian, Sandwiches, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "lXVJLzBNEd5qWuoX1d1okQ", + "name": "Ed's Buffalo Wings & Pizza", + "address": "3513 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583155, + "longitude": -75.1928745, + "stars": 3.0, + "review_count": 190, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Event Planning & Services, Restaurants, Sandwiches, Pizza, Middle Eastern, Caterers, Seafood, Vegetarian, Italian, Chicken Wings", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "zvvl3c1FO3O3BZdhusficA", + "name": "LMNO", + "address": "1739-49 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976014, + "longitude": -75.133752, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsTableService": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "WZfyxxWi6ZiperQ1Hfy_bQ", + "name": "Adrianas Breakfast and Lunch", + "address": "1717 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262488, + "longitude": -75.1492853, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Delis, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "bx0nZZkoTtYJUineqQicqQ", + "name": "SoWe Bar & Kitchen", + "address": "918 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.940805, + "longitude": -75.179773, + "stars": 3.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Bars, Diners, Nightlife, American (New), Restaurants", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "11:30-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "tOw7k1EIrrH5wCuvIGwTWw", + "name": "Greyhound Package Express", + "address": "1001 Filbert Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9528071, + "longitude": -75.1570006, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Shipping Centers, Couriers & Delivery Services, Local Services", + "hours": { + "Monday": "5:30-23:59", + "Tuesday": "5:30-23:59", + "Wednesday": "5:30-23:59", + "Thursday": "5:30-23:59", + "Friday": "5:30-23:59", + "Saturday": "5:30-23:59", + "Sunday": "5:30-23:59" + } + }, + { + "business_id": "lKYlLJOPpwwH2Na1Sge3dQ", + "name": "Ms Goody Cupcake", + "address": "1838 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9267729, + "longitude": -75.1673475, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Desserts", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0" + } + }, + { + "business_id": "XIsQeHGwAlb7xqlpu0xH3Q", + "name": "Spring Garden Wash & Lube", + "address": "1111 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620692, + "longitude": -75.1566814, + "stars": 3.0, + "review_count": 150, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Oil Change Stations, Auto Detailing, Automotive, Car Wash", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "v45E6gg6MrAziTepkiWByA", + "name": "Harper's Garden", + "address": "31 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522045, + "longitude": -75.1695409, + "stars": 4.0, + "review_count": 516, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WiFi": "'no'", + "HasTV": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BYOB": "False", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "None", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True" + }, + "categories": "Wine Bars, Bars, American (New), Nightlife, Tapas/Small Plates, Cocktail Bars, Restaurants, Beer Gardens, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "zgHUDODsovqKr1eh3UquQQ", + "name": "Govberg Watch Repair", + "address": "737 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948937, + "longitude": -75.153921, + "stars": 2.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Jewelry, Watch Repair, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "0ll5CZSx6qVVV2TJPcW6mA", + "name": "Freshii", + "address": "1 S Broad St, Fl 2, Walgreens", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9511843, + "longitude": -75.1635217, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Soup, Juice Bars & Smoothies, Salad, Vegetarian, Food, Fast Food, Wraps", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "ubYUSAHPt4vNjZDEn44eTA", + "name": "Benjamin Franklin Museum", + "address": "317 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9494843329, + "longitude": -75.1467383211, + "stars": 4.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Museums", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "1tsKceJuY-0KD7V-JavtNA", + "name": "PNC Bank", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962497, + "longitude": -75.171542, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions, Mortgage Brokers, Real Estate, Home Services, Investing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "3e4Zq-MCi01DKJIo462LeA", + "name": "Fye", + "address": "1173 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084117258, + "longitude": -74.9617467, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Shopping, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "39g4BU4dI0Ht-m2-FlHDNA", + "name": "Krick Wuder Saloon & Restaurant", + "address": "2676 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0035202019, + "longitude": -75.0665330887, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Nightlife, Bars", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "MG5FKykJ8gvvZlgv3Xhe0w", + "name": "The Random Tea Room & Curiosity Shop", + "address": "713 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631199, + "longitude": -75.1443796, + "stars": 4.5, + "review_count": 161, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "'free'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Antiques, Tea Rooms, Coffee & Tea, Shopping, Food", + "hours": { + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "qJglI8CU27H6p5OrEH-K8Q", + "name": "Big Green Earth Store", + "address": "934 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936529, + "longitude": -75.155448, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fashion, Hobby Shops, Pet Stores, Accessories, Pets, Home & Garden, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "z1qfNL5rWHuoEOFd2qR1ag", + "name": "AutoZone", + "address": "1730 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938110276, + "longitude": -75.1727643235, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-21:0", + "Saturday": "7:30-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "M5HQyQXVOuwT9lSMChKVdg", + "name": "McDonald's", + "address": "7901 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0740661358, + "longitude": -75.0843798264, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "WiFi": "'free'", + "DriveThru": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'none'" + }, + "categories": "Coffee & Tea, Food, Burgers, Fast Food, American (Traditional), Restaurants", + "hours": { + "Monday": "5:30-0:0", + "Tuesday": "5:30-0:0", + "Wednesday": "5:30-0:0", + "Thursday": "5:30-4:0", + "Friday": "0:0-0:0", + "Saturday": "4:0-1:0", + "Sunday": "5:30-0:0" + } + }, + { + "business_id": "xGZvHozMwUjNjcdx40VPEA", + "name": "Di Bruno Bros. Catering & Events", + "address": "435 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9632722, + "longitude": -75.1457395, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Food, Event Planning & Services, Food Delivery Services, Caterers", + "hours": null + }, + { + "business_id": "3UWlqWEBQUHZYSQpbpiDGg", + "name": "Philadelphia Rock Gym -East Falls", + "address": "3500 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0084596, + "longitude": -75.1835392, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Rock Climbing, Amusement Parks, Event Planning & Services, Climbing, Active Life, Party & Event Planning, Gyms, Fitness & Instruction", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "diXMgEnp5_CFUR5Qe6J0SQ", + "name": "Victoria Porter Massage Artist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Massage", + "hours": null + }, + { + "business_id": "pe7T3vCOU3d5rSIJV2ijwg", + "name": "Groomers Choice", + "address": "2800 Black Lake Pl, Unit A1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1120597, + "longitude": -74.9815309, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Pet Stores, Pets, Pet Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "JAiOA2A5Fds8ksABI1GNRA", + "name": "Philadelphia Community Acupuncture", + "address": "602 Carpenter Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.046177, + "longitude": -75.1959063, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Acupuncture", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-19:30", + "Wednesday": "15:0-18:0", + "Thursday": "10:0-14:0", + "Sunday": "14:0-17:0" + } + }, + { + "business_id": "_CEpmc2aKLfPapq-MQ6ZdA", + "name": "Produce Cart", + "address": "43RD And Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9548907, + "longitude": -75.2087631, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Grocery, Street Vendors, Food, Farmers Market", + "hours": null + }, + { + "business_id": "8-8HkZNiFvoGx_R4vSHdOg", + "name": "Pizzallissimo & Grill", + "address": "746 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9229037, + "longitude": -75.1596341, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Pizza, Restaurants, Burgers, Salad", + "hours": { + "Monday": "16:0-3:30", + "Tuesday": "16:0-3:30", + "Wednesday": "13:0-3:30", + "Thursday": "13:0-3:30", + "Friday": "13:0-3:30", + "Saturday": "13:0-3:30" + } + }, + { + "business_id": "ZEhjngDrFHB15WEArU4p1g", + "name": "Donna Skin and Body Care", + "address": "10014 Sandmeyer Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.107496, + "longitude": -75.0374638, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True", + "BikeParking": "False" + }, + "categories": "Skin Care, Massage Therapy, Eyelash Service, Health & Medical, Waxing, Eyebrow Services, Beauty & Spas, Medical Spas, Hair Removal", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "6U6lYgtLMVdpogxbDQp3ww", + "name": "Wallace & Nilan Physical Therapy", + "address": "10 Shurs Ln, Ste 101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0226388, + "longitude": -75.2180228, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Occupational Therapy, Sports Medicine, Physical Therapy, Health & Medical, Doctors", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-16:0" + } + }, + { + "business_id": "5WqiT48oRn6YHpANL7y8NA", + "name": "Agrimony & Everlast", + "address": "The Random Tea Room, 713 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963137, + "longitude": -75.1444661, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Massage, Beauty & Spas", + "hours": { + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "10:0-20:0" + } + }, + { + "business_id": "3WS4vIZ5Rh1waOeuvrd_Aw", + "name": "rag & bone", + "address": "1601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950009, + "longitude": -75.1676842712, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shopping, Shoe Stores, Men's Clothing, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-18:30", + "Wednesday": "10:30-18:30", + "Thursday": "10:30-18:30", + "Friday": "12:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "D7WsVG8Rwyfj8-UC9u5p9w", + "name": "Top Quality Pizza", + "address": "6639 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0427287, + "longitude": -75.0739591, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "FPbsfa_Y8aTzunm6T-3YLw", + "name": "Koka Cardiology", + "address": "125 South 9th St, Ste 1005", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488692, + "longitude": -75.1554045, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Doctors, Cardiologists, Health & Medical", + "hours": { + "Monday": "8:0-15:30", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-15:30", + "Thursday": "8:0-15:30", + "Friday": "8:0-15:30" + } + }, + { + "business_id": "VG54JsBaDIbXU29HI9jiXw", + "name": "Mi 'N Tea", + "address": "4229 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243322, + "longitude": -75.2207517, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "Caters": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BYOB": "False", + "Alcohol": "u'none'" + }, + "categories": "Vietnamese, Bubble Tea, Food, Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "0RSws84Im4CsZ-W9biXv2g", + "name": "Rio Brazilan Steak Truck", + "address": "3400 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557436343, + "longitude": -75.1909215376, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsTableService": "False" + }, + "categories": "Food, Event Planning & Services, Barbeque, Caterers, Restaurants, Steakhouses, Food Trucks", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0" + } + }, + { + "business_id": "M2RjW47j_aL4qvBYcJEYtw", + "name": "Gusto Pizzeria", + "address": "240 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.94936, + "longitude": -75.177899, + "stars": 4.0, + "review_count": 171, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "Caters": "False", + "BYOB": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Sandwiches, Restaurants, Italian, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "xpvAGZPHCwv4JPj8aNMuCw", + "name": "Marble Works", + "address": "1530 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938561, + "longitude": -75.169405, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Building Supplies, Home & Garden, Kitchen & Bath, Countertop Installation, Flooring, Home Services, Refinishing Services, Contractors", + "hours": { + "Monday": "8:30-16:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-15:0", + "Friday": "8:30-15:0", + "Saturday": "8:30-12:0" + } + }, + { + "business_id": "8FZREDyibPgWsq2C1cBXsQ", + "name": "Statewide Roadservice", + "address": "6029 Keystone St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0153699, + "longitude": -75.0560724, + "stars": 1.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Towing", + "hours": { + "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" + } + }, + { + "business_id": "dlFdjPUJI1eqRs8WVPE3QA", + "name": "Grubhouse", + "address": "2340 S Hemberger St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9228331933, + "longitude": -75.1846716553, + "stars": 4.0, + "review_count": 118, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Diners, Hot Dogs, Breakfast & Brunch, Comfort Food, Coffee & Tea, Food, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "MTK_r6F51LlVxbZU5Zk-9w", + "name": "Beach Tanning", + "address": "2525 S Broad St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9187078, + "longitude": -75.1706125, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tanning, Beauty & Spas", + "hours": { + "Monday": "7:30-22:0", + "Tuesday": "7:30-22:0", + "Wednesday": "7:30-22:0", + "Thursday": "7:30-22:0", + "Friday": "7:30-22:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "6zEWIsb6Lhr3BeoC3gm1lw", + "name": "Chickie's and Pete's", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8774228729, + "longitude": -75.2405207186, + "stars": 2.5, + "review_count": 787, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "HappyHour": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Smoking": "u'no'" + }, + "categories": "Sandwiches, American (Traditional), Seafood, Restaurants", + "hours": null + }, + { + "business_id": "W5Rc_9Qf9ZT5M0HdywNipw", + "name": "Quest Diagnostics", + "address": "803 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470555, + "longitude": -75.1552075, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Diagnostic Services, Health & Medical, Medical Centers, Laboratory Testing", + "hours": { + "Monday": "13:0-15:30", + "Tuesday": "13:0-15:30", + "Wednesday": "13:0-15:30", + "Thursday": "13:0-15:30", + "Friday": "13:0-15:30" + } + }, + { + "business_id": "5bL6lTdirFkdk8n5xLFU-Q", + "name": "NORTHxNORTHWEST - Forest City Residential Management", + "address": "450 N 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96221, + "longitude": -75.1682995, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "uWJiesUyImGEPYYxkZ3Tmw", + "name": "Rex Pizza & Beer", + "address": "1526 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9564707, + "longitude": -75.1654783, + "stars": 3.0, + "review_count": 109, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForKids": "True", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BYOB": "True", + "RestaurantsTableService": "True", + "Corkage": "False", + "Smoking": "u'outdoor'" + }, + "categories": "Restaurants, Sandwiches, Chicken Wings, Cheesesteaks, Nightlife, Food, Beer Bar, Bars, Pizza, Wraps, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "E4PV_GU0Rdn0Jx7s6aICug", + "name": "Rudi's Formal Wear", + "address": "1113 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9164307, + "longitude": -75.1669303, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Clothing Rental, Formal Wear, Sewing & Alterations, Local Services, Men's Clothing, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-16:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "-fjIX9bvBKwXjQWfdgiWpQ", + "name": "Real Food Eatery", + "address": "4040 City Ave, Bldg 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.007403796, + "longitude": -75.212711425, + "stars": 4.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Breakfast & Brunch, Salad, Restaurants, American (Traditional), American (New)", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "uWoLti05-nQk9v0YEYOueQ", + "name": "Gadget Fix", + "address": "838 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942444, + "longitude": -75.156797, + "stars": 4.0, + "review_count": 77, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Mobile Phones, Computers, Local Services, Electronics Repair, Shopping, IT Services & Computer Repair, Mobile Phone Repair", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "Iy0CmHZ16A_XCw2nST-Fsg", + "name": "Tangerine", + "address": "232 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500468, + "longitude": -75.1448807, + "stars": 3.5, + "review_count": 77, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "False", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'" + }, + "categories": "French, Moroccan, Venues & Event Spaces, Restaurants, Event Planning & Services", + "hours": null + }, + { + "business_id": "t2skg5Emu54wQ4E-4x64Gg", + "name": "The Undercover Unit", + "address": "47 E High St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0407195, + "longitude": -75.1770158, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Amusement Parks, Arts & Entertainment, Arcades, Nightlife, Active Life, Paintball, Performing Arts", + "hours": null + }, + { + "business_id": "9w6o_eyKCSNKgMtAuv6KWg", + "name": "One Shot Coffee", + "address": "217 W George St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9677290083, + "longitude": -75.1406717064, + "stars": 4.0, + "review_count": 498, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BYOBCorkage": "u'yes_free'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Patisserie/Cake Shop, Cafes, Breakfast & Brunch, Coffee & Tea, Food, American (Traditional)", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Zjg5nixJ-sTr9B6tsDzClw", + "name": "Mr Martino's Trattoria", + "address": "1646 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929019, + "longitude": -75.164705, + "stars": 4.0, + "review_count": 153, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "Caters": "False", + "HasTV": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "f-qlRLsQ2vPATmlLTgLHbQ", + "name": "Joe Coffee Company", + "address": "1845 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506933, + "longitude": -75.1715016, + "stars": 4.0, + "review_count": 188, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Coffee Roasteries, Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "QE_AWdEFJcYxjGqWeJkI1Q", + "name": "The Wall Cycling Studio", + "address": "107 Cotton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0253998, + "longitude": -75.2222466, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Barre Classes, Active Life, Cycling Classes, Fitness & Instruction", + "hours": { + "Monday": "19:30-20:15", + "Tuesday": "19:30-20:30", + "Wednesday": "19:30-20:15", + "Thursday": "19:30-20:15", + "Friday": "17:30-18:15", + "Saturday": "10:45-11:30", + "Sunday": "17:15-18:15" + } + }, + { + "business_id": "-1b2kNOowsPrPpBOK4lNkQ", + "name": "Usaquรฉn", + "address": "1700 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9766178, + "longitude": -75.1408439, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "u'yes_corkage'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "RestaurantsDelivery": "False", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "None", + "Caters": "True", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "None", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Colombian, Restaurants, Latin American", + "hours": { + "Thursday": "8:0-14:0", + "Friday": "18:0-22:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "bVzQ8O3Djf0nh32w9HH3NQ", + "name": "Brotherly Love HVAC", + "address": "7203 Fowler St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0343639, + "longitude": -75.2287236, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Plumbing, Home Services, Contractors, Heating & Air Conditioning/HVAC", + "hours": { + "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" + } + }, + { + "business_id": "C41wdAO75BL3xXpSDARcpA", + "name": "Pelham Plaza Cleaners", + "address": "6555 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0439856, + "longitude": -75.190743, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3" + }, + "categories": "Dry Cleaning & Laundry, Dry Cleaning, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "AmbhpZW_Xc_9ngKgDqpbYw", + "name": "Engimono Sushi", + "address": "1811 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674367, + "longitude": -75.1673635, + "stars": 4.0, + "review_count": 134, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "HasTV": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Restaurants, Japanese", + "hours": { + "Monday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "X6_5_b4gVKo83VPn0FyONw", + "name": "Vivi Bubble Tea", + "address": "145 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548321, + "longitude": -75.1558378, + "stars": 4.0, + "review_count": 259, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Food, Bubble Tea", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "yHsG1SuEtB_pTZ9TjvOxrg", + "name": "Boutros Greek & Middle Eastern Food", + "address": "224 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494902133, + "longitude": -75.1642727852, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "HasTV": "True" + }, + "categories": "Restaurants, Middle Eastern", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "m1fxjwh0aMbeL_A7XiOcAg", + "name": "Tommy's Pizza", + "address": "465 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710336, + "longitude": -75.1287016, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza, American (New)", + "hours": null + }, + { + "business_id": "rVGxva6cx2eID4ghDLVHJg", + "name": "1225Raw Sushi and Sake Lounge", + "address": "1225 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498493, + "longitude": -75.1615489, + "stars": 3.5, + "review_count": 545, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "'full_bar'" + }, + "categories": "Japanese, Restaurants, Korean, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "mws4S_qc35EvkAb7N9zNgA", + "name": "British Imperial Dry Cleaners", + "address": "251 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947855, + "longitude": -75.1676485, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Laundry Services, Sewing & Alterations, Dry Cleaning & Laundry, Dry Cleaning", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "Ue4AxfCmx6RgFxsr2AqjJA", + "name": "Tribe Cafe", + "address": "2310 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.988268, + "longitude": -75.1561849, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "WiFi": "u'free'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Middle Eastern, Food, Restaurants, Falafel, Coffee & Tea, Nightlife, American (Traditional), Bars, Desserts, Hookah Bars, Halal, Mediterranean", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-23:30", + "Saturday": "7:0-23:30", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "fcpHrRopilvsBwUajFB5rw", + "name": "Dim Sum Garden", + "address": "59 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532889, + "longitude": -75.1578543, + "stars": 4.0, + "review_count": 377, + "is_open": 0, + "attributes": { + "HappyHour": "True" + }, + "categories": "Restaurants, Chinese, Dim Sum", + "hours": null + }, + { + "business_id": "fb94tpw3eNDK7htR0NRZrw", + "name": "Billy Creagh-National Realty Old City", + "address": "112 N 2nd St, Ste 5D1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524771612, + "longitude": -75.1432935172, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Agents, Commercial Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "-mc0GB26tKLQhxKpuR3xUw", + "name": "Cafe Couleur", + "address": "323 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524023, + "longitude": -75.1461989, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Food, Coffee & Tea, Juice Bars & Smoothies, Sandwiches, Cafes, Vietnamese", + "hours": null + }, + { + "business_id": "XTNu6IrYn_xn05wuqjrxiA", + "name": "Jimmy John's", + "address": "221 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477073, + "longitude": -75.1589797, + "stars": 3.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DriveThru": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HappyHour": "False" + }, + "categories": "Delis, Fast Food, Sandwiches, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "kSglWloGVOI5evbnx8ub5w", + "name": "McDonald's", + "address": "101 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.958068337, + "longitude": -75.2250515272, + "stars": 1.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "DriveThru": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsTableService": "False" + }, + "categories": "Fast Food, Food, Burgers, Coffee & Tea, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "lnkcKF38mERHKhQ_9Aiwiw", + "name": "Vintage Connection", + "address": "701 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9416399, + "longitude": -75.1572056, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Used, Vintage & Consignment", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "xhAzk9qYpHR-nu_0sZIcWg", + "name": "The Halal Guys", + "address": "1016 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955365, + "longitude": -75.156627, + "stars": 3.5, + "review_count": 198, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True" + }, + "categories": "Restaurants, Halal, Middle Eastern", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-0:0", + "Saturday": "0:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "MuQ-irulfi6V8N9Ka6XBHQ", + "name": "Rib Rack", + "address": "2100 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0425044, + "longitude": -75.063225, + "stars": 4.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True" + }, + "categories": "Salad, Restaurants, Barbeque, Burgers, Chicken Wings", + "hours": { + "Monday": "15:30-21:0", + "Tuesday": "15:30-21:0", + "Wednesday": "15:30-21:0", + "Thursday": "15:30-21:0", + "Friday": "15:30-21:0", + "Saturday": "15:30-21:0", + "Sunday": "15:30-21:0" + } + }, + { + "business_id": "XfffEIx41cPIP7lgGitJdQ", + "name": "Septa Spring Garden Station", + "address": "600 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.960556, + "longitude": -75.140358, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Train Stations, Public Services & Government, Hotels & Travel", + "hours": null + }, + { + "business_id": "BNnXlSvc2j-IUzu_6ySuvA", + "name": "Tai Chi Healing SPA", + "address": "420 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415861, + "longitude": -75.150018, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Massage, Beauty & Spas", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "rdu6x5W5k7ChRskiRR332A", + "name": "Dr. Martens Philadelphia", + "address": "1710 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499285, + "longitude": -75.1697005, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shoe Stores, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "12:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "rTM2dVxWv2HSxt56EpSRmQ", + "name": "Pest Control Solutions", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9358515124, + "longitude": -75.1522470795, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pest Control, Arts & Entertainment, Wildlife Control", + "hours": { + "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": "11:0-13:0" + } + }, + { + "business_id": "FkBGdMJgPFqxQ_h8vP5FUA", + "name": "Pi Lam", + "address": "3914 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.952045, + "longitude": -75.202501, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Nightlife, Arts & Entertainment, Music Venues", + "hours": null + }, + { + "business_id": "q6zdVV39mILya3Mm6B_Xyg", + "name": "Kibitz Room", + "address": "1521 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948829, + "longitude": -75.167145, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "sXVPF8-hZ6k8zK2d1O6hNQ", + "name": "County & Quaker Cab", + "address": "6749 Upland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9249554018, + "longitude": -75.2401691, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Taxis, Hotels & Travel", + "hours": null + }, + { + "business_id": "SQdlL7Wy-Dl2O8rhMOIx9w", + "name": "Tequila Sunrise", + "address": "525 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9704951, + "longitude": -75.1461192, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Books, Mags, Music & Video, Arts & Entertainment, Vinyl Records, Music & DVDs, Shopping", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "zCmdpK9TYREr3sO1QO6BCw", + "name": "Philly Brew Tours by City Brew Tours", + "address": "1277 Filbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530598, + "longitude": -75.1606397, + "stars": 5.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Event Planning & Services, Tours, Beer Tours, Breweries, Team Building Activities, Food Tours, Food, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "avwFfTOYrPZs5oHfA0ExnA", + "name": "B&K Arts", + "address": "527 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9442662, + "longitude": -75.168559, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Framing, Arts & Crafts, Arts & Entertainment, Art Galleries, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:45", + "Wednesday": "12:0-17:45", + "Thursday": "12:0-17:45", + "Friday": "12:0-17:45", + "Saturday": "11:0-15:45" + } + }, + { + "business_id": "8y19WmeqxvOC7p_qPJL53g", + "name": "South Street Psychic", + "address": "238 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412351, + "longitude": -75.1470986, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Life Coach, Professional Services, Supernatural Readings, Psychics", + "hours": null + }, + { + "business_id": "U3Bqo_gZ0sIHMqil2fUlUw", + "name": "Thai Singha House Express", + "address": "106 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517584, + "longitude": -75.1737245, + "stars": 4.0, + "review_count": 211, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Thai", + "hours": { + "Monday": "11:0-20:45", + "Tuesday": "11:0-20:45", + "Wednesday": "11:0-20:45", + "Thursday": "11:0-20:45", + "Friday": "11:0-20:45", + "Saturday": "17:0-20:45", + "Sunday": "17:0-20:45" + } + }, + { + "business_id": "YXTtLxhFjPP8IgB_iEEucg", + "name": "The Cafe At 2011 Walnut", + "address": "2011 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95069, + "longitude": -75.17422, + "stars": 3.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Irish, American (New), French, American (Traditional), Lounges, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "YJU0Faf-5CR7CwfVicxROg", + "name": "Orville R Walls DVM", + "address": "5523 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0333105, + "longitude": -75.1750396, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": null + }, + { + "business_id": "K7vT-aZRtl6V4IjpRXaCNQ", + "name": "Unite Fitness - Rittenhouse", + "address": "26 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523182, + "longitude": -75.1735764, + "stars": 5.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Trainers, Nutritionists, Gyms, Boot Camps, Active Life, Fitness & Instruction, Health & Medical, Interval Training Gyms, Yoga", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-20:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "vNUffj8UQoUS8iVTcMK0QA", + "name": "J&J Seat Cover", + "address": "2180 Hornig Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1113045, + "longitude": -74.996763, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Furniture Reupholstery, Automotive, Local Services, Auto Upholstery, Auto Detailing", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "2Ajfvxm3p20gKmqnn_pq8g", + "name": "Party Artisans with Dan The Balloon Man", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Event Planning & Services, Arts & Entertainment, Party Supplies, Party & Event Planning, Performing Arts, Balloon Services, Face Painting", + "hours": { + "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" + } + }, + { + "business_id": "Q05_2W8m6Lbbu1KcQ3U3wg", + "name": "Settle Down Philadelphia", + "address": "444 N 4th St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.958908, + "longitude": -75.1458732, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate Services, Real Estate, Property Management, Real Estate Agents", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "10:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "HhigppEaT8hbG4HTTh0ueA", + "name": "Joy Cleaners", + "address": "221 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503293, + "longitude": -75.1444822, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning, Dry Cleaning & Laundry, Sewing & Alterations", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "momyNsSDMDk6fR8W-JgqFw", + "name": "Michael's Chinese Kitchen", + "address": "1601 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9346961, + "longitude": -75.1709317, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "GoodForKids": "False", + "RestaurantsTableService": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Chinese, Sushi Bars", + "hours": null + }, + { + "business_id": "-rme923YftBvVWv9omz8Ng", + "name": "The Boudoir By Cheyenne Gil", + "address": "3525 I St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0018825, + "longitude": -75.1097491, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Professional Services, Photographers, Session Photography, Boudoir Photography", + "hours": null + }, + { + "business_id": "1cncsHKApeW1ubd5d9HoJw", + "name": "Hop Sing Laundromat", + "address": "1029 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9555142, + "longitude": -75.1569404, + "stars": 4.0, + "review_count": 898, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "u'dressy'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "DogsAllowed": "False", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "CoatCheck": "False" + }, + "categories": "Lounges, Nightlife, Bars, Cocktail Bars", + "hours": null + }, + { + "business_id": "HNC6Nvp_rza7AhsXrFdENA", + "name": "South Philly Nails", + "address": "2226 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9234661, + "longitude": -75.1799172, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "gKZuvwFRHcO2Y6XfyWO7lA", + "name": "Hosteria Da Elio", + "address": "615 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409538, + "longitude": -75.1474829, + "stars": 3.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "BLgjM7uSh3is97DBvQTdew", + "name": "Nails By Anna D", + "address": "1534 Sansom St, Ste ย 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504191779, + "longitude": -75.1670754594, + "stars": 2.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "UwrAwU66vh3uBhtQE3tEng", + "name": "myDoc Urgent Care", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9480384, + "longitude": -75.1658929, + "stars": 3.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Diagnostic Services, Laboratory Testing, Emergency Rooms, Health & Medical, Hospitals, Medical Centers, Urgent Care", + "hours": { + "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": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "4tS4tN7Ax3pXIibdufOssw", + "name": "H & J Food Truck", + "address": "3101-3199 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544678394, + "longitude": -75.1858523077, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food Trucks, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "DeDszlU-Gg-Hodu_HSKRQA", + "name": "Naca", + "address": "1341 N Delaware Ave, Ste 312", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9679125, + "longitude": -75.1274849, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Marketing", + "hours": null + }, + { + "business_id": "8Xg40-or1BaKDbgA445Y1Q", + "name": "Super Fresh", + "address": "1001 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942931464, + "longitude": -75.1587759841, + "stars": 2.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "hMOo98ZQhKM8XvxshvmtNA", + "name": "Wokworks", + "address": "S 15th St & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952385, + "longitude": -75.16525, + "stars": 4.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BikeParking": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessAcceptsBitcoin": "True", + "Caters": "True", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "DogsAllowed": "True", + "WiFi": "u'no'", + "BYOB": "False", + "BusinessParking": "None" + }, + "categories": "Caterers, Food Trucks, Asian Fusion, Restaurants, Event Planning & Services, Fast Food, Food", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "Px-U9DtzGY3sU6YvAt428Q", + "name": "Barnes & Noble @ Temple University Law School", + "address": "1700 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9789067536, + "longitude": -75.1581338249, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "False" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Food, Shopping, Coffee & Tea, Fashion", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "W7k9dtkWDVzFbZoINIPL9A", + "name": "US Maxim Wholesale Nail Supply", + "address": "1119 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365305, + "longitude": -75.1613328, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping", + "hours": null + }, + { + "business_id": "EY21LIzWfGgzbJWBfe9l2Q", + "name": "Wendy's", + "address": "2955 Market Street (Amtrack 30Th St Station)", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557501, + "longitude": -75.1819882294, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Hot Dogs, Fast Food, Restaurants, Burgers", + "hours": { + "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": "9:0-21:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "IKOtPpMJTtvEkDXMSc_wjQ", + "name": "Dunkin'", + "address": "839 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9693781, + "longitude": -75.1594526, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "DriveThru": "None" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "4:30-19:0", + "Tuesday": "4:30-19:0", + "Wednesday": "4:30-19:0", + "Thursday": "4:30-19:0", + "Friday": "4:30-19:0", + "Saturday": "4:30-19:0", + "Sunday": "4:30-19:0" + } + }, + { + "business_id": "tG-V6cSopMoD7mfjXbAv3Q", + "name": "Philadelphia Gas Works", + "address": "1601 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9303380455, + "longitude": -75.1681686938, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Utilities", + "hours": { + "Monday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0" + } + }, + { + "business_id": "mhhCYSagskopFJNHlV5a9A", + "name": "Teddy's Pizza", + "address": "4748 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0179104, + "longitude": -75.0829587, + "stars": 2.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:30", + "Tuesday": "10:0-23:30", + "Wednesday": "10:0-23:30", + "Thursday": "10:0-23:30", + "Friday": "10:0-0:30", + "Saturday": "10:0-0:30", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "wRlOL_SMq_LT2lnTpxvPzQ", + "name": "Thai Singha House", + "address": "3906B Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955275815, + "longitude": -75.2001854442, + "stars": 3.5, + "review_count": 120, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Caters": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': False}", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}", + "NoiseLevel": "u'average'" + }, + "categories": "Thai, Restaurants", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "WZk0eszcwLtOCrXnp-F25Q", + "name": "La Salle University", + "address": "2145 Elkins Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.040837, + "longitude": -75.1574927, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Colleges & Universities, Education", + "hours": null + }, + { + "business_id": "118HJGOCCgVJ6DhbgUDbbA", + "name": "Mallory Eisenman", + "address": "1900 Rittenhouse Sq, Ste C3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954384, + "longitude": -75.1713915, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Doctors, Sports Medicine, Podiatrists", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-18:0" + } + }, + { + "business_id": "FTSY6Y1RU-ICgc3GAbquXA", + "name": "Little Baby's Ice Cream", + "address": "4903 Catherine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948495, + "longitude": -75.221425, + "stars": 4.0, + "review_count": 92, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Arts & Entertainment, Caterers, Shopping, Food, Event Planning & Services, Desserts, Ice Cream & Frozen Yogurt, Art Galleries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "SURg4L-_Wp7LQkPk17ZgoA", + "name": "Winthorpe & Valentine Bar & Grill", + "address": "99 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519739402, + "longitude": -75.1680094391, + "stars": 3.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "HappyHour": "True", + "Caters": "False", + "RestaurantsTakeOut": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': None}" + }, + "categories": "American (New), Breakfast & Brunch, Restaurants, Steakhouses", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "WRckwZQdiw8QKh0UY-wJnA", + "name": "Casino Deli Restaurant", + "address": "2425 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0730578, + "longitude": -75.0337349, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (Traditional), Restaurants, Delis", + "hours": { + "Monday": "6:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "6:0-20:30", + "Saturday": "6:0-20:30", + "Sunday": "6:0-20:30" + } + }, + { + "business_id": "CczaLGn5dIbkiZ66tlz5-Q", + "name": "Crafty Soul", + "address": "4617 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9707728, + "longitude": -75.2142558, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Soul Food, Restaurants", + "hours": { + "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": "12:0-20:0" + } + }, + { + "business_id": "453c3KX92g_bjn53a9OBqg", + "name": "Phil's Firewood", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9945360349, + "longitude": -75.1093615858, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Home & Garden, Firewood, Home Services, Local Flavor", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "ZbwNvz9TYU_ePG7ZmaAzMw", + "name": "Sweetie's Pie Diner", + "address": "1822 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9632658, + "longitude": -75.1692245, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gluten-Free, Restaurants, Diners, Vegetarian", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "Cfpv0IjS0lI4CgF1fpbF_w", + "name": "The Original Snockey's Oyster & Crab House", + "address": "1020 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9342115, + "longitude": -75.1474241, + "stars": 2.5, + "review_count": 136, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'paid'", + "OutdoorSeating": "True", + "HappyHour": "True" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "L-Stayf726lSU3eung6a1Q", + "name": "Tony Luke's", + "address": "1603 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9782858105, + "longitude": -75.1577934073, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Cheesesteaks", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "oA1D5XHC8q-lEfa00dEu5w", + "name": "Anthony's Cafe", + "address": "319 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9701307, + "longitude": -75.1313212, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Food, Bars, Sandwiches, Restaurants, Nightlife, Beer, Wine & Spirits", + "hours": { + "Monday": "9:0-2:0", + "Tuesday": "9:0-2:0", + "Wednesday": "9:0-2:0", + "Thursday": "9:0-2:0", + "Friday": "9:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "JDIhiL7qjOoXdysO7xxvmg", + "name": "Key Food Pizza", + "address": "2329 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9791705, + "longitude": -75.1252922, + "stars": 3.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "fBOoOWHRWPXIrMvVVkZqMg", + "name": "Cake", + "address": "8501 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076318, + "longitude": -75.206295, + "stars": 4.0, + "review_count": 250, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Bakeries, Food, American (New), Restaurants, Cupcakes", + "hours": { + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "10:0-14:30" + } + }, + { + "business_id": "300_HrPJkulWGKcZVM60rA", + "name": "Luscious Bakery", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Trucks, Bakeries, Food", + "hours": null + }, + { + "business_id": "BxFVadUslmGpxFTXhqq7Gg", + "name": "King Market", + "address": "140 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548106, + "longitude": -75.1560887, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Specialty Food, Ethnic Food, Food, Grocery", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "or_HF43bWzG91XgpurhYpg", + "name": "Jefferson Health", + "address": "833 Chestnut St, Ste 701", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502714628, + "longitude": -75.1552637065, + "stars": 2.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Internal Medicine, Doctors, Obstetricians & Gynecologists, Family Practice, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "wJAK6B-dmgGrco3KYwvWXQ", + "name": "The Body Klinic", + "address": "2012 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950241, + "longitude": -75.1744949, + "stars": 2.5, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Removal, Beauty & Spas, Day Spas, Hair Salons, Hair Stylists", + "hours": null + }, + { + "business_id": "Io5Mvd_1bSjZpa-dyjOZbg", + "name": "Bar Symon", + "address": "8000 Essington Ave, Level 2, Terminal D, Gate D9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.875504, + "longitude": -75.238125, + "stars": 2.5, + "review_count": 82, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "Alcohol": "'full_bar'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': None, 'street': False, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Sandwiches, Bars, Restaurants, Pubs, American (Traditional), Nightlife, Breakfast & Brunch, Comfort Food", + "hours": { + "Monday": "4:45-21:0", + "Tuesday": "4:45-21:0", + "Wednesday": "4:45-21:0", + "Thursday": "4:45-21:0", + "Friday": "4:45-21:0", + "Saturday": "4:45-21:0", + "Sunday": "4:45-21:0" + } + }, + { + "business_id": "jTbOziVO4fGAPCUII5OgYg", + "name": "The Cedars House", + "address": "200 Northwestern Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0830673865, + "longitude": -75.2322988672, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "Alcohol": "'none'" + }, + "categories": "Social Clubs, Venues & Event Spaces, Active Life, Event Planning & Services, Arts & Entertainment, Cafes, Restaurants, Food, Juice Bars & Smoothies", + "hours": { + "Wednesday": "9:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "uPZGQLLco2fZYmW7PC5v-w", + "name": "Philadelphia Bee Co", + "address": "2503 E Firth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9786195, + "longitude": -75.1206568, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pest Control, Honey, Local Services, Food", + "hours": { + "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" + } + }, + { + "business_id": "GR7eQKhHRbVWpzRsCAMfEA", + "name": "Spring Garden Pizza & Restaurant", + "address": "1139 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620486, + "longitude": -75.1574284, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Pizza, Restaurants", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "FUMp1kmo3ix5BstG-OW-8Q", + "name": "Blind Barber", + "address": "1325 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500715082, + "longitude": -75.1630359539, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "False", + "BikeParking": "False", + "Smoking": "u'no'", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False" + }, + "categories": "Beauty & Spas, Nightlife, Bars, American (Traditional), Shopping, Cosmetics & Beauty Supply, Hair Salons, Barbers, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "uLXADd5rLUi7eFFRO_5wRQ", + "name": "The Dinner Detective", + "address": "237 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473199, + "longitude": -75.1642969, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BikeParking": "False", + "HasTV": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Caters": "True" + }, + "categories": "Performing Arts, Nightlife, Arts & Entertainment, Comedy Clubs, Restaurants, Dinner Theater", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-13:0" + } + }, + { + "business_id": "1F_lKVOdC8UN-5UOQ-FSGA", + "name": "Luxor Cafe & Hookah Lounge", + "address": "132 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558075, + "longitude": -75.2117666, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "WiFi": "'free'", + "ByAppointmentOnly": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "Food, Hookah Bars, Shopping, Coffee & Tea, Nightlife, Head Shops, Lounges, Bars", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "_lnwx8hCqocTMGUxm0z0sQ", + "name": "Ming River Chinese Restaurant", + "address": "107 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538493, + "longitude": -75.1561114, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "5Kz7oB5_dXi86KIuTh0zaQ", + "name": "United Auto Collision", + "address": "3913 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0129323792, + "longitude": -75.1521492004, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Body Shops", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "KzSL2VzyT7bdHd0bhMyanw", + "name": "Da Vinci Ristorante", + "address": "1533 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9299439, + "longitude": -75.1628404, + "stars": 4.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "LzqUA4TiUOPVKMoa_y5k0A", + "name": "Dulce Lounge", + "address": "812 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968479, + "longitude": -75.160592, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True" + }, + "categories": "American (New), Nightlife, Bars, Hookah Bars, Restaurants", + "hours": { + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "y3LlrItb8nrzMYYiqQee3g", + "name": "Ashburner Inn", + "address": "8400 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.040715, + "longitude": -75.015473, + "stars": 4.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "American (New), Caterers, Restaurants, Pizza, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "vWJ-P40HT3FPXNlqFhyWEw", + "name": "Rent-A-Wreck", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8661525169, + "longitude": -75.2982907297, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Car Rental, Travel Services, Hotels & Travel, Automotive, Truck Rental", + "hours": { + "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" + } + }, + { + "business_id": "lEDZ1B1kss1xCTpMyHU1Rg", + "name": "Hertz Rent A Car", + "address": "6815 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.906198, + "longitude": -75.2250251, + "stars": 2.0, + "review_count": 27, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "qcn10016DUkbgCbQi9L1WA", + "name": "Bassetts Ice Cream", + "address": "45 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533865861, + "longitude": -75.1593522209, + "stars": 4.0, + "review_count": 472, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HappyHour": "False", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "elSnD7Vuxnlg5_9gTqBqmA", + "name": "Barra Rossa Ristorante", + "address": "929 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485666341, + "longitude": -75.157169, + "stars": 3.5, + "review_count": 366, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "Caters": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza, Italian, Gluten-Free", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "dqCh-L9qSQoW6YudvERNrg", + "name": "Chestnut Diner", + "address": "1614 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951277, + "longitude": -75.1678954, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Corkage": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BYOB": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Diners, American (Traditional), Restaurants", + "hours": { + "Monday": "6:30-23:0", + "Tuesday": "6:30-23:0", + "Wednesday": "6:30-23:0", + "Thursday": "6:30-23:0", + "Friday": "6:30-6:0", + "Saturday": "6:30-6:0", + "Sunday": "6:30-23:0" + } + }, + { + "business_id": "SDYbtInZIV9dpf7F9EhC7w", + "name": "The Chilly Banana", + "address": "932 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9372169, + "longitude": -75.1548003, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Restaurants, Food, Vegan", + "hours": { + "Wednesday": "13:0-21:0", + "Thursday": "13:0-21:0", + "Friday": "13:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "bLbD9QyDKEoZfjlIQf2KOw", + "name": "Upsal Garden Apts", + "address": "246 W Upsal St, Apt G403", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0429404, + "longitude": -75.1872323, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "kvoNwEVdAzPse9ujGKeYNw", + "name": "Furniture Lifestyle", + "address": "4334 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025185, + "longitude": -75.2233158, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "w-uIQBEDvCd_XLNdzg8olg", + "name": "Eagle Inspections", + "address": "3500 Brae Bourn Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19006", + "latitude": 40.1377123, + "longitude": -75.0385609, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Pest Control, Home Inspectors, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "8:0-16:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "RXwaoArqhi_-JnZh5MH_ow", + "name": "Wawa", + "address": "1707 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553252, + "longitude": -75.1683325, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "Caters": "True" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "6mUqmnpkl5Ynd-M9VCCkHQ", + "name": "Chinatown Chinese Restaurant", + "address": "935 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536866, + "longitude": -75.1561742, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "7rUaXU8_IgnOrOMnN7HPQQ", + "name": "Landmark Americana Tap & Grill - City Line", + "address": "2481 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9960138239, + "longitude": -75.234246254, + "stars": 2.5, + "review_count": 133, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sports Bars, Nightlife, American (Traditional), Restaurants, Beer, Wine & Spirits, Bars, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "QsE5_szZ_G9MZ68AAzgVWQ", + "name": "Northeast Community Vehicle Inspections", + "address": "6101 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0331863281, + "longitude": -75.0760307497, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Oil Change Stations, Tires", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-15:45" + } + }, + { + "business_id": "NxFuPjGPqM0X1RK4kOzdtg", + "name": "Dunkin'", + "address": "7104 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0443328, + "longitude": -75.2306089, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "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" + } + }, + { + "business_id": "FQ_QUyrwtnaEdxUxruZkXg", + "name": "Minibooths", + "address": "715 Mercy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9235129, + "longitude": -75.1587107, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photo Booth Rentals, Event Photography, Event Planning & Services, Photographers", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "getM66efAV80330xLQ9pyg", + "name": "AAMCO Transmissions & Total Car Care", + "address": "7716 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0521101, + "longitude": -75.2366483, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Auto Parts & Supplies, Automotive, Transmission Repair, Oil Change Stations", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "m2Gcv_wlAUbHZaqVqMMBCQ", + "name": "Mummers Parade", + "address": "Broad St At Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9243928, + "longitude": -75.1697476, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment, Local Flavor", + "hours": null + }, + { + "business_id": "0SWqECZ39P2MlmeXbKnUjg", + "name": "Asia On the Parkway", + "address": "1700 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557404, + "longitude": -75.1683553, + "stars": 3.0, + "review_count": 141, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BikeParking": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True" + }, + "categories": "Singaporean, Restaurants, Asian Fusion, Thai", + "hours": { + "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" + } + }, + { + "business_id": "sKeSTwY0eqZVSKbh70SYvw", + "name": "Panda Cafe", + "address": "1608 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245699, + "longitude": -75.173413, + "stars": 4.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Indonesian, Food, Vegetarian, Bubble Tea", + "hours": null + }, + { + "business_id": "kuUgMFCIQAGFZX4rk4jj0Q", + "name": "Bud & Marilynโ€™s", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8761393223, + "longitude": -75.2427911013, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': None, u'validated': None}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Restaurants", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0", + "Saturday": "5:0-19:0", + "Sunday": "5:0-19:0" + } + }, + { + "business_id": "AhDF9uub_RaIsACqQJqpeQ", + "name": "No.1 House", + "address": "7530 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0552892, + "longitude": -75.0627802, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "zsaDvomuMLe_-Ibtk9sA-A", + "name": "Gatehouse Cafe", + "address": "3300 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0131008774, + "longitude": -75.1839099079, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "43WXPTrHWjd6AHVMXpoSaQ", + "name": "Whyy", + "address": "150 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.954051294, + "longitude": -75.1500130721, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Radio Stations, Television Stations, Mass Media", + "hours": null + }, + { + "business_id": "VEv9yMeAKTlJ8dCG3GCBoQ", + "name": "Philadelphia Sports Acupuncture", + "address": "750 South 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941693, + "longitude": -75.167878, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Acupuncture, Massage Therapy, Sports Medicine, Doctors", + "hours": null + }, + { + "business_id": "M-KoeD9TyLLy4Zv_Rb_Vgw", + "name": "Camp Bow Wow Philadelphia NE", + "address": "2850 Comly Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0995455806, + "longitude": -74.997015059, + "stars": 4.0, + "review_count": 34, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pet Services, Pets, Pet Groomers, Pet Training", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "8:0-19:0", + "Sunday": "16:0-19:0" + } + }, + { + "business_id": "py25llU7OUPZXPqRMw3Gtg", + "name": "My Daughters Wedding", + "address": "5642 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0375656, + "longitude": -75.1305047, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Wedding Planning, Formal Wear, Fashion, Shopping, Bridal, Women's Clothing, Men's Clothing, Photographers, Local Services, Sewing & Alterations, Event Planning & Services", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0" + } + }, + { + "business_id": "xMR0IwVAbJzRt9TSlQoHRg", + "name": "Family Spot Jamaican Restaurant", + "address": "6722 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.05595, + "longitude": -75.1413353, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Caribbean, Restaurants", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "SGHKFKHSm6H-fU_zDIQXCg", + "name": "Philadelphia Yoga Exchange", + "address": "466 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9605685, + "longitude": -75.1549708, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Pilates, Active Life, Yoga", + "hours": { + "Monday": "18:0-19:30", + "Tuesday": "18:0-20:30", + "Wednesday": "16:30-19:15", + "Thursday": "18:0-20:30", + "Friday": "16:30-19:15", + "Saturday": "16:0-17:15", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "Cw_wZwxwQcLECIx7dBPZ8g", + "name": "Yoga Hive Philly", + "address": "1914 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262805, + "longitude": -75.1679107, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Yoga, Active Life", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "-_mCgBtlEGbzbTsjnuXm3Q", + "name": "Little Caesars Pizza", + "address": "5207 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9573479, + "longitude": -75.2259824, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "QxyWLkrSWzedD8eU0zj3cA", + "name": "Luna Rosa Salon", + "address": "210 Christian St, Ste 1F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935981, + "longitude": -75.147525, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}" + }, + "categories": "Blow Dry/Out Services, Waxing, Hair Removal, Hair Stylists, Hair Salons, Beauty & Spas, Massage", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "13:0-21:0", + "Thursday": "11:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "Ui5VPcIQzUvYhJ_NuTgukg", + "name": "Popeyes Louisiana Kitchen", + "address": "5200 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9382715655, + "longitude": -75.2156104577, + "stars": 1.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "GoodForMeal": "None", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "None" + }, + "categories": "Chicken Wings, American (Traditional), Fast Food, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "b9sLRv_j1eijFIEso8-RQg", + "name": "Philly Pretzel Factory", + "address": "12363 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.096319, + "longitude": -74.974212, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "Caters": "True", + "HasTV": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "DriveThru": "True" + }, + "categories": "Restaurants, Food, Hot Dogs, Pretzels, Bakeries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "7:0-14:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "fnYeFeEriwGpbieRIkvDOw", + "name": "Dizengoff", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529913, + "longitude": -75.1922872, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Middle Eastern, Mediterranean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0" + } + }, + { + "business_id": "cvOwq9B2n_xD3ghCADyMZg", + "name": "Authentic Bartending School", + "address": "100-20 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959899128, + "longitude": -75.1393540895, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Education, Specialty Schools, Bartending Schools, Adult Education", + "hours": null + }, + { + "business_id": "C9d0ZfAbgxDdBFu6JRHeZg", + "name": "Harpoon Pest Solutions", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "K2DO5pvLFjDjVcfnHjn9BA", + "name": "Pasto", + "address": "11 N Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9528088, + "longitude": -75.1621988, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian, Delis", + "hours": null + }, + { + "business_id": "t2KQa1plnfMoA_LOgBrUGA", + "name": "Loco Pez", + "address": "700 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9438958071, + "longitude": -75.1754572615, + "stars": 4.0, + "review_count": 69, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': True, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "CoatCheck": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Mexican, Restaurants, Nightlife", + "hours": null + }, + { + "business_id": "4FS0BXHYW2ag97OgJ_awLw", + "name": "Warby Parker", + "address": "1523 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94991, + "longitude": -75.16699, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Optometrists, Sunglasses, Shopping, Health & Medical, Eyewear & Opticians", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "11:0-15:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "xxiHB_oOFeTXKCzMxBOCdg", + "name": "Pennsylvania Wine & Spirits", + "address": "4049 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957656, + "longitude": -75.203729, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beer, Wine & Spirits, Food, Shopping", + "hours": null + }, + { + "business_id": "VD4pv9eECArtQd2ThgW1OQ", + "name": "Bellagala", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "55101", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Planning, Photographers, DJs, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "SaqqOt5a9-Vh4dkmWL3YTA", + "name": "Market Day Canelรฉ", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Farmers Market, Food", + "hours": { + "Sunday": "10:0-14:30" + } + }, + { + "business_id": "xBMkvH_qR-LhA-kJ_Gwvqg", + "name": "Winterfell Dessert", + "address": "32 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956256, + "longitude": -75.202346, + "stars": 4.5, + "review_count": 136, + "is_open": 0, + "attributes": { + "DogsAllowed": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "False", + "WiFi": "u'free'", + "NoiseLevel": "'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Shaved Ice, Bubble Tea, Desserts, Food, Restaurants, Ice Cream & Frozen Yogurt, Taiwanese", + "hours": { + "Monday": "13:0-22:30", + "Tuesday": "13:0-22:30", + "Wednesday": "13:0-22:30", + "Thursday": "13:0-22:30", + "Friday": "13:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "VeTziaQYQLg0o67Oe-B7ug", + "name": "Hook & Reel Cajun Seafood & Bar", + "address": "1936 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9217559, + "longitude": -75.1426351, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'garage': False, u'street': False, u'validated': False, u'lot': True, u'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "Caters": "False" + }, + "categories": "Cajun/Creole, Restaurants, Seafood", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "13:0-21:30", + "Saturday": "13:0-21:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "opn3DFIIedruuLGkaEMlAw", + "name": "Thornton's Tax Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0397682, + "longitude": -75.145782, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Payroll Services, Local Services, Accountants, Tax Services, Financial Services, Notaries", + "hours": { + "Monday": "17:30-21:30", + "Tuesday": "17:30-21:30", + "Wednesday": "17:30-21:30", + "Thursday": "17:30-21:30", + "Friday": "17:30-21:30", + "Saturday": "9:0-18:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "IEcLzwD9o5hj3N5aKzD-ZQ", + "name": "Weavers Way Co-op", + "address": "8424 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.075476, + "longitude": -75.2057698, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, CSA, Farmers Market, Food", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "y04yvFFUW3KdwBOJTn6BGA", + "name": "McGlinchey's Bar & Grill", + "address": "259 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9477475, + "longitude": -75.1661374, + "stars": 3.5, + "review_count": 192, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "DogsAllowed": "False", + "Smoking": "u'yes'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bars, Nightlife, Dive Bars, Restaurants", + "hours": { + "Monday": "10:30-2:0", + "Tuesday": "10:30-2:0", + "Wednesday": "10:30-2:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "paxJoGgP8Pw79ODjPC1nUg", + "name": "Angelo's Pizza House", + "address": "3901 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0038046, + "longitude": -75.0940335, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Greek, Pizza", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "G8OVfFHXAV4tnLh--rDHOw", + "name": "Doctor Cycles", + "address": "3601 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9588224, + "longitude": -75.1937789, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "False" + }, + "categories": "Bike Repair/Maintenance, Sporting Goods, Bikes, Active Life, Bike Rentals, Shopping, Local Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "Em5rXI3amBD5Ekvmy0qZUA", + "name": "Dunkin'", + "address": "842 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.103121, + "longitude": -75.030183, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "SyQ0_zUvCJ1qrSsbNoJWcw", + "name": "Battlesword Philly", + "address": "3475 Collins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.995002, + "longitude": -75.102785, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "None", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Fitness & Instruction, Active Life, Fencing Clubs", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "cjToWkyyWysOqR3OeRh4qg", + "name": "The Body Sanctuary Day Spa", + "address": "315 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9460428, + "longitude": -75.1625353, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Day Spas", + "hours": null + }, + { + "business_id": "RunosH2w38ZOkoH3GRcVlw", + "name": "Di Ole Dutch Pot Cuisine", + "address": "5912 Old York Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0432348222, + "longitude": -75.1445682719, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "Alcohol": "'none'", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0" + } + }, + { + "business_id": "dvLSJwmlPAZioS3R5B3Wtw", + "name": "Rosarios Pizzeria", + "address": "1501 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9344738, + "longitude": -75.1694251, + "stars": 4.0, + "review_count": 211, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Caters": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Burgers, Mexican, Restaurants, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "nkPcTOCW1xRzyRgrKEWNTQ", + "name": "Warrior", + "address": "513 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942054, + "longitude": -75.151221, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Tattoo, Piercing, Beauty & Spas", + "hours": { + "Monday": "13:0-20:0", + "Tuesday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "13:0-20:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "dgKZ0vI459VQFJzu_RB7tA", + "name": "Eye Encounters", + "address": "1325 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9523735676, + "longitude": -75.1623214717, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Eyewear & Opticians, Optometrists, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "hvDvdmecT-rI0k8XbiRvdg", + "name": "Artists' House Gallery", + "address": "57 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9515077, + "longitude": -75.1433442, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Art Galleries, Shopping, Arts & Entertainment", + "hours": { + "Wednesday": "13:30-17:30", + "Thursday": "13:30-17:30", + "Friday": "13:30-17:30", + "Saturday": "14:0-17:0", + "Sunday": "14:0-17:0" + } + }, + { + "business_id": "dWAaS3h2DbU-Pb9dvU7qcw", + "name": "Love Vape - University City", + "address": "4714 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483769, + "longitude": -75.2175266, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Vape Shops", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "Du2BdpVqty9eC-NPDkTUpA", + "name": "The Nosh", + "address": "3600 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955759, + "longitude": -75.1947476, + "stars": 2.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Alcohol": "u'none'" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-15:30" + } + }, + { + "business_id": "IL4DTuh0IcO8Tq-tGUx0lg", + "name": "Sutton's Parlor", + "address": "40 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523129, + "longitude": -75.172075, + "stars": 4.0, + "review_count": 34, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Music": "{'live': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "CoatCheck": "True", + "GoodForDancing": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'breakfast': False, 'brunch': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Restaurants, Cocktail Bars, Bars, Nightlife, American (New), Local Flavor, Music Venues, Arts & Entertainment", + "hours": { + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0" + } + }, + { + "business_id": "J7y2QjnxKL4w1VP9ifcuSg", + "name": "Showcase Remodeling", + "address": "1650 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9526721, + "longitude": -75.1682026, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Professional Services, Home Services, Contractors, Painters, Local Services, Architects, Community Service/Non-Profit, Flooring", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "nYeTVhBwwF5aCGYo9-aLGw", + "name": "TGI Fridays", + "address": "4000 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.007927, + "longitude": -75.211183, + "stars": 2.0, + "review_count": 290, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'full_bar'", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Caters": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Burgers, Bars, American (Traditional), Restaurants, Sports Bars", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "TyML9sqJmsHO0Mh3S1_f7A", + "name": "Klein's Supermarket", + "address": "2401 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670021, + "longitude": -75.1776573, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Specialty Food, Food, Meat Shops, Grocery", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "jAcusnUVb_HvuDTqPdH3LQ", + "name": "Digital on Walnut", + "address": "41 S 11th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503912, + "longitude": -75.1584169, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photography Stores & Services, Local Services, Electronics Repair, Computers, Mobile Phones, Shopping, IT Services & Computer Repair", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "aAoInarhbxX2qfAazHpqmw", + "name": "Royal Flush Plumbing", + "address": "2633 E Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9896373, + "longitude": -75.0934519, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Home Services, Contractors, Hydro-jetting, Local Services, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "BiuIf46UxUAWTNiBmmcSWQ", + "name": "Another Level Style", + "address": "7047 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0474391, + "longitude": -75.0693165, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False" + }, + "categories": "Men's Hair Salons, Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "8:0-18:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "iyiCWgWozxXklLG056v_Gg", + "name": "Escape the 1980s - Escape Room Game", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 5.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Active Life, Challenge Courses, Escape Games", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0" + } + }, + { + "business_id": "_BTdfZLpjdkdXwA-JuLwhw", + "name": "The Conwell Inn", + "address": "1331 Pollet Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.981812, + "longitude": -75.15764, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "P8XHCDyRzGTKR46aZVNCjg", + "name": "Tara Management Services", + "address": "1502 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9437024, + "longitude": -75.1674205, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Property Management, Real Estate Agents, Apartments, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "GvM2JY_uhNhIqqXZSrZ14w", + "name": "Comcast Xfinity", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0542169, + "longitude": -75.1603752, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Television Service Providers, Professional Services, Internet Service Providers", + "hours": null + }, + { + "business_id": "Bhz9yYEpREoiBH8qrPfC4Q", + "name": "Chestnut Hill Camera Shop", + "address": "8614 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076683, + "longitude": -75.208292, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Photography Stores & Services, Electronics, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "RLH0yi4Z10z-tIKFruUr0w", + "name": "Zip To Zip Plumbing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0203813, + "longitude": -75.0552739, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Plumbing", + "hours": { + "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" + } + }, + { + "business_id": "aJV-u_8zf5vVIaHy7Hs8qw", + "name": "Chloe", + "address": "232 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519494, + "longitude": -75.1443869, + "stars": 4.0, + "review_count": 144, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False" + }, + "categories": "Nightlife, Restaurants, Dance Clubs, American (New)", + "hours": { + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "NGzonf4Pd-hnnE60miVnPA", + "name": "Boston Market", + "address": "7240 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.030309, + "longitude": -75.035704, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "Ambience": "None", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BusinessParking": "None" + }, + "categories": "Restaurants, Comfort Food, Event Planning & Services, Chicken Shop, Sandwiches, Caterers, American (Traditional)", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "Fb7xzuIkL8Bj_VMcn3H_7g", + "name": "Independence Helicopters", + "address": "9800 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07482, + "longitude": -75.009005, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Tours", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "YrbQ_OrRo-TYHnVw5y4Kew", + "name": "Thomas Bond House", + "address": "129 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9474906, + "longitude": -75.1440147, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Bed & Breakfast, Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "PZ9gjIi-x6B9_DbSiFT65Q", + "name": "Keshas Kitchen", + "address": "1621 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0145923, + "longitude": -75.0848493, + "stars": 3.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False" + }, + "categories": "Breakfast & Brunch, Seafood, Restaurants, Soul Food", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "okGGEcid1LskY9MkHR5PGw", + "name": "Christ Community Church of Philadelphia", + "address": "4017 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557606, + "longitude": -75.2031677, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "qwZlIVWDkq62o8uXTD-Ccw", + "name": "Anchor Realty Northeast", + "address": "2200 Michener St, Ste 12", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0797922, + "longitude": -75.0313027, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Home Services, Property Management, Real Estate Services, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "PjM3l8M_ViW0264mrzuSlg", + "name": "Gayle", + "address": "617 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409344, + "longitude": -75.1476183, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_corkage'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "zJnRztekQRb6nGe-3Q4mQA", + "name": "Chipotle Mexican Grill", + "address": "701 E Cathedral Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0636038127, + "longitude": -75.2382672929, + "stars": 1.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mexican, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "bQeplLMJK6dT1CcH0vdWnA", + "name": "4 Every Occasion Cakes & Cupcakes", + "address": "1821 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0530268, + "longitude": -75.0687459, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Bakeries, Custom Cakes, Food, Cupcakes", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "5YBvmgi0kFkyCTXj0AEFdQ", + "name": "Cafe Light", + "address": "9825 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0903329, + "longitude": -75.0326181, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Food Delivery Services, Restaurants, Cafes", + "hours": { + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "BSKGwIaEKEnvSl3w1GQPeA", + "name": "ArchAngel Auto Glass Inc", + "address": "4409 Teesdale St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.033516, + "longitude": -75.0365659, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windshield Installation & Repair, Auto Glass Services, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "FHGKWwhF9SftrHxeV2UQhA", + "name": "Z-Rank Management", + "address": "917 Arch St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9536757, + "longitude": -75.1555157, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate, Apartments, Home Services, Local Services, Contractors, Environmental Abatement, Real Estate Services, Condominiums", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30" + } + }, + { + "business_id": "6FJOC5YTJOBeF6fSedqOOA", + "name": "Franco's Pizza", + "address": "2573 Tulip St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9820407, + "longitude": -75.1215841, + "stars": 4.0, + "review_count": 141, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "uF2HWZ3tTq91ZYdpwTWEzw", + "name": "Evo Brickoven Pizza", + "address": "277 W Mt Pleasant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0546098, + "longitude": -75.1939698, + "stars": 4.0, + "review_count": 172, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pasta Shops, Food, Specialty Food, Restaurants, Sandwiches, Pizza, Salad, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:45", + "Wednesday": "11:0-20:45", + "Thursday": "11:0-20:45", + "Friday": "11:0-22:45", + "Saturday": "11:0-22:15", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "6cthUjghHSevS64rOYjGVw", + "name": "Duel Piano Bar & Lounge", + "address": "1420 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947954, + "longitude": -75.165882, + "stars": 2.5, + "review_count": 131, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Caters": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Nightlife, Lounges, Bars, Piano Bars, American (New), Restaurants", + "hours": { + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "hFbDsESgeSV-lN18i7BQFQ", + "name": "Maza Taza", + "address": "1519 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629714, + "longitude": -75.1636566, + "stars": 4.5, + "review_count": 108, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Kebab, Mediterranean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "YO9Ycz_chfmoW4WI9Ou0ag", + "name": "Drinker's Pub", + "address": "1903 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521221, + "longitude": -75.1720791, + "stars": 3.5, + "review_count": 297, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'very_loud'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "GoodForDancing": "True", + "RestaurantsReservations": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Gastropubs, Restaurants, Nightlife, Bars, Pubs", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "usp2gEf_Y2Uf4bxIxET1_g", + "name": "Geno's Steaks", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.904389, + "longitude": -75.1689154, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Cheesesteaks", + "hours": null + }, + { + "business_id": "dppcN3xQKkMviTR7fkNwyw", + "name": "Apollo's Pizza", + "address": "3542 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0128567, + "longitude": -75.1905721, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-21:30", + "Saturday": "10:30-21:30" + } + }, + { + "business_id": "sHUIEFqs6cxXg3CxvuSORA", + "name": "New London Pizza & Restaurant", + "address": "7230 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0362638, + "longitude": -75.0424394, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "Corkage": "False", + "WiFi": "u'no'", + "BYOB": "False", + "WheelchairAccessible": "True" + }, + "categories": "American (Traditional), Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Adg_va1mRvZZN9_yaLZn6Q", + "name": "Rift Valley Grocery Store", + "address": "715 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483809, + "longitude": -75.227033, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Grocery, Convenience Stores, Coffee & Tea", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "v7aaDOZICNYGTzyhPbQOgw", + "name": "Prim and Perverse", + "address": "2930 Jasper St, Ste 305", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.992594, + "longitude": -75.118102, + "stars": 5.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Bridal, Formal Wear, Shopping, Sewing & Alterations, Local Services, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "FFVHyBI0eiZLcfV8FVOMMg", + "name": "Airis Bar & Lounge", + "address": "626-628 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611667, + "longitude": -75.1389253, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "Corkage": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BikeParking": "False", + "Smoking": "u'no'", + "BYOB": "False", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Bars, Nightlife, Japanese, Sushi Bars, Lounges, Hookah Bars, Restaurants", + "hours": { + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0" + } + }, + { + "business_id": "kjiwBhSST6fS80P2zaMt9g", + "name": "DA PAN", + "address": "6201 N Front St, Ste 124-G", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0444606, + "longitude": -75.1193535, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False" + }, + "categories": "Pan Asian, Asian Fusion, Korean, Restaurants", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "2RD8rGGlx_HZnu179IJiDg", + "name": "Colors by Padmini", + "address": "906 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9643847, + "longitude": -75.1408767, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Decor, Home Services, Women's Clothing, Shopping, Interior Design, Music Venues, Arts & Entertainment, Nightlife, Fashion, Home & Garden", + "hours": { + "Monday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "OjFr_sk32NOhYSvA_Ucd5Q", + "name": "RevZilla Motorsports", + "address": "38 E Jackson St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.920152, + "longitude": -75.1473358, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Motorcycle Dealers, Sporting Goods, Hobby Shops, Automotive", + "hours": null + }, + { + "business_id": "_Jt0FTNdeQTWCGuAPrJXRg", + "name": "Always Affordable Repairs", + "address": "12309 Rambler Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1003398, + "longitude": -74.9770986, + "stars": 1.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Contractors, Home Services, Handyman", + "hours": null + }, + { + "business_id": "5CW82H2eIcCAH5AGzF7clQ", + "name": "Subway", + "address": "45 Snyder Ave, Ste SN-5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9217963463, + "longitude": -75.1468242233, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}", + "HasTV": "True" + }, + "categories": "Sandwiches, Fast Food, Restaurants", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "S9JyjLuKyyHB8a_2rkyN1Q", + "name": "Fahey Roofing Siding Doors & Windows", + "address": "8133 Winthrop St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0516245, + "longitude": -75.0277782, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Gutter Services, Siding, Windows Installation, Home Cleaning, Roofing, Contractors", + "hours": { + "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": "9:0-13:30" + } + }, + { + "business_id": "wW42VhGDtIsYBUgjFLQOew", + "name": "Francis Mailman Soumilas, P.C.", + "address": "1600 Market St, Ste 2510", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952563, + "longitude": -75.167353, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Lawyers, General Litigation, Professional Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "CD0sZ2CwiWRuCtBbPipnYg", + "name": "Desimone Mitsubishi", + "address": "6101 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.026795, + "longitude": -75.0643937, + "stars": 1.5, + "review_count": 19, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Auto Repair, Car Dealers", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0" + } + }, + { + "business_id": "k8SvXoV6TFMTfrRsvzJ6uA", + "name": "Empire Buffet", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9144164, + "longitude": -75.1531595, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'" + }, + "categories": "Chinese, Restaurants, Buffets, Dim Sum", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "16:30-22:0" + } + }, + { + "business_id": "tL2ohHknr0_KsqhJkbHuxw", + "name": "Kilyos Fish & Grill", + "address": "9825 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.090324, + "longitude": -75.032656, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'" + }, + "categories": "Turkish, Mediterranean, Restaurants, Greek", + "hours": null + }, + { + "business_id": "xw6QvFExDjvYyqBTt2qA0w", + "name": "Logan", + "address": "20th and Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955604, + "longitude": -75.172783, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "Music": "{'dj': False}", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "CoatCheck": "False", + "GoodForDancing": "False", + "HasTV": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "8Wqjjtq9PAK7EulkmjJtDA", + "name": "Remedy Tea Bar", + "address": "1628 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504632, + "longitude": -75.1681529, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Tea Rooms, Restaurants, Coffee & Tea", + "hours": null + }, + { + "business_id": "9IoOPZso2R0Y56xLvQS5jQ", + "name": "New Tower Pizzeria", + "address": "1410 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943644568, + "longitude": -75.1660096287, + "stars": 1.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Sandwiches, Pizza, Italian", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30" + } + }, + { + "business_id": "xkhq6Ah7Do8BnBj8-CgT6g", + "name": "CityCare Pharmacy", + "address": "1549 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9250882, + "longitude": -75.1727008, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Drugstores, Shopping", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Wr4GinmO04Wi2V9bsBLYTw", + "name": "Nicholas", + "address": "2015 E. Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922893, + "longitude": -75.1524869, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "wQhOqnrtMyLOFzmWSILmPw", + "name": "Verizon", + "address": "1717 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9554088, + "longitude": -75.1690352, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Television Service Providers, Professional Services, IT Services & Computer Repair, Local Services, Internet Service Providers, Home Services", + "hours": null + }, + { + "business_id": "y53bddkzfz_aWu7enviTQw", + "name": "The Fresh Grocer of Grays Ferry", + "address": "3021 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9403495, + "longitude": -75.1933874, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "zropQGh2fc7PMpzd32vneQ", + "name": "Coreanos Philly", + "address": "1016 - 1018 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553241139, + "longitude": -75.1566207558, + "stars": 4.0, + "review_count": 70, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "BikeParking": "True", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food Stands, Restaurants, Korean, Tacos, Fast Food, Mexican", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-2:30", + "Saturday": "11:0-2:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "OyIl7Yq1u9dP5zOy3KSRrw", + "name": "Salon 21", + "address": "130 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9568363, + "longitude": -75.1745195, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Hair Salons, Nail Salons", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "_Mf6thZ3iq30UP8tnkYeRg", + "name": "China House", + "address": "1600 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9289011, + "longitude": -75.1570348, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "ORvgRypXMSkKsNM-hwHeig", + "name": "Park America Town Garage", + "address": "1524 Latimer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948182, + "longitude": -75.1673894, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "mLPFfQSc7dLaYfRQ1Ldfcg", + "name": "Chalaco's Ceviche & Pisco Bar", + "address": "1030 N 2nd St", + "city": "philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671492384, + "longitude": -75.1404232532, + "stars": 4.0, + "review_count": 90, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "CoatCheck": "False", + "HappyHour": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "WheelchairAccessible": "True", + "GoodForDancing": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Restaurants, Peruvian, Bars, Southern, Cocktail Bars, Nightlife", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "G1Kor6vXczC8IbGhs-5_wQ", + "name": "Tacos Lucas", + "address": "7340 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.037627, + "longitude": -75.039369, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "SxrMDTNJ9iBKt4P5ttvqwQ", + "name": "Dunphy Motors", + "address": "7700 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0401468, + "longitude": -75.0323584, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Car Dealers", + "hours": { + "Monday": "7:30-21:30", + "Tuesday": "7:30-21:30", + "Wednesday": "7:30-21:30", + "Thursday": "7:30-21:30", + "Friday": "7:30-19:0", + "Saturday": "7:30-18:0" + } + }, + { + "business_id": "3ezpA0GTLKClCwiQ8AkkGA", + "name": "Danlu", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9564642692, + "longitude": -75.1944133333, + "stars": 3.5, + "review_count": 53, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "HappyHour": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Chinese, Taiwanese, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "12:0-23:0" + } + }, + { + "business_id": "ewItS3JdVDx2d7BnZYvqZQ", + "name": "Philadelphia Cravings & Co", + "address": "1911 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952207, + "longitude": -75.172367, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Food, Pizza, Ice Cream & Frozen Yogurt, Restaurants", + "hours": null + }, + { + "business_id": "iEQwKldFFkrhUpikwF4VHw", + "name": "A to Z Exotic Hardwoods", + "address": "129 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95666, + "longitude": -75.174204, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Flooring, Contractors, Building Supplies", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "1GaPHKxZxpeVShIJBv8ICw", + "name": "CTS Paint Pros", + "address": "3903 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0051127, + "longitude": -75.1874144, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Contractors, Interior Design, Professional Services, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "HkwI8KWCXAfbnlF8g9AM5A", + "name": "Gentle Dental at Oregon Avenue", + "address": "1419 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9172751, + "longitude": -75.1721623, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "General Dentistry, Health & Medical, Dentists, Cosmetic Dentists, Periodontists, Endodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "KckdgxZXRbYze72bhaJVfg", + "name": "Drexel Medicine", + "address": "219 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9568237, + "longitude": -75.1623761, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Family Practice, Doctors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "lxIJfx79uxpR27Mly3lZ0Q", + "name": "Penn Tower Hotel", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.948655197, + "longitude": -75.1919810278, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel, Caterers", + "hours": null + }, + { + "business_id": "SOi_b2_SezhGxml_6_Ym9A", + "name": "Holme Style Pizza", + "address": "2907 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.056863, + "longitude": -75.02753, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-23:30", + "Tuesday": "10:30-23:30", + "Wednesday": "10:30-23:30", + "Thursday": "10:30-23:30", + "Friday": "10:30-12:30", + "Saturday": "10:30-23:30", + "Sunday": "11:30-23:30" + } + }, + { + "business_id": "alac0ygcncAO8xTD7wBdZA", + "name": "Hunter Gatherer Tattoo & Piercing", + "address": "4510 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9552973361, + "longitude": -75.2126072093, + "stars": 4.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Beauty & Spas, Tattoo, Piercing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "qnEptTv8V6bztl_ds6gvZA", + "name": "Doggie Style Pets", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9619202837, + "longitude": -75.1720269515, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Training, Pet Stores, Pet Groomers, Pets", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "Tt5B90zXup6DdmN73x5opg", + "name": "KFC", + "address": "527 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0889336074, + "longitude": -74.9646761785, + "stars": 1.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "DriveThru": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Ambience": "None", + "BusinessParking": "None", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "GoodForMeal": "None", + "HasTV": "True", + "RestaurantsTableService": "False" + }, + "categories": "Fast Food, Chicken Shop, Chicken Wings, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "dHfeQWw6Q-NceoILhTKKUQ", + "name": "Tacconelli's Pizzeria at Rivers Casino Philadelphia", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9638134, + "longitude": -75.1324645, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "Ambience": "None", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "None", + "GoodForKids": "False" + }, + "categories": "Restaurants, Pizza, Italian", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "vaoSpYVAFXLvRfJGK1IF2g", + "name": "Brew Ha Ha!", + "address": "214 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948074, + "longitude": -75.160959, + "stars": 3.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "htkrEPPQg6iH2QoBDjrEJw", + "name": "Fresh Donuts", + "address": "3914 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9622122, + "longitude": -75.2010239, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "DriveThru": "False" + }, + "categories": "Donuts, Breakfast & Brunch, Restaurants, Coffee & Tea, Food", + "hours": { + "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-16:0" + } + }, + { + "business_id": "et5lfT0NPg4Xvn9jvDKxpg", + "name": "iSmile Dental Team", + "address": "6573 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.035105, + "longitude": -75.066396, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Dentists, Oral Surgeons, General Dentistry, Endodontists, Pediatric Dentists, Dentists, Periodontists", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "dfFeEgpjkY8q-EK0ifsDjw", + "name": "Paw Prints Professional Grooming", + "address": "6134 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0341441, + "longitude": -75.2162844, + "stars": 4.0, + "review_count": 62, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Groomers", + "hours": { + "Monday": "9:0-14:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "bKVRnBTNJZffOtj-y-4DZA", + "name": "Sunoco Gas Station", + "address": "4500 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9486722, + "longitude": -75.2131503, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "Vpb127k_PeJ02o-EAbWhyQ", + "name": "Optimal Sport Health Club 1315", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949342067, + "longitude": -75.1629451, + "stars": 4.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Gyms, Interval Training Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:30-23:0", + "Friday": "5:30-22:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "Tw-_iFtSEL6Sxki1b7HR8Q", + "name": "Boss Chick Dance Workout - Philadelphia", + "address": "1515 Brandywine Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9636014, + "longitude": -75.1636129, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "GoodForKids": "False", + "WheelchairAccessible": "False" + }, + "categories": "Dance Studios, Active Life, Fitness & Instruction", + "hours": { + "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" + } + }, + { + "business_id": "a_tbehcWJn2atkt0gcmxSA", + "name": "Faulkner of Philadelphia", + "address": "6615 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.914802, + "longitude": -75.2222901, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Car Dealers, Automotive", + "hours": { + "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-17:0" + } + }, + { + "business_id": "hVkhd9wlT7ZWvGCYiMM0KQ", + "name": "Long's Gourmet Chinese Cooking", + "address": "2018 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9622651, + "longitude": -75.1724646, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "mSKpcQhMKADa7frwdBNcgA", + "name": "New York New York Pizzeria", + "address": "1400 S Columbus Blvd, Ste E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9292011, + "longitude": -75.144848, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "dxuFPsY5YKfbWyQgaTIoPw", + "name": "Proso Handyman", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Handyman, Painters, Local Services, Home Services, Pressure Washers", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-22:0" + } + }, + { + "business_id": "_z_tAeOqH_ChehpateSwTA", + "name": "Philly Style Bagels", + "address": "115 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9691210653, + "longitude": -75.1338349326, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bagels, Food", + "hours": { + "Monday": "7:0-14:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "rkrnerPoeac_y2rkhshQcg", + "name": "Yi Fang Taiwan Fruit Tea", + "address": "1501 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9761807835, + "longitude": -75.1581221446, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Food, Bubble Tea", + "hours": null + }, + { + "business_id": "LonkKDT2WwTKC_W8fj-D0g", + "name": "US Post Office", + "address": "4410 Paul St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.012287, + "longitude": -75.086027, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Public Services & Government, Post Offices, Shipping Centers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-13:0" + } + }, + { + "business_id": "NR4ymv_qlMVzsC6CKiq8fA", + "name": "Shank & Evelyn's Frankies At Night Eclipse Cafe", + "address": "932 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938326, + "longitude": -75.1597731, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "GdWGH407h-sPzZw2Ui1hcg", + "name": "Philadelphia Management", + "address": "1500 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9763179, + "longitude": -75.1606032, + "stars": 1.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Apartments, Commercial Real Estate", + "hours": null + }, + { + "business_id": "Vd0BRbtnhEfNkVNKTH86Bg", + "name": "McDonald's", + "address": "9910 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0922546, + "longitude": -75.017788, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'loud'", + "GoodForKids": "True" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": null + }, + { + "business_id": "N2tq-0lhGucwixmXRHjE3w", + "name": "Fine Palate", + "address": "231 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9486585, + "longitude": -75.1659843, + "stars": 3.5, + "review_count": 113, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "GoodForDancing": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "True", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (New), Nightlife, Restaurants, Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "18xZwAzzShCRW_d8ZPpV5w", + "name": "House of Pita Hanan", + "address": "38th & Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953644, + "longitude": -75.198771, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "BYOBCorkage": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False" + }, + "categories": "Street Vendors, Middle Eastern, Local Flavor, Restaurants, Food Stands, Food", + "hours": null + }, + { + "business_id": "TQeMOhco0FL9zHrmJHiPAg", + "name": "Jersey Mike's Subs", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9554462999, + "longitude": -75.1817797164, + "stars": 4.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Sandwiches, Delis, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "WKaE1xXMuZEfDGC9NY0eFQ", + "name": "Genesis Nail Salon", + "address": "984 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9661827, + "longitude": -75.1404038, + "stars": 3.5, + "review_count": 190, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-20:30", + "Tuesday": "9:30-20:30", + "Wednesday": "9:30-20:30", + "Thursday": "9:30-20:30", + "Friday": "9:30-20:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "SFF64Rog0p5uX7ELVcv_mw", + "name": "El Merkury at the Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531912919, + "longitude": -75.1594065875, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Latin American, Salvadoran, Restaurants", + "hours": null + }, + { + "business_id": "F9MijJziPbzfvdB0j1mrTw", + "name": "Melnick Motors", + "address": "5116 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0171257, + "longitude": -75.2110989, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "WkgzPTwkSqwMwKx8BxpobA", + "name": "G-Team Racing", + "address": "2645 Belgrade St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9794049, + "longitude": -75.1171936, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'" + }, + "categories": "Motorcycle Repair, Motorcycle Dealers, Automotive", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "9MhQSnj4ve_JMIK6TALXlw", + "name": "Insomnia Cookies - CookieLab", + "address": "833 Wharton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9333852, + "longitude": -75.1589506, + "stars": 3.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Desserts, Food, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "iegiacdW0vbAuKjb7FYFfg", + "name": "Chipotle Mexican Grill", + "address": "1200 Walnut St, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487103, + "longitude": -75.1606914844, + "stars": 3.0, + "review_count": 127, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True" + }, + "categories": "Fast Food, Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "M7ZJfnfZlXNXSNgyJbAszQ", + "name": "Le Anh Chinese Food", + "address": "3600 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9505059, + "longitude": -75.1951919, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "Caters": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True" + }, + "categories": "Food, Specialty Food, Chinese, Ethnic Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "fhA4kVbM3LBf1mvEpie7Ow", + "name": "Rite Aid", + "address": "7941 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0757010849, + "longitude": -75.0846500771, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Food, Drugstores, Convenience Stores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "tGzu2uZYz0Yqh5F0H9jmFQ", + "name": "Currito", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8766558821, + "longitude": -75.2399649509, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "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': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mexican, Restaurants, Food, Juice Bars & Smoothies, Salad", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0", + "Sunday": "5:0-20:0" + } + }, + { + "business_id": "IjbCqowo-2Le0gXhDS4OtQ", + "name": "MAC Cosmetics", + "address": "1734 Chestnut St Space, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515017855, + "longitude": -75.1701901056, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True" + }, + "categories": "Shopping, Cosmetics & Beauty Supply, Beauty & Spas, Makeup Artists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "KrDXSYLYTvuh8tu2MAYeCQ", + "name": "Joseph Anthony Hair Styling", + "address": "3743 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953743, + "longitude": -75.198291, + "stars": 3.0, + "review_count": 62, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Barbers, Hair Salons, Hair Removal, Nail Salons, Beauty & Spas, Waxing", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "a1U-mhdF8m-X_G4l56_5sA", + "name": "Wingstop", + "address": "3855 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9963913, + "longitude": -75.0897957, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "LaTe2iIyih62D1kCQ0hflA", + "name": "La Chinesca", + "address": "1036 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614139091, + "longitude": -75.1560202986, + "stars": 4.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "HasTV": "False" + }, + "categories": "Nightlife, Bars, Chinese, New Mexican Cuisine, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "SQjA6g-Q5aQenTfoGKzyRg", + "name": "Pennsylvania Center for Dental Implants and Periodontics", + "address": "9880 Bustleton Ave, Ste 211", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0946316, + "longitude": -75.0312891, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Periodontists, Health & Medical, Dentists, Oral Surgeons, Cosmetic Dentists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "7:0-14:0", + "Wednesday": "7:0-14:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-14:0" + } + }, + { + "business_id": "k2YJkdLg25xlYjshpeEtkQ", + "name": "Volo Coffeehouse", + "address": "4360 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0255165, + "longitude": -75.2240968, + "stars": 4.5, + "review_count": 251, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "None", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Sandwiches, Coffee & Tea, Restaurants, Food", + "hours": { + "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:30-17:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "gAYPTR2cdC4AqtutzR6KGQ", + "name": "Hanger Orthotics & Prosthetics", + "address": "605 Spring Garden Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9613716893, + "longitude": -75.1489051669, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Physical Therapy", + "hours": null + }, + { + "business_id": "I7rg5l148_dRkvsxfGbpxA", + "name": "Economy Restaurant and Bar Supply", + "address": "460 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959214, + "longitude": -75.1420492, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False}" + }, + "categories": "Kitchen & Bath, Shopping, Appliances, Furniture Stores, Home & Garden", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "-f9-YAj51rq1CUscVRwXEQ", + "name": "Mimada Beauty Bazaar", + "address": "1632 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9440121, + "longitude": -75.169894, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Waxing, Hair Removal, Makeup Artists, Hair Salons, Day Spas, Skin Care, Nail Salons", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "yezrPF5W9KBm-JI9ZeudNg", + "name": "Black Olive", + "address": "7122 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.058735, + "longitude": -75.190115, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "kV2BRRbo1OBrkoFMmU6r0g", + "name": "World Wide Burrito", + "address": "34TH Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955901, + "longitude": -75.19148, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Food Trucks, Food, Street Vendors", + "hours": null + }, + { + "business_id": "Oz7c0QA1C18Cb6tTdoehwQ", + "name": "Gabi", + "address": "339 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9592359, + "longitude": -75.1617433, + "stars": 4.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "Caters": "False", + "BYOB": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "DogsAllowed": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "Corkage": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': True, u'upscale': None}", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'garage': True, u'street': True, u'validated': False, u'lot': False, u'valet': False}" + }, + "categories": "Cafes, Restaurants, French", + "hours": { + "Monday": "16:0-21:0", + "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": "11:0-19:0" + } + }, + { + "business_id": "RHM0rgCNOMGzADrOtPHMBw", + "name": "Salon Blush", + "address": "2407 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9781524, + "longitude": -75.1243229, + "stars": 3.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Day Spas, Nail Salons, Makeup Artists, Hair Salons", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "jK14ZI9sfjOsWcPrCOQBcQ", + "name": "Rocco's Italian Sausage", + "address": "1601 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9255959006, + "longitude": -75.1428020913, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Sandwiches, Breakfast & Brunch, Restaurants, Cheesesteaks, Italian", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "-0M0b-XhtFagyLmsBtOe8w", + "name": "Paris Wine Bar", + "address": "2303 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674385747, + "longitude": -75.1754522324, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Nightlife, Restaurants, French, Wine Bars", + "hours": { + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "u4k_bdDDyef107d3cIbNIA", + "name": "Lockamerica/lockdoctor", + "address": "600 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9468378, + "longitude": -75.1746871, + "stars": 4.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "m8JFE5rxJdKyJ30GdqqQMA", + "name": "RTA Service", + "address": "3130 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982414, + "longitude": -75.103017, + "stars": 2.0, + "review_count": 45, + "is_open": 1, + "attributes": null, + "categories": "Electronics Repair, Local Services", + "hours": null + }, + { + "business_id": "Oyfuul717X4T5A77S-ASBg", + "name": "Kingdom of Vegetarians Restaurant", + "address": "129 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548386, + "longitude": -75.1573818, + "stars": 3.5, + "review_count": 86, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "WiFi": "u'no'", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Chinese, Vegetarian, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "9P1BSUOEmbfK6LN7o_d-kw", + "name": "Emancipet", + "address": "575 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0363033, + "longitude": -75.1076052, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pet Services, Community Service/Non-Profit, Pets, Veterinarians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "2EYMBd4cIPVeJaV-bHSMRw", + "name": "Mari Mari", + "address": "6201 N Front St, Ste 124", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0449503926, + "longitude": -75.1177381434, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Noodles, Sushi Bars, Korean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "V7KWP_nQkpSxR3t7bEqrMw", + "name": "Bartram's Garden", + "address": "5400 Lindbergh Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9322659, + "longitude": -75.2121702, + "stars": 4.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Parks, Botanical Gardens, Landmarks & Historical Buildings, Arts & Entertainment, Active Life, Public Services & Government", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "4ux_NVADCjbDmFT8CALKIQ", + "name": "Seattle Teriyaki", + "address": "1608 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504783, + "longitude": -75.168001, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Asian Fusion, Fast Food, Japanese", + "hours": { + "Monday": "11:30-16:0", + "Tuesday": "11:30-16:0", + "Wednesday": "11:30-16:0", + "Thursday": "11:30-16:0", + "Friday": "11:30-16:0", + "Saturday": "11:30-16:0" + } + }, + { + "business_id": "Ipx423BSHRNBXuMwUHBxqw", + "name": "Brexel Cafe", + "address": "305 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9607412, + "longitude": -75.189341, + "stars": 3.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "CoatCheck": "False", + "GoodForKids": "True", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Halal, Hookah Bars, Restaurants, Food Delivery Services, Food, Mediterranean, Middle Eastern, Nightlife, Tex-Mex, Lounges, Bars, Falafel", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "14:0-2:0", + "Sunday": "19:30-2:0" + } + }, + { + "business_id": "RFYlmTjgwhOsm7qJwW1G9w", + "name": "Alfa American Tavern", + "address": "1709 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501041044, + "longitude": -75.1695114255, + "stars": 3.5, + "review_count": 148, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "False", + "Corkage": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'yes_corkage'", + "HasTV": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Nightlife, Restaurants, American (New), Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "bg7-V11P7ZhUOri6VR_rgQ", + "name": "Relapse Records", + "address": "608 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414218, + "longitude": -75.149224, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Music & DVDs, Shopping, Books, Mags, Music & Video, Vinyl Records", + "hours": null + }, + { + "business_id": "0WJRKvGsX3NdoNdZuDFlWg", + "name": "Bilal's Garden", + "address": "1525 Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0798800282, + "longitude": -75.1736598462, + "stars": 3.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Barbeque, Soul Food, Seafood", + "hours": { + "Monday": "11:0-23:15", + "Tuesday": "11:0-23:15", + "Wednesday": "11:0-23:15", + "Thursday": "11:0-11:15", + "Friday": "11:0-23:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ARWccWepHrbNKUMI7M0UZA", + "name": "Banh Mi Cali", + "address": "900 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533991057, + "longitude": -75.1546818522, + "stars": 4.5, + "review_count": 95, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Local Flavor, Food, Vietnamese", + "hours": null + }, + { + "business_id": "kBy0ecvnHpFYYicw5Kms7A", + "name": "Port Richmond Pour House", + "address": "2253 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9889148, + "longitude": -75.1100302, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "uU_2ciWqk4-BvpBFIRewEQ", + "name": "Fabrics on the Hill", + "address": "8434 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0754174, + "longitude": -75.2054447, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fabric Stores, Shopping, Arts & Crafts", + "hours": null + }, + { + "business_id": "YJQwEhva0bSCt3HfLiy9gA", + "name": "Carlos Carpet & Flooring", + "address": "515 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411043, + "longitude": -75.1514142, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Carpeting, Flooring", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "TuVXt0MykhC23GTWX-32ug", + "name": "Fresh Fruit Salad Cart", + "address": "37TH And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950951, + "longitude": -75.19738, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "HasTV": "True" + }, + "categories": "Restaurants, Food Stands, Food, Farmers Market", + "hours": null + }, + { + "business_id": "aFLM_Vow8OMcMK3NJWJ8pQ", + "name": "KFC", + "address": "1200 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9717187537, + "longitude": -75.1598948104, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "'free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "True" + }, + "categories": "Chicken Wings, Restaurants, Fast Food, Chicken Shop", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "lsVa7gKoEfcQyXP1poAXrA", + "name": "Dog School", + "address": "1737 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444958, + "longitude": -75.1715191, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pet Services, Pets, Pet Training, Dog Walkers", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0" + } + }, + { + "business_id": "H8u-gnn80Am8ejA3YuOUyQ", + "name": "Aisha's Threading Salon", + "address": "2017 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950843, + "longitude": -75.174373, + "stars": 4.0, + "review_count": 174, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Hair Removal, Blow Dry/Out Services, Threading Services, Hair Salons, Eyelash Service, Beauty & Spas, Waxing", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "rLpW8LAQSM9ReTl5YAQLDg", + "name": "World of Animals at Mayfair", + "address": "6503 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.029334, + "longitude": -75.055804, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Veterinarians, Pets, Pet Groomers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "76R3zOzB8hIbuq5B4EmPTQ", + "name": "Crisp Kitchen", + "address": "1100 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.979481, + "longitude": -75.153051, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, American (New), Food, Salad, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-18:0" + } + }, + { + "business_id": "it4IpWSqoSiOXqb2ImwAvw", + "name": "Suit Corner", + "address": "302 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950758, + "longitude": -75.151758, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shoe Stores, Hats, Formal Wear, Shopping, Men's Clothing, Fashion", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "UQLWfOGTF-7T2EQlUT92Zg", + "name": "Lost Bread Co.", + "address": "1313 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9709028061, + "longitude": -75.1364096627, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee & Tea, Food, Bakeries, Restaurants, Breakfast & Brunch", + "hours": { + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "hkj9_s_6-KVeZ8ddgylzgA", + "name": "Q The Tire Doctor", + "address": "1961 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9861551, + "longitude": -75.1808263, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Towing, Roadside Assistance, Tires, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "gwxNttwUgmOn3vsHYe0pDQ", + "name": "OCF Coffee House", + "address": "2100 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967128, + "longitude": -75.172378, + "stars": 4.0, + "review_count": 390, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HappyHour": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Coffee & Tea, Gluten-Free, Food, Bagels", + "hours": { + "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:30-18:0", + "Sunday": "7:30-20:0" + } + }, + { + "business_id": "Og1HekJMHKqsvtWaUp9V8g", + "name": "Flying Monkey Bakery", + "address": "12th St & Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.953807711, + "longitude": -75.1586299373, + "stars": 3.5, + "review_count": 378, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DriveThru": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Desserts, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "_xSCB2TZ-s6yTeafRnzK1w", + "name": "Savas", + "address": "3505 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583061, + "longitude": -75.1927263, + "stars": 3.0, + "review_count": 228, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Food, Beer, Wine & Spirits, Pizza, Nightlife, American (Traditional), Bars, Italian, Restaurants", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "N_Mo8RIAkB9yYZt-OuI26w", + "name": "The Constitutional Walking Tour", + "address": "525 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9540249, + "longitude": -75.1488831, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'" + }, + "categories": "Hotels & Travel, Walking Tours, Tours", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "uXEfRkAehdp7peuaysddCA", + "name": "Wine & Spirits Shoppe", + "address": "1913 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9519389, + "longitude": -75.1724662, + "stars": 3.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "_PvljXZHQlUmL8SuOXF8ug", + "name": "New Deck Tavern", + "address": "3408 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535171, + "longitude": -75.1926364399, + "stars": 3.5, + "review_count": 419, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "Caters": "True", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "BYOBCorkage": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "BYOB": "False", + "HappyHour": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True" + }, + "categories": "Irish, Gastropubs, Pubs, American (Traditional), Nightlife, Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "VZKgw_0qDGWFkZKjG2tTrQ", + "name": "Rittenhouse Square Pet Supply", + "address": "135 S 20th St, Ste 135", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507144, + "longitude": -75.173622, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "zR24NeSKRDP61xShimik8A", + "name": "Martial Arts Hero Factory", + "address": "2237 Hartranft St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9111564, + "longitude": -75.1871446, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Active Life, Martial Arts, Fitness & Instruction", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "81C5xFY3EGL5mhPZD6pynw", + "name": "Atlanta Wings", + "address": "2355 S Bucknell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.922761, + "longitude": -75.186121, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Corkage": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Caters": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "HappyHour": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BYOB": "False" + }, + "categories": "Restaurants, Chicken Wings, Burgers, Fish & Chips, Seafood, Pizza", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "4iaDKD1cerve5KdW-KH_cA", + "name": "Walnut Realty Group", + "address": "1080 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9658134, + "longitude": -75.1329272, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": null + }, + { + "business_id": "Vnagnur1os0ZduOpvDH27A", + "name": "Villa Di Roma", + "address": "936 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9379512, + "longitude": -75.158238, + "stars": 4.0, + "review_count": 421, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Nra1mD1TZbCMClJGquL0EA", + "name": "Sylvania Gardens", + "address": "414-24 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9518834, + "longitude": -75.2185631, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "57jQ8IbUXc6sJarQtR6-zQ", + "name": "All About Nails", + "address": "738 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942143, + "longitude": -75.155177, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "FmICum1URhJ60F3AMharYg", + "name": "Olga's Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19010", + "latitude": 40.0252182, + "longitude": -75.3237262, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Window Washing, Home Cleaning, Home Services, Professional Services, Office Cleaning", + "hours": { + "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" + } + }, + { + "business_id": "LNQSFEjYjJNODULj_mSWvw", + "name": "Walmart Supercenter", + "address": "4301 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0831794358, + "longitude": -74.9628725129, + "stars": 1.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Grocery, Department Stores, Fashion, Drugstores, Food, Electronics, Discount Store", + "hours": { + "Monday": "7:0-8:30", + "Tuesday": "7:0-8:30", + "Wednesday": "7:0-8:30", + "Thursday": "7:0-8:30", + "Friday": "7:0-8:30", + "Saturday": "7:0-8:30", + "Sunday": "7:0-8:30" + } + }, + { + "business_id": "e0BoeJPqG4OD3DRPOG73Jg", + "name": "Bulk Vintage Wholesale", + "address": "4324 Tackawanna St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0101098, + "longitude": -75.0842475, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Fashion, Used, Vintage & Consignment, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "6IG4SysBKyRnFW_e22q13A", + "name": "Uber", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 3.0, + "review_count": 218, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Taxis, Transportation, Local Services, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "_eMk_xKVpZWLvsOG_7jmUA", + "name": "Kremer Eye Center", + "address": "1800 JFK Blvd, Ste 902", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539914, + "longitude": -75.1699969, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, Laser Eye Surgery/Lasik, Optometrists, Doctors, Ophthalmologists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "gczLFZVmpfsBB3uUHEbWiA", + "name": "HipCityVeg", + "address": "121 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9502654002, + "longitude": -75.1636850461, + "stars": 4.5, + "review_count": 157, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Alcohol": "'none'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "DriveThru": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Vegan, Breakfast & Brunch, Vegetarian, Restaurants, Fast Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "12:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "fILckduEAdqF9QX7N-ofgQ", + "name": "PEP Bowl", + "address": "1200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9356082, + "longitude": -75.1675345, + "stars": 4.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Active Life, Bowling, Arcades, Arts & Entertainment", + "hours": { + "Tuesday": "10:0-21:30", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0" + } + }, + { + "business_id": "8xGJu65OvZ3xqdSbutcMmg", + "name": "Ten Pennies Florist", + "address": "1921 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9262011, + "longitude": -75.1689603, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Shopping, Event Planning & Services, Floral Designers, Florists, Flowers & Gifts", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "I2EK0VsOnF8pFCs28PHPdg", + "name": "VERTS Mediterranean Grill", + "address": "1601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531296089, + "longitude": -75.1673563197, + "stars": 3.5, + "review_count": 85, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants, Turkish, Salad, Mediterranean", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "5Wi1cFjhMWAXukhgGLiPaw", + "name": "Liquid Hair Salon", + "address": "1742 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507177, + "longitude": -75.170229, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "9:30-16:0" + } + }, + { + "business_id": "n5Fdf9RzooS7obq0NecOWw", + "name": "Four Seasons Juice Bar", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530036997, + "longitude": -75.1593393056, + "stars": 4.5, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Juice Bars & Smoothies", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "noKhuuPxi9CXb8ZsRA2U5g", + "name": "Crawford Leadership Strategies", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Career Counseling, Professional Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-13:0" + } + }, + { + "business_id": "mRevP16vD827o4NC9amnMg", + "name": "Saints & Sinners", + "address": "2533 Emery St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9753108, + "longitude": -75.1172985, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "CoatCheck": "True", + "GoodForDancing": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "Smoking": "u'outdoor'" + }, + "categories": "Adult Entertainment, Nightlife, Dance Clubs", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "CamMWFlgtWhr5ucQOEV7Zg", + "name": "Prep & Foxx Assoc", + "address": "1532 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.930965, + "longitude": -75.168654, + "stars": 5.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Hair Salons, Hair Stylists, Hair Removal, Nail Salons, Beauty & Spas, Waxing", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "ExRxjqOGmkWjArvM_qBORw", + "name": "The Wayward", + "address": "1170 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509148952, + "longitude": -75.1595963538, + "stars": 4.0, + "review_count": 92, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "None", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BikeParking": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (New), Restaurants, Brasseries, French", + "hours": { + "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" + } + }, + { + "business_id": "rrOKLSaAF5lMcAnDNbYs3w", + "name": "Market Bakery", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530261, + "longitude": -75.1596115, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bakeries, Bagels, Food, Breakfast & Brunch, Sandwiches, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "BhotShkJ2Nyk79YB3WiEAg", + "name": "Green Aisle Grocery", + "address": "1618 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294815, + "longitude": -75.1641473, + "stars": 4.5, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Caters": "False", + "RestaurantsTakeOut": "False", + "BikeParking": "True" + }, + "categories": "Specialty Food, Grocery, Food", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "n8KfQqY4U2j8iZ4cjq8dPQ", + "name": "Starbucks", + "address": "2461 North 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.99638809, + "longitude": -75.23442044, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "YsM1qDjivZvf-T7BUxS35A", + "name": "The Real Lee Ahn", + "address": "36TH And Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9507921, + "longitude": -75.1953032, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "ukVu-1IaPwU4xI37KE6xAQ", + "name": "Lux Spa and Fitness", + "address": "401 Chestnut St, Level H", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 2.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Gyms, Day Spas, Makeup Artists, Beauty & Spas", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "sGZZq3C1PLXMMkpsKJdaOQ", + "name": "West Lofts", + "address": "220 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9552549, + "longitude": -75.21682, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "12:0-19:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "rzFuz9Fh-Nmf_rmO4U2KQA", + "name": "Admirations Hair It Iz", + "address": "1733 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9444458686, + "longitude": -75.1714469358, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}" + }, + "categories": "Day Spas, Blow Dry/Out Services, Beauty & Spas, Nail Salons, Massage, Hair Stylists, Hair Extensions, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "qgF_Qvv6qzUd6OY2DgL-IA", + "name": "Dimension Latin Grill", + "address": "7312 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0526185, + "longitude": -75.065267, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Caters": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True" + }, + "categories": "Puerto Rican, Latin American, Restaurants, Mexican, Caribbean", + "hours": { + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:30" + } + }, + { + "business_id": "csS_UrBujOvjASbX3gLW7w", + "name": "Bobby's Burger Palace", + "address": "University of Pennsylvania, 3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954086811, + "longitude": -75.2009592271, + "stars": 3.5, + "review_count": 788, + "is_open": 0, + "attributes": { + "HasTV": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DriveThru": "False" + }, + "categories": "Sandwiches, American (Traditional), Burgers, Restaurants, Salad", + "hours": { + "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" + } + }, + { + "business_id": "m8O_40RlYTs1rk_AOnLjFA", + "name": "Taylor's Cafe", + "address": "6144 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034328, + "longitude": -75.216551, + "stars": 4.0, + "review_count": 165, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "American (New), Breakfast & Brunch, Sandwiches, Restaurants", + "hours": { + "Monday": "8:0-15:30", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-15:30", + "Thursday": "8:0-15:30", + "Friday": "8:0-15:30", + "Saturday": "8:0-15:30", + "Sunday": "8:0-15:30" + } + }, + { + "business_id": "064WcuNRDGE_HDDt4BASpQ", + "name": "Summit Park", + "address": "8201 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0603172, + "longitude": -75.2346428, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Bars, Fitness & Instruction, Real Estate, Nightlife, Apartments, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "uAC-v5nSA3hWrmZExFyouw", + "name": "Lock Man Locksmith", + "address": "1640 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.923575, + "longitude": -75.1747619, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "9cgNQ4SUd61Hxck7ON68YQ", + "name": "Terminix", + "address": "2843 South Hampton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.106218, + "longitude": -74.984695, + "stars": 1.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pest Control, Local Services", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "yne4x3gAUEPoAgbdXzX8iQ", + "name": "Cedars Restaurant", + "address": "616 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406833, + "longitude": -75.1459701, + "stars": 4.0, + "review_count": 96, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Middle Eastern", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "81dk-1nYjlJDEIG3DRZIwg", + "name": "Yards brewing", + "address": "8500 Essington Ave, terminal A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8743958238, + "longitude": -75.2424229681, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{u'dj': False, u'live': None, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Nightlife, Bars, Cocktail Bars", + "hours": null + }, + { + "business_id": "gIyxaT9tvxMUZDH9AlmIYw", + "name": "Bell's Market", + "address": "8330 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.068352, + "longitude": -75.051423, + "stars": 4.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Grocery, Food, Delis, Russian, Restaurants", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "m-MJtaqlgoYt1GDa4a_geg", + "name": "Andrew Piccone Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Session Photography, Wedding Planning, Photographers, Event Planning & Services, Event Photography", + "hours": { + "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" + } + }, + { + "business_id": "xmCXx8SkgKOJa-QeayatUA", + "name": "Midtown III Restaurant & Cocktail Lounge", + "address": "28 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523001, + "longitude": -75.1704301, + "stars": 3.5, + "review_count": 154, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "Caters": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "DogsAllowed": "False" + }, + "categories": "Nightlife, Dive Bars, American (Traditional), Restaurants, Bars, Diners", + "hours": null + }, + { + "business_id": "gGCDNqH-qfaQdIrQTfB5nQ", + "name": "Little Caesars", + "address": "2400 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.92179, + "longitude": -75.1874446, + "stars": 1.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "GB1Bmqd-Ymw37wv3UePOCA", + "name": "US Post Office", + "address": "2900 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387267, + "longitude": -75.1923844, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Public Services & Government, Local Services, Post Offices, Shipping Centers", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "8:30-12:30" + } + }, + { + "business_id": "IbuP_D_bXRLN7FYSUL1ajg", + "name": "Purple Orchid", + "address": "3275 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9186215, + "longitude": -75.2085916, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Nightlife, Dance Clubs, Bars", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "fyHpqQJ5L_ljKGaUwcwkLQ", + "name": "Spectrum Eyecare Center", + "address": "1622 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9170709, + "longitude": -75.1755371, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Eyewear & Opticians, Shopping, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "Ft63agEyfwLzhOeRQbQ2Qw", + "name": "Home and Apartment Maintenance", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Handyman, Electricians, Plumbing, Drywall Installation & Repair, Home Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:30-20:0", + "Sunday": "8:30-19:0" + } + }, + { + "business_id": "yx32jmqWOQ2ZB3RsRRfRrA", + "name": "Mr. Wish USA", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9127689, + "longitude": -75.1535348, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': True, u'validated': None}" + }, + "categories": "Bubble Tea, Restaurants, Cafes, Food, Coffee & Tea, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "brcCv54tmfsXnYq6WcXJ3w", + "name": "World Auto Sales", + "address": "4763 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.03387, + "longitude": -75.024013, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Car Dealers, Used Car Dealers, Auto Loan Providers, Automotive, Transmission Repair, Auto Repair", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "ZLPiilFRZQ8akYTpoC2O2w", + "name": "Vixens Hair Studio", + "address": "2943 N 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9996383, + "longitude": -75.1664971, + "stars": 4.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas, Hair Extensions, Eyelash Service", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "F0KshKDXT5e5CU_psZsuMQ", + "name": "Pennsylvania Ballet", + "address": "100 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9503752, + "longitude": -75.1644611, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Performing Arts, Arts & Entertainment", + "hours": null + }, + { + "business_id": "NP9ZJtyz_N1Lv45SoOQAXA", + "name": "Papermill Fresh Asian Kitchen", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529913, + "longitude": -75.1922872, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "BYOB": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Corkage": "False" + }, + "categories": "Vegetarian, Asian Fusion, Caterers, Restaurants, Event Planning & Services", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "1-zkyTwnpeZn9MmBpGSrqQ", + "name": "Sowelo Massage Therapy", + "address": "9576 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.05144, + "longitude": -74.985347, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Massage, Massage Therapy, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "n9YO7U3bbudSwIpkCtQZiA", + "name": "Anastasi Raw Bar", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0235162169, + "longitude": -75.2197929728, + "stars": 4.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "GoodForKids": "False" + }, + "categories": "Bars, Seafood, Cocktail Bars, Live/Raw Food, Nightlife, Restaurants", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "15:0-23:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "_bMDogzkRWe8nlV5lIDf1Q", + "name": "Sweat Fitness & Frames", + "address": "3300 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.011952, + "longitude": -75.1839734, + "stars": 2.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "Nightlife, Gyms, Active Life, Bowling, Fitness & Instruction", + "hours": { + "Monday": "5:30-23:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:30-23:0", + "Friday": "5:30-1:0", + "Saturday": "8:0-1:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "VIwaOtD0CRBx3X2vnLm7GQ", + "name": "Hammerin' Hank Home Repair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Painters, Home Services, Contractors, Handyman, Pressure Washers", + "hours": { + "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" + } + }, + { + "business_id": "_F--b6N6pz_sftwptAeeIA", + "name": "Deme Cosmetic", + "address": "2200 Arch St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9560712, + "longitude": -75.1769425, + "stars": 3.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cosmetic Dentists, Skin Care, Doctors, Health & Medical, Medical Spas, Dentists, Beauty & Spas, Cosmetic Surgeons", + "hours": null + }, + { + "business_id": "ZHK-GmldSu_BSFfbpVKL_Q", + "name": "Fill Your Soul", + "address": "1833 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9850957, + "longitude": -75.231304, + "stars": 2.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Breakfast & Brunch, Soul Food, Sandwiches, Restaurants", + "hours": { + "Monday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "9bbwPNPYXqP83reSK-hASg", + "name": "Yue Kee", + "address": "238 S 38th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527615, + "longitude": -75.1991432, + "stars": 3.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "Caters": "False", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Chinese, Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "1QpYfl158aRcOWLcyTQgew", + "name": "Pita Pita", + "address": "1932 Liacouras Walk, Temple University", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9824022, + "longitude": -75.1559848, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Mediterranean, Food, Restaurants, Middle Eastern, Falafel", + "hours": { + "Monday": "8:0-1:0", + "Tuesday": "8:0-1:0", + "Wednesday": "8:0-1:0", + "Thursday": "8:0-1:0", + "Friday": "8:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "0KiuFnhBlUcOqLlIE3JO-A", + "name": "Adams Fabric Care", + "address": "2000 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9621826, + "longitude": -75.1721897, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Dry Cleaning, Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "Kya7-ov8E4a6UiP5EbuO9w", + "name": "Terror Behind the Walls", + "address": "22nd St & Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673072, + "longitude": -75.1737505, + "stars": 3.5, + "review_count": 204, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Festivals, Performing Arts", + "hours": { + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "W4aXtdp4MVjXLWIG7aGsUQ", + "name": "Stateside Vodka Bar", + "address": "1700 North Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9760302247, + "longitude": -75.1370664686, + "stars": 4.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Corkage": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Smoking": "u'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BYOB": "False", + "WiFi": "u'no'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "CoatCheck": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Venues & Event Spaces, Cocktail Bars, Event Planning & Services, Food, Distilleries, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "17:0-19:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "3ncO2cRVLEShJ_c2RkGmKA", + "name": "Taco Angeleno", + "address": "5019 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9481139, + "longitude": -75.224182, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Food, Mexican, Food Trucks", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0" + } + }, + { + "business_id": "eX1y-liKYdbpX0urIWMiTw", + "name": "Ernie's Original Pizza", + "address": "1618 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0548126, + "longitude": -75.0727989, + "stars": 3.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "iiWY9t0FIGh6VMkenmsvfQ", + "name": "Weisz Accounting Services", + "address": "2040 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924253, + "longitude": -75.1677511, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Accountants, Tax Services, Professional Services, Financial Services, Financial Advising", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "5nFoMJ2-tljaFFKIK3EyOw", + "name": "Mix Brick Oven Pizza", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524084, + "longitude": -75.1755696, + "stars": 3.5, + "review_count": 218, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22: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": "10:0-22:0" + } + }, + { + "business_id": "_xwmiNSa_r_eUNRVGriBPA", + "name": "Philadelphia Community Acupuncture", + "address": "701 S 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947705, + "longitude": -75.222699, + "stars": 5.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Acupuncture", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "gR43LapI5-lx-i-w1uBoqA", + "name": "Movemakers Philly", + "address": "2100 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520461, + "longitude": -75.1757636, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Dance Studios, Education, Dance Schools, Fitness & Instruction, Active Life, Specialty Schools", + "hours": { + "Monday": "15:0-20:0", + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "zCuSPzxpAob_G1-823V1rA", + "name": "Next Salon Plus", + "address": "1107 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933373, + "longitude": -75.1471844, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "kfXNLyYtJF-34umaqxu7HQ", + "name": "Famous Footwear", + "address": "9751 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.084485, + "longitude": -75.0228332, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shoe Stores, Fashion, Sports Wear, Shopping, Accessories, Sporting Goods", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2kmy1mBjp9GLUxcCH1UMXQ", + "name": "Run Shoe Store", + "address": "533 Spring Garden St, Ste D2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616584, + "longitude": -75.1477614, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Shoe Stores, Fashion", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-19:0" + } + }, + { + "business_id": "L6OMHJoj40I55BaRdYxTRw", + "name": "Lee's Hardware", + "address": "266 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485084, + "longitude": -75.1744769, + "stars": 3.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Hardware Stores, Home & Garden", + "hours": { + "Monday": "9:0-17: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": "11:0-15:0" + } + }, + { + "business_id": "zMz96Efkh6I_FwEqtbz23w", + "name": "Pier 40 Self Storage", + "address": "841 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9353367, + "longitude": -75.1413287, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "None" + }, + "categories": "Automotive, Local Services, Movers, Truck Rental, Self Storage, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-18:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "w0XIMGG5xwEwFdbXzkp8mw", + "name": "Walnut Bridge Coffee House", + "address": "2319 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513078, + "longitude": -75.1792264, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'" + }, + "categories": "Coffee & Tea, Restaurants, Food", + "hours": { + "Monday": "7:0-18:30", + "Tuesday": "7:0-18:30", + "Wednesday": "7:0-18:30", + "Thursday": "7:0-18:30", + "Friday": "7:0-18:30", + "Saturday": "8:30-18:0", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "Njui2GtNLJrJtTDExQAOoA", + "name": "Fox Chase Cancer Center", + "address": "333 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.071082, + "longitude": -75.091236, + "stars": 3.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Oncologist, Doctors, Hospitals, Medical Centers", + "hours": { + "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" + } + }, + { + "business_id": "gwxvgYo_ASTIpQCAx1hhMA", + "name": "Thrifty Car Rental", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8781223179, + "longitude": -75.245622173, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "YXWgqs467UuxnrJP8bqyQQ", + "name": "Horizons School of Technology", + "address": "3701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955379, + "longitude": -75.196931, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Education, Educational Services, Specialty Schools, Vocational & Technical School", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "CXdp02VLnzNlILu9R6Y_wA", + "name": "Chipotle Mexican Grill", + "address": "1100 West Montgomery Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9794397148, + "longitude": -75.1536254664, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Fast Food, Mexican", + "hours": { + "Monday": "10:45-22:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "kfpwO_cdVQdTh2_oMDZ51Q", + "name": "American Sardine Bar", + "address": "1800 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.936536, + "longitude": -75.17375, + "stars": 4.0, + "review_count": 359, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Bars, Nightlife, American (New)", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "K0Mb7ebSa4DRUpEmfDZVuw", + "name": "Luhv Vegan Deli", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95321, + "longitude": -75.159409, + "stars": 4.5, + "review_count": 107, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Vegan, Burgers, Delis, Sandwiches", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "-xMyD5JSvirlYKBcwbLsEw", + "name": "Kathleen E Patrick, MD", + "address": "829 Spruce St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9459568, + "longitude": -75.1558857, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Obstetricians & Gynecologists, Health & Medical", + "hours": null + }, + { + "business_id": "QCBIv9iobRXVtNmCb7iN4g", + "name": "Polo Ralph Lauren Factory Store", + "address": "1834 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0903856, + "longitude": -74.961701, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Fashion, Shopping, Accessories", + "hours": null + }, + { + "business_id": "TD0e0aNVJt7pqVYhzADMxw", + "name": "Kornbrot Anna, DMD", + "address": "1601 Walnut St, Ste 902", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Oral Surgeons, Dentists, General Dentistry", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30" + } + }, + { + "business_id": "T9Wm1D6NN1oVSDoME_bzfw", + "name": "Game Fixx", + "address": "12006 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1224394, + "longitude": -75.0162766, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Books, Mags, Music & Video, Shopping, Video Game Stores, Computers", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "R3r9ZoGExGDZL4etQUrwUQ", + "name": "Jump To It", + "address": "2528 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9205581008, + "longitude": -75.1882500574, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "Alcohol": "u'none'" + }, + "categories": "Arcades, Indoor Playcentre, Active Life, Kids Activities, Chicken Wings, Restaurants, Pizza, Skating Rinks, Venues & Event Spaces, Event Planning & Services, Arts & Entertainment", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "P51n_EonRgr3B42Vln2MCg", + "name": "Fit Gym University City", + "address": "4415 Chestnut St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570267, + "longitude": -75.21021, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "WheelchairAccessible": "False" + }, + "categories": "Active Life, Boxing, Fitness & Instruction, Trainers, Gyms, Spin Classes", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "cnTVdvbPgECZZ50sfV9Lnw", + "name": "Di Bruno Brothers Mail Order", + "address": "2514 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9313841, + "longitude": -75.1875125, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Cheese Shops, Flowers & Gifts, Shopping, Food, Specialty Food", + "hours": null + }, + { + "business_id": "16qbviRwUTJHwJok-2rUSw", + "name": "Park Place One Apartments", + "address": "1801 Winchester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0770108, + "longitude": -75.0416293, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "COMbxg_qdhUAkR7awxkT6g", + "name": "Le Pain Quotidien", + "address": "1937 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609287934, + "longitude": -75.1711500466, + "stars": 3.5, + "review_count": 149, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "ByAppointmentOnly": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "None", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "French, Bakeries, Breakfast & Brunch, Restaurants, Belgian, Food, Coffee & Tea", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "7:30-17:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "3O8-GYC2oOmrJz9nuFjaxA", + "name": "The Nesting House", + "address": "1605 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929656, + "longitude": -75.163573, + "stars": 5.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Toy Stores, Baby Gear & Furniture, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "tmYDjisEHdbgngUwL_KuyA", + "name": "Dunkin'", + "address": "1100 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9330290928, + "longitude": -75.1446103317, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Donuts, Bagels", + "hours": { + "Monday": "4:0-22:0", + "Tuesday": "4:0-22:0", + "Wednesday": "4:0-22:0", + "Thursday": "4:0-22:0", + "Friday": "4:0-22:0", + "Saturday": "4:0-22:0", + "Sunday": "4:0-22:0" + } + }, + { + "business_id": "OM-e2hK-0oFt2p9PI2wVag", + "name": "Little Nicky's Grill & Pizza", + "address": "1940 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0512724, + "longitude": -75.0665788, + "stars": 3.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "qrj59uv5by9NUCzLOpeSHQ", + "name": "New Station Pizza 8", + "address": "2206 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0107279, + "longitude": -75.1646047, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True", + "NoiseLevel": "'average'" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "5WIkjB1c2JkwmqgqhbwzCg", + "name": "AnBrea's Beauty Salon", + "address": "4141 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.1235109, + "longitude": -75.1329376, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-18:30", + "Friday": "9:30-18:30", + "Saturday": "7:0-15:0" + } + }, + { + "business_id": "jpTfC8jSqB5i5leE_1SMMA", + "name": "Gary's Nails", + "address": "4910 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.948054, + "longitude": -75.219972, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "00xkSHUJxe0wL4wnPJTvWQ", + "name": "Central Nails", + "address": "1509 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9484454419, + "longitude": -75.174340159, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Massage, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "qK7E1up_L7JlJ8yhV6Gfxg", + "name": "Kuriimii", + "address": "1023 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9547891, + "longitude": -75.1569208, + "stars": 4.5, + "review_count": 188, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-23:0", + "Wednesday": "11:0-15:0", + "Thursday": "14:0-23:0", + "Friday": "14:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "nzx9pK_WQvHOnJyynrR92A", + "name": "Cocktail Culture Co", + "address": "16 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495571, + "longitude": -75.1439805, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True" + }, + "categories": "Party & Event Planning, Special Education, Education, Bartending Schools, Event Planning & Services, Nightlife, Tasting Classes, Specialty Schools, Bartenders, Caterers, Arts & Entertainment, Cocktail Bars, Bars", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "nETjr7I6hMWDmNQbzeamRg", + "name": "Einstein Family Medicine", + "address": "7131FRANKFORD Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0352318, + "longitude": -75.0434854, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Hospitals, Doctors, Family Practice", + "hours": null + }, + { + "business_id": "10lSxsZ17WU14dmPcqvrIg", + "name": "Dos Funny Frogs", + "address": "223 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9698025, + "longitude": -75.1403252, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "9:0-13:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "Tx1M1NCUYE2Ma2fgKexBKQ", + "name": "Supremo Food Market", + "address": "4301 Walnut St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552688, + "longitude": -75.2090703, + "stars": 2.5, + "review_count": 113, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "h4QiXOV8Qo5Lz4DnpYtiGA", + "name": "Electrical Wizardry", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0358382, + "longitude": -75.174734, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Electricians", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "xAW4nw9DrW77vWF61_l-Qg", + "name": "Famous 4th Street Delicatessen", + "address": "38 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952362, + "longitude": -75.172065, + "stars": 4.0, + "review_count": 166, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "True" + }, + "categories": "Sandwiches, Delis, Restaurants", + "hours": { + "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": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "c0Ay-fVQFMgAaXVR3hhRGw", + "name": "Alice Pizza", + "address": "1234 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9523077, + "longitude": -75.1613011, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "Corkage": "False", + "Caters": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "BYOB": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Sandwiches, Pizza, Restaurants, Gelato, Food, Italian", + "hours": null + }, + { + "business_id": "i5IHpRO3tKN5enBrtNxDWQ", + "name": "Nepal-Tibet Handicrafts", + "address": "644 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9420182, + "longitude": -75.1536001, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Reiki, Spiritual Shop, Health & Medical, Shopping, Accessories, Religious Items, Home & Garden, Fashion, Gemstones & Minerals, Jewelry", + "hours": { + "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-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "UlSJow4H5WF-HHkBW9aXxg", + "name": "Cuba!", + "address": "8609 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0769884, + "longitude": -75.2074997, + "stars": 3.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Cuban", + "hours": null + }, + { + "business_id": "rKt59L8Cs-mZOA0qCp1VOg", + "name": "La Sarten Express Food", + "address": "7th St & Fernon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928546, + "longitude": -75.156939, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "NoiseLevel": "'quiet'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Food Trucks, Mexican, Food, Restaurants", + "hours": null + }, + { + "business_id": "ntjq50D4FoVLjIm9fqT4Vw", + "name": "Kimberly James Bridal", + "address": "15 W Highland Ave, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0757279, + "longitude": -75.2070424, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Accessories, Shopping, Fashion, Bridal, Formal Wear", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Y9X7ceuvElwbaeclIAumMw", + "name": "Brothers Mobile Pizza", + "address": "1800 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9798649, + "longitude": -75.15404, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Food Stands, Pizza, Food Trucks, Food, Restaurants", + "hours": null + }, + { + "business_id": "F8zdcJRLKNrOdGdqP3i3hQ", + "name": "Express Care Roxborough Memorial", + "address": "701 Cathedral Rd, Ste 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0643191, + "longitude": -75.2367851, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Medical Centers, Health & Medical, Walk-in Clinics, Family Practice, Doctors, Urgent Care", + "hours": { + "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" + } + }, + { + "business_id": "cyl0ML6y0jj8Jo_sh3M6Cg", + "name": "William Schwartz Jewelry", + "address": "1831 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952053, + "longitude": -75.171493, + "stars": 5.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "5ISqvo9dxmFY6MkXF28H4A", + "name": "Non Stop Gyro", + "address": "3632 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.959557, + "longitude": -75.195099, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "HasTV": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "DogsAllowed": "False" + }, + "categories": "Mediterranean, Restaurants, Desserts, Greek, Fast Food, Food Delivery Services, Food, Falafel", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "-w3QfCAsyxnZxOWhOMAC6Q", + "name": "Wissahickon Creek Veterinary Hospital", + "address": "7376 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0478504, + "longitude": -75.2353949, + "stars": 4.0, + "review_count": 75, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-15:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "rEAZzCiwOd-zEfN-4thlbw", + "name": "ACME Markets", + "address": "920 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1005648203, + "longitude": -75.0264709196, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Department Stores, Fashion, Food, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "dw2Sl_LX4elRe0Yb6dSGqQ", + "name": "Spark Photography", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Photographers, Event Planning & Services", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "D4QXsX1dKYTb2W5nUnAStA", + "name": "Gershman Y", + "address": "401 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9453161, + "longitude": -75.1648897, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Adult Education, Arts & Entertainment, Social Clubs, Education", + "hours": null + }, + { + "business_id": "1pZ-gkuPzYARrljU3YRt_A", + "name": "Vegan Tree-Spicy Pot Truck", + "address": "1919 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.981878, + "longitude": -75.154706, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "BikeParking": "True" + }, + "categories": "Food Trucks, Restaurants, Vegan, Food, Hot Pot", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "3m1th_caiFrvdwXUOz0Fgw", + "name": "Armando Rey Jewelers", + "address": "816 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393355, + "longitude": -75.1579469, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Jewelry, Shopping", + "hours": null + }, + { + "business_id": "ke26rxD9VzDgcpDUa6t9Yg", + "name": "Sky Store", + "address": "632 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941953, + "longitude": -75.1533182, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shopping, Vape Shops, Head Shops, Tobacco Shops", + "hours": null + }, + { + "business_id": "hdEcq237Ei-hXoXtGU8Wfw", + "name": "Locust St Periodontics & Implant Dentistry", + "address": "1500 Walnut St, Ste 2001", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Dentists, Oral Surgeons, General Dentistry, Periodontists, Orthodontists, Cosmetic Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-18:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "pbGPP7lGMhpIpzpoCp9mow", + "name": "Astral Plane Millenium", + "address": "1708 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451918, + "longitude": -75.1705279, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Food, American (New)", + "hours": null + }, + { + "business_id": "agkiNGa26UB9kA4Gb-VFzw", + "name": "Circles Headhouse", + "address": "429 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941958, + "longitude": -75.15019, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "False" + }, + "categories": "Vegan, Thai, Vegetarian, Restaurants, Asian Fusion", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "ISi0dQy91K16TLR8zo-hQw", + "name": "Hair Spa Bar", + "address": "1807 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95192, + "longitude": -75.170621, + "stars": 3.5, + "review_count": 109, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Hair Stylists, Eyebrow Services, Blow Dry/Out Services, Eyelash Service, Beauty & Spas, Makeup Artists, Skin Care, Hair Salons, Waxing, Hair Removal, Day Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "hmossNjZQjYVPBEyas2W8A", + "name": "Ye Olde Clean'ry", + "address": "23 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526427, + "longitude": -75.1714551, + "stars": 3.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BikeParking": "True" + }, + "categories": "Laundry Services, Sewing & Alterations, Dry Cleaning & Laundry, Local Services", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "td_BI5T5qP01T5QfD4j3Sg", + "name": "El Bochinche Restaurante", + "address": "4940 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0269917, + "longitude": -75.1328407, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Coffee & Tea, Latin American, Colombian, Restaurants, Mexican, Empanadas, Food", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "_8QkK3WwGxNnn54Q1VTTcA", + "name": "Leneghan's Crusader Inn", + "address": "7412 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0382627, + "longitude": -75.0376145, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Bars, Nightlife, Chicken Wings, Hotels, Restaurants, Event Planning & Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "AfhWOFMRzViPCI7BceIykw", + "name": "Sharp Clips", + "address": "711 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403372, + "longitude": -75.1508552, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Men's Hair Salons, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "0_yT3MVCgVrdfzyhi2VRpA", + "name": "Lux Teeth Whitening", + "address": "1650 Market St, Ste 3600", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952659, + "longitude": -75.1680966, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Teeth Whitening", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "qHQTp_4sZjvtHL2kn3tZrw", + "name": "Phenomenails", + "address": "7028 Ridge Ave, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0442799, + "longitude": -75.2295336, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons, Shopping, Cosmetics & Beauty Supply", + "hours": { + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "nUEqRhVHjdRJexlaB0msmg", + "name": "Shelly's Southern Seafood Restaurant", + "address": "435 Chew St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.038165, + "longitude": -75.129628, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "bNBtk8F-iiiWp6Z9Zi3ziA", + "name": "Cosi", + "address": "1700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95289, + "longitude": -75.169248, + "stars": 2.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BikeParking": "False" + }, + "categories": "Restaurants, Sandwiches, Food", + "hours": { + "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" + } + }, + { + "business_id": "q8_c5OWrKEKHvuOl-6UWuQ", + "name": "Precise Brothers Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Painters, Carpenters, Pressure Washers", + "hours": { + "Monday": "8:0-20:30", + "Tuesday": "8:0-20:30", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-20:30", + "Friday": "8:0-20:30", + "Saturday": "8:0-20:30", + "Sunday": "8:0-20:30" + } + }, + { + "business_id": "Luc4Zxqua--lv9SLErxuWA", + "name": "Raindrop Cafe", + "address": "1900 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531104, + "longitude": -75.1724552, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Food, Coffee & Tea, Juice Bars & Smoothies, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "AJ60jCPc97f6K18EtgkWIA", + "name": "Zeke's Fifth Street Deli Bakery", + "address": "318 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9445223, + "longitude": -75.1501918, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Delis, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "4HRtArZJtcAs10gAE7_bzw", + "name": "COSI", + "address": "833 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499253, + "longitude": -75.1550481, + "stars": 2.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "eou37hSU7gpr2XlpJ9Fucw", + "name": "The Greyhound Cafe", + "address": "1839 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9713, + "longitude": -75.16743, + "stars": 5.0, + "review_count": 41, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "Caters": "True", + "DogsAllowed": "False", + "Corkage": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': None}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "BYOB": "True", + "WheelchairAccessible": "False", + "HasTV": "True" + }, + "categories": "Mexican, Comfort Food, Soul Food, Breakfast & Brunch, Pizza, Italian, Restaurants, Vegan", + "hours": null + }, + { + "business_id": "9R2UVjlnijJBfjMitKpjzw", + "name": "Pristine Beauty Spa", + "address": "2346 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9870318, + "longitude": -75.1088951, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Eyelash Service, Day Spas, Permanent Makeup, Tanning", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "ArOAscYDf3rG7S2bT2cHCQ", + "name": "Thunderbird Lanes", + "address": "3075 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.056791, + "longitude": -75.016229, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "False" + }, + "categories": "Sporting Goods, Bowling, Active Life, Arts & Entertainment, Shopping", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "l8fHlUNQLiB3ETvvvXbSVg", + "name": "Reid Rosenthal & The Rosenthal Group", + "address": "210 W Rittenhouse Sq, Ste 406", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499767, + "longitude": -75.1730241, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Real Estate Agents, Real Estate Services, Home Services, Real Estate", + "hours": { + "Monday": "9:0-20:30", + "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-20:30" + } + }, + { + "business_id": "mQMbauPrkRVUTdNu3M3WTg", + "name": "Fishtown Tavern", + "address": "1301 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970536, + "longitude": -75.1342774, + "stars": 4.0, + "review_count": 93, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "WiFi": "'no'" + }, + "categories": "Bars, Dive Bars, Nightlife", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "OMz46C6rKHQ182DM3zuQBQ", + "name": "Locksmith On Wheels", + "address": "321 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9701944, + "longitude": -75.1310592, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "ZqJYkKpu8CmAhxqXFZMu2Q", + "name": "Family & Friends Builders", + "address": "2544 E Cambra", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9819419, + "longitude": -75.1118539, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Plumbing, Contractors, Painters, Masonry/Concrete, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "fHIhfHcb2mUg2My582tqoQ", + "name": "Arch Street Presbyterian Church", + "address": "1724 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9549552, + "longitude": -75.1691077, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-16:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "mfBbcBaOo7KZsJ5JZBSeZg", + "name": "Hops Brewerytown", + "address": "1363 N 31st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9775302, + "longitude": -75.1855542, + "stars": 3.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Gastropubs, Nightlife, American (Traditional), Bars, Lounges", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "pDplkJbShOXPhAChKVRMzQ", + "name": "Pizza Hut", + "address": "33 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9560969529, + "longitude": -75.2022101952, + "stars": 2.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "'very_loud'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Chicken Wings, Italian, Pizza", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "YS18M5ox3x0tK6uulfydrw", + "name": "ZIG ZAG BBQ", + "address": "2111 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9822912379, + "longitude": -75.1281427592, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Barbeque", + "hours": { + "Wednesday": "15:30-20:0", + "Thursday": "15:30-20:0", + "Friday": "15:30-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "Kt4NZ9IXvRCHI8qvV0h8qg", + "name": "Peddler Coffee", + "address": "2100 Spring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.958286331, + "longitude": -75.1742810459, + "stars": 4.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "HappyHour": "False", + "DogsAllowed": "False" + }, + "categories": "Food, Coffee & Tea, Coffee Roasteries", + "hours": { + "Monday": "8:0-14:0", + "Tuesday": "8:0-14:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-14:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "KcWYzBrXvEOPV_mh9wHO5g", + "name": "The Market Square Laundry", + "address": "7727 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0722495, + "longitude": -75.1946126, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "1YnUIpvSy4bODX8fxXFyYQ", + "name": "Spectrum Arena", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9011809, + "longitude": -75.1720529, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Stadiums & Arenas, Arts & Entertainment", + "hours": null + }, + { + "business_id": "WcWgva3KHkD2mcTFG-Mw5A", + "name": "El Sabor Restaurant", + "address": "176 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9818785, + "longitude": -75.1359422, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Puerto Rican, Spanish, Cuban, Caribbean, Restaurants", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-21:30", + "Saturday": "7:0-21:30" + } + }, + { + "business_id": "h7tUF0XhaQcZ4W1D07YBzQ", + "name": "Bella Sera Cafe", + "address": "2146 E Susquehanna Rd, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9798581, + "longitude": -75.1298176, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Desserts, Food", + "hours": { + "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": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "tGaPlSDHzEGHKnJkEdnDEQ", + "name": "Ulta Beauty", + "address": "1851 S Christopher Columbus Blvd, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9234749937, + "longitude": -75.1405619726, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Cosmetics & Beauty Supply, Beauty & Spas, Skin Care, Shopping, Hair Salons", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "W8_tRyiRAuScJrTJemLPcA", + "name": "1st & Fresh Catering", + "address": "1626 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9753141603, + "longitude": -75.1396581, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "BxfvdHqETU8jWYUjx5OL2A", + "name": "Shake Shack", + "address": "2000 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512256328, + "longitude": -75.1737892628, + "stars": 3.5, + "review_count": 777, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "DriveThru": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "Alcohol": "u'beer_and_wine'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "HappyHour": "False" + }, + "categories": "Food, Hot Dogs, Burgers, Ice Cream & Frozen Yogurt, Fast Food, American (Traditional), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "tIh4p24neiyafAi-JPRDUA", + "name": "Lavino Nail Bar", + "address": "240 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473677, + "longitude": -75.1593948, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "yAYhr0P9RGyvmK0aGA1LlQ", + "name": "Sung Cleaners", + "address": "1635 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9443057341, + "longitude": -75.1699780235, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "ipRXCy-0ChYK_569rPqzJQ", + "name": "Square Peg", + "address": "929 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486160278, + "longitude": -75.1571578979, + "stars": 3.5, + "review_count": 135, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True" + }, + "categories": "Bars, American (New), Nightlife, Restaurants", + "hours": null + }, + { + "business_id": "oCWx92FxeWJc5_tkQYGJTw", + "name": "Pauline's Deli", + "address": "2145 Elkins Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0408335, + "longitude": -75.1574681, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "8:0-21:0" + } + }, + { + "business_id": "xTToUHfG8hspNEn-tVSNIg", + "name": "Long River Chinese Restaurant", + "address": "1543 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630664, + "longitude": -75.1643273, + "stars": 2.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "UlQDf4jrww_L5b-AYnLO6g", + "name": "The Gaslight", + "address": "120 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949563, + "longitude": -75.143126, + "stars": 3.5, + "review_count": 270, + "is_open": 0, + "attributes": { + "DogsAllowed": "True", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HappyHour": "True", + "CoatCheck": "False", + "RestaurantsAttire": "u'casual'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (New), Bars, Cocktail Bars, Sandwiches, Breakfast & Brunch, Nightlife, Gastropubs, Restaurants", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "fUntC7lbyc2VR3np-29D4g", + "name": "The Spa at The Logan", + "address": "1 Logan Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.956853, + "longitude": -75.169558, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Hotels & Travel, Hotels, Massage, Event Planning & Services, Day Spas, Beauty & Spas", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "fLCxBKgtkClw116SesBw5w", + "name": "MOVERAMA", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9863531, + "longitude": -75.1019942, + "stars": 5.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Packing Services, Home Services, Movers", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "zz3E7kmJI2r2JseE6LAnrw", + "name": "Hung Vuong Super Market", + "address": "1122 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365822, + "longitude": -75.1626553, + "stars": 3.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Food, Grocery, International Grocery", + "hours": { + "Monday": "8:0-21:30", + "Tuesday": "8:0-21:30", + "Wednesday": "8:0-21:30", + "Thursday": "8:0-21:30", + "Friday": "8:0-21:30", + "Saturday": "8:0-21:30", + "Sunday": "8:0-21:30" + } + }, + { + "business_id": "MrB-sRpmzD90ir3CMRlUUw", + "name": "Asian Fusion", + "address": "1739 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277406, + "longitude": -75.1657789, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Asian Fusion", + "hours": { + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "bLJP0fVgscuUQy0hE_CRXA", + "name": "Xiandu Thai", + "address": "1119 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490512, + "longitude": -75.159888, + "stars": 4.0, + "review_count": 631, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "Music": "{'dj': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Thai, Bars, Nightlife", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "c11xVQG3svdkJGrxM9A0Pw", + "name": "South Street Laundromat", + "address": "828 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.942338, + "longitude": -75.1564306, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BikeParking": "True" + }, + "categories": "Laundry Services, Local Services, Laundromat, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "yqjA_Sd1c_aYPyaDyz3wbQ", + "name": "Ulta Beauty", + "address": "1619 Walnut St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500869, + "longitude": -75.1683553, + "stars": 3.0, + "review_count": 125, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Cosmetics & Beauty Supply, Shopping, Skin Care, Hair Salons", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "ebr-cEj1lMY-nRCj_aVeZQ", + "name": "The Strongroom", + "address": "1835 S Broad St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9271117, + "longitude": -75.1687885, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Trainers, Massage, Beauty & Spas, Fitness & Instruction, Gyms, Boot Camps, Boxing", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "10:0-11:0", + "Friday": "5:0-19:0", + "Saturday": "7:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "stL1yXLf9C85ZccQx-ySXg", + "name": "Philly Fair Trade Roasters", + "address": "36 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498279, + "longitude": -75.152458, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee Roasteries, Coffee & Tea, Food, Restaurants, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "iFS7pgju4t2zGovhzSxAMg", + "name": "Jake's Wayback Burgers", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0738065311, + "longitude": -75.0336009264, + "stars": 2.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Burgers, American (Traditional)", + "hours": { + "Monday": "10:30-23:30", + "Tuesday": "10:30-23:30", + "Wednesday": "10:30-23:30", + "Thursday": "10:30-23:30", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "4o0xTz_indIcqzJ7juHBAw", + "name": "KQ Burger", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530044436, + "longitude": -75.1924658194, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "NoiseLevel": "'loud'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "Smoking": "u'outdoor'", + "Caters": "False", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "BYOB": "False", + "Corkage": "False", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Fast Food, Bars, Sandwiches, Burgers, American (New), Nightlife", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "CLw-I3X3X8l1V80jxPv3AA", + "name": "One Pound Cheesesteaks", + "address": "2661 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9895823, + "longitude": -75.125543, + "stars": 3.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Caters": "False", + "HasTV": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'quiet'", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "DogsAllowed": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Restaurants, Cheesesteaks, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "gbrJZK8nhIzxSBlpbjvrPg", + "name": "Favors & Flavors", + "address": "1919 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926083, + "longitude": -75.16765, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Food, Desserts", + "hours": null + }, + { + "business_id": "zgX8sYCRGVJ9M5LETpJ60A", + "name": "Ruby Tuesday", + "address": "1625 Chestnut St Space 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 2.5, + "review_count": 114, + "is_open": 0, + "attributes": { + "HasTV": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Restaurants, Burgers, American (Traditional), American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "2t4AGBtgk-P9mE8JWm3uSQ", + "name": "Chestnut Hill Cat Clinic", + "address": "8220 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0736647, + "longitude": -75.2032578, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "d4QFJfL5q4nguXfWJUphZg", + "name": "Palm Tree Gourmet", + "address": "901 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9358853334, + "longitude": -75.1467155431, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Vegetarian, Grocery, Specialty Food, Sandwiches, Food", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "pjv_YuCBjeo6-p9GI56qGw", + "name": "Class of 1923 Ice Rink", + "address": "3130 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9519898, + "longitude": -75.1871317, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': True}" + }, + "categories": "Active Life, Skating Rinks", + "hours": { + "Saturday": "18:0-19:0", + "Sunday": "13:0-14:30" + } + }, + { + "business_id": "tn0H9JOx4wvKe0p4Wu1ORg", + "name": "Action Karate Manayunk", + "address": "4799 1/2 Silverwood St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.035285, + "longitude": -75.2269961, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Martial Arts, Active Life, Karate, Fitness & Instruction", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "XtJoVFG9YAVxwccgpJ-gZg", + "name": "Places & Spaces For Growth Learning Center", + "address": "6041 Drexel Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9891164, + "longitude": -75.247701, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Child Care & Day Care", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0" + } + }, + { + "business_id": "UeoR9zNgHzBFFVvbq_44MQ", + "name": "ROOST East Market", + "address": "1199 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513351232, + "longitude": -75.1597861201, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Home Services, Real Estate, Hotels & Travel, Event Planning & Services, Hotels", + "hours": null + }, + { + "business_id": "fnQe5CpGnkY42768WyQHsw", + "name": "Luna Salon", + "address": "1216 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489636, + "longitude": -75.1613349, + "stars": 4.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "avB60OOVc_YOyfbz2AqL_g", + "name": "Cafe Michelangelo", + "address": "11901 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1214268, + "longitude": -75.0160069, + "stars": 3.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Restaurants, Italian", + "hours": { + "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" + } + }, + { + "business_id": "fCCHA0hRSfD3vpByE-heAg", + "name": "The Riverbend Bar and Grille", + "address": "One Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8778589, + "longitude": -75.2449775, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "American (New), Restaurants", + "hours": null + }, + { + "business_id": "Kt1nb58MsId-FjRg2-Fiew", + "name": "SP+ Parking", + "address": "1001 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430924, + "longitude": -75.1591759, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "JypwTpE-sXraWkUfNc9RkA", + "name": "Pearle Vision", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.912987, + "longitude": -75.154641, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "'free'", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessParking": "None" + }, + "categories": "Shopping, Health & Medical, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "0NFnwQk-eNs8F4qz9pSW8w", + "name": "Vicky Nail Salon", + "address": "7729 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0576905, + "longitude": -75.059586, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "BDiY_LD44UO3vplJ6L9fhw", + "name": "Parkside Beef & Ale", + "address": "1433 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548176, + "longitude": -75.1645795, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Alcohol": "'beer_and_wine'" + }, + "categories": "Food, Bars, Nightlife, American (Traditional), Beer Bar, Restaurants, Dive Bars, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-1:0", + "Wednesday": "11:30-1:0", + "Thursday": "11:30-1:0", + "Friday": "11:30-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "x6ooXAGn97DgtD6FUR4RNw", + "name": "Juniper-Locust Self-Park Garage", + "address": "1327 LocuSt St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484811, + "longitude": -75.1635673, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "4sYOrG_G0E3uSeonI-4hvg", + "name": "US Post Office", + "address": "1713 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928435, + "longitude": -75.168422, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shipping Centers, Post Offices, Public Services & Government, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "70GI8Cwm7Ewh4W6n7ETa2Q", + "name": "Infinity Caterers Inc", + "address": "4401 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0270245, + "longitude": -75.2252505, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "6:0-17:0", + "Thursday": "6:0-17:0", + "Friday": "7:0-17:0" + } + }, + { + "business_id": "oLi0Av7zJycNUVfXTRe8NQ", + "name": "Gigi & Big R", + "address": "5943 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9698568, + "longitude": -75.2387222, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "'none'", + "HasTV": "True", + "OutdoorSeating": "None" + }, + "categories": "Food, Restaurants, Specialty Food, Food Trucks, American (Traditional), Soul Food, Caribbean", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "VD1wPJPt9_DdHKrxfoFLAA", + "name": "Jomar Textiles", + "address": "5300 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.033009, + "longitude": -75.1025395, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Department Stores, Shopping, Fashion", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "xYiFhIxwluJ_qYIyScWufA", + "name": "Dunkin'", + "address": "1500 Market Street Concourse", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9523167, + "longitude": -75.1664857, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "TrGWquwJN32piCcr7GBt0w", + "name": "Four Paws Dog Walking", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pet Sitting, Pets, Pet Services, Dog Walkers", + "hours": { + "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": "8:0-20:0" + } + }, + { + "business_id": "vupqhNCiMfbQXBl9C-y4Ag", + "name": "Tangled Web", + "address": "7709 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0681469, + "longitude": -75.197429, + "stars": 4.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Arts & Crafts, Hobby Shops, Knitting Supplies, Art Supplies, Shopping", + "hours": null + }, + { + "business_id": "xD1ovhLL246MNc3OZJwtpw", + "name": "Eyebrow Designer 21", + "address": "1356 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0859550439, + "longitude": -74.9603196632, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Removal, Beauty & Spas, Eyebrow Services", + "hours": null + }, + { + "business_id": "_-Wlo1MmNd74dqMVXiu-HA", + "name": "Green City Beauty", + "address": "1036 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446683, + "longitude": -75.1595306, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Medical Spas, Health & Medical, Skin Care, Cosmetics & Beauty Supply, Sugaring, Beauty & Spas, Hair Removal", + "hours": { + "Tuesday": "13:0-20:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "VlXdebuuVW_6mlhXXx0Kfg", + "name": "Paradigm Gallery + Studio", + "address": "746 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393004, + "longitude": -75.1498523, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Education, Art Classes, Arts & Entertainment, Shopping, Performing Arts, Art Galleries, Home Decor, Home Services, Real Estate, Home & Garden, Art Space Rentals, Art Consultants, Commissioned Artists, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "iiXZBcgyd0cfvZLoeYmpVA", + "name": "Mallu Cafe & Catering", + "address": "10181 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1075482, + "longitude": -75.0271849, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Indian, Restaurants", + "hours": { + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "Zmh2_OjtPX4fmoDI151jEQ", + "name": "Eazy Computers & iPhone Repair", + "address": "2005 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521579383, + "longitude": -75.1736258135, + "stars": 4.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "RestaurantsDelivery": "None", + "BikeParking": "True" + }, + "categories": "Local Services, Computers, Electronics Repair, Shopping, Data Recovery, Mobile Phone Accessories, Mobile Phone Repair, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "q3CmU1veDlGnKjfTTEuTzg", + "name": "Scallywags Dog Daycare", + "address": "4367 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0266465, + "longitude": -75.2239995, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pet Services, Pets", + "hours": { + "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" + } + }, + { + "business_id": "4wtXL_av84qwCpOTBTjsyg", + "name": "Chick-fil-A", + "address": "1100 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515, + "longitude": -75.15887, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Caters": "True" + }, + "categories": "Caterers, Event Planning & Services, Restaurants, Fast Food", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0" + } + }, + { + "business_id": "M3dnIWQlYUSDH5D8f27L8g", + "name": "Mr Hook Fish & Chicken", + "address": "206 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9567133, + "longitude": -75.2258074, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "uY4LSPsa3bVKzYQitbfsUw", + "name": "Zushi", + "address": "100 N 18th St, Ste 125", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9557255, + "longitude": -75.1698437, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None", + "WiFi": "u'paid'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "None" + }, + "categories": "Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Friday": "10:0-18:30" + } + }, + { + "business_id": "Wkjt6DUTGX1zKpX0OnsvcQ", + "name": "MIGA", + "address": "211 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949043, + "longitude": -75.1659177, + "stars": 3.0, + "review_count": 179, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Korean", + "hours": { + "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": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "xU3imh0Rxst6D2Ctd1AJHw", + "name": "Philadelphia Coach", + "address": "2301 Church St, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0057357, + "longitude": -75.0823599, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Taxis, Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "XU3Fe8I8dD3FaOmzAQXLnQ", + "name": "Spread Bagelry", + "address": "262 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485847, + "longitude": -75.1744427, + "stars": 3.5, + "review_count": 579, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HappyHour": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Sandwiches, Food, Restaurants, Bagels", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "RTIryxRauZ12WI4wyZBFuA", + "name": "Bonatsos' Flower Shop", + "address": "133 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488671, + "longitude": -75.1571826, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Shopping, Floral Designers, Flowers & Gifts, Event Planning & Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "b7GHuIINm-OLVKyf65stTQ", + "name": "Kairos Room", + "address": "3502 Scotts Ln, Bldg 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.008355, + "longitude": -75.186099, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dance Schools, Event Planning & Services, Venues & Event Spaces, Wedding Planning, Education, Specialty Schools", + "hours": { + "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" + } + }, + { + "business_id": "hDpXh2boLl6JCP3pt-XupQ", + "name": "Paris Baguette", + "address": "6201 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0457684569, + "longitude": -75.1190741334, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Patisserie/Cake Shop, Coffee & Tea, Food, Bakeries", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "uuOippYFOVIkl54Fv_x47A", + "name": "The Residences at Dockside", + "address": "717 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9392005181, + "longitude": -75.1415122936, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Condominiums, Apartments", + "hours": { + "Monday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "fyxmwXdg9fJ13TpuF-KSbQ", + "name": "Reef Restaurant & Lounge", + "address": "605 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411616, + "longitude": -75.147401, + "stars": 3.0, + "review_count": 187, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "GoodForDancing": "True", + "WiFi": "u'free'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BYOB": "False", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "CoatCheck": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Lounges, Caribbean, Restaurants, American (Traditional), Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "15:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "JKR09pJneafnwpUg0FNEzw", + "name": "Hilton Garden Inn Philadelphia Center City", + "address": "1100 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535723, + "longitude": -75.1580853, + "stars": 3.0, + "review_count": 237, + "is_open": 1, + "attributes": { + "Caters": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True" + }, + "categories": "Hotels & Travel, Bars, American (Traditional), Nightlife, Lounges, Hotels, Event Planning & Services, Restaurants, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "QnsN0QIsm432xjsWk21Ghg", + "name": "Rossi Wellness Center", + "address": "822 Pine St, Ste LL-1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.944288, + "longitude": -75.155542, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Internal Medicine, Medical Spas, Weight Loss Centers, Health & Medical, Doctors, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "7:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "1N7RWvz2c_e640PsvnSc0A", + "name": "Taco Riendo", + "address": "1301 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9714977, + "longitude": -75.1444936, + "stars": 4.0, + "review_count": 309, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "HasTV": "False", + "Alcohol": "'none'", + "WiFi": "u'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "pROY2CTrxxfvWUICGYDoOA", + "name": "Impresa Painting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9955072, + "longitude": -75.1720488, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0" + } + }, + { + "business_id": "ujKGQk1Y3MAX9W9TWvzavQ", + "name": "Tommy Gunns American Barbeque", + "address": "4901 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0152856, + "longitude": -75.2075816, + "stars": 3.0, + "review_count": 113, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Event Planning & Services, Barbeque, Restaurants, Caterers", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "nqGjZMGQ7ypfxn2KmyBW0g", + "name": "Corner Bakery", + "address": "1701 Market St, Fl 1, 6 Penn Ctr, Fl 1, 6 Penn Ctr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95365, + "longitude": -75.168465, + "stars": 3.0, + "review_count": 149, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Bagels, Coffee & Tea, Breakfast & Brunch, Fast Food, Restaurants, American (New), Sandwiches, Bakeries, Food, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-14:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "-7KyK-QIAjFicDhpifwbPw", + "name": "Mr Bar Stool", + "address": "167 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9536541, + "longitude": -75.1427227, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "None", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "DogsAllowed": "True" + }, + "categories": "Kitchen & Bath, Furniture Stores, Home & Garden, Shopping, Appliances, Home Decor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "73y1jLNyTy1A0XcSvyCYBA", + "name": "Satori Laser ยฎ Philadelphia Laser Hair Removal", + "address": "1120 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485704, + "longitude": -75.1600722, + "stars": 4.5, + "review_count": 104, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'" + }, + "categories": "Beauty & Spas, Skin Care, Hair Removal, Laser Hair Removal, Health & Medical, Medical Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Bd8qNRM6PUGNdPvtIcDuzQ", + "name": "Old City Nails", + "address": "16 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9507095, + "longitude": -75.1458136, + "stars": 3.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "fVuKRRbaiNtlRSmXrKgg0Q", + "name": "Pace Roofing", + "address": "4330 Pearce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0036683, + "longitude": -75.0816727, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Roofing, Siding, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "pqXCiGCnd36fKKsnypZn1w", + "name": "Liberty Nail Salon", + "address": "457 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9632767, + "longitude": -75.1465345, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-20:30", + "Friday": "10:0-16:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "nR3VW9i2K8033QY0ZMTisw", + "name": "Zento Contemporary Japanese Cuisine", + "address": "132 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948163, + "longitude": -75.1437162, + "stars": 4.0, + "review_count": 519, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "Corkage": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "Sushi Bars, Restaurants, Japanese, Asian Fusion, Event Planning & Services, Caterers", + "hours": null + }, + { + "business_id": "SeJbg2-vCsEv5MtbKUs6yg", + "name": "1st Ward", + "address": "100 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263786951, + "longitude": -75.1475070395, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Salad, Sandwiches, Restaurants", + "hours": { + "Tuesday": "10:30-17:0", + "Wednesday": "10:30-17:0", + "Thursday": "10:30-17:0", + "Friday": "10:30-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "gKS0fS91JQOOTICdc2ZvFw", + "name": "Benny the Bum's", + "address": "9991 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1018053, + "longitude": -75.0291144, + "stars": 3.5, + "review_count": 162, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "Caters": "False", + "Corkage": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "RestaurantsDelivery": "None" + }, + "categories": "American (Traditional), Restaurants, Seafood", + "hours": { + "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": "16:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "I8DHKbMYQDkWyxGMmULlTQ", + "name": "Real Food Eatery", + "address": "1700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529111355, + "longitude": -75.1690678907, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Gluten-Free, Breakfast & Brunch, American (Traditional), Restaurants", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0" + } + }, + { + "business_id": "NMrjPhdqWBn1vRvaNg5GRg", + "name": "Overbrook Pizza Shop", + "address": "2099 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9884039, + "longitude": -75.2493189, + "stars": 4.0, + "review_count": 83, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "BikeParking": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9: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" + } + }, + { + "business_id": "jIzN5atQRz9OIeYO-Lx4mw", + "name": "Over Easy Breakfast Club", + "address": "2302 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.977917792, + "longitude": -75.1294140734, + "stars": 4.0, + "review_count": 89, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "HappyHour": "False", + "GoodForKids": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "yU3PkQSwvgWU6pMfEBbmzQ", + "name": "Bravo Seafood", + "address": "3742 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0104909, + "longitude": -75.1515168, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "GeEuj4Opkd3aM1yOQ_pOJA", + "name": "Decades Vintage", + "address": "739 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9393196, + "longitude": -75.1495996, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Used, Vintage & Consignment, Shopping", + "hours": { + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "cwn_MBPFUJtme68WURSgKA", + "name": "Bainbridge Street Barrel House", + "address": "625-27 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412093, + "longitude": -75.1522391, + "stars": 3.0, + "review_count": 347, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': True, 'saturday': True}", + "HappyHour": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Breweries, Nightlife, Pubs, Sandwiches, Comfort Food, Bars, Beer Bar, Restaurants, Breakfast & Brunch, American (New), Sports Bars, Gastropubs", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "CcGMcTXZQ9_lLIrpLtAZGQ", + "name": "Seven Arts Framing", + "address": "255 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9554875, + "longitude": -75.1442998, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Framing, Arts & Crafts, Shopping", + "hours": { + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:30-16:30" + } + }, + { + "business_id": "nTTHx6yjubwMsClRSPimuA", + "name": "Goldie", + "address": "1601 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9746363839, + "longitude": -75.1341975108, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Falafel, Restaurants, Mediterranean", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "WqEy15tpyqcNpGwjFZLHJQ", + "name": "Skintastic Spa Boutique", + "address": "8012 Castor Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.062293, + "longitude": -75.05588, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Day Spas, Massage, Waxing, Eyelash Service, Skin Care, Hair Removal", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "WxqoaK-QbXEv_kojGFbFww", + "name": "Dressigner - Custom Designing & Dressmaking By Malgo", + "address": "2129 Glenview St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.040714, + "longitude": -75.063835, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Bridal, Lingerie, Sewing & Alterations, Local Services, Shopping, Fashion", + "hours": null + }, + { + "business_id": "3XtrwBSOV3bTpKD7Mdl8Qw", + "name": "Harmony Mental Health Services", + "address": "2400 Chestnut St, Ste 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952497, + "longitude": -75.1797391, + "stars": 1.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Counseling & Mental Health, Health & Medical", + "hours": null + }, + { + "business_id": "ZVrOGpZe5usRbdxxtmxHoQ", + "name": "Walmart Supercenter", + "address": "1675 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263713, + "longitude": -75.1415862, + "stars": 1.5, + "review_count": 184, + "is_open": 1, + "attributes": { + "BusinessParking": "{'valet': False, 'garage': False, 'street': False, 'lot': True, 'validated': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Drugstores, Discount Store, Shopping, Fashion, Grocery, Pharmacy, Health & Medical, Department Stores, Electronics, Food, Mobile Phones", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "oGHVDeC24uk0nfdiE7VL0w", + "name": "Grocery", + "address": "105 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504002, + "longitude": -75.1616684, + "stars": 3.5, + "review_count": 104, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "Caters": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Food, Sandwiches, Delis, Breakfast & Brunch, Grocery", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "LC1USeXD5ruayfi5wFC9Mg", + "name": "Mansion At Bala", + "address": "4700 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0012075, + "longitude": -75.2252093, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Property Management, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "cto1FXX2m3k0xFghDzqzCw", + "name": "Double Tap Shooting Range", + "address": "4730 Blakiston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0405702, + "longitude": -75.0125795, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gun/Rifle Ranges, Active Life, Professional Services", + "hours": { + "Monday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "eXKblEHP3YJYU1Awz08hVw", + "name": "Tacos Don Memo", + "address": "270 S 38th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951988, + "longitude": -75.199123, + "stars": 4.5, + "review_count": 200, + "is_open": 1, + "attributes": { + "HasTV": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "BikeParking": "False", + "HappyHour": "False" + }, + "categories": "Food Trucks, Specialty Food, Food, Restaurants, Ethnic Food, Mexican", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "-HFXvEB8mBf7jZRd2on-zA", + "name": "Fine Fare Supermarket", + "address": "625 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707822, + "longitude": -75.1476255, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "kb74oa8TzMFnzk3r9uV5tQ", + "name": "Ama La Vida", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.1197128, + "longitude": -75.0097103, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Career Counseling, Health Coach, Health & Medical, Professional Services, Life Coach", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "C7auHKLzJgVC4ShVyijP9Q", + "name": "La Tienda MiniMarket", + "address": "1247 Snyder Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924283, + "longitude": -75.167418, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Ethnic Food, Restaurants, Food, Grocery, Delis", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "cD_eKgHKZ-yHXCZ4I2AZBA", + "name": "Gourmet Grocer", + "address": "3800 Locust Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524853, + "longitude": -75.1993633, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Caters": "False" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "5pg99NrskP3sTKQRjv7ezA", + "name": "Eppie's Discount Tire & Auto", + "address": "9409 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0846091, + "longitude": -75.0375906, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Parts & Supplies, Auto Repair, Tires, Wheel & Rim Repair", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "cMOr1p7HuqEsB5ZtTeslxw", + "name": "Classy Nails", + "address": "5521 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.035469, + "longitude": -75.1304348, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "Ux1CCrhp7mqBJG5ZdmK0EA", + "name": "Cosimos Pizza Cafe", + "address": "8624 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0770116, + "longitude": -75.208546, + "stars": 3.0, + "review_count": 68, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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-21:0" + } + }, + { + "business_id": "dDm19TZjAzXM8oN2jZdRhQ", + "name": "Steven J Fromm & Associates, PC", + "address": "1420 Walnut St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95208, + "longitude": -75.16548, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Financial Advising, Professional Services, Wills, Trusts, & Probates, Financial Services, Tax Law, Tax Services, Business Law, Lawyers, Estate Planning Law", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "GmdKnVxC7oA452WOS8W32g", + "name": "Snap Kitchen", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520900281, + "longitude": -75.1719925845, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False" + }, + "categories": "Food, Vegetarian, American (New), Fast Food, Food Delivery Services, Gluten-Free, Specialty Food, Health Markets, Restaurants", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "KBOou5pq01RTc2k82phw-A", + "name": "Store Space Self Storage", + "address": "5134 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.97607, + "longitude": -75.22507, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Open24Hours": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Services, Self Storage, Movers, Shopping, Home Services, Packing Supplies", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "53ZtJeEgstlJgV6F5MrjEA", + "name": "Snap Kitchen", + "address": "1325 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9710245983, + "longitude": -75.1343279332, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "None", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True" + }, + "categories": "Health Markets, Gluten-Free, American (New), Food, Restaurants, Vegetarian, Food Delivery Services, Specialty Food", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-20:0" + } + }, + { + "business_id": "91yzyn5bX8j6licJYk0vtw", + "name": "Elevate Health & Performance", + "address": "1528 Walnut St, Ste 403", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9495981229, + "longitude": -75.1669649772, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'free'", + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Active Life, Health & Medical, Gyms, Fitness & Instruction, Physical Therapy, Dietitians, Trainers, Nutritionists", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-15:0", + "Saturday": "7:0-14:0" + } + }, + { + "business_id": "TozkPEh-xhts3qfVeRFeRg", + "name": "Bad Brother", + "address": "726 N 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.968629, + "longitude": -75.176888, + "stars": 5.0, + "review_count": 92, + "is_open": 1, + "attributes": { + "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}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HappyHour": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Beer Bar, Nightlife, Restaurants, American (Traditional), Burgers, Bars, American (New)", + "hours": { + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "R_-3-5kNhre66ppkZiguqg", + "name": "Carriage House", + "address": "3500 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9596718, + "longitude": -75.1930682, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Colleges & Universities, Education, Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "lpDOqBhkJlxACzKQGAj_uA", + "name": "Whole Foods Market", + "address": "929 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942897, + "longitude": -75.157883, + "stars": 3.5, + "review_count": 279, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Health Markets, Specialty Food, Grocery, Organic Stores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:45", + "Wednesday": "7:0-23:45", + "Thursday": "7:0-17:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "gG3Ic7jufSCwUNQQUlHlTA", + "name": "Dipinto Guitars", + "address": "407 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9705133, + "longitude": -75.1302971, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Local Services, Guitar Stores, Shopping, Musical Instrument Services, Musical Instruments & Teachers", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "qv5rrPaZkj-Gxegu7MmuDg", + "name": "Frank Salese Fine Diamonds", + "address": "733 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948864, + "longitude": -75.153766, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-14:30", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:30" + } + }, + { + "business_id": "qhf7MH_J7CS4pR3v5uiawg", + "name": "Philadelphia Segway Tours By Wheel Fun Rentals", + "address": "1 N Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512828, + "longitude": -75.1500017, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Walking Tours, Tours", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0" + } + }, + { + "business_id": "jcQVQKQNLDx3LJ84lk8S5Q", + "name": "Joseph A. Cavuto, DO", + "address": "1525 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.930974, + "longitude": -75.1679112, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Family Practice, Health & Medical, Doctors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-12:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "54_Gr2U47GtEilV2cUeOMQ", + "name": "Monkey Bar", + "address": "2029 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950893, + "longitude": -75.174781, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": null + }, + { + "business_id": "AO4PGY_9cKeboLt8dFezYg", + "name": "Rob Nolfi Roofing", + "address": "4603-05 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0202848, + "longitude": -75.1261753, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Roofing, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "Kh0ptlhgqmrCWm0w-1SrUA", + "name": "Johnny Manana's", + "address": "315 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9581650718, + "longitude": -75.1580493897, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "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': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "xQWamI3Fu7LjAp2BQFURgw", + "name": "Washington West Project", + "address": "1201 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947909, + "longitude": -75.160869, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "EalPRF-6CVQhpBJjM-fxbw", + "name": "Planet Fitness", + "address": "1835 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953487, + "longitude": -75.171113, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Fitness & Instruction, Trainers, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-21:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "-3e3CP3FFc-rvJj_-_airw", + "name": "Penn's Landing", + "address": "601 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9600237, + "longitude": -75.1371563, + "stars": 3.5, + "review_count": 80, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BikeParking": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True" + }, + "categories": "Arts & Entertainment, Active Life, Skating Rinks, Local Flavor, Parks, Music Venues, Nightlife", + "hours": null + }, + { + "business_id": "bfMrFCDY8NgQq05whI5PHw", + "name": "Club Monaco Walnut Street", + "address": "1503 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9496746328, + "longitude": -75.1661279293, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Women's Clothing, Shopping, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "da7OrS3jV_VgrlIbjUyQbA", + "name": "Philadelphia Pet Hotel & Villas", + "address": "7401 Holstein Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9035645114, + "longitude": -75.2286917726, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pet Boarding, Pet Services, Pets", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "7:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "TJaImyntBu0ebKugcyj6eQ", + "name": "Jezabel's", + "address": "206-208 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954922, + "longitude": -75.2118705, + "stars": 3.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "Corkage": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BYOB": "True" + }, + "categories": "Coffee & Tea, Restaurants, Local Flavor, Cafes, Latin American, Ethnic Food, Spanish, Food, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "zwl7iLwHBTdkb5-0gNgGFg", + "name": "Riehs Florist", + "address": "1020 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9699007, + "longitude": -75.1453373, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Flowers & Gifts, Event Planning & Services, Shopping, Florists, Floral Designers", + "hours": { + "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-16:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "cInCWRak8wiEp6cJgFTtbQ", + "name": "Caruso's Shoe Repairing", + "address": "1822 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525571, + "longitude": -75.170959, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shoe Repair, Local Services, Sewing & Alterations, Shoe Shine", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "16:30-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "OCw83s12X0s_jm8nHjff3A", + "name": "Angelos Pizza", + "address": "6920 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0425408, + "longitude": -75.0638753, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "w-CmycB7MHsz_Ld5vAXyRQ", + "name": "Spruce Nails", + "address": "4812 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9535599, + "longitude": -75.2186854, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "ZPFdJgzPjEUM6BoFfoV-ZA", + "name": "McNally's Tavern", + "address": "8634 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0771023, + "longitude": -75.2088726, + "stars": 4.5, + "review_count": 240, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "Smoking": "u'no'", + "WiFi": "u'no'", + "DriveThru": "False", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "BYOB": "False", + "RestaurantsTableService": "True", + "DogsAllowed": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True" + }, + "categories": "Nightlife, Sandwiches, Restaurants, Bars, American (Traditional), Pubs, Food, Cheesesteaks, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "X6sSThxPpQD_TfI0f8HV6A", + "name": "Mutt Airbrush and Art Supply", + "address": "617 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410703, + "longitude": -75.1491226, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Art Supplies, Professional Services, Shopping, Graphic Design, Arts & Crafts", + "hours": { + "Monday": "12:0-19:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "HddE1bPVuTas6hACmHVcUQ", + "name": "CVS Pharmacy", + "address": "1826 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517335812, + "longitude": -75.1716933902, + "stars": 3.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False" + }, + "categories": "Shopping, Convenience Stores, Pharmacy, Health & Medical, Drugstores, Food", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "4nJ1L8QMKujkh8_Oe4FK6A", + "name": "Rival Bros Coffee", + "address": "1528 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9472388442, + "longitude": -75.167802, + "stars": 4.0, + "review_count": 70, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Coffee Roasteries, Cafes, Coffee & Tea, Food", + "hours": { + "Monday": "6:0-19:0", + "Tuesday": "6:0-19:0", + "Wednesday": "6:0-19:0", + "Thursday": "6:0-19:0", + "Friday": "6:0-19:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "7CsvLMzEvgcE4I6-_Vv9dw", + "name": "Dairo Rodriguez", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Massage", + "hours": null + }, + { + "business_id": "fDzEUces1P-phJMdEngLOw", + "name": "PBR Philly", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9042894, + "longitude": -75.1694047, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "Caters": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "GoodForKids": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "HappyHour": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Food, American (New), Beer Bar, Bars, Tex-Mex, Nightlife, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "mhCDgYUsi9hYXaaK5FwItg", + "name": "Dentists On The Square", + "address": "1845 Walnut St, Ste 950", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504522, + "longitude": -75.171634, + "stars": 3.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Oral Surgeons, Dentists, Endodontists, Health & Medical, Periodontists, General Dentistry, Orthodontists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "WsMl24qIbIJAZ9rBPrLp4A", + "name": "Guppy's Good Times", + "address": "800 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404603, + "longitude": -75.1561091, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Pubs, Nightlife, Restaurants, American (Traditional), Event Planning & Services, Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "WG23hgY8Ld9yaC2clgfD_g", + "name": "Ekta Indian Cuisine", + "address": "106 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955072408, + "longitude": -75.2024777935, + "stars": 3.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Indian, Buffets, Event Planning & Services, Restaurants, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "nih5mVWTsFbkHIb9KVNGiA", + "name": "Ernesto Custom Menswear", + "address": "612 S 5th St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9131095, + "longitude": -75.0067905, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Bespoke Clothing, Men's Clothing, Fashion, Sewing & Alterations, Shopping, Formal Wear", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "AddC68mgkczAcxHnzgByPw", + "name": "Red Robin Diner", + "address": "6330 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0286174763, + "longitude": -75.0584119806, + "stars": 2.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "BikeParking": "True", + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "RestaurantsTableService": "True" + }, + "categories": "Breakfast & Brunch, American (Traditional), Diners, Restaurants, Burgers, Wraps, Seafood", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "fIlR_iCy3m10_UYt6lJjHQ", + "name": "Sumo Sushi", + "address": "401 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.945196, + "longitude": -75.162803, + "stars": 3.5, + "review_count": 279, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Sushi Bars", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "UXHv16NI_l9FGpsBbB3vSQ", + "name": "Blade & Badger", + "address": "806 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9383253, + "longitude": -75.1533638, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Men's Hair Salons, Hair Salons, Barbers", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "6KAYcpDG24z39O7mH_O87Q", + "name": "Children Of America Philadelphia/Chestnut Hill", + "address": "8701 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0774429, + "longitude": -75.2083865, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Educational Services, Preschools, Education, Elementary Schools, Summer Camps, Child Care & Day Care, Active Life, Local Services", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0" + } + }, + { + "business_id": "NgLsXmpzZY2f2ePefMYtdA", + "name": "Caleb Meyer Studio", + "address": "8520 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076306, + "longitude": -75.2070749, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "Gr8fjNtHJHtiaQblq5cCuw", + "name": "TD Nails", + "address": "267 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947489, + "longitude": -75.1662286, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "rw1ILpG1NZ2bqHFLRpuRqQ", + "name": "Burberry Limited", + "address": "1705 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503121, + "longitude": -75.1693191, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4" + }, + "categories": "Fashion, Men's Clothing, Women's Clothing, Shopping", + "hours": null + }, + { + "business_id": "Yjl8zvY3uujvpbKMXWOpXQ", + "name": "Joseph's Pizza", + "address": "7947 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.076064, + "longitude": -75.084728, + "stars": 2.5, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Corkage": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BYOB": "False" + }, + "categories": "American (Traditional), Restaurants, Cheesesteaks, Italian, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "EGnw4HlVnSqsPl347eFeIg", + "name": "Green Pest Solutions", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528290677, + "longitude": -75.1739895353, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Pest Control", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "VXtQVIYWNcLlNJxGA7cDkg", + "name": "Ideal Image Liberty Place", + "address": "1625 Chestnut Street, Unit 236", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Tattoo Removal, Doctors, Laser Hair Removal, Health & Medical, Medical Spas, Beauty & Spas, Body Contouring, Hair Removal", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "4gyjrSazXr3JNTvNYOJJBg", + "name": "Fuzhou House", + "address": "2202 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451201, + "longitude": -75.1788226, + "stars": 3.0, + "review_count": 65, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "ox3tHL6pYBqCFbVuFjYoLA", + "name": "Ambiance Nail Salon and Spa", + "address": "2201 E Butler Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9987553, + "longitude": -75.0945785, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Beauty & Spas, Eyelash Service, Nail Salons", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "lfAY9wQ7e6QSpFVumpKZyA", + "name": "Lincoln Financial Field", + "address": "1020 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9008144703, + "longitude": -75.1675401693, + "stars": 4.0, + "review_count": 194, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Stadiums & Arenas, Arts & Entertainment", + "hours": null + }, + { + "business_id": "NRw1DsB1nRelX8-QM98imA", + "name": "Southpaw Pets", + "address": "1627 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9213298, + "longitude": -75.1746821, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pets, Dog Walkers, Pet Services", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "0ijmmbTvd8fcLclFVdpIsQ", + "name": "Bodega Bar", + "address": "1223 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493319, + "longitude": -75.1616733, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'", + "Alcohol": "u'full_bar'", + "CoatCheck": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "Corkage": "False", + "HasTV": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Cuban, Nightlife, Cocktail Bars, Latin American, Bars", + "hours": { + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "15:0-23:0" + } + }, + { + "business_id": "jlOPXMrsxv9gq0y3BqZgmQ", + "name": "Garage Fishtown", + "address": "100 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.968652, + "longitude": -75.1341591351, + "stars": 3.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "GoodForDancing": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': None, 'video': False, 'karaoke': None}", + "CoatCheck": "False", + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Bars, Sports Bars, Beer Bar", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "Xw5taSuL2FhQI4clqq6F-g", + "name": "Toppers Spa/Salon Rittenhouse Square", + "address": "117 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512738, + "longitude": -75.1717767, + "stars": 3.0, + "review_count": 142, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Massage Therapy, Day Spas, Massage, Hair Salons, Hair Removal, Beauty & Spas, Health & Medical", + "hours": { + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-20:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-18:30", + "Saturday": "9:0-18:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "s4YwjZUo_L6GftlLiMaowA", + "name": "Arti's Kitchen & Bathroom Remodeling", + "address": "1405 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0573314, + "longitude": -75.0762435, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Contractors, Home Services, Cabinetry, Decks & Railing, Building Supplies, Plumbing, Countertop Installation", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "-g1TzOsvh__DXii1R7K00A", + "name": "Bikram Yoga Manayunk", + "address": "115 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.026243, + "longitude": -75.224067, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Yoga, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "5:30-20:0", + "Saturday": "7:30-18:0", + "Sunday": "7:30-18:0" + } + }, + { + "business_id": "YM-6t6cyFmv7fGGitRij3g", + "name": "ACME Markets", + "address": "4001 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9544596363, + "longitude": -75.2029260993, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Department Stores, Food, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "h6QmqhEBdTjIEAdQ6DEPPg", + "name": "House Productions Hair Studio", + "address": "1800 Chestnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514842, + "longitude": -75.1705096, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "aWy4lYji5BOdQk473z_eXg", + "name": "Union Tap House", + "address": "4801 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0325377487, + "longitude": -75.2324171306, + "stars": 4.5, + "review_count": 98, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "Smoking": "u'outdoor'", + "GoodForKids": "False", + "CoatCheck": "False", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "DriveThru": "None", + "HasTV": "True", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Chicken Wings, Sandwiches, Beer, Wine & Spirits, Food, Wraps, Nightlife, Beer Bar, Pubs, Burgers, Bars, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "J5HBKeeumWQ2465BpGWZag", + "name": "webuyanycar.com", + "address": "1840 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.084485, + "longitude": -75.0359007, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Buyers, Automotive, Car Dealers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Thursday": "11:0-15:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "nLMWAEwS6M-Ah2TUlpd6sA", + "name": "The View At Montgomery", + "address": "1100 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9795560849, + "longitude": -75.1530354474, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, University Housing, Apartments, Real Estate", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "USleU89txaknVADlMhUtnQ", + "name": "SquareBurger", + "address": "200 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9557003985, + "longitude": -75.1501474668, + "stars": 3.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "HasTV": "True" + }, + "categories": "Burgers, American (Traditional), Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "0Z4psJe-0zSggtZjSaOJ9g", + "name": "Balance Studios", + "address": "1314 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970648, + "longitude": -75.134727, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Boxing, Active Life, Fitness & Instruction, Kids Activities, Martial Arts, Yoga", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "f76kKoakTyRAPc7n_Cy_lQ", + "name": "Gold Star Pizza", + "address": "1247 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9437933, + "longitude": -75.2109622, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BikeParking": "True", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "'no'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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:0" + } + }, + { + "business_id": "ebnrEK3yNKkZE_YMVWzlvg", + "name": "Philly Style Pizza and Grille", + "address": "2010 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9836883, + "longitude": -75.1571489, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza, Salad", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "SS5lCCRfSo2paVKr4NPR3w", + "name": "The Metropolitan Manayunk Hill", + "address": "450 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.043735, + "longitude": -75.23437, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Property Management, Apartments, Real Estate", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "ckF4SrqKfSm8ndr88on1dA", + "name": "Chart House", + "address": "555 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411270506, + "longitude": -75.1404787123, + "stars": 2.5, + "review_count": 352, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'dressy'", + "NoiseLevel": "u'average'", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "BYOBCorkage": "'yes_free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "CoatCheck": "False", + "HappyHour": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "Caters": "True" + }, + "categories": "American (Traditional), Restaurants, Event Planning & Services, Breakfast & Brunch, Seafood, Venues & Event Spaces, Steakhouses", + "hours": { + "Monday": "16:30-21:0", + "Tuesday": "16:30-21:0", + "Wednesday": "16:30-21:0", + "Thursday": "16:30-21:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "2KLhsaorC99JVZHJH_L6vQ", + "name": "A A Auto & Truck Repair", + "address": "2622 Parrish St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9712628, + "longitude": -75.1804736, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive, Commercial Truck Repair, Oil Change Stations", + "hours": null + }, + { + "business_id": "uT9nZ29p2j_YedmCZ7kLPw", + "name": "Burger King", + "address": "101 E Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.036396178, + "longitude": -75.1206855476, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Burgers, Fast Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "_SI5c972vgc9q4fQQ4CnhQ", + "name": "Tampopo 2", + "address": "719 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9487805, + "longitude": -75.1533257, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "SSXB1Op-UTpDz1q9X7wBYA", + "name": "Rite Aid", + "address": "5400 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.032071, + "longitude": -75.117653, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Shopping, Drugstores, Photography Stores & Services, Convenience Stores, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "Y4VVEMx5S7lRG3pZV0Emng", + "name": "Anthony Benedetto, DO", + "address": "1200 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9476269, + "longitude": -75.1609257, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Cosmetic Surgeons, Dermatologists, Doctors, Tattoo Removal, Medical Spas, Beauty & Spas", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "QIC0wRwWLGIU4Gf4DISx_A", + "name": "Convene CityView", + "address": "30 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522609795, + "longitude": -75.1695181985, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Real Estate, Home Services, Shared Office Spaces, Venues & Event Spaces, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "GM0uSApeGf191_sqWsn0FQ", + "name": "Walnut Room", + "address": "1709 Walnut St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950249, + "longitude": -75.169489, + "stars": 3.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Bars, Nightlife, Dance Clubs", + "hours": { + "Wednesday": "21:0-2:0", + "Thursday": "21:0-2:0", + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "yAXiqUXVDdzWAXMFAobuCQ", + "name": "Wheel Fun Rentals - Boathouse Row", + "address": "1 Boathouse Row", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9692544286, + "longitude": -75.1855453119, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Bike Rentals", + "hours": { + "Saturday": "0:0-0:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "x5uhYQd6SLIQtpZW7b4Lhw", + "name": "Gary J Gratton, DDS", + "address": "Med Arts Bldg St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499343533, + "longitude": -75.1675343513, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Health & Medical, General Dentistry", + "hours": null + }, + { + "business_id": "ZHXWdMiqsi3HwkLmSi_WgQ", + "name": "Buca di Beppo", + "address": "258 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9475882, + "longitude": -75.166371, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'" + }, + "categories": "Food, Italian, Restaurants", + "hours": { + "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-21:0" + } + }, + { + "business_id": "z6WgDl33P5MYAQ4DoD7Y2g", + "name": "ShopRite of Knorr Street", + "address": "6725 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0314038, + "longitude": -75.0513495, + "stars": 2.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "ByAppointmentOnly": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery, Delis, Restaurants, Bakeries", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "iC31UEOQJ5sumFohxV9S-Q", + "name": "Dr Ralph's Automotive Services Center", + "address": "5200 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0387582, + "longitude": -75.2409508, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Body Shops, Oil Change Stations, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "bK0j7YtVyN98UnM_8fUONg", + "name": "Tavern on Broad", + "address": "200 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 2.5, + "review_count": 282, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "True", + "Caters": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Bars, Sports Bars, Restaurants, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "p8a7isCgWuxwGGIsbmQSRg", + "name": "Ritz Camera", + "address": "Shops at Penn, 138 S 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533493, + "longitude": -75.1916736, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Photography Stores & Services", + "hours": null + }, + { + "business_id": "7NlcGz2E_pOs8y8N8rDR6Q", + "name": "Cafe Brysi", + "address": "233 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950592, + "longitude": -75.189408, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Juice Bars & Smoothies, Sandwiches, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2uUd8aUbZorepmwW3j3a4A", + "name": "Ann Taylor", + "address": "1713 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9501097, + "longitude": -75.1696874, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Shopping, Fashion, Women's Clothing, Accessories, Shoe Stores", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "iQSM26cnidO9d4O3jyq6rQ", + "name": "Petulia's Folly", + "address": "1710 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505843, + "longitude": -75.1693697, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Women's Clothing, Accessories, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "5FFLKjQfp0bJhfL-F9xfjQ", + "name": "Flaunt Fitness", + "address": "1939 S 17th St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9264831, + "longitude": -75.1739861, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Dance Schools, Education, Fitness & Instruction, Dance Studios, Specialty Schools, Active Life", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-13:0", + "Sunday": "13:0-16:0" + } + }, + { + "business_id": "FQrVCcAnpF6myMhnHCIOKA", + "name": "Arlene Mobile Notary", + "address": "122 S 58th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9590972, + "longitude": -75.2375713, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Notaries, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "Y-phVflbb6RjFCDPEH_DoA", + "name": "Geno's", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876046, + "longitude": -75.243157, + "stars": 2.0, + "review_count": 174, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': None}" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "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" + } + }, + { + "business_id": "S2ljhPVQb8wxIN98j0Stcw", + "name": "Tokio Sushi Bistro & Bed & Breakfast", + "address": "124 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419748, + "longitude": -75.1448595, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Bed & Breakfast, Hotels, Event Planning & Services", + "hours": null + }, + { + "business_id": "Co1VRgb5G32AvdKw8BoSmQ", + "name": "Burger Org", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952089, + "longitude": -75.1719899, + "stars": 2.5, + "review_count": 65, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DriveThru": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Restaurants, Burgers, Kosher", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "8dNfGGEffaWxGBAfHuKrNQ", + "name": "Thriveworks", + "address": "1800 John F Kennedy Blvd, Ste 1404", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9539914, + "longitude": -75.1699969, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Professional Services, Health & Medical, Psychologists, Life Coach, Counseling & Mental Health", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-18:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "x3jRG95AVMBFcxVovRwIRg", + "name": "Merkaz", + "address": "1218 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495994, + "longitude": -75.1613278, + "stars": 4.0, + "review_count": 89, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsTableService": "False", + "BYOB": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Restaurants, Middle Eastern, Breakfast & Brunch, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "PqpX_A4xhuuNteQpMQiViw", + "name": "Manhattan Bagel", + "address": "13032 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1246128461, + "longitude": -75.0155362487, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "AgesAllowed": "u'allages'" + }, + "categories": "Bagels, Restaurants, Breakfast & Brunch, Food, Sandwiches, Bakeries", + "hours": { + "Monday": "5:30-14:0", + "Tuesday": "5:30-14:0", + "Wednesday": "5:30-14:0", + "Thursday": "5:30-14:0", + "Friday": "5:30-14:0", + "Saturday": "5:30-14:0", + "Sunday": "5:30-14:0" + } + }, + { + "business_id": "z1d3dFsEJ8wXB2v0W97LFQ", + "name": "Wawa", + "address": "3300 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555454849, + "longitude": -75.1912390441, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Sandwiches, Fast Food, Convenience Stores, Restaurants, Food", + "hours": { + "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" + } + }, + { + "business_id": "MpRXQzRJICsw7MQ9KHf5wA", + "name": "Super Fresh", + "address": "7162 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0442130237, + "longitude": -75.2326685029, + "stars": 2.5, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "uuYanMLNJzdpaYB83szcEg", + "name": "Brickwall Tavern", + "address": "1213 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497989859, + "longitude": -75.1610815883, + "stars": 3.5, + "review_count": 67, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "GoodForDancing": "False", + "DogsAllowed": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': None, 'hipster': True, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "Smoking": "u'no'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "CoatCheck": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Bars, Nightlife, Sports Bars, Restaurants, American (Traditional), Beer Bar", + "hours": { + "Monday": "15:0-0:0", + "Tuesday": "12:0-2:0", + "Wednesday": "17:0-0:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "IkXqFVMhfFt46ANGagNQkQ", + "name": "Best Seasons Tailoring", + "address": "239 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565497, + "longitude": -75.1555079, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "0bNbWkKmVxJmJuOZCtG7OQ", + "name": "Hot Yoga West Philly", + "address": "4145 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563712, + "longitude": -75.2061225, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Active Life, Yoga, Pilates", + "hours": { + "Monday": "6:0-21:45", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-21:45", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-17:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "dJ6M_mkBIkKignlonnx9Xg", + "name": "Pastrami & Things", + "address": "1234 Market St, Ste Ll1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517001088, + "longitude": -75.1604664, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "NoiseLevel": "None", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BikeParking": "None", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "None", + "HasTV": "True", + "Alcohol": "None" + }, + "categories": "Delis, Cafes, Restaurants, Diners", + "hours": null + }, + { + "business_id": "_ov5rRq670KrEKNRE6fsRg", + "name": "Icon by The Scully Company", + "address": "1616 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949779, + "longitude": -75.168441, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "FonAdA9atQ7dqCkM0IF-AA", + "name": "Mario Brothers Pizza", + "address": "2224 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0484515, + "longitude": -75.0617877, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'loud'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "ILZ3hdPSOd65uq-iuC5w7Q", + "name": "Balcony At the Trocadero", + "address": "1003 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537058, + "longitude": -75.1565271, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "HasTV": "True" + }, + "categories": "Arts & Entertainment, Cinema, Music Venues, Nightlife", + "hours": null + }, + { + "business_id": "RHOr-bD5_YjbkvfzsdfKQQ", + "name": "Olivieri Jewelers", + "address": "2523 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9187552, + "longitude": -75.1706011, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "-U1GtVyd_kUo9a2P6pYFsQ", + "name": "L&H Bridal", + "address": "9355 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.083272, + "longitude": -75.037805, + "stars": 3.5, + "review_count": 74, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "None", + "DogsAllowed": "False" + }, + "categories": "Formal Wear, Bridal, Men's Clothing, Fashion, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "9A5Gw0At6so0x-vWM0_JZw", + "name": "Grindcore House", + "address": "1515 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929015, + "longitude": -75.1517365, + "stars": 4.5, + "review_count": 338, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Vegetarian, Food, Restaurants, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-13:30", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "meuJEg0lu0pSnSSPp9v4mw", + "name": "Philadelphia Police Department", + "address": "1 Franklin Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9556634, + "longitude": -75.1504502, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Police Departments, Public Services & Government", + "hours": null + }, + { + "business_id": "c3a5La0D2L51qXVE7DIJLg", + "name": "Spice End", + "address": "2004 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9518768, + "longitude": -75.173802, + "stars": 3.5, + "review_count": 302, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "False" + }, + "categories": "Fast Food, Halal, Ethnic Food, Indian, Restaurants, Specialty Food, Food", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "Jnu5uBn6ZHtQ-DAJIW8Ppg", + "name": "Vivint", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 1.0, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Security Systems, Home Automation", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "qHPGk86iCuRrX298x4kjmw", + "name": "Saladworks", + "address": "2946 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8997708, + "longitude": -75.2415253, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False" + }, + "categories": "Sandwiches, Salad, Wraps, Soup, Restaurants, Vegetarian", + "hours": { + "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" + } + }, + { + "business_id": "C8qLAGhE2UP3NgdShFuOPg", + "name": "Tiger Sugar", + "address": "122 North 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9542282, + "longitude": -75.1562308, + "stars": 4.0, + "review_count": 90, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False" + }, + "categories": "Desserts, Coffee & Tea, Food, Restaurants, Bubble Tea, Cafes", + "hours": { + "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" + } + }, + { + "business_id": "T2i2ZA2O0I8cp5CuRRO6KA", + "name": "Papa John's Pizza", + "address": "6000 North Broad", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.045112, + "longitude": -75.1442834, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "mVxWWmXD_kAH3yHHoM-zBg", + "name": "My Auto Dents", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9350642, + "longitude": -75.1516194, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Auto Detailing, Auto Repair, Body Shops", + "hours": null + }, + { + "business_id": "3NsTKp85H2FUjr1SURf0NQ", + "name": "Greenstreet Coffee Co.", + "address": "1101 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464884, + "longitude": -75.1595772, + "stars": 4.5, + "review_count": 190, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Cafes, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "zAHzitys-ncDZi0nVW_qsw", + "name": "Shan Chuan", + "address": "4211 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0091534, + "longitude": -75.1941271, + "stars": 4.0, + "review_count": 143, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True" + }, + "categories": "Japanese, Chinese, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "usnVlDYZz3p8cc-1PH7Ajg", + "name": "DASHED", + "address": "310 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969603, + "longitude": -75.131215, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Food, Do-It-Yourself Food, Food Delivery Services", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "W2uz4W76Kle3nggs9PFZkw", + "name": "Bombshell Hair Studio", + "address": "3421 Richmond St, Ste 109", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.985938, + "longitude": -75.095566, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Extensions, Beauty & Spas, Makeup Artists, Hair Salons", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "8JcdN89xv4AqAVRSDLLUHw", + "name": "D'Angelo's Ristorante Italiano", + "address": "256 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487291, + "longitude": -75.1744313, + "stars": 3.5, + "review_count": 163, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Restaurants, Italian, Bars, Lounges, Dance Clubs", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0" + } + }, + { + "business_id": "oGl-gsxNk0z15ucwlB3RcA", + "name": "O'Bento Sushi & Catering", + "address": "18 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953657, + "longitude": -75.179707, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "qHhnw9Jy8Gh9xxG-1aGTfg", + "name": "Chestnut Square", + "address": "3200 Chestnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953393, + "longitude": -75.1886942, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "University Housing, Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "VNpBZIPRiZezd2__s8xYzQ", + "name": "Capital Auto Auction", + "address": "5135 Bleigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0254575, + "longitude": -75.0265231, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Car Dealers, Car Auctions, Automotive, Shopping, Auction Houses", + "hours": { + "Monday": "9:0-16:30", + "Tuesday": "9:0-16:30", + "Wednesday": "9:0-16:30", + "Thursday": "9:0-16:30", + "Friday": "9:0-16:30" + } + }, + { + "business_id": "4d8p7qsNfWOxUxmjNXR5YQ", + "name": "Draught Horse Pub & Grill", + "address": "1431 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9789668964, + "longitude": -75.1589001341, + "stars": 3.0, + "review_count": 132, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True", + "GoodForDancing": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}" + }, + "categories": "Pubs, Bars, American (Traditional), Nightlife, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "gu7iuTiVwyPAI_S2fwVi9Q", + "name": "China House", + "address": "1430 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9787331, + "longitude": -75.1593343, + "stars": 3.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:30-23:30", + "Tuesday": "11:30-23:30", + "Wednesday": "11:30-23:30", + "Thursday": "11:30-23:30", + "Friday": "11:30-0:30", + "Saturday": "11:30-0:30", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "VENNs0SdMEh0JihNsgu0_w", + "name": "Brooklyn Industries", + "address": "1525 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498568, + "longitude": -75.1670466, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Men's Clothing, Women's Clothing, Fashion, Shopping", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "tX5ze34YKIpUpTA6a5Mxvg", + "name": "Bodyblast", + "address": "1628 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953813, + "longitude": -75.167972, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Trainers, Nutritionists, Health & Medical, Active Life", + "hours": { + "Monday": "5:30-21:30", + "Tuesday": "5:30-21:30", + "Wednesday": "5:30-21:30", + "Thursday": "5:30-21:30", + "Friday": "5:30-21:30" + } + }, + { + "business_id": "G4Fp73FQzy9U-PkYV0yZbg", + "name": "1500", + "address": "269 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9473792, + "longitude": -75.1662577, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "aGwdOeb8wI0IAoqSWBLa_w", + "name": "Christopher Auto Parts", + "address": "1141 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9347827, + "longitude": -75.1572983, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Parts & Supplies", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "ltGeqzKTXRzSoVfWaso6Hg", + "name": "H&R Block", + "address": "6185 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0354895095, + "longitude": -75.2170043439, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Accountants, Professional Services, Financial Advising, Tax Services", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "_8Wq8lh2uJoMTftYtNAC3w", + "name": "Saige Cafe", + "address": "1631 Wallace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9658027954, + "longitude": -75.1654511244, + "stars": 2.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Coffee & Tea", + "hours": null + }, + { + "business_id": "q2pyA_zUrp0t8d43jsA60A", + "name": "Streamline Property Management", + "address": "2301 Washington Ave, Ste 111", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9398974, + "longitude": -75.1819734, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Property Management, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Hr6LA4Tr2oAjCueASWexZQ", + "name": "Prestige Tree Service", + "address": "1101 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0191401, + "longitude": -75.0929222, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Local Services, Crane Services, Damage Restoration, Tree Services", + "hours": { + "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-16:0" + } + }, + { + "business_id": "BrAHIFFybT7Cr7wF1gXd1Q", + "name": "Julian Abele Park", + "address": "22ND And Montrose", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9411619, + "longitude": -75.1794706, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Dog Parks, Parks, Active Life", + "hours": null + }, + { + "business_id": "OHFLSDbEZAP65Cl0lHfmqg", + "name": "7-Eleven", + "address": "2300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9218111081, + "longitude": -75.1705437899, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "LwhIJDc8IZRtwg5h0fRQ9g", + "name": "Northeast Washer Service", + "address": "5804 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.01664, + "longitude": -75.0618159, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Appliances & Repair, Local Services", + "hours": null + }, + { + "business_id": "jvym_oYfZ38G4llygsUBhQ", + "name": "Venango Barbecue Restaurant", + "address": "1336 W Venango St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.007414, + "longitude": -75.1506845, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "BikeParking": "False", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': None}", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': None}" + }, + "categories": "Barbeque, Restaurants", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "GnGxFpM5--XNJAZRUyDnRQ", + "name": "Bill Nocella Auto Body", + "address": "1408 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9329327, + "longitude": -75.1691533, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Automotive, Auto Glass Services, Auto Repair, Windshield Installation & Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0" + } + }, + { + "business_id": "bdgRENPF17SYmEn2k5VPQA", + "name": "Linden Italian Market", + "address": "4011 Linden Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.054553, + "longitude": -75.0042264, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Corkage": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Delis, Restaurants, Sandwiches, Italian", + "hours": { + "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": "8:30-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "wqPvcBvJpwLDYQyBOStrew", + "name": "2100 Parkway Apartments", + "address": "230 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9586422, + "longitude": -75.1745778, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "UydC4Zx5N3TZBB1PfzWMMg", + "name": "Chick-fil-A", + "address": "9 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95077, + "longitude": -75.155038, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "HasTV": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fast Food, Restaurants, American (Traditional)", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "M1LnATu6z7kZp8QKMj-NoQ", + "name": "Kitch-n Collectibles", + "address": "6131 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0344978, + "longitude": -75.2159881, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Home & Garden, Antiques, Kitchen & Bath", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "H_RxcyZ-4N-Wg2baKMXdTg", + "name": "Bill's Family Pizza", + "address": "8200 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0432507085, + "longitude": -75.023849, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "BikeParking": "False" + }, + "categories": "Pizza, Italian, Food, Food Delivery Services, Restaurants", + "hours": { + "Monday": "0:0-0: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": "12:0-21:30" + } + }, + { + "business_id": "YinVjl_e8croGmeUK8hRkA", + "name": "Cheers Cafe", + "address": "2601 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9868416, + "longitude": -75.1010248, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "NPKPr3JP_OLwaOoz7KHV6Q", + "name": "Bryant Home Services", + "address": "1333 East Howell St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.037285, + "longitude": -75.089395, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC", + "hours": { + "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" + } + }, + { + "business_id": "jk-Id_QpkvkrplueKgP5Cg", + "name": "Ren's Auto", + "address": "4542 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487926, + "longitude": -75.2142432, + "stars": 4.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Repair, Automotive, Oil Change Stations, Body Shops", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "Kg0gJ_3lGToLjuXrLY12Ng", + "name": "Embassy Suites by Hilton Philadelphia Center City", + "address": "1776 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9564224, + "longitude": -75.1688989, + "stars": 2.5, + "review_count": 293, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "yRMwyKHYmZpwtoJ7alPz5w", + "name": "Casa Del Dolce", + "address": "8000 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0620775, + "longitude": -75.0563006, + "stars": 3.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Specialty Food, Restaurants, Food, Bakeries, Pasta Shops", + "hours": { + "Monday": "8:30-18:30", + "Tuesday": "8:30-18:30", + "Wednesday": "8:30-18:30", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "94s_AwUQmy41Dp3fslgdjA", + "name": "Culture Hair Studio", + "address": "7201 Germantown Ave, Ste 203", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0603944, + "longitude": -75.1910841, + "stars": 4.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Makeup Artists, Hair Removal, Waxing", + "hours": { + "Tuesday": "8:30-21:30", + "Wednesday": "8:30-21:30", + "Thursday": "8:30-21:30", + "Friday": "8:30-19:30", + "Saturday": "8:30-19:30" + } + }, + { + "business_id": "T_6e0SgNuKotySgVS8O1UQ", + "name": "Fond", + "address": "1537 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9298755856, + "longitude": -75.162953, + "stars": 4.5, + "review_count": 350, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "HappyHour": "True", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}" + }, + "categories": "American (New), Bars, Seafood, Restaurants, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "iAdQDTJmBJJ6RZ0h6AcxIQ", + "name": "Mixed Plate", + "address": "216-218 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412057, + "longitude": -75.1463399, + "stars": 2.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Vietnamese, Asian Fusion, Restaurants, American (New)", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0" + } + }, + { + "business_id": "jTeQqqBmFjEKIP2Arm5UvA", + "name": "Famous Dave's Bar-B-Que", + "address": "9763 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.085266, + "longitude": -75.023214, + "stars": 3.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Caters": "True", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Barbeque, Caterers, Restaurants, Event Planning & Services, American (Traditional), Comfort Food", + "hours": { + "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" + } + }, + { + "business_id": "TB8j9Vqv3zALHiqkLYZEOA", + "name": "Philadelphia Animal Hospital", + "address": "7401 Holstein Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.903044, + "longitude": -75.228621, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": null, + "categories": "Pet Groomers, Veterinarians, Pet Services, Pets", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "BKmgeFvSlSA-Eps1VcLBeg", + "name": "Matilda Hair Braiding", + "address": "2100 S Dorrance St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925222, + "longitude": -75.177318, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Extensions, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "Mkg2NAAsS_SWSLRgGbnM_w", + "name": "Modern Optometry", + "address": "3300 Grant Ave, Ste 21", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0678545, + "longitude": -75.0072162, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-18:0", + "Thursday": "8:0-16:0" + } + }, + { + "business_id": "7DHqc39fn_pfj68xNNv0RA", + "name": "Rizzio's General Auto Repair", + "address": "916 Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9317508, + "longitude": -75.1602384, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "zHsgyjMWWMyHTGsc2UjTlQ", + "name": "Shundeez Persian Restaurant", + "address": "8705 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077567, + "longitude": -75.209084, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Middle Eastern, Restaurants", + "hours": null + }, + { + "business_id": "eZ_ojItHwZ_u9iOgJDrHAA", + "name": "Pooch's Choice", + "address": "133 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515298, + "longitude": -75.1781751, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Groomers, Pet Services", + "hours": null + }, + { + "business_id": "45ClmqPAagmNvdUojFULZA", + "name": "sweetgreen", + "address": "3925 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9540571, + "longitude": -75.201033, + "stars": 3.5, + "review_count": 199, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True" + }, + "categories": "Diners, Vegetarian, American (Traditional), Soup, Restaurants, Vegan, Salad", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "OvPLQLLu2E0DmNgQn-NM1g", + "name": "Bella Vista Family Chiropractic", + "address": "826 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386694, + "longitude": -75.1571678, + "stars": 5.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Massage Therapy, Chiropractors", + "hours": { + "Monday": "15:0-19:0", + "Wednesday": "9:0-19:0", + "Friday": "15:0-19:0" + } + }, + { + "business_id": "uxZENO1iy7tz8MK77L3_GQ", + "name": "Black & Brew", + "address": "1523 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9302929, + "longitude": -75.1627686, + "stars": 4.0, + "review_count": 271, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "HappyHour": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Juice Bars & Smoothies, Bakeries, Bagels, Breakfast & Brunch, Food, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "R0xSejvyx-MaAu6DXS9Mlg", + "name": "Labcorp", + "address": "3700 Market St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.95608218, + "longitude": -75.1965788059, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Laboratory Testing, Diagnostic Services, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:30", + "Wednesday": "7:0-14:30", + "Thursday": "7:0-12:0", + "Friday": "7:0-14:30" + } + }, + { + "business_id": "qgfjq8YSs3sXK2SNcoaCXw", + "name": "Omega Optical", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547208, + "longitude": -75.1689532, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "AcceptsInsurance": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Eyewear & Opticians, Optometrists, Health & Medical", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-15:0" + } + }, + { + "business_id": "___UdvaxCnwsQ7nA1eKZAQ", + "name": "PHLASH", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9565961073, + "longitude": -75.1650238037, + "stars": 3.5, + "review_count": 41, + "is_open": 1, + "attributes": null, + "categories": "Buses, Hotels & Travel, Transportation", + "hours": { + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "PTn0hZz7BiP5T2muyoxrjQ", + "name": "Starbucks", + "address": "1301 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950962, + "longitude": -75.161904, + "stars": 2.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "wSBOPm5hzdhvRsgIHxraJw", + "name": "Avis", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955738, + "longitude": -75.182648, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": null, + "categories": "RV Rental, Hotels & Travel, Car Rental", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "Jm8OvNQy8PlXUroRmKE10Q", + "name": "Focus Barre & Yoga", + "address": "1923 Chestnut St, 2nd & Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952121, + "longitude": -75.1727556, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Fitness & Instruction, Active Life, Barre Classes, Trainers, Pilates, Yoga", + "hours": { + "Monday": "16:45-20:45", + "Tuesday": "16:45-19:30", + "Wednesday": "16:45-19:30", + "Thursday": "17:0-19:30", + "Friday": "16:0-18:15", + "Saturday": "8:30-12:0", + "Sunday": "15:30-17:15" + } + }, + { + "business_id": "xh9fJV5XKLpP9U8scDfq_g", + "name": "Cartel Used Auto Parts", + "address": "6330 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9139001, + "longitude": -75.2183699, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Local Services, Auto Parts & Supplies, Community Service/Non-Profit, Automotive, Car Buyers, Towing", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:30" + } + }, + { + "business_id": "VbeGA_Zf49WUPeFJ2VvQmQ", + "name": "Sarana Nails & Spa", + "address": "133 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9693163, + "longitude": -75.1373765, + "stars": 4.0, + "review_count": 170, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyelash Service, Beauty & Spas, Day Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "SGUk67Tp4AUwxjifu6HQ_A", + "name": "Richard Eidelson, DDS ,FAGD", + "address": "1048 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428672, + "longitude": -75.1600932, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Cosmetic Dentists, General Dentistry, Health & Medical, Dentists, Beauty & Spas, Doctors, Pediatric Dentists, Oral Surgeons", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "8:0-16:15", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-15:0", + "Saturday": "8:30-14:45" + } + }, + { + "business_id": "X0xPkEm_M8PRMKV2utBo5w", + "name": "Watch Co", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Watches", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "4_rG__MXy6Za6ZyI1v3Ucw", + "name": "Storage Squad - Philadelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 40.12, + "longitude": -75.01, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Couriers & Delivery Services, Packing Supplies, Professional Services, Home Services, Shopping, Movers, Local Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "kLX06Frn3dbA0Z8xkjKeOg", + "name": "TLA Video", + "address": "7630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0672082, + "longitude": -75.1973727, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Arts & Entertainment, Books, Mags, Music & Video, Music & DVDs, Videos & Video Game Rental", + "hours": null + }, + { + "business_id": "Z69P_L-gUbZpa6SQ57RuGg", + "name": "Jamaican D's", + "address": "1700 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9616110034, + "longitude": -75.166640635, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTableService": "False" + }, + "categories": "Caribbean, Food Stands, Ethnic Food, Specialty Food, Food, Restaurants", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-18:0" + } + }, + { + "business_id": "CJQWVGOAKm1l1dh1VrASVw", + "name": "Mestichelli Barnes Dental Associates", + "address": "1903 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926635, + "longitude": -75.168843, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Oral Surgeons, Health & Medical, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "10:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "7:0-15:0", + "Saturday": "8:30-14:0" + } + }, + { + "business_id": "arKiXax3ScSM_z3O-0CIyw", + "name": "Spasso Italian Grill", + "address": "34 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948706, + "longitude": -75.142687, + "stars": 4.0, + "review_count": 541, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "True", + "Caters": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "Smoking": "u'no'", + "HasTV": "True", + "CoatCheck": "False", + "BYOB": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': True, 'casual': None}", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "GoodForDancing": "False" + }, + "categories": "Sports Bars, Restaurants, Bars, American (Traditional), Seafood, Nightlife, Italian, Beer Bar", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "14:0-21:0", + "Friday": "11:30-23:0", + "Saturday": "15:0-23:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "MACqP6DlXBwTsXOhp0C6AA", + "name": "Delicious Boutique", + "address": "212 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9690166, + "longitude": -75.1330717, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Lingerie, Shopping, Fashion, Women's Clothing, Leather Goods, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-16:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "0vU_OcoHU_hcEfNTpDyOvA", + "name": "Dunkin'", + "address": "809 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401512167, + "longitude": -75.1658939306, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "CPdzdO7YuxFSUOWYhqthOA", + "name": "Dunkin'", + "address": "6191 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0355953, + "longitude": -75.2171163, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'free'", + "OutdoorSeating": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Donuts, Coffee & Tea, Restaurants", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "OXkiDUEj0wv17xOsUf6rLA", + "name": "Bario Neal", + "address": "524 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942217, + "longitude": -75.150812, + "stars": 4.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Customized Merchandise, Jewelry", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "7Bq927oiZRlEVMqQSNR0Lg", + "name": "McDonald's", + "address": "3137 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.001155, + "longitude": -75.152588, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Food, Burgers, Fast Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "5:0-4:0", + "Saturday": "5:0-4:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "z6AozFs7DVP8qssgdpusVQ", + "name": "Trade Winds Bed and Breakfast", + "address": "943 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9439233, + "longitude": -75.1582765, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Bed & Breakfast, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "Y6ML0aSyZilx1VXYRrl7qA", + "name": "Spruce Street Video", + "address": "252 S 12th St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9471112, + "longitude": -75.1611162, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "Alcohol": "'none'", + "NoiseLevel": "'quiet'", + "WheelchairAccessible": "False" + }, + "categories": "Videos & Video Game Rental, Books, Mags, Music & Video, Adult Entertainment, Nightlife, Shopping, Adult", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "YGVBacpj1YW4q69hlYKoVA", + "name": "Sonesta Philadelphia Rittenhouse Square", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525251125, + "longitude": -75.1697713137, + "stars": 3.0, + "review_count": 267, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "6nUXUDcTsEDwbRrqAMDzbA", + "name": "Thompson Plumbing & Heating", + "address": "2017 Brandywine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9645329, + "longitude": -75.1712785, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Plumbing, Home Services, Contractors, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:30-16:30", + "Tuesday": "8:30-16:30", + "Wednesday": "8:30-16:30", + "Thursday": "8:30-16:30", + "Friday": "8:30-16:30" + } + }, + { + "business_id": "HbE4woza8xPEE4UBnRAyTw", + "name": "BAYADA Home Health Care", + "address": "100 N 20th St, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9559992, + "longitude": -75.173052, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Home Health Care, Personal Care Services", + "hours": { + "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" + } + }, + { + "business_id": "Iyml-SRyWR_nY_r76wepRw", + "name": "Old City District", + "address": "231 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502865, + "longitude": -75.1447514, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Landmarks & Historical Buildings, Restaurants, Local Flavor, Public Services & Government", + "hours": null + }, + { + "business_id": "8ZN5M6bUQ_KWo8YbxYSVPA", + "name": "Cafe Vinh Long", + "address": "2230 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9208326, + "longitude": -75.1588256, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Sandwiches, Food, Restaurants, Vietnamese", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "1AjSLvf5nZAet1bTqAZCKA", + "name": "Billy Doc's", + "address": "840 E Lycoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0100794, + "longitude": -75.1105018, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "jdzJrYiK58yCmspyf5czBA", + "name": "BluePearl Pet Hospital", + "address": "1114 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932048, + "longitude": -75.146268, + "stars": 4.0, + "review_count": 190, + "is_open": 1, + "attributes": null, + "categories": "Pets, Urgent Care, Health & Medical, Veterinarians", + "hours": { + "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" + } + }, + { + "business_id": "eVblljyX3L9vMA1pIl1xUA", + "name": "Saigon nails", + "address": "4741 Frankford", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0176272, + "longitude": -75.0826336, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "None", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Nail Salons, Tanning, Body Shops, Automotive, Beauty & Spas", + "hours": { + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "Yy-7WGiJtGPfh8zNJyP-SA", + "name": "Public Storage", + "address": "2345 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9949052405, + "longitude": -75.0944450678, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "2JP04eeZhN1bRpMRUUypwA", + "name": "Skyline Stage At The Mann", + "address": "5201 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9834489, + "longitude": -75.2229283, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'beer_and_wine'", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True" + }, + "categories": "Music Venues, Nightlife, Arts & Entertainment", + "hours": null + }, + { + "business_id": "Hz40F0hsr4CIrHGHcRZ0Xw", + "name": "Salvation Army", + "address": "2140 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953684, + "longitude": -75.176601, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Used, Vintage & Consignment, Shopping, Fashion", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "KK4brg2RZ04k8K6lyv7aMw", + "name": "The Constitutional Walking Tour", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9538091035, + "longitude": -75.1490195255, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Walking Tours, Hotels & Travel, Cultural Center, Museums, Arts & Entertainment, Tours", + "hours": null + }, + { + "business_id": "QyO3mzrecPGE9bvH1oK2TQ", + "name": "Vantage", + "address": "1717 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9783456, + "longitude": -75.1536271, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, University Housing, Home Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "q9Pupuw6Z2b8WaYK-MGt4g", + "name": "Bluestone Lane", + "address": "1701 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9489487, + "longitude": -75.1695317, + "stars": 4.0, + "review_count": 302, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Caters": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Gluten-Free, Coffee & Tea, Breakfast & Brunch, Australian, Restaurants, Cafes, Food", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Friday": "7:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "AhPis4xBTX10ylpKnpoGYQ", + "name": "PhillyLiving Management", + "address": "311 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9461849, + "longitude": -75.1625185, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Real Estate, Home Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "ppEDJRsyGcFqBw10STGDqw", + "name": "Sheraton Suites Philadelphia Airport", + "address": "4101 B Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.890563284, + "longitude": -75.2315340866, + "stars": 2.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "NCVrquxH879vjXIZ3tme4Q", + "name": "C & C Nail & Spa", + "address": "9206 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0556931393, + "longitude": -75.0044506788, + "stars": 3.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Threading Services, Skin Care, Massage, Waxing, Hair Removal, Beauty & Spas, Nail Salons, Day Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "SYKy8Y_zDlsDuBoZsAckig", + "name": "Franco's Trattoria", + "address": "4116 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 40.007985, + "longitude": -75.1917269, + "stars": 3.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BYOBCorkage": "'no'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "dopAIKuvrnJhQOX1UhtOfQ", + "name": "Captain's Choice", + "address": "6900 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0333813086, + "longitude": -75.0488526872, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "H4weAR-oX0WjGdyU-tWvyw", + "name": "Super Spartan", + "address": "105 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950411, + "longitude": -75.161655, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pop-Up Restaurants", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "rWn5btW4MA4ep9y4aLTJrg", + "name": "Enterprise Car Sales", + "address": "2001 Byberry Rd, Ste 19", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1129161, + "longitude": -75.0039297, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Car Buyers, Used Car Dealers, Automotive, Auto Loan Providers, Car Dealers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "VlLstA6NxAW_jcDjjZYdow", + "name": "Soft Touch Car Wash", + "address": "6915 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0325894, + "longitude": -75.0476531, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Car Wash, Automotive", + "hours": null + }, + { + "business_id": "qxpllw12v4B2seew25aWVQ", + "name": "Odyssey Coffee Shop", + "address": "1816 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.960278, + "longitude": -75.169071, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "OutdoorSeating": "True" + }, + "categories": "Cafes, Breakfast & Brunch, Food, Restaurants, Coffee & Tea, Juice Bars & Smoothies, Creperies", + "hours": { + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "OIn7iAZY8viAubbjTiUuHg", + "name": "Lou's Wok", + "address": "3901 Conshohocken Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0041059, + "longitude": -75.2067652, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "wfMQGv1JYisUcYwGlNq9xg", + "name": "RiverLink Ferry System", + "address": "Coulmbus Blvd And Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9440860716, + "longitude": -75.1321510462, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Public Transportation, Local Flavor, Ferries, Transportation, Hotels & Travel", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-19:0", + "Sunday": "9:30-19:0" + } + }, + { + "business_id": "3qCsGKgXo7Cz-e_6m_lOCg", + "name": "Harry Potter Festival", + "address": "16 E Highland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0706957901, + "longitude": -75.2101517966, + "stars": 2.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Local Flavor, Festivals, Arts & Entertainment", + "hours": null + }, + { + "business_id": "RVKakBspkhIWQx7HRB_-1A", + "name": "Luxty Tans", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Waxing, Hair Removal, Tanning, Makeup Artists, Eyelash Service, Beauty & Spas, Spray Tanning", + "hours": null + }, + { + "business_id": "7Jb6fESUOwYtU2rEYu2aEA", + "name": "vybe urgent care", + "address": "3550 Market St, Ste 102", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955912, + "longitude": -75.194071, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Medical Centers, Walk-in Clinics, Urgent Care, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "3wxKriseiH9Isp5xmyBupw", + "name": "The Black Taxi", + "address": "745-747 N 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687445, + "longitude": -75.1782273, + "stars": 4.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "CoatCheck": "False", + "Smoking": "u'outdoor'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Nightlife, Irish, Irish Pub, Bars, Restaurants, American (New)", + "hours": { + "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": "9:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "C9Tz2xr7kozygfeGSb4GsA", + "name": "Koi", + "address": "604 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9612121, + "longitude": -75.1415708, + "stars": 3.5, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "wvNFqRE-zEb95tMHcl4Wjw", + "name": "Fountain Porter", + "address": "1601 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929485321, + "longitude": -75.1613769531, + "stars": 4.5, + "review_count": 187, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "Smoking": "u'no'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False" + }, + "categories": "Nightlife, Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "6RC9o2_I0B7GJxTVqK3I6A", + "name": "Forever Marble", + "address": "7339 Wissinoming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0256342, + "longitude": -75.0292367, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Building Supplies, Interior Design, Home & Garden, Home Services, Countertop Installation, Kitchen & Bath, Contractors", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "14:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "hAn4LQqalVYuPYuZJx5diA", + "name": "Nostalgia", + "address": "704 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407931, + "longitude": -75.151117, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Women's Clothing, Shopping, Men's Clothing, Antiques, Used, Vintage & Consignment, Fashion", + "hours": { + "Monday": "14:0-18:0", + "Wednesday": "14:0-18:0", + "Thursday": "14:0-18:0", + "Friday": "14:0-18:0", + "Saturday": "12:0-18:30", + "Sunday": "13:0-17:0" + } + }, + { + "business_id": "WdhlZkEL2iuTbYCk3KzHtw", + "name": "Domino's Pizza", + "address": "7325 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0522496, + "longitude": -75.0647038, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Pizza, Chicken Wings, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "prWF6l3ukkw0zLl3tl-V-g", + "name": "Pupuseria Sabor Latino II", + "address": "1446 E Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0100159853, + "longitude": -75.0983244372, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Latin American, Salvadoran, Live/Raw Food", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "TAjUu0R-Owhu0cFZ4R_I7Q", + "name": "Tree view cafe", + "address": "5501 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0349537, + "longitude": -75.12142, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Caters": "True", + "HappyHour": "False", + "HasTV": "True", + "RestaurantsDelivery": "None", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "Food, Burgers, Breakfast & Brunch, Coffee & Tea, Restaurants, Sandwiches", + "hours": { + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "1pDauBMngzqWG4ZTPMEY1Q", + "name": "Guacamole Mex-Grill", + "address": "4612 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9439712, + "longitude": -75.2099137, + "stars": 4.0, + "review_count": 118, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Restaurants, Specialty Food, Ethnic Food, Food", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0" + } + }, + { + "business_id": "VSVtG0BfSCRIZfo03VgHCQ", + "name": "William Street Common", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9549304, + "longitude": -75.2001318, + "stars": 3.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "RestaurantsDelivery": "False", + "CoatCheck": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Smoking": "u'no'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beer Gardens, Nightlife, Restaurants, American (Traditional), Cafes, Cocktail Bars, Bars, Arts & Entertainment, Event Planning & Services, Venues & Event Spaces, Music Venues", + "hours": { + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "HEn59vPykhJahGDtN0sGkw", + "name": "Stars and Stripes", + "address": "2129 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952758, + "longitude": -75.176684, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Home & Garden, Shopping, Women's Clothing, Shopping Centers, Men's Clothing, Home Decor, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "TrjdAJMdOVaSZcVxpM7qxw", + "name": "Cocos", + "address": "112 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949104, + "longitude": -75.154315, + "stars": 3.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Pubs, Nightlife, American (New), Bars", + "hours": { + "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" + } + }, + { + "business_id": "9ANZAxxwp-UAxqUo3KF9gg", + "name": "Hiroki", + "address": "1335 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9711852, + "longitude": -75.1352505, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "HappyHour": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': True, u'validated': False}", + "RestaurantsPriceRange2": "4", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Japanese, Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "QMq46Ld_zjI1YCLmYHYOyg", + "name": "Room 209", + "address": "209 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559214454, + "longitude": -75.1573189226, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Hair Stylists, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "BQnPRKxyevk7tnnkOGsVFw", + "name": "National Liberty Museum", + "address": "321 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94883, + "longitude": -75.146832, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Museums, Arts & Entertainment", + "hours": { + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "xHrDP1y4H-aCUtKKcjyWRQ", + "name": "Murray Brand Associates", + "address": "7524 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0391222, + "longitude": -75.0352808, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Medical Centers", + "hours": null + }, + { + "business_id": "WOOcxuvrZVBIi42xIY1EzA", + "name": "Mt Airy Breakfast & Lunch", + "address": "6709 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0521915, + "longitude": -75.185537, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HappyHour": "False", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-14:0", + "Saturday": "6:0-15:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "Dc0fpOkY-0e5TBAqPxTuvQ", + "name": "Vin Cafe", + "address": "1926 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9260573, + "longitude": -75.1681872, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Beer, Wine & Spirits, Arts & Entertainment, Wine Tasting Room, Food, Wineries", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "oOh-6phzxwq-nJAMT23urA", + "name": "Fuzion Grill and Social Club", + "address": "470 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9591356, + "longitude": -75.1418865, + "stars": 2.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Nightlife, Dance Clubs", + "hours": null + }, + { + "business_id": "OL82_w8EQhOiShaU9SlCMQ", + "name": "Paper Source", + "address": "1628 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497192, + "longitude": -75.1686947, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Crafts, Flowers & Gifts, Shopping, Cards & Stationery, Event Planning & Services, Art Supplies, Gift Shops", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "bmxstFxh3JFaEAyVz3P7ZQ", + "name": "Planned Parenthood", + "address": "1211 Chestnut St, Ste 405", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95076, + "longitude": -75.160713, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Diagnostic Services, Medical Centers, Health & Medical, Doctors, Obstetricians & Gynecologists, Laboratory Testing", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "9:30-17:0", + "Friday": "8:30-16:0" + } + }, + { + "business_id": "CxzaEZX7Zu8xHBqOBlzqFQ", + "name": "Koo Zee Doo", + "address": "614 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614226666, + "longitude": -75.1413424833, + "stars": 4.0, + "review_count": 156, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Caters": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': True, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Portuguese", + "hours": { + "Monday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "1pJPTjuNKieF3-Z8aMgSxA", + "name": "Ernie's Auto Body", + "address": "3804 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9601222, + "longitude": -75.1973311, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": null + }, + { + "business_id": "UiEv2cjyNN3igsE5kv0wCA", + "name": "Gryphon Cafe", + "address": "100 W Oxford St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9739016, + "longitude": -75.1348818, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Cafes, Food, Coffee Roasteries, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "MLJVuIFEEziEVdKuGo8q4w", + "name": "Matt & Marie's", + "address": "1107 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489623, + "longitude": -75.1593518, + "stars": 4.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True" + }, + "categories": "Restaurants, Delis, Sandwiches, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0" + } + }, + { + "business_id": "5okBjXkRm3pLHOC-W3a5zQ", + "name": "Poblano Pizza", + "address": "2101 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92185615, + "longitude": -75.1510984451, + "stars": 2.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "1RlXxjxXcWUEkyKzQQpUVg", + "name": "Michael A Feinstein, MD", + "address": "801 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9458942, + "longitude": -75.1548746, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Obstetricians & Gynecologists, Doctors", + "hours": null + }, + { + "business_id": "k1shNGktYpVZD8zYWsm6Rg", + "name": "Jiang's Hair Salon", + "address": "230 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9564357394, + "longitude": -75.155775547, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "lfsVFWNsb_fbeYQenBf-4Q", + "name": "Le Petit Cafe", + "address": "2400 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535678, + "longitude": -75.1793753, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "KoZqkus7q1RtPPu4HsjYUw", + "name": "The Philly Hair & Makeup", + "address": "718 N 3rd St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962919547, + "longitude": -75.1431587711, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Stylists, Hair Salons, Makeup Artists, Beauty & Spas", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "65tP-AYig5MuC2WIE3RA3g", + "name": "Grateful Plate", + "address": "167 Shurs Ln, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0236635, + "longitude": -75.2153043, + "stars": 5.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "ByAppointmentOnly": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Event Planning & Services, Professional Services, Life Coach, Food, Nutritionists, Health & Medical, Food Delivery Services, Personal Chefs, Caterers, Shopping, Arts & Crafts, Cooking Classes", + "hours": { + "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" + } + }, + { + "business_id": "rgSHLh2Le0Un82FDxbq0mg", + "name": "The Little Lion", + "address": "243 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948901, + "longitude": -75.145787, + "stars": 4.0, + "review_count": 494, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "HappyHour": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True" + }, + "categories": "American (New), Restaurants", + "hours": { + "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:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "RsQchuSMtpq8SyKkZMkVWA", + "name": "Pearl Theatre", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9779704, + "longitude": -75.1584557, + "stars": 2.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": null + }, + { + "business_id": "pXEzNp9xiyK62UuIxy-oIw", + "name": "Modern Eye", + "address": "145 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491822079, + "longitude": -75.161963703, + "stars": 4.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Eyewear & Opticians, Health & Medical, Optometrists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "tOauiBcg2nRlcNIrfRTKlA", + "name": "Superior Physical Therapy Inc.", + "address": "2547 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9181842952, + "longitude": -75.1709664403, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Physical Therapy, Health & Medical", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "5VZUxRosq6USLZ2EwMdfFw", + "name": "Shear Ingenuity", + "address": "7223 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9162164, + "longitude": -75.2200845, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Skin Care, Hair Extensions, Makeup Artists, Beauty & Spas, Hair Salons, Eyelash Service", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "n4MzcqzgzsK6ley5CGUKSA", + "name": "Nextstopmovers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Advertising, Movers, Professional Services, Local Services, Marketing, Junk Removal & Hauling", + "hours": { + "Monday": "7:0-17:30", + "Tuesday": "7:0-17:30", + "Wednesday": "7:0-17:30", + "Thursday": "7:0-17:30", + "Friday": "7:0-17:30", + "Saturday": "7:0-17:30", + "Sunday": "7:0-17:15" + } + }, + { + "business_id": "N--mu5BrcBUjTgIjn21ccw", + "name": "Sweet Memories Chocolates", + "address": "951 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9367906503, + "longitude": -75.1548025757, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Flowers & Gifts, Food, Specialty Food, Desserts, Shopping, Gift Shops, Chocolatiers & Shops", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "AiSO3VWSShZAZWAfo6NN0w", + "name": "Penn Medicine Department of Otorhinolaryngology", + "address": "811 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9460067, + "longitude": -75.1551944, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Ear Nose & Throat, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "SjTIuJ5o4fwppP1Wzrk_5A", + "name": "Roxborough Area Branch YMCA", + "address": "7201 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0456619263, + "longitude": -75.2320175171, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fitness & Instruction, Active Life, Gyms, Child Care & Day Care, Local Services", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "iCRYX4-coR7GYFtyy8qAnA", + "name": "M&G Deli", + "address": "100 S 60th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9603484, + "longitude": -75.2412965, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Breakfast & Brunch, Delis, Restaurants", + "hours": null + }, + { + "business_id": "sWv8M9khWppH09ZQucoFiw", + "name": "Mr. Wheelchair", + "address": "7932-34 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0413253668, + "longitude": -75.0283659, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'" + }, + "categories": "Mobility Equipment Sales & Services, Medical Supplies, Local Services, Elevator Services, Medical Centers, Home Health Care, Shopping, Health & Medical, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-14:0", + "Wednesday": "9:0-14:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0" + } + }, + { + "business_id": "qdh-HkVRCqqPghhLagfEpw", + "name": "Tavern 17", + "address": "220 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493449, + "longitude": -75.1695094, + "stars": 2.5, + "review_count": 92, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True" + }, + "categories": "Nightlife, Bars, Southern, Restaurants, American (New)", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-0:0", + "Wednesday": "16:30-1:0", + "Thursday": "16:30-1:0", + "Friday": "16:30-1:0", + "Saturday": "7:0-1:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "E07gZP3B_WiPhuBskcnHoA", + "name": "Athletes Movers", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8955293, + "longitude": -75.2283846, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Movers", + "hours": null + }, + { + "business_id": "25jhk4z4fejgRAoVBAo4nA", + "name": "Mary Pawpins", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.975641373, + "longitude": -75.1252740981, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Pet Sitting, Pet Services, Dog Walkers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "nkoAfHmdc-YeqX_iUcby6w", + "name": "Wendy's", + "address": "3200 Red Lion Rd Frnt 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080844, + "longitude": -74.99373, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "10:0-1:0", + "Tuesday": "10:0-1:0", + "Wednesday": "10:0-1:0", + "Thursday": "10:0-1:0", + "Friday": "10:0-1:0", + "Saturday": "10:0-1:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "6tggpq_s-TXqz_CfHV-umg", + "name": "Milo Restaurant", + "address": "3426 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0116848928, + "longitude": -75.1893296465, + "stars": 4.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "American (New), Food, Tacos, Desserts, Vegan, Mexican, Restaurants, Vegetarian", + "hours": { + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "x1p-knHTbmDIuhnbkuYT5g", + "name": "Nuts To You", + "address": "330 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.919842, + "longitude": -75.157674, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Candy Stores, Specialty Food, Fruits & Veggies", + "hours": null + }, + { + "business_id": "_ID5OUL42plmejjTAr-CzQ", + "name": "Ajw Jamaican and American Food", + "address": "4507 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0216616, + "longitude": -75.1481649, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Breakfast & Brunch, Caribbean, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "eqgkVnsf6WWqEZlm4xXtoQ", + "name": "Modify: The Hair Art Studio", + "address": "1701 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9408029, + "longitude": -75.1712094, + "stars": 4.5, + "review_count": 59, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': False, u'extensions': False, u'straightperms': False, u'coloring': False, u'kids': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Tlik-EshZIUhltgxFzzqBg", + "name": "Birdies Biscuits", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532743, + "longitude": -75.1591883, + "stars": 4.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bakeries, Event Planning & Services, Food, Caterers", + "hours": null + }, + { + "business_id": "33mZJBSmODz6LP0q0OB7qQ", + "name": "Wolgin Endodontic Group", + "address": "255 S 17th St, Ste 1806", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692883, + "stars": 5.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Endodontists, Dentists, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "ZMejgg0By-DI2wyQWezBbQ", + "name": "Ramen Bar", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9572977379, + "longitude": -75.1920437233, + "stars": 3.5, + "review_count": 343, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsDelivery": "True", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "HappyHour": "True" + }, + "categories": "Nightlife, Japanese, Restaurants, Bars, Sushi Bars, Ramen", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "NQeTyKDyVDdZYboSXXx_Nw", + "name": "Kouture Beauty Bar", + "address": "1830 Frankford Ave, Ste C2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9778157, + "longitude": -75.1314785, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Permanent Makeup, Eyelash Service, Beauty & Spas, Eyebrow Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "12:0-17:0", + "Saturday": "13:0-20:0" + } + }, + { + "business_id": "Q8vKIek2YD0MESa-9mttGw", + "name": "Steak Queen", + "address": "38TH And Locust Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9520779, + "longitude": -75.1955567, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Breakfast & Brunch, Food Stands, Sandwiches, Restaurants", + "hours": { + "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-16:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "AGHlStYf1vY6UFhZ5u7BHg", + "name": "Infusion Lounge", + "address": "16 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495449, + "longitude": -75.1438337, + "stars": 3.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "CoatCheck": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "Ambience": "None", + "ByAppointmentOnly": "False", + "Smoking": "u'yes'", + "RestaurantsReservations": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}" + }, + "categories": "Music Venues, Arts & Entertainment, Whiskey Bars, Cocktail Bars, Lounges, Dance Clubs, Hookah Bars, Bars, Nightlife", + "hours": { + "Wednesday": "20:0-2:0", + "Thursday": "20:0-2:0", + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "7uG4WyAMMyo2eI3uQnBTeg", + "name": "Holt's Cigar Company", + "address": "12270 Townsend Rd, Ste 1203", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.1032576, + "longitude": -74.9856243, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HasTV": "True" + }, + "categories": "Tobacco Shops, Cigar Bars, Shopping, Lounges, Nightlife, Bars", + "hours": { + "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": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "4MCemZet-mmfunhSqEdyEQ", + "name": "CVS Pharmacy", + "address": "7700 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0676, + "longitude": -75.1978, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True" + }, + "categories": "Drugstores, Food, Health & Medical, Convenience Stores, Shopping, Pharmacy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "-2-ih3mE8KPyeKVIzpBfPQ", + "name": "SkyGarten", + "address": "1717 Arch St, Fl 51, Three Logan Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9553097, + "longitude": -75.1692673, + "stars": 3.5, + "review_count": 109, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "HasTV": "True", + "CoatCheck": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "WheelchairAccessible": "True", + "OutdoorSeating": "True" + }, + "categories": "American (Traditional), Bars, Restaurants, Nightlife, Beer Gardens", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "YhRL2xPS-y2h90D2L4jKBQ", + "name": "Philadelphia Scooters", + "address": "2501 Wharton St, Unit G", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9366963, + "longitude": -75.1861381, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Motorcycle Dealers, Shopping, Hobby Shops, Motorcycle Repair, Automotive", + "hours": { + "Tuesday": "12:30-18:30", + "Wednesday": "12:30-18:30", + "Thursday": "12:30-18:30", + "Friday": "12:30-18:30", + "Saturday": "12:30-17:0" + } + }, + { + "business_id": "Lj3EChqTZZxsP7E9hpLQ4A", + "name": "Hidden River Yarns", + "address": "4358B Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256781, + "longitude": -75.2242203, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Art Supplies, Knitting Supplies, Arts & Crafts, Art Classes, Education", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "jQLoPMoIck8H1FWHqHgcOg", + "name": "Rydon Auto Glass & Upholstery", + "address": "9909 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.097233, + "longitude": -75.030106, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Auto Repair, Auto Upholstery, Windshield Installation & Repair, Automotive, Body Shops, Auto Parts & Supplies, Auto Glass Services", + "hours": { + "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-14:0" + } + }, + { + "business_id": "WwrAYqe6L32B6rdHpAcGKg", + "name": "Express Power", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0390934, + "longitude": -75.064035, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Water Heater Installation/Repair, Electricians, Home Services, Shopping, Electronics", + "hours": { + "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" + } + }, + { + "business_id": "zql7T79U3psN2Jz8A6XERw", + "name": "The Halal Guys", + "address": "3816-36 Chestnut St, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.955207, + "longitude": -75.199809, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mediterranean, Middle Eastern, Halal", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "VJ2BIGD9Q-vyE960n-4-dA", + "name": "Philly Dog Spot", + "address": "1316 N 26th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.976237, + "longitude": -75.1785521, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Groomers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "zPtH-pEqte_D8RdnXhHlwA", + "name": "Speedy Automotive", + "address": "100 E Comly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0482103, + "longitude": -75.1074432, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Automotive, Auto Repair", + "hours": null + }, + { + "business_id": "Igfj3Cxs3LXB9xB0GEe9YQ", + "name": "Ponte Coffee House", + "address": "2319 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512805, + "longitude": -75.1792293, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Food, Bakeries, Coffee & Tea", + "hours": null + }, + { + "business_id": "QYBcLH0A7ZFO5-kMYxiloQ", + "name": "The Classic Lighting Emporium", + "address": "1105 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9678436, + "longitude": -75.134074, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Antiques, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "6tcFFccjwE4twLkrkqVLPg", + "name": "Ooh LaLa Salads", + "address": "1238 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9709196, + "longitude": -75.1569778, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "HasTV": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Salad", + "hours": { + "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" + } + }, + { + "business_id": "MB7P59nJRxLJi8zV8rIl7w", + "name": "The Lawn at LoveLuck", + "address": "1599 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953504011, + "longitude": -75.1658878908, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pop-Up Restaurants, Sandwiches, Burgers, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "szdH65mQam5lNncCfJLUwA", + "name": "13th Street Gourmet Pizza", + "address": "209 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9483979236, + "longitude": -75.162245775, + "stars": 2.5, + "review_count": 154, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "HasTV": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Monday": "16:0-4:0", + "Tuesday": "16:0-4:0", + "Wednesday": "16:0-4:0", + "Thursday": "16:0-4:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "12:0-4:0" + } + }, + { + "business_id": "FbuQkR42LQ-8AZINSD7FQQ", + "name": "Atlantic Tactical", + "address": "7970 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.031414, + "longitude": -75.0222368, + "stars": 2.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Arts & Crafts, Costumes, Uniforms, Guns & Ammo", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "-wwhD6SwDOJZlbZkHlIchQ", + "name": "Hummusology", + "address": "1112 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9475492, + "longitude": -75.1601183, + "stars": 4.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Mediterranean, Restaurants, Middle Eastern, Vegan, Vegetarian", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-21:0", + "Saturday": "10:30-21:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "EnhYC4spF4oWrYes-UvN3Q", + "name": "Liam's Auto Repair", + "address": "9236 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0469107, + "longitude": -74.9938959, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "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-15:0" + } + }, + { + "business_id": "UGlhUJCpRwhvUa8t1Gkr7w", + "name": "Beehive Thrift Shop", + "address": "7136 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0593706, + "longitude": -75.086255, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Thrift Stores, Shopping, Women's Clothing, Fashion", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "R1lpu5m2xtO4kuIol4729g", + "name": "Oak Lane Diner", + "address": "6528 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.052985, + "longitude": -75.1419413, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "UypZQjkKLWf6thQcEWk5vw", + "name": "LOFT", + "address": "1729 Walnut St At 18", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950328, + "longitude": -75.170259, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Fashion, Shopping, Accessories, Women's Clothing, Shoe Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "fyyUksDpNLaBQO22zPOqmg", + "name": "F.A.N.", + "address": "2472 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.983212, + "longitude": -75.1262905, + "stars": 5.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Accessories, Beauty & Spas, Shopping, Men's Clothing, Photographers, Event Planning & Services, Fashion, Women's Clothing, Hair Removal, Waxing, Hair Salons, Photography Stores & Services, Hair Stylists, Eyelash Service", + "hours": { + "Tuesday": "12:0-17:0", + "Wednesday": "13:0-18:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "s6It5dhPEdLeiaPSXEw6aw", + "name": "Piattino Oven Fired Pizza", + "address": "8000 Essington Ave, Terminal A - East", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8744, + "longitude": -75.242425, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Food Court", + "hours": null + }, + { + "business_id": "GXSLrw48fYWpLJ__fxJgZA", + "name": "Novi", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9628296, + "longitude": -75.1719117, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Italian, American (New)", + "hours": null + }, + { + "business_id": "guAhfvFNyye0Ufurb593GQ", + "name": "Walmart Supercenter", + "address": "2200 Wheatsheaf Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.999031, + "longitude": -75.0919578, + "stars": 1.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Grocery, Fashion, Shopping, Department Stores, Food, Discount Store, Electronics, Drugstores, Mobile Phones", + "hours": { + "Monday": "7:0-8:30", + "Tuesday": "7:0-8:30", + "Wednesday": "7:0-8:30", + "Thursday": "7:0-8:30", + "Friday": "7:0-8:30", + "Saturday": "7:0-8:30", + "Sunday": "7:0-8:30" + } + }, + { + "business_id": "TvWvHGaGBTdWLjB1WggQ3A", + "name": "Helix Motorsports", + "address": "4648 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0305205, + "longitude": -75.2303516, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Auto Parts & Supplies", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "F3WnAc9mYZNSnxgdg-jwtQ", + "name": "Plaza Artist Materials & Picture Framing", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537446664, + "longitude": -75.1882928721, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Art Supplies, Arts & Crafts, Shopping, Framing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "6v_pSY1dDcQtnTmpP3QrJg", + "name": "Congress Hall", + "address": "6TH Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948961, + "longitude": -75.150664, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "3pS39UtjbTGiz8oiSnSeuA", + "name": "Victor Hardwood Floors", + "address": "8207 Dorcas St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.069014, + "longitude": -75.061271, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Flooring, Refinishing Services, Home Services, Contractors", + "hours": { + "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": "9:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Vy9z5-Wf7-A9X9403eUzaQ", + "name": "June's Restaurant", + "address": "6338 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0595503, + "longitude": -75.1658815, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Breakfast & Brunch, Bagels, Restaurants", + "hours": { + "Monday": "5:30-14:30", + "Tuesday": "5:30-14:30", + "Wednesday": "5:30-14:30", + "Thursday": "5:30-14:30", + "Friday": "5:30-14:30", + "Saturday": "5:30-14:30" + } + }, + { + "business_id": "coIjWjcye5TWh56KkSwZVg", + "name": "Fiore's Steaks and Shakes", + "address": "2573 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9850526012, + "longitude": -75.1242153221, + "stars": 3.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Juice Bars & Smoothies, Food Stands, American (New), Steakhouses, Food, Restaurants", + "hours": { + "Monday": "11:0-23:30", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-2:30", + "Saturday": "11:0-2:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "NU6SW870hySW6jwbmE7YuA", + "name": "Just Salad", + "address": "3728 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951057, + "longitude": -75.1984762, + "stars": 3.5, + "review_count": 50, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "HappyHour": "True", + "Caters": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Vegetarian, Salad, Wraps", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0" + } + }, + { + "business_id": "SXkoApPclRGBUzMRg0iIFg", + "name": "Dragon City Restaurant", + "address": "923 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0449572, + "longitude": -75.0864603, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "14:0-22:0" + } + }, + { + "business_id": "RT2fWhDWXZvfXO9XOrXa6Q", + "name": "Bob's House of Crabs", + "address": "2933 W Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9973352, + "longitude": -75.1794707, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WiFi": "'free'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Food, Seafood, Restaurants, Specialty Food, Seafood Markets", + "hours": { + "Monday": "16:30-23:0", + "Tuesday": "16:30-23:0", + "Wednesday": "16:30-23:0", + "Thursday": "16:30-23:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:30-23:0" + } + }, + { + "business_id": "auL4FGFnrxb9u8H0-xSQJQ", + "name": "Cellular Express & Repair", + "address": "1801 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9389448, + "longitude": -75.1732623, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Mobile Phones, Local Services, IT Services & Computer Repair, Mobile Phone Repair, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "Gn04KrDDpvk97Z8MdTgqGg", + "name": "Frutta Bowls", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9626467303, + "longitude": -75.1718988884, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': None, 'valet': False}" + }, + "categories": "Breakfast & Brunch, Restaurants, Juice Bars & Smoothies, Food, Acai Bowls, Specialty Food, Health Markets, Fruits & Veggies, Coffee & Tea", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "9:0-15:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "WhBQ8L9NoQLSSjOslmDBnw", + "name": "Dom's Shoe Service", + "address": "46 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9524434, + "longitude": -75.1533214, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shoe Repair", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "VkMokNW-HLye5jc8_1l_vA", + "name": "Greensgrow Farms", + "address": "2501 E Cumberland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9781699, + "longitude": -75.1208563, + "stars": 4.5, + "review_count": 80, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "HappyHour": "False", + "DogsAllowed": "True" + }, + "categories": "Hotels & Travel, Food, Venues & Event Spaces, Home & Garden, Nurseries & Gardening, Tours, CSA, Event Planning & Services, Shopping, Christmas Trees, Community Service/Non-Profit, Local Services, Farmers Market", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-18:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "LsABs39yNN46P_qVqYloVg", + "name": "DejaVu Bar", + "address": "5929 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0418036, + "longitude": -75.1290898, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Bars, Korean, Nightlife, Karaoke, Restaurants", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-2:0" + } + }, + { + "business_id": "Al-uSQdPBdj8m-Y5CtlXEw", + "name": "Police and Fire Federal Credit Union", + "address": "7500 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0546417236, + "longitude": -75.0633392334, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "csgYAypi3sApguAnRplEcw", + "name": "Topstitch Boutique", + "address": "54 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9516431, + "longitude": -75.1454144, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Used, Vintage & Consignment, Fashion, Women's Clothing", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "pFILrIntfcOc6ekPd6m6lQ", + "name": "Sweet Elizabeth's Cakes", + "address": "4409 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0261483, + "longitude": -75.2249507, + "stars": 4.5, + "review_count": 102, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Desserts, Bakeries, Food", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "nCQnjq8uoY7YWGMwOxP2wA", + "name": "Arrow Drain Cleaning Service", + "address": "1813 E Cornwall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9979102, + "longitude": -75.1100571, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Plumbing, Contractors", + "hours": { + "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" + } + }, + { + "business_id": "OhbQMaBVv5TSJh5CdWpwiA", + "name": "American Picture Framing", + "address": "3821 Powelton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9597805, + "longitude": -75.1981847, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BusinessParking": "None", + "BikeParking": "True" + }, + "categories": "Framing, Arts & Crafts, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "PXWYIvRGnAcxWyPwvXbuDw", + "name": "MUTA Korean BBQ & Karaoke", + "address": "5501 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0350252, + "longitude": -75.1211984, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'yes'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "HappyHour": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "Alcohol": "'full_bar'" + }, + "categories": "Karaoke, Nightlife, Barbeque, Korean, Restaurants", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "G3PjjY-Ai1AEEA83TroSbQ", + "name": "Fusion Gyms", + "address": "505 Knorr St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0542945, + "longitude": -75.0896767, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Gyms, Active Life, Health & Medical, Physical Therapy", + "hours": { + "Monday": "5:0-5:0", + "Tuesday": "5:0-5:0", + "Wednesday": "5:0-5:0", + "Thursday": "5:0-5:0", + "Friday": "5:0-23:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "UrWsPqcJFlf5sGVRZzsuYw", + "name": "Dunkin'", + "address": "9834 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0931358, + "longitude": -75.0320455, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "DriveThru": "None", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Restaurants, Food", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "Yw4lUn9w3t1q7hVV8k0rEg", + "name": "Gordon Chevrolet", + "address": "6301 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0340707, + "longitude": -75.0698747, + "stars": 2.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Financial Services, Automotive, Used Car Dealers, Car Dealers, Auto Repair, Auto Parts & Supplies", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "CQgupIpIbkyiVLUEcMIRCA", + "name": "Beiler's Donuts", + "address": "3900 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954973, + "longitude": -75.200154, + "stars": 4.5, + "review_count": 231, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "WheelchairAccessible": "True", + "WiFi": "'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Coffee & Tea, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "6:30-19:0" + } + }, + { + "business_id": "KCFuMZja9iDK9vc0dW2O8g", + "name": "b.b.go", + "address": "20 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952504, + "longitude": -75.170393, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Korean, Asian Fusion", + "hours": null + }, + { + "business_id": "mUWEmh14ZgOoSXp24Twntg", + "name": "Manayunk Extended Stay", + "address": "3937 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0229532, + "longitude": -75.21429, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False" + }, + "categories": "Bed & Breakfast, Guest Houses, Hotels & Travel, Hotels, Event Planning & Services", + "hours": { + "Monday": "8:0-21:30", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "DAD2VbeD0Ea_sO_kJD3zoQ", + "name": "CrossFit Manayunk", + "address": "126 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0302439, + "longitude": -75.2288996, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Fitness & Instruction, Active Life, Interval Training Gyms, Boot Camps, Gyms, Trainers", + "hours": { + "Monday": "5:45-21:0", + "Tuesday": "5:45-21:0", + "Wednesday": "5:45-21:0", + "Thursday": "5:45-21:0", + "Friday": "5:45-21:0", + "Saturday": "9:0-11:0" + } + }, + { + "business_id": "SjC9Odzdp4KJvSj4_pOAsw", + "name": "Bain's Deli", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "Caters": "False", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Delis, Restaurants", + "hours": null + }, + { + "business_id": "ABLiI0CTHus4k718Ma3akA", + "name": "Philly Pet Care", + "address": "2818 Iseminger St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9145804, + "longitude": -75.1691879, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Dog Walkers, Pets, Pet Services, Pet Sitting", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "DbsVMg43LXjrOIWnLFOeZA", + "name": "Federal Beer Distributor", + "address": "1440 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9356735, + "longitude": -75.1687885, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "Q93hDbLqgCHx9l1zmP5Gcg", + "name": "Ivy Student Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.944936, + "longitude": -75.2450603, + "stars": 4.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Packing Supplies, Self Storage, Local Services, Shopping, Packing Services, Movers, Junk Removal & Hauling, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "rnuta1am6q927PookCxjbg", + "name": "Pernitsky's Bar", + "address": "980 N Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9680335, + "longitude": -75.1445711, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "6--iHtWocVDQnQhg2DiJiA", + "name": "Empire Beauty School", + "address": "1522 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510220729, + "longitude": -75.1666250825, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Barbers, Hair Salons, Specialty Schools, Education, Beauty & Spas, Cosmetology Schools", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "raSL4fsUyZHUNMH6kTfPFw", + "name": "Astan African Hair Braiding", + "address": "5440 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9604627, + "longitude": -75.2303924, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:45-17:0", + "Tuesday": "8:45-17:0", + "Wednesday": "8:45-17:0", + "Thursday": "8:45-17:0", + "Friday": "8:45-17:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "vLrX2e0GSSiHiOeWDgmiPw", + "name": "Primo Pizza", + "address": "2563 Trenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9831195, + "longitude": -75.1230224, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "qBlNMB4wo_NZuNM3R6t9cQ", + "name": "Fresh Tortillas", + "address": "8340 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0691393, + "longitude": -75.0518078, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "HasTV": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:15" + } + }, + { + "business_id": "SoM-2gv5PUeG3EIQhQ_ZWQ", + "name": "Ou Salon", + "address": "2323 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675685, + "longitude": -75.1761298, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Waxing, Hair Salons, Beauty & Spas, Eyebrow Services, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-15:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "lDP3TVmXpAk2JU_W0siPuw", + "name": "Goorin Bros.", + "address": "1427 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9496999, + "longitude": -75.1653115, + "stars": 5.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Hats, Shopping, Fashion", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "7bazkBTM2ozq65IDmke5yA", + "name": "San Somosa", + "address": "1214 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9489108, + "longitude": -75.161268, + "stars": 2.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForKids": "False" + }, + "categories": "Indian, Restaurants", + "hours": null + }, + { + "business_id": "oU-vzdE38Nk6gAr4yDy6ew", + "name": "Crumbs Bake Shop", + "address": "133 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505935, + "longitude": -75.1703331, + "stars": 2.5, + "review_count": 54, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Coffee & Tea, Bakeries", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "-yxOY_fhwp4uss-8rGTGcA", + "name": "Cookie's Bar", + "address": "2026 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9223804, + "longitude": -75.1511078, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True" + }, + "categories": "American (Traditional), Nightlife, Restaurants, Bars", + "hours": null + }, + { + "business_id": "Hwma6sNctoesQzcRsN8CSA", + "name": "Rocky Yo-Mo's Christmas Trees", + "address": "1000 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9334267, + "longitude": -75.146274, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Christmas Trees, Shopping", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "nIAbuktMEzVjT4P9pG89rQ", + "name": "Buddakan", + "address": "325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489186, + "longitude": -75.1471667, + "stars": 4.0, + "review_count": 1561, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Corkage": "True", + "Caters": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "BYOBCorkage": "'yes_corkage'", + "RestaurantsAttire": "'dressy'", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsCounterService": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Asian Fusion, Chinese", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-20:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "zAl8dPJnqEmyImoluzXOeA", + "name": "Coopers Sports Bar", + "address": "100 W Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.021576945, + "longitude": -75.1246396529, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "BikeParking": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Nightlife, Food, Hookah Bars, Bars, Sports Bars", + "hours": null + }, + { + "business_id": "zVoivXO64KO9-4UQlMhoPA", + "name": "The Weave Bar", + "address": "5603 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0353506, + "longitude": -75.1736676, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons, Blow Dry/Out Services, Hair Extensions", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "eblnR1cQsR_aeUkNu38VkA", + "name": "Lovers & Madmen", + "address": "28 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9563117, + "longitude": -75.2022724, + "stars": 3.5, + "review_count": 132, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Food, Breakfast & Brunch, Coffee & Tea, Sandwiches", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "BWdDR_4lWAE6uloubO0oZw", + "name": "Ruby Buffet", + "address": "1100 S Columbus Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932169, + "longitude": -75.1445882, + "stars": 3.0, + "review_count": 209, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants, Food, Sushi Bars, Buffets", + "hours": { + "Monday": "12:0-21:30", + "Tuesday": "12:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "afx4op2BUIOlQGNYZoYRKA", + "name": "Blink Fitness - Academy Road", + "address": "8914 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0518475927, + "longitude": -75.0107678315, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Gyms, Active Life, Fitness & Instruction, Cardio Classes, Trainers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-22:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "F9okYgOCbG_zydC3WJkB5A", + "name": "Midtown IV Restaurant", + "address": "2013 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9522506, + "longitude": -75.1740289, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "2gDkEvBPkl-ATS_eqaMvxQ", + "name": "La Nonna", + "address": "214 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94117, + "longitude": -75.146112, + "stars": 4.5, + "review_count": 160, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "Caters": "True", + "Alcohol": "u'none'", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "CoatCheck": "False", + "HappyHour": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BikeParking": "True", + "DogsAllowed": "False", + "WiFi": "u'free'", + "BYOB": "True", + "OutdoorSeating": "False", + "Corkage": "False", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Salad, Nightlife, Comfort Food, Pasta Shops, Italian, Bars, Restaurants, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-21:30" + } + }, + { + "business_id": "m3yoaIO2ulbRs4kUX6GS9w", + "name": "Haggerty Deli", + "address": "4528 Wilde St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0291676, + "longitude": -75.2255949, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Convenience Stores, Food, Restaurants, Delis", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "1jpzmHp3tNwrRk8Sh_eV9g", + "name": "Sweet Pea", + "address": "2227 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944999, + "longitude": -75.179558, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Florists, Party & Event Planning, Event Planning & Services, Shopping", + "hours": null + }, + { + "business_id": "YE2sNvh9mOBQzPO6pWNnCA", + "name": "Fuji San", + "address": "10600 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.099462, + "longitude": -75.010352, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True" + }, + "categories": "Japanese, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0" + } + }, + { + "business_id": "OzX1w8NLyJtqs-nvnNX77Q", + "name": "Valerie Peoples Brow Art & Beauty", + "address": "1500 Walnut St, Ste MZ5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9489949, + "longitude": -75.1663033, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Eyebrow Services, Threading Services, Hair Removal", + "hours": null + }, + { + "business_id": "T2zC6Ri_p-mSvyEXMvkfKg", + "name": "Toyotomi Sushi Bar & Asian Cuisine", + "address": "1740 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.927428, + "longitude": -75.1637353, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "CNSvf0y2fXeOXF18hKxCNQ", + "name": "Tropical Sensation", + "address": "1441 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9246717859, + "longitude": -75.1711294251, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BYOB": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "Caters": "True", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Corkage": "False" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "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" + } + }, + { + "business_id": "AkfmeCeil7c8Pkv1YyTe1Q", + "name": "Pathmark of Germantown", + "address": "176 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.031638, + "longitude": -75.177909, + "stars": 1.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "P2XA2KKCsUaPEwzcQ4bgew", + "name": "Clutch", + "address": "417 N 8th St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9590475, + "longitude": -75.1515738, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Employment Agencies, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-13:0" + } + }, + { + "business_id": "OtMQXpDXdu0AndeLr2hJZw", + "name": "Criniti", + "address": "2611 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9178251, + "longitude": -75.1709144, + "stars": 4.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Caters": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Italian, Restaurants", + "hours": { + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "16:0-21:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "BgzHXdhg3_-sebztuk-KzA", + "name": "Ready To Nosh Food Tours", + "address": "1229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508655, + "longitude": -75.1613821, + "stars": 1.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Food, Food Tours, Specialty Food, Tours, Arts & Entertainment, Hotels & Travel, Wineries", + "hours": null + }, + { + "business_id": "0YaJvKyISJ74IrTqehgYdg", + "name": "Hair News", + "address": "6717 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0434356, + "longitude": -75.0731492, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30" + } + }, + { + "business_id": "hgyKTNWEP8eeTdUm61bUrw", + "name": "Champโ€™s Diner", + "address": "1539 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9792137, + "longitude": -75.1609908, + "stars": 4.0, + "review_count": 145, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "WiFi": "'free'", + "Corkage": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "NoiseLevel": "u'average'", + "BYOB": "True", + "HappyHour": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New), Diners, Salad, Breakfast & Brunch, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "7:0-14:15", + "Thursday": "7:0-14:15", + "Friday": "7:0-14:15", + "Saturday": "7:0-14:30", + "Sunday": "7:0-14:30" + } + }, + { + "business_id": "mNXfzN6L3GPJdUJXbSsmfw", + "name": "Pietro's Coal Oven Pizzeria", + "address": "121 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941209, + "longitude": -75.144858, + "stars": 4.0, + "review_count": 216, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Caters": "True", + "GoodForDancing": "False", + "RestaurantsTableService": "True" + }, + "categories": "Cocktail Bars, Restaurants, Salad, Bars, Nightlife, Italian, Pizza", + "hours": { + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "15:0-20:0", + "Sunday": "15:0-20:0" + } + }, + { + "business_id": "ijMJrlo8D_L4nD9uLtu_EQ", + "name": "Tae Hwa Kwan", + "address": "5201 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.030412, + "longitude": -75.131525, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Korean", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "yrO3kYVPv3vD5fsE7dcMWw", + "name": "Old English Style Pizza", + "address": "6015 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0429544, + "longitude": -75.1288188, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "13:0-23:0" + } + }, + { + "business_id": "t_ltOJlXvHU5ORRp9do8yw", + "name": "Toddy Longo's Barber Shop", + "address": "2313 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.921022, + "longitude": -75.1664515, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "M8YboG9FCmfYkmistnsckw", + "name": "Superb Locksmith Service", + "address": "841 S 59th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9479641607, + "longitude": -75.2414399, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "8:0-16:0", + "Sunday": "0:0-0:0" + } + }, + { + "business_id": "wjGV_sRxlhLKgvOBA8PhYQ", + "name": "Malbec Argentine Steakhouse", + "address": "400-402 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9430020477, + "longitude": -75.1451513171, + "stars": 4.0, + "review_count": 193, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "OutdoorSeating": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Caters": "True", + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "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}", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': None, 'classy': True, 'casual': None}", + "RestaurantsReservations": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}" + }, + "categories": "Restaurants, Beer, Wine & Spirits, Arts & Entertainment, Cocktail Bars, Argentine, Wineries, Food Delivery Services, Bars, Steakhouses, Wine Bars, Food, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-19:0" + } + }, + { + "business_id": "1yK2rBeQH8tFEcTgOQ9CUQ", + "name": "Ramada Philadelphia Southwest", + "address": "2033 Penrose Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19101", + "latitude": 39.9124758, + "longitude": -75.1840924, + "stars": 1.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": null + }, + { + "business_id": "r0c0vH7lfpy-Ozjo7R1sBA", + "name": "Rocky's Crystals & Minerals", + "address": "310 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9696686, + "longitude": -75.1312444, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Arts & Crafts, Flowers & Gifts, Gift Shops, Spiritual Shop, Shopping, Gemstones & Minerals", + "hours": { + "Monday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "yx31OWOldAFmgJ8PDzgMYQ", + "name": "Elixr Coffee Roasters at ICA", + "address": "118 S 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9541126, + "longitude": -75.1950918, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "KUq7seb8Fxz-Qz4fR0iDZQ", + "name": "Loosen Up Foot Spa & Body Massage", + "address": "2865 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0572262, + "longitude": -75.0301515, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Tui Na, Traditional Chinese Medicine, Massage Therapy, Massage, Beauty & Spas, Reflexology", + "hours": { + "Monday": "10:0-21:30", + "Tuesday": "10:0-21:30", + "Wednesday": "10:0-21:30", + "Thursday": "10:0-21:30", + "Friday": "10:0-21:30", + "Saturday": "10:0-21:30", + "Sunday": "10:0-21:30" + } + }, + { + "business_id": "pWzrmh1oiU9ngWXGHKnnwQ", + "name": "Down Home Diner", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530183899, + "longitude": -75.1594000959, + "stars": 3.0, + "review_count": 362, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "GoodForMeal": "{u'breakfast': True, u'brunch': None, u'lunch': True, u'dinner': False, u'latenight': False, u'dessert': False}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, American (New), Breakfast & Brunch, Diners", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Opw3d4y5_zlXZGimCQXalQ", + "name": "Jerusalem Furniture", + "address": "1509 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0061335, + "longitude": -75.0979201, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Home & Garden, Furniture Stores, Mattresses", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "E7U4a5XlMpO6l90ruuypQg", + "name": "Termini Bros Bakery", + "address": "1538 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9114220868, + "longitude": -75.1752207631, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Food", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "Nfd_z0TSCxQL4gEG19apUw", + "name": "Louis' Tag Agency", + "address": "1601 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9124518, + "longitude": -75.1754147, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Automotive, Local Services, Registration Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "Wg6vzw8fzA-YLfGBn1IqKA", + "name": "Art Museum Veterinary Center", + "address": "1710 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9669711, + "longitude": -75.1658245, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Veterinarians, Emergency Pet Hospital, Pet Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "rgi47E4VY0jdatSo8Oeotg", + "name": "China Gate", + "address": "3822 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.064198, + "longitude": -74.9867884, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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:30-22:0" + } + }, + { + "business_id": "Nm8GubTOT27tS2e9XCMATw", + "name": "PhillyCreditMechanic", + "address": "2930 Jasper St, unit 311", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9925917, + "longitude": -75.1180967, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Debt Relief Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "L1xIj8vAvZrZdfEVbH4qTg", + "name": "Southside Pizzeria", + "address": "917 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9404037, + "longitude": -75.1758562, + "stars": 2.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BusinessParking": "None" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "CEnTv6oyopMJZHmC7QRgqA", + "name": "Verizon", + "address": "3631 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535699631, + "longitude": -75.1964846952, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Mobile Phones, Professional Services, Internet Service Providers, Electronics, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "lmn-S6L0JAi5bEput83j6w", + "name": "Delicatessen", + "address": "703 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495193, + "longitude": -75.152609, + "stars": 4.0, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'" + }, + "categories": "Breakfast & Brunch, Delis, Restaurants, Bagels, Food, Sandwiches", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "364evEyxJdNqjbJN-CiANA", + "name": "Nelsonโ€™s Auto Tag", + "address": "117 N 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537406043, + "longitude": -75.1526130703, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Notaries, Local Services, Registration Services", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:30-16:0", + "Wednesday": "8:30-16:0", + "Thursday": "8:30-16:0", + "Friday": "8:30-16:0", + "Saturday": "8:30-16:0" + } + }, + { + "business_id": "kvRjzneD1FWh4Szb-trL4A", + "name": "McDonald's", + "address": "22 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9683247686, + "longitude": -75.1356663555, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'very_loud'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "DriveThru": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Caters": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}", + "WiFi": "u'free'", + "RestaurantsTableService": "True" + }, + "categories": "Coffee & Tea, Food, Fast Food, Restaurants, Burgers", + "hours": { + "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" + } + }, + { + "business_id": "qYREpGOZQ_Xio8Vo-a0TmQ", + "name": "SPIN - Philadelphia", + "address": "211 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491828858, + "longitude": -75.165957, + "stars": 4.0, + "review_count": 113, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "Smoking": "u'no'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "NoiseLevel": "'loud'", + "CoatCheck": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "None", + "BikeParking": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Restaurants, Nightlife, Cocktail Bars, Bars, American (Traditional), American (New), Sports Bars, Active Life, Sports Clubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "14:0-0:0" + } + }, + { + "business_id": "5tK4y67IUn3eDd3S1bka9Q", + "name": "DnA Salon", + "address": "1109 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671926758, + "longitude": -75.1410746316, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Barbers, Beauty & Spas, Day Spas, Makeup Artists, Blow Dry/Out Services, Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "bjPUhanWoinHi2kywvVzBA", + "name": "Mercato BYOB", + "address": "1216 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464996, + "longitude": -75.1617652, + "stars": 4.0, + "review_count": 709, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "Corkage": "False", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "False", + "BYOB": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "WheelchairAccessible": "False" + }, + "categories": "Italian, Mediterranean, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "XoX8Erg2hrLdpqfIA468RA", + "name": "4th Street Cafe", + "address": "213-217 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9546524, + "longitude": -75.1461131, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Food Delivery Services, Cafes, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "XdwaaNJ9VyCdUjuIDe8j2Q", + "name": "Picnic", + "address": "3131 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9524388, + "longitude": -75.1873387, + "stars": 4.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'" + }, + "categories": "American (New), Restaurants, Caterers, Sandwiches, Event Planning & Services", + "hours": { + "Monday": "7:0-19:30", + "Tuesday": "7:0-19:30", + "Wednesday": "7:0-19:30", + "Thursday": "7:0-19:30", + "Friday": "7:0-19:30", + "Saturday": "7:0-18:0" + } + }, + { + "business_id": "S1FwTmCAwv5ulu5gToWi_w", + "name": "RIM Cafe", + "address": "1172 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9343869, + "longitude": -75.1589957, + "stars": 4.5, + "review_count": 290, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Specialty Food, Food, Restaurants, Desserts, Gelato, Chocolatiers & Shops, Coffee & Tea", + "hours": { + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-23:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "QVu5RffO04nc7JWT8pqlQw", + "name": "Nan Yang Asian Cuisine", + "address": "932 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95517, + "longitude": -75.15551, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "True" + }, + "categories": "Thai, Restaurants, Singaporean, Malaysian, Asian Fusion", + "hours": { + "Monday": "11:0-2:0", + "Wednesday": "11:0-2:0", + "Thursday": "11:0-2:0", + "Friday": "11:0-4:0", + "Saturday": "11:0-4:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "u07nfOfotr2ocrIs2nsKDQ", + "name": "Snow White Restaurant", + "address": "200 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949705, + "longitude": -75.143915, + "stars": 2.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "XEkRy7Y1_7hSuPbMS7bIrw", + "name": "Speedy Lube", + "address": "1236 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9388315, + "longitude": -75.1977186, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": null, + "categories": "Oil Change Stations, Automotive", + "hours": null + }, + { + "business_id": "TR7sgyAkhkngk-GLjQuavg", + "name": "Gamarjoba", + "address": "13033 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1243775714, + "longitude": -75.0146394361, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': True, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': True, u'validated': False}", + "HasTV": "False", + "DriveThru": "False", + "BYOB": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "BikeParking": "False", + "RestaurantsTableService": "True" + }, + "categories": "Georgian, Restaurants, Russian", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "wYmOLW9oiuwPbk0H9u5_UA", + "name": "Gennaro's Pizza", + "address": "1315 Bainbridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426879883, + "longitude": -75.1640777588, + "stars": 3.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants, Food", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "K0Dmo9rw5K7KOaas4I9c9g", + "name": "Jus Roz Multicultural Hair Salon", + "address": "130 S 45th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558433, + "longitude": -75.2117345, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Hair Salons, Hair Stylists, Cosmetics & Beauty Supply, Hair Extensions, Shopping, Waxing, Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "WsRGsuPeb2Oom5gNOg4ZqA", + "name": "Bistro 870 Restaurant & Lounge", + "address": "6100 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9707499232, + "longitude": -75.2411301434, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Bars, Nightlife, Restaurants, Southern, Soul Food, Lounges, Breakfast & Brunch, Buffets", + "hours": { + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-22:0", + "Saturday": "18:0-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "ZsU4UDadMyXVH45YGn1dTg", + "name": "Allegheny Family Chiropractic Center", + "address": "2514 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.98657, + "longitude": -75.1050461, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "15:0-19:0", + "Saturday": "8:0-23:0" + } + }, + { + "business_id": "H1tnsLls7c6hOzZHGN1N2g", + "name": "South Philly Propane", + "address": "2438 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9381903, + "longitude": -75.184702, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Propane, Safety Equipment, Shopping", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "7:0-14:0" + } + }, + { + "business_id": "9mA9qYqiv4c0T9ASid3PIQ", + "name": "The Capital Grille", + "address": "1338-46 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506134672, + "longitude": -75.1636080327, + "stars": 4.0, + "review_count": 634, + "is_open": 1, + "attributes": { + "Caters": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'dressy'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "WiFi": "u'free'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "3", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "BusinessParking": "None", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}", + "CoatCheck": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood, Restaurants, Wine Bars, American (Traditional), Italian, Steakhouses, Bars, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "16:30-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "xdin_ROmRZPlLhqv_hsUmw", + "name": "La Pearl Beauty Emporium Inc", + "address": "3857 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9616491, + "longitude": -75.1991091, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Hair Extensions, Health & Medical, Hair Stylists, Blow Dry/Out Services, Hair Salons, Eyelash Service, Hair Loss Centers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "1GawRltBBRlfZyVo4znu7g", + "name": "Oxford Circus", + "address": "8127 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072969, + "longitude": -75.202143, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Toy Stores", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "MnipZwr1qWli0iqtb3GMTA", + "name": "The Make-Up Bar", + "address": "264 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485528, + "longitude": -75.1744502, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Makeup Artists, Beauty & Spas, Skin Care", + "hours": { + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "kXrecq_uPeXK9RdoNgiBFA", + "name": "Pinkberry", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8944765531, + "longitude": -75.2294328362, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Desserts", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "pP_jeWrWq-lvMitmkM2Gkw", + "name": "BurgerFi", + "address": "1200 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535213, + "longitude": -75.1597442, + "stars": 3.0, + "review_count": 502, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'beer_and_wine'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "DriveThru": "False" + }, + "categories": "Burgers, Ice Cream & Frozen Yogurt, Food, Hot Dogs, Restaurants, American (New), American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "raHciir1e_YjipSBSqcZKA", + "name": "Main Street Market", + "address": "4345 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256619, + "longitude": -75.223529, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food Delivery Services, Food, Bakeries, Grocery", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "RFo876v_A63N2JfOTq1p-g", + "name": "Artisan Boulanger Patissier", + "address": "1648 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9288926, + "longitude": -75.1651265, + "stars": 4.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "dMGtqC5xKVXB_y9OfsJmHQ", + "name": "WKDU Philadelphia 91.7 FM", + "address": "3210 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535466, + "longitude": -75.1884481, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations", + "hours": null + }, + { + "business_id": "5sftmmjQ6Ln94-qQuGfmww", + "name": "Chinese Lantern Festival", + "address": "6TH And Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9546873, + "longitude": -75.1495017, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Festivals, Arts & Entertainment", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "6:0-22:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "9cKsMBNhLCEgpHWcOHpC8A", + "name": "Pearl Art & Craft Supplies", + "address": "417 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417086, + "longitude": -75.1497892, + "stars": 3.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Art Supplies, Arts & Crafts", + "hours": null + }, + { + "business_id": "twvi2Q6Wlc7EK25CCEJEHQ", + "name": "Titan Auto Tags & Insurance", + "address": "533 B Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961703, + "longitude": -75.147671, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Departments of Motor Vehicles, Local Services, Registration Services, Public Services & Government, Insurance, Notaries, Automotive, Financial Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "cV1tmaAsNhyM9vBJTGousg", + "name": "Canine Clippers", + "address": "4347 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262475, + "longitude": -75.2231998, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Sitting, Pet Groomers, Pets", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "u8obfXw9qHxYv16Zyb-jNQ", + "name": "Tri-State Public Adjusters", + "address": "2516 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9194031097, + "longitude": -75.1530808094, + "stars": 1.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Damage Restoration", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "DiFP6DoPZTFdGtArLF3YCQ", + "name": "ACME Markets", + "address": "6601 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0357819, + "longitude": -75.0625232014, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Drugstores, Shopping, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "tPqKzAu8DAKfONM4jXxj1Q", + "name": "Rittenhouse Psychic Readings by Mrs. Lena", + "address": "2041 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508519, + "longitude": -75.1752167, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Arts & Entertainment, Psychics, Supernatural Readings", + "hours": null + }, + { + "business_id": "ApUR_5HxygYoSXgJU2TLHw", + "name": "Blue Design Hair Salon", + "address": "527 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935177, + "longitude": -75.153261, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "e2XHZiaN6tSQn6xY8zgktg", + "name": "TSA Checkpoint A East - Philadelphia International Airport", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8771354, + "longitude": -75.2406682, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Airports, Hotels & Travel, Airport Terminals", + "hours": null + }, + { + "business_id": "ZUI1uvefVj94JLE1kIfAmA", + "name": "Glamour Hair Salon", + "address": "1900 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-16:30" + } + }, + { + "business_id": "1vPSY4EA-fTRIZYz1Ruzow", + "name": "K'Far Cafe", + "address": "110 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951593, + "longitude": -75.172171, + "stars": 4.5, + "review_count": 356, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': True, 'trendy': None, 'upscale': None, 'classy': True, 'casual': None}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "HasTV": "False" + }, + "categories": "Bakeries, American (Traditional), Mediterranean, Food, Restaurants, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "RSnJE62UUBttxJCHQY6FBA", + "name": "Go Go Philly Movers", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9678186954, + "longitude": -75.1754615701, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "9rdEIoILba8wSZcrTLFzNA", + "name": "Vegan Tree", + "address": "742 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942221, + "longitude": -75.1552346, + "stars": 4.0, + "review_count": 195, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Caters": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "Bakeries, Bubble Tea, Food, Vegan, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "14:0-21:0" + } + }, + { + "business_id": "11x7dlRp4ACo3tnYnHZMaA", + "name": "China Pagoda", + "address": "701 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512937, + "longitude": -75.1526227, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "JP4jIbkthYZVKJCvMiZUDw", + "name": "Zinc", + "address": "246 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9472244, + "longitude": -75.1594421, + "stars": 4.0, + "review_count": 111, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, French", + "hours": { + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "cZwhdOCpa84XrpLQREOtaA", + "name": "Nava Yoga Center", + "address": "1200 Constitution Ave, Ste 220", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19112", + "latitude": 39.891398, + "longitude": -75.172019, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pilates, Physical Therapy, Yoga, Fitness & Instruction, Health & Medical, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-19:30", + "Wednesday": "6:0-19:30", + "Thursday": "6:0-19:30", + "Friday": "6:0-19:30", + "Saturday": "10:0-12:0" + } + }, + { + "business_id": "adk0GvKoi0Z9XxJE1EWi4g", + "name": "Make Me Dreadful", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Hair Stylists, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "ljRFZy8ZeRnNkTMm3Ssjqw", + "name": "Cream & Sugar", + "address": "4004 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9516704, + "longitude": -75.2034089, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Desserts, Coffee & Tea, Bakeries", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "JgIn9KgwPcgBQ9M_Glnk9Q", + "name": "Aquatic & Fitness Center", + "address": "3600 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0630311, + "longitude": -75.0000496, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Active Life, Education, Fitness & Instruction, Swimming Lessons/Schools, Yoga, Specialty Schools, Massage, Beauty & Spas, Gyms", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "ZSO7isM9z-BkHP0kyE7Tzg", + "name": "Coffee Beanery", + "address": "1502 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.084133, + "longitude": -74.962256, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'" + }, + "categories": "Food, Restaurants, Cafes, Coffee & Tea", + "hours": { + "Monday": "9:0-21:30", + "Tuesday": "9:0-21:30", + "Wednesday": "9:0-21:30", + "Thursday": "9:0-21:30", + "Friday": "9:0-21:30", + "Saturday": "9:0-21:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "ubM-QDiZl218m-0e6ofCSw", + "name": "Yoga On Main", + "address": "4227 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243066, + "longitude": -75.2207061, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": null + }, + { + "business_id": "lSQ3qWegSK2GyGx5sOKTtw", + "name": "Budget Friendly Movers", + "address": "1815 John F Kennedy Blvd, Ste 829", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545576, + "longitude": -75.1707265, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Movers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "eVFJcel5xmGOAGUBwyxS8g", + "name": "Theatre of the Living Arts", + "address": "334 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413019, + "longitude": -75.1486542, + "stars": 3.5, + "review_count": 200, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "GoodForKids": "False", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Arts & Entertainment, Event Planning & Services, Music Venues, Performing Arts, Cinema, Venues & Event Spaces, Nightlife", + "hours": { + "Monday": "12:0-18:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "GZBMBov6QL7lI12iicutwQ", + "name": "Spring Garden Deli", + "address": "2200 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964017, + "longitude": -75.1744779, + "stars": 4.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Delis, Sandwiches", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "4sF5EuFnc1kPuX-AY7Dfrw", + "name": "Vintage Julz", + "address": "625 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422847, + "longitude": -75.1532384, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Used, Vintage & Consignment, Shopping, Sunglasses, Fashion, Eyewear & Opticians", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "mN-mO00W2PWWten7udWvEw", + "name": "Rainbow Nail Spa", + "address": "9220A Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0644528, + "longitude": -75.0213159, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "NUpZk6AWvnH9HAdcZ57tqw", + "name": "Bindlestiff Books", + "address": "4530 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9487732, + "longitude": -75.2138157, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bookstores, Shopping, Books, Mags, Music & Video", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-15:30", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "hNWf3Uz8M17e2qB3eBV8jg", + "name": "The Jennifer Grosskopf Group", + "address": "604 S Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9459502, + "longitude": -75.152235, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Commercial Real Estate, Real Estate Services, Home Services, Real Estate, Real Estate Agents", + "hours": { + "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" + } + }, + { + "business_id": "b-MVXcQAub3xucDbxG0IkQ", + "name": "Rite Aid", + "address": "4055-89 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957871, + "longitude": -75.204299, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Drugstores, Convenience Stores, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "2jCHPyPvG0b00HjUKeDeTg", + "name": "Vapor Funky Monkey", + "address": "4221 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0241766, + "longitude": -75.2205847, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Health & Medical, Vape Shops, Tobacco Shops, Counseling & Mental Health, Head Shops, Jewelry, Electronics, Shopping", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "dmgYOp1VkNfzy8OhkrgZQQ", + "name": "Mother Bethel African Methodist Episcopal Church", + "address": "419 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432889, + "longitude": -75.1517562, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Landmarks & Historical Buildings", + "hours": null + }, + { + "business_id": "c5m3fkLzQZjGoHSERlXW6A", + "name": "Delilah's", + "address": "100 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9594715, + "longitude": -75.1394882, + "stars": 3.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'very_loud'", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "CoatCheck": "True", + "HappyHour": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTakeOut": "None", + "RestaurantsTableService": "True", + "GoodForKids": "False", + "Smoking": "u'yes'", + "GoodForDancing": "True", + "RestaurantsDelivery": "None", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "None" + }, + "categories": "Nightlife, Adult Entertainment, Steakhouses, Restaurants", + "hours": { + "Monday": "11:30-0:0", + "Tuesday": "11:30-0:0", + "Wednesday": "11:30-0:0", + "Thursday": "11:30-0:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "13:0-0:0" + } + }, + { + "business_id": "9THOqAjKxNGHYVqobMEVWA", + "name": "The Crocodile", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948013, + "longitude": -75.143017, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Nightlife, Arts & Entertainment, Food, Pizza, Restaurants, Beer, Wine & Spirits, Bars, Music Venues, Lounges", + "hours": { + "Monday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "U0R3ZFes6KFgv6nHF1_W9g", + "name": "The Home Depot", + "address": "1651 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925934325, + "longitude": -75.1430243254, + "stars": 2.0, + "review_count": 81, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Nurseries & Gardening, Home Services, Appliances, Home & Garden, Shopping, Building Supplies, Contractors, Hardware Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-18:0", + "Friday": "9:0-20:0", + "Saturday": "6:0-22:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "0hVf3a0oq8ckB8JIDwSgig", + "name": "Days Inn by Wyndham Philadelphia Convention Center", + "address": "1227 Race Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956112, + "longitude": -75.1602156, + "stars": 2.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "o6tzQpQ0fdchmDMbtupiNg", + "name": "Muscle Management Services", + "address": "1518 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949434, + "longitude": -75.166896, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Physical Therapy, Massage Therapy", + "hours": { + "Tuesday": "17:0-20:45", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-20:45", + "Saturday": "8:45-17:30" + } + }, + { + "business_id": "tbKxiHU5uAfLDkwIxBnLHg", + "name": "Club Mousai", + "address": "1227 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492784, + "longitude": -75.1617775, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "CoatCheck": "True", + "Smoking": "u'outdoor'", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "False", + "WheelchairAccessible": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "AgesAllowed": "u'21plus'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Arts & Entertainment, Music Venues, Nightlife, Dance Clubs", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "GKohndn_sMk2nWCh1jkAfg", + "name": "Terryin", + "address": "358 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9219375, + "longitude": -75.1528432, + "stars": 4.0, + "review_count": 159, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "Caters": "True" + }, + "categories": "Restaurants, Chinese, Sushi Bars, Asian Fusion, Japanese", + "hours": { + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "13:0-22:30" + } + }, + { + "business_id": "BfkpJQyk9AcMd9fDKhyJ1g", + "name": "Pet Parent Allies", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dog Walkers, Pet Training, Pet Services, Pets, Pet Sitting", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:30-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "15:30-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "82n2c_QXZASJxyzUHNSgHw", + "name": "Auntie Anne's", + "address": "1230 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539135, + "longitude": -75.160968, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Pretzels, Beverage Store, Desserts, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "elefZTz-ufvpB1r-qOjeSQ", + "name": "The Wishing Well", + "address": "767 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939906, + "longitude": -75.157413, + "stars": 3.5, + "review_count": 179, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Food, American (Traditional), Bars, Restaurants, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16: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" + } + }, + { + "business_id": "K7IyeKyJIupXIiEb6L4C7Q", + "name": "Zara Brow Bar", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515591, + "longitude": -75.1557742, + "stars": 4.0, + "review_count": 42, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "U-rF-oo9K98Wx3lXd4XUTA", + "name": "NovaCare Rehabilitation", + "address": "511 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962042126, + "longitude": -75.1610982325, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Physical Therapy, Health & Medical", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "_g1a9pz4yXno8YpoKtLcdg", + "name": "3000BC - Chestnut Hill", + "address": "S 9th St & Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94988, + "longitude": -75.155577, + "stars": 3.5, + "review_count": 43, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Medical Spas, Skin Care, Massage, Day Spas, Health & Medical, Beauty & Spas, Hair Removal, Waxing, Tanning", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "HjqJ1ch3PUSOdS-K-glwoA", + "name": "Rite Aid", + "address": "1924 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967013, + "longitude": -75.169624, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False" + }, + "categories": "Drugstores, Shopping, Food, Convenience Stores", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "rXccINIuDtydUq0TpN3qQQ", + "name": "Rejuvenated Furniture & Finds", + "address": "7430 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0384744463, + "longitude": -75.036656849, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Antiques, Home & Garden, Furniture Stores, Shopping, Home Decor", + "hours": { + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "fbCAXeed92ayKpu1xBCMxw", + "name": "Custard's Last Stand", + "address": "7302 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.062009, + "longitude": -75.083841, + "stars": 2.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "Xaw5lzLAsZ6l-A953EAGHQ", + "name": "N'bushe Natural", + "address": "5500 Chancellor St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9569794, + "longitude": -75.2317371, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0", + "Sunday": "7:30-11:30" + } + }, + { + "business_id": "Ri6-mK1e2-IjQAWBtZ7-qQ", + "name": "Celebre Pizzeria", + "address": "1536 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9113159, + "longitude": -75.1753524, + "stars": 3.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'beer_and_wine'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "True", + "BYOB": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Corkage": "False" + }, + "categories": "Pizza, Caterers, Event Planning & Services, Restaurants, Sandwiches", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:45-21:30", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "KG0HWGeerZri6_2W89QKWw", + "name": "Noise Pollution Records", + "address": "619 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941031, + "longitude": -75.1491226, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Vinyl Records, Books, Mags, Music & Video, Shopping, Music & DVDs", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "41Wm32-Aj7jdejK4QfUDDw", + "name": "Schuylkill River Dog Run", + "address": "2500 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9491012403, + "longitude": -75.1823992098, + "stars": 4.5, + "review_count": 131, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks, Dog Parks", + "hours": { + "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" + } + }, + { + "business_id": "xqTKndQhNrEDKNvDBU0uQw", + "name": "K&A Auto Tags", + "address": "6150 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034456, + "longitude": -75.2167, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Registration Services, Automotive", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30" + } + }, + { + "business_id": "FkJveuL8rikyPUfft52sQw", + "name": "SoapBox", + "address": "616 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941503, + "longitude": -75.1525885, + "stars": 5.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "False", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "tPu6ZX94n260wQprRVohvA", + "name": "Homewood Suites by Hilton Philadelphia-City Avenue", + "address": "4200 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0040060418, + "longitude": -75.217685797, + "stars": 3.0, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "yfYQKGnPXd6qjwqifuhpVw", + "name": "MOM's Organic Market", + "address": "34 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508908, + "longitude": -75.1587593, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False" + }, + "categories": "Food, Organic Stores, Fruits & Veggies, Grocery, Health Markets, Specialty Food, Local Services, Recycling Center", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-20:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "A4LtWc1wfOjEEb6qMXvoHw", + "name": "Bennett Compost", + "address": "5650 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.037557, + "longitude": -75.1129879, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Home Services, Junk Removal & Hauling, Nurseries & Gardening, Recycling Center, Shopping, Local Services, Home & Garden, Professional Services", + "hours": null + }, + { + "business_id": "Wewu2lolL111m_1TVTgR-Q", + "name": "Tea Talk", + "address": "216 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559225, + "longitude": -75.155964, + "stars": 3.5, + "review_count": 125, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "d7nNIaYRfD3lPHzV3DZnwg", + "name": "Quig's Pizza Steaks & Hoagie's", + "address": "7501 Verree Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0655504, + "longitude": -75.0830385, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Caters": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "b5PFC7Uatlsr5AZqSZyCpQ", + "name": "Pizza Dads", + "address": "2843 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9747198867, + "longitude": -75.1833302155, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "U5oSEDZ39jLtucoTAEdyDw", + "name": "Jerry's Corner", + "address": "6100 W Pasynk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9181021, + "longitude": -75.2096848, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Department Stores", + "hours": null + }, + { + "business_id": "SSo_kSAbaLtOMhSa2jneXw", + "name": "Arch Street Meeting House", + "address": "320 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9518574786, + "longitude": -75.1461736562, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Religious Organizations, Museums, Local Services, Venues & Event Spaces, Event Planning & Services, Landmarks & Historical Buildings, Community Service/Non-Profit, Arts & Entertainment, Public Services & Government", + "hours": { + "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" + } + }, + { + "business_id": "_xp9OJa-ObEMFrsLvjNWAg", + "name": "Nigiyaka Na", + "address": "1913 S10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9256218217, + "longitude": -75.162383475, + "stars": 3.5, + "review_count": 58, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "Caters": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Specialty Food, Ramen, Japanese, Sushi Bars, Food, Ethnic Food", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-1:0", + "Friday": "16:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "16:0-1:0" + } + }, + { + "business_id": "Am_H8-XxtTfV34QmOuWcyQ", + "name": "Leotah's Place Coffeehouse", + "address": "2033 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9833855, + "longitude": -75.1291204, + "stars": 4.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Arts & Entertainment, Internet Cafes, Caterers, Event Planning & Services, Food, Juice Bars & Smoothies, Coffee & Tea, Bagels", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "FTD2hJ53c0NbfKFvVQxAhw", + "name": "Agiato", + "address": "4359 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0257796, + "longitude": -75.2239011, + "stars": 4.0, + "review_count": 127, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Nightlife, Wine Bars, Bars, Italian, Restaurants, Lounges", + "hours": { + "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" + } + }, + { + "business_id": "KyFdgJomsfNbNilFAMNbCg", + "name": "Fatima Hair Braiding", + "address": "4638 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.943283, + "longitude": -75.210512, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': True, 'curly': False, 'kids': True, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "3LxP4hHw1Ic-enGC1KEoqQ", + "name": "Philadelphia Sports Clubs", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953726, + "longitude": -75.16952, + "stars": 2.0, + "review_count": 106, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Trainers, Gyms, Fitness & Instruction, Sports Clubs", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "paoYG3VEjW5OwVXVbQobJw", + "name": "TD Bank", + "address": "2331 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0476875305, + "longitude": -75.0599060059, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:30-13:0" + } + }, + { + "business_id": "5wwg-LuUBHFkecVioGPo1w", + "name": "Comprecovery", + "address": "6100 City Ave, Ste P215", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9904653, + "longitude": -75.2483162, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "IT Services & Computer Repair, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "hzwlwu3TR_jfZSMRM0l_Gw", + "name": "Bocelli", + "address": "8630 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.077039, + "longitude": -75.208761, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Italian, Restaurants", + "hours": null + }, + { + "business_id": "M9rS-MFOGN8MEbXiEA2ifg", + "name": "Streetside BBQ", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0729157, + "longitude": -75.1691305, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "OutdoorSeating": "False" + }, + "categories": "Food, Food Delivery Services, Caterers, Event Planning & Services, Restaurants, Barbeque", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "P3DS2ks4mGtmLEY1HrxCWw", + "name": "Wonderland", + "address": "2037 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508593, + "longitude": -75.1750355, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Tobacco Shops, Shopping", + "hours": null + }, + { + "business_id": "ieNN_mN8qk7MhG4oV7kfUQ", + "name": "Pelicana chicken", + "address": "4002 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9515319, + "longitude": -75.2033034, + "stars": 3.5, + "review_count": 88, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Korean, Asian Fusion, Restaurants", + "hours": { + "Monday": "11:30-1:0", + "Tuesday": "11:30-1:0", + "Wednesday": "11:30-1:0", + "Thursday": "11:30-1:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "ApxVWbjjFsCPJfTIvOqzlQ", + "name": "Walgreens", + "address": "7001 Frankford Ave, Ste 7027", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0338931, + "longitude": -75.0456452, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Beauty & Spas, Cosmetics & Beauty Supply, Photography Stores & Services, Convenience Stores, Drugstores, Food", + "hours": { + "Monday": "8:0-0:0", + "Tuesday": "8:0-0:0", + "Wednesday": "8:0-0:0", + "Thursday": "8:0-0:0", + "Friday": "8:0-0:0", + "Saturday": "8:0-0:0", + "Sunday": "8:0-0:0" + } + }, + { + "business_id": "IS3h8_4gL_IbmpVTKDB3LA", + "name": "Royal Sushi & Izakaya", + "address": "780-782 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9380805, + "longitude": -75.1465231, + "stars": 4.5, + "review_count": 275, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'loud'", + "CoatCheck": "False", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': True, u'romantic': None, u'classy': True, u'upscale': None}", + "HasTV": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForDancing": "False", + "RestaurantsReservations": "False", + "HappyHour": "True", + "WiFi": "u'no'", + "GoodForKids": "False", + "BYOB": "False", + "Caters": "False", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'" + }, + "categories": "Nightlife, Restaurants, Dive Bars, Izakaya, Bars, Sushi Bars, Japanese, Pubs", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "GCLk8y_i_1BLHf27NdFfhQ", + "name": "Pizza House Express", + "address": "529 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9976234, + "longitude": -75.1201379, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "iodTT7_XrGM0RBBWDPh0WQ", + "name": "Hibachi Grill & Supreme Buffet", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9008189767, + "longitude": -75.2414617952, + "stars": 2.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "OutdoorSeating": "False" + }, + "categories": "American (Traditional), Restaurants, Buffets", + "hours": { + "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" + } + }, + { + "business_id": "Us-Igy37l8FT-H6ukKJ-Ig", + "name": "The Center City Grille", + "address": "12 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9528302, + "longitude": -75.1735102, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "HappyHour": "True" + }, + "categories": "Lounges, American (New), Nightlife, American (Traditional), Restaurants, Bars", + "hours": null + }, + { + "business_id": "QNzO9raSG3Nkyub-FC4jYQ", + "name": "Hertz", + "address": "1546 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.055286, + "longitude": -75.074901, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "2fwpuNOiQhvK7KgZ1ifimA", + "name": "Graves Vaughan MD", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 1.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "AcceptsInsurance": "True" + }, + "categories": "Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "SgCeYZH2HA510y--nU4e8g", + "name": "CVS Pharmacy", + "address": "7065 Lincoln Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.054077, + "longitude": -75.193251, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Pharmacy, Convenience Stores, Health & Medical, Shopping, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "pe2V5uLuw_-itHRY4hZ_gg", + "name": "Alyssa Maloof Photography", + "address": "723 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9498566, + "longitude": -75.1531928, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Event Photography, Event Planning & Services, Session Photography", + "hours": { + "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" + } + }, + { + "business_id": "S21Myaj831l5rG4AKEyekA", + "name": "Dos Tacos", + "address": "120 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505718077, + "longitude": -75.1657929609, + "stars": 3.0, + "review_count": 258, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "WiFi": "'no'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "3jm8wl6bt1sytsf_xH0l1A", + "name": "Three Chef's Bistro", + "address": "2453 Grant Ave, Ste 2461", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0802844, + "longitude": -75.0259129, + "stars": 4.0, + "review_count": 95, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Salad, Pizza, Restaurants, Brazilian, Fish & Chips", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "vJLv0SngNqbst2c5ck-csA", + "name": "Crystal Tea Room At Wanamaker", + "address": "100 Penn Square E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9512944, + "longitude": -75.1619269, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Tea Rooms, Venues & Event Spaces, Food, Event Planning & Services", + "hours": null + }, + { + "business_id": "iaW_PbJwEWq5lm06KFxa0g", + "name": "XpresSpa", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8762005601, + "longitude": -75.2418422699, + "stars": 3.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Massage, Day Spas, Nail Salons", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "E-Ptocc2rOoDyYiYb_TiMQ", + "name": "Ben Franklin Yacht", + "address": "101 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9488284655, + "longitude": -75.1392547822, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Boat Charters, Party & Event Planning, Active Life, Boating, Event Planning & Services", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "9:30-19:0" + } + }, + { + "business_id": "VTjol5UWd1hMwldC3wFXTw", + "name": "Flaming Grill & Supreme Buffet", + "address": "330 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9131266, + "longitude": -75.1554262, + "stars": 2.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "WheelchairAccessible": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'" + }, + "categories": "Chinese, Food, Buffets, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "3VA5BgRcVd-mAvSFJFFveQ", + "name": "Sweet Nina's", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9532043995, + "longitude": -75.1591792703, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Desserts", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "6BvmLng8AmH56-eSekl3zg", + "name": "Morris Arboretum", + "address": "100 E Northwestern Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0897421913, + "longitude": -75.2229091136, + "stars": 4.5, + "review_count": 92, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Botanical Gardens, Museums", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "UJQGJ0tlKO93Lia2JGidZA", + "name": "McDonald's", + "address": "5219 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.022512, + "longitude": -75.077527, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Fast Food, Food, Burgers, Coffee & Tea", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "TsoCCouCudxL2mwn86SFiQ", + "name": "Arctic Scoop", + "address": "1812 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927457, + "longitude": -75.166521, + "stars": 4.5, + "review_count": 170, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "DogsAllowed": "True", + "Caters": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "DriveThru": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Coffee & Tea, Ice Cream & Frozen Yogurt, Food, Desserts", + "hours": { + "Monday": "15:0-21:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "sqUDW90sVPyCjm-jImE36A", + "name": "Art Star Craft Bazaar", + "address": "Penn's Lndg", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9470214844, + "longitude": -75.1398925781, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Crafts, Shopping, Local Flavor", + "hours": null + }, + { + "business_id": "xtpXx1VW_wa6wCLoXhgA-Q", + "name": "House of Jin", + "address": "234 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0304408439, + "longitude": -75.1796976922, + "stars": 3.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Chinese, Restaurants, Japanese", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Q5gDZXs5X6oIgNGThOLZUA", + "name": "Penn Health for Women", + "address": "800 Walnut St, 10th Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477865, + "longitude": -75.1546211, + "stars": 3.0, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Family Practice, Obstetricians & Gynecologists", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "5quEJwHni6CuR-zh85hJ3Q", + "name": "Steven Solow, DMD", + "address": "1601 Walnut St, Ste 1014", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dentists, Pediatric Dentists, Health & Medical, Orthodontists", + "hours": null + }, + { + "business_id": "iksVwRfpWymIUUFqw0tXpw", + "name": "Chubby Cattle", + "address": "146 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9550104, + "longitude": -75.1561342, + "stars": 4.5, + "review_count": 1128, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': True, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Alcohol": "u'beer_and_wine'" + }, + "categories": "Restaurants, Bars, Seafood, Japanese, Hot Pot, Nightlife, Chinese, Conveyor Belt Sushi, Mongolian, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "AusqYiQVxWa-kJHBnoN2qQ", + "name": "1843 Memorials", + "address": "1648 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.084381, + "longitude": -75.1765037, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "y50u2JA-dWO-gPjzsRvqow", + "name": "CHOP Primary Care, Chestnut Hill", + "address": "7700 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.067952, + "longitude": -75.198346, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Medical Centers, Health & Medical, Doctors, Pediatricians, Family Practice", + "hours": { + "Monday": "7:30-21:0", + "Tuesday": "7:30-21:0", + "Wednesday": "7:30-21:0", + "Thursday": "7:30-21:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-13:0" + } + }, + { + "business_id": "kMfhJIGdpU4rZeogFKdr1w", + "name": "Little Jimmie's Bakery Cafe", + "address": "6669 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0513709, + "longitude": -75.1849412, + "stars": 4.5, + "review_count": 73, + "is_open": 0, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cafes, Restaurants, Bakeries, Food", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-17:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "CHF2-jj2ebNq2sne4q79UA", + "name": "The Philadelphia Orchestra", + "address": "300 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.946795, + "longitude": -75.165666, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Arts & Entertainment, Local Flavor, Performing Arts", + "hours": null + }, + { + "business_id": "4AuBXliaKg3bDKVaaZvxbw", + "name": "Panda Express", + "address": "4600 Roosevelt Boulevard", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0300397244, + "longitude": -75.0995155363, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Fast Food, Chinese", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-21:30" + } + }, + { + "business_id": "rvz1I1whB8zG_BH0TIMMow", + "name": "Lil Sum Sum", + "address": "1069 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671602, + "longitude": -75.1392082, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Food Stands, Chinese, Dim Sum, Restaurants, Gluten-Free, Food Trucks", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "mrMci-ZxJDxKHUQEiFNP8w", + "name": "O-Life Dental", + "address": "992 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9662806, + "longitude": -75.1404419, + "stars": 3.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "7Jlk2lr-nkxJfHh8JYFlFw", + "name": "Tri-State Computech", + "address": "121 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517763, + "longitude": -75.1769506, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Mobile Phone Repair, Shopping, Computers, IT Services & Computer Repair", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "atZ_olNKXOG4rEr6mccN8g", + "name": "Beiler's Bakery", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953764, + "longitude": -75.159218, + "stars": 4.5, + "review_count": 1368, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "WiFi": "u'no'", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "OutdoorSeating": "None" + }, + "categories": "Food, Donuts, Food Stands, Restaurants, Specialty Food, Bakeries, Breakfast & Brunch", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "ktA9X95tS1atNQNs-p-vZQ", + "name": "Jos A Bank", + "address": "1650 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9525664355, + "longitude": -75.1680614432, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Plus Size Fashion, Formal Wear, Fashion, Shopping, Men's Clothing", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "it7HuDS-E7hNPR8AFALIrQ", + "name": "Goat Dog Camp", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Pet Sitting, Pets, Pet Services, Dog Walkers", + "hours": null + }, + { + "business_id": "-IxZMOReWDCJDD-A2N92_Q", + "name": "BJ's Wholesale Club", + "address": "2300 W. Oregon Ave., Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.915489, + "longitude": -75.188281, + "stars": 2.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping Centers, Department Stores, Grocery, Travel Services, Car Rental, Wholesale Stores, Hotels & Travel, Food, Fashion, Shopping", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "kpUPczrNdk19IqCwOua2YQ", + "name": "Appliance & TV Discounters", + "address": "3177 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9827089, + "longitude": -75.1015038, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Appliances, Cabinetry, Home Services, Appliances & Repair, Electronics, Home & Garden, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-15:30" + } + }, + { + "business_id": "NrgXhmNmD8hBjQn8urxQCQ", + "name": "Sculpt360", + "address": "777 S Broad St, Ste 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9411431, + "longitude": -75.1655878, + "stars": 4.5, + "review_count": 55, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Gyms, Fitness & Instruction, Barre Classes, Active Life, Pilates", + "hours": { + "Monday": "6:15-20:30", + "Tuesday": "6:15-20:30", + "Wednesday": "6:15-20:30", + "Thursday": "6:15-20:30", + "Friday": "6:15-20:30", + "Saturday": "7:45-13:0", + "Sunday": "7:45-13:0" + } + }, + { + "business_id": "kn6zHpma8I_xBGTZpNe41A", + "name": "Moonlight Cuisine", + "address": "6834 Limekiln Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0583688, + "longitude": -75.1528507, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Caribbean, Restaurants", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "sQhh7JCGpqNgf0hHWc4m8g", + "name": "On Point Bistro", + "address": "1200 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93725004, + "longitude": -75.1771098375, + "stars": 4.5, + "review_count": 240, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "BYOBCorkage": "u'yes_free'", + "GoodForKids": "True", + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': True, 'breakfast': None}", + "WiFi": "u'free'", + "Corkage": "False", + "DogsAllowed": "False", + "Caters": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True" + }, + "categories": "American (Traditional), Burgers, Breakfast & Brunch, American (New), Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:30", + "Wednesday": "9:0-15:0", + "Thursday": "9:30-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "HWrG_7G3lN_0TR5b3N5YWw", + "name": "Engimono Pokรจ & Deli", + "address": "2319 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675, + "longitude": -75.17601, + "stars": 4.5, + "review_count": 72, + "is_open": 0, + "attributes": { + "Caters": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "HappyHour": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Hawaiian, Breakfast & Brunch, Cafes, Food, Poke, Delis, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "9:0-20:30", + "Sunday": "9:0-20:30" + } + }, + { + "business_id": "N3oj6ka16HPgNQhyk_bi2g", + "name": "Naked Chocolate Cafe", + "address": "3421 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529542, + "longitude": -75.1932173, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bakeries, Food", + "hours": null + }, + { + "business_id": "7n0qmplNMqPLkcRfI2_ieA", + "name": "Minar Palace", + "address": "1304 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9490630805, + "longitude": -75.1624400394, + "stars": 3.0, + "review_count": 203, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Buffets, Pakistani, Restaurants, Indian", + "hours": { + "Monday": "11:30-21:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "12:30-21:0" + } + }, + { + "business_id": "OetKsgbBp_slqg2VIKzxxg", + "name": "Philly's Cafe", + "address": "725 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948227, + "longitude": -75.15363, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'" + }, + "categories": "Bakeries, Cafes, Coffee & Tea, Food, Restaurants, Sandwiches", + "hours": null + }, + { + "business_id": "CzXWmMKaU9gYJm3sJIlo2A", + "name": "Shambhala Meditation Center", + "address": "2030 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512318, + "longitude": -75.1745795, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Active Life, Meditation Centers, Fitness & Instruction, Health & Medical, Counseling & Mental Health", + "hours": null + }, + { + "business_id": "pCDx24yFgVZ3EwOwDMedHg", + "name": "Custard & Cakes Creamery", + "address": "5461 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0232596, + "longitude": -75.2077483, + "stars": 4.5, + "review_count": 224, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DogsAllowed": "True", + "DriveThru": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Desserts, Restaurants, Food, Ice Cream & Frozen Yogurt, Sandwiches", + "hours": { + "Monday": "12:0-21:0" + } + }, + { + "business_id": "86BkHfhvm7pVTMUSyJlttQ", + "name": "Louie's Little Hut", + "address": "8419 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0756394, + "longitude": -75.2053777, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "RestaurantsDelivery": "None", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "DriveThru": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, American (New), Sandwiches, Cheesesteaks, Waffles, Food, Ice Cream & Frozen Yogurt, Breakfast & Brunch, Restaurants, Burgers", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "arLEOxR9BG4pORv7oRUGfA", + "name": "Lucy's Hat Shop", + "address": "247 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504469, + "longitude": -75.14518, + "stars": 3.0, + "review_count": 75, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "WiFi": "u'free'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "American (Traditional), Bars, Lounges, American (New), Mexican, Restaurants, Sports Bars, Nightlife, Pubs", + "hours": { + "Thursday": "19:0-2:0", + "Friday": "19:0-2:0", + "Saturday": "19:0-2:0" + } + }, + { + "business_id": "4PCwGGG-koGifzJfim3mtw", + "name": "Mellow Massage & Yoga", + "address": "4023 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0072135044, + "longitude": -75.1890798884, + "stars": 4.5, + "review_count": 134, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'paid'", + "GoodForKids": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Acupuncture, Yoga, Active Life, Fitness & Instruction, Massage, Beauty & Spas", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "PDXjgwnd8QlhncC6tZkIcQ", + "name": "Chartreuse Flowers & Gifts", + "address": "1616 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9295535, + "longitude": -75.1641535, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Flowers & Gifts, Shopping, Florists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "IXdXM97Sii2-JVrNnDKMhA", + "name": "Green Drop", + "address": "163 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0907366, + "longitude": -74.9655363, + "stars": 2.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Donation Center, Community Service/Non-Profit", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "FYuoVa09VV1MAGLtn9XlCg", + "name": "Roche Bobois", + "address": "311 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9525267, + "longitude": -75.1456945, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Services, Outdoor Furniture Stores, Home Decor, Furniture Stores, Shopping, Rugs, Interior Design, Home & Garden", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "d_AEJ6ekjX79tL5RZtwZ_g", + "name": "ROOST Apartment Hotel", + "address": "111 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505683, + "longitude": -75.1657016, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True" + }, + "categories": "Event Planning & Services, Hotels, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "9VEnlasR3YppxZuDyUv3iA", + "name": "Microtel Inn & Suites", + "address": "8840 Tincm Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.88692, + "longitude": -75.24655, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Hotels, Event Planning & Services", + "hours": null + }, + { + "business_id": "wTZMIjj8RHMamUO1WzLTlQ", + "name": "Medora's Mecca", + "address": "3101 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9111935, + "longitude": -75.1701086, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "yFpOyYTVc2p2I-vNxe4nQw", + "name": "Cafe Chismosa", + "address": "900 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.965851, + "longitude": -75.144135, + "stars": 4.5, + "review_count": 139, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Vegetarian, Internet Cafes, Latin American, Mexican, Coffee & Tea, Restaurants, Food, Breakfast & Brunch", + "hours": { + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "5yHr68eo0ccYUMSx1bQFcA", + "name": "Beer Love", + "address": "714 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401886, + "longitude": -75.1497382, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beer, Wine & Spirits, Food", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "D4JkGE1gin-jQr1E_Tn2Xg", + "name": "Philadelphia Film Center", + "address": "1412 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950834, + "longitude": -75.164685, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "HappyHour": "False", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "CoatCheck": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Smoking": "u'no'", + "GoodForKids": "True", + "BusinessParking": "None", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Performing Arts, Nightlife, Arts & Entertainment, Music Venues, Cinema", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "tNOFbDCqi6zWgAwn9f0saw", + "name": "Clean Your Plate", + "address": "937 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9681512, + "longitude": -75.1469447, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Personal Chefs, Cooking Schools, Food, Professional Services, Education, Specialty Schools", + "hours": null + }, + { + "business_id": "RWUDd17xCotH62C5gs7fzQ", + "name": "General Tsaoโ€™s House", + "address": "1720 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506686, + "longitude": -75.1696549, + "stars": 4.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BikeParking": "True", + "BYOB": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "KpbkYBrQp9G2kGeWaJypzw", + "name": "The Helston", + "address": "3801 Conshohocken Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0037, + "longitude": -75.20569, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "5EkkPPA6ZOltPFKo97H_5g", + "name": "New Samosa", + "address": "1214 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948752, + "longitude": -75.161303, + "stars": 2.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "Caters": "True" + }, + "categories": "Indian, Vegetarian, Halal, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "yi9HhGyOGueLoDBCiN1IVw", + "name": "Personal Castles", + "address": "257 S 16th", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9475254, + "longitude": -75.1678309, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Office Cleaning, Professional Services, Home Services", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "sy7ADvpBA7SfHwbY-Y_5gw", + "name": "Valanni", + "address": "1229 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467941, + "longitude": -75.1622221, + "stars": 4.0, + "review_count": 875, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "American (New), Nightlife, Greek, Cocktail Bars, Bars, Mediterranean, Restaurants, Pizza, Tapas Bars, Latin American, Tapas/Small Plates, Lounges", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-0:0", + "Wednesday": "16:30-0:0", + "Thursday": "16:30-0:0", + "Friday": "16:30-2:0", + "Saturday": "16:30-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "KUfhi0ZOOMEAiJts5LeYJg", + "name": "Boonswang Law", + "address": "1500 Sansom St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9501823, + "longitude": -75.1660753, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Insurance, Lawyers, Personal Injury Law, Life Insurance, Professional Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "oCSSgAt1J7ydbVQaIC_Rbg", + "name": "iClean and Design", + "address": "269 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464516, + "longitude": -75.1576461, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "ct1bBoZ6GdCFkpp3w0NhKw", + "name": "Liberty Pet Sitting", + "address": "117 Sumac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0171267, + "longitude": -75.2097523, + "stars": 1.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Dog Walkers, Pet Services, Pet Sitting, Pets", + "hours": null + }, + { + "business_id": "AeET2x8f7vLSZl2upH_R-A", + "name": "Sherwin-Williams Commercial Paint Store", + "address": "827 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961594, + "longitude": -75.152094, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hardware Stores, Home Services, Home & Garden, Shopping, Paint Stores, Building Supplies", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "HnK0o3uQwixHquSVLmJDnQ", + "name": "Tien Bo", + "address": "200 S Broad St, Ste Fc13", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491188, + "longitude": -75.1648441, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True" + }, + "categories": "Chinese, Food, Restaurants", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "Lg4Hx23FIfGcZKGT6M3dOw", + "name": "Eight Seven", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9128769, + "longitude": -75.1536302, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Hair Removal, Men's Hair Salons, Hair Salons, Beauty & Spas, Waxing, Hair Stylists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "AuOBDegADgRWYDVpfgsgfw", + "name": "California Tortilla", + "address": "Philadelpha International Airport Terminal C 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876082, + "longitude": -75.241889, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Mexican, Restaurants, Tex-Mex", + "hours": { + "Monday": "5:30-23:0", + "Tuesday": "5:30-23:0", + "Wednesday": "5:30-23:0", + "Thursday": "5:30-23:0", + "Friday": "5:30-23:0", + "Saturday": "5:30-23:0", + "Sunday": "5:30-23:0" + } + }, + { + "business_id": "Lste6ASA2UaJF9uWqQM_GQ", + "name": "M Concept Shop", + "address": "1540 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943915, + "longitude": -75.168472, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Accessories, Jewelry, Women's Clothing", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "FQ7LVN9wmxhiNIbYlcxjyA", + "name": "Milner", + "address": "728 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948499, + "longitude": -75.153583, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "4", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Bridal, Shopping, Jewelry, Watches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "9PZxjhTIU7OgPIzuGi89Ew", + "name": "El Vez", + "address": "121 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497020026, + "longitude": -75.1617702842, + "stars": 4.0, + "review_count": 3187, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BYOBCorkage": "'no'", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "DogsAllowed": "False", + "NoiseLevel": "u'loud'", + "DriveThru": "None", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True", + "CoatCheck": "True", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Lounges, Bars, Nightlife, Breakfast & Brunch, Mexican, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "16:0-0:30", + "Saturday": "16:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "TVoTCkZukwXQx8n8kARIMA", + "name": "Spiked Sports Lounge and Grill", + "address": "7016-18 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.034118, + "longitude": -75.0463868, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Bars, Nightlife, American (Traditional), Restaurants, Sports Bars", + "hours": { + "Wednesday": "17:0-1:30", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "vuE1iseFrgNPumUEfHIZZQ", + "name": "JJ Thai Cuisine", + "address": "2028 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521034288, + "longitude": -75.174737909, + "stars": 4.5, + "review_count": 376, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "DogsAllowed": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BYOB": "True", + "Corkage": "False" + }, + "categories": "French, Restaurants, Thai, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "nOK1L6CVDO7ztUVxueadaQ", + "name": "Johnson Appliances", + "address": "4936 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0287015, + "longitude": -75.1473215, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Appliances & Repair, Local Services", + "hours": null + }, + { + "business_id": "sXC_lkNFfUfZkox-RdTJuA", + "name": "SEPTA - Race-Vine Station BSL", + "address": "300 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9575378, + "longitude": -75.1623425, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Public Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "q9WA6PqTLnB78DWPu5YJ5A", + "name": "Perla", + "address": "1535 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929905, + "longitude": -75.1629415813, + "stars": 4.5, + "review_count": 216, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "False", + "WiFi": "'no'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "HappyHour": "False", + "RestaurantsDelivery": "None", + "HasTV": "False", + "RestaurantsTakeOut": "None", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "3", + "Caters": "True", + "Alcohol": "u'none'" + }, + "categories": "Filipino, American (New), French, Restaurants", + "hours": { + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "15:0-21:0", + "Sunday": "15:0-20:30" + } + }, + { + "business_id": "03cvVjbkCOtiIt51M-MLFg", + "name": "Prime Halal Meat", + "address": "500 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9462612, + "longitude": -75.179681, + "stars": 4.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Specialty Food, Meat Shops, Food, Halal, Grocery", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "15:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "w7YOraGDdCx1KJ2gFgu1pw", + "name": "Di Giovanni Plumbing, Heating & Air Conditioning", + "address": "1116 Sigel St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9265018, + "longitude": -75.1644109, + "stars": 4.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Heating & Air Conditioning/HVAC, Plumbing, Home Services", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "6CUkqed0rhHtFwQ2i7Otsw", + "name": "Barcelona Wine Bar Passyunk", + "address": "1709 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280846, + "longitude": -75.1652545, + "stars": 4.5, + "review_count": 608, + "is_open": 1, + "attributes": { + "HasTV": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "u'casual'", + "CoatCheck": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "None", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Smoking": "u'no'", + "RestaurantsDelivery": "None", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "GoodForDancing": "False" + }, + "categories": "Nightlife, Bars, Restaurants, Wine Bars, Tapas/Small Plates, Spanish", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "UQGl2o3j5p3S5BslkdK9gA", + "name": "Bala Inn", + "address": "5004 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0000082, + "longitude": -75.2285063, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pool Halls, Bars, Dive Bars, Nightlife, Restaurants", + "hours": { + "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": "12:0-2:0" + } + }, + { + "business_id": "HWemyl5lI-BMgl5zAb8bkw", + "name": "Appliance Doctor, Inc.", + "address": "600 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0087601, + "longitude": -75.1386309, + "stars": 1.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Appliances & Repair, Local Services", + "hours": { + "Monday": "7:30-17:0", + "Tuesday": "7:30-17:0", + "Wednesday": "7:30-17:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-17:0", + "Saturday": "7:30-17:0" + } + }, + { + "business_id": "35lEtLqA7K4gJm2hlyTcqg", + "name": "Mwah Nail and Makeup Lounge", + "address": "704 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9405294, + "longitude": -75.1494303, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Nail Salons, Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "w5wfWE6skJDi_-mS56DB-g", + "name": "Cafe Twelve", + "address": "212 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481118, + "longitude": -75.160762, + "stars": 3.5, + "review_count": 82, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Coffee & Tea, Bagels, Food, Cafes, Bakeries, Restaurants, Sandwiches", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "pFBTtrFfJbJY1YTJu1hxAw", + "name": "Kin Wha Garden", + "address": "11720 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.119623, + "longitude": -75.0181023, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "cggAdD88gEbzdikA08EsGg", + "name": "Stylish Nails and Spa", + "address": "2450 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920748, + "longitude": -75.1804957, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Removal, Nail Salons, Waxing, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "v7x0W12mz6ui7l48SVLxJg", + "name": "Yay Clay", + "address": "3237 Amber St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9927914308, + "longitude": -75.1083027556, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Party & Event Planning, Paint & Sip, Arts & Crafts, Event Planning & Services, Art Galleries, Shopping, Arts & Entertainment, Adult Education, Art Schools, Art Classes, Specialty Schools, Art Supplies, Education", + "hours": null + }, + { + "business_id": "gzJWNwa0dILVYIK7BUFwTg", + "name": "Chloeโ€™s Corner", + "address": "4162 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0234036, + "longitude": -75.2201705, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "DogsAllowed": "True" + }, + "categories": "Food, Food Stands, Desserts, Ice Cream & Frozen Yogurt, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "7gEZO8zTIlJdGcWZMBGMsw", + "name": "Dina Alon Hair & Make-up Studio", + "address": "2001 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9549809, + "longitude": -75.173914, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "None", + "WheelchairAccessible": "False" + }, + "categories": "Eyelash Service, Makeup Artists, Blow Dry/Out Services, Beauty & Spas, Barbers, Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "8:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "1npV2fmMM2Kalr55p5hwyQ", + "name": "German Society of Pennsylvania", + "address": "611 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9616337097, + "longitude": -75.1492484038, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Specialty Schools, Venues & Event Spaces, Language Schools, Public Services & Government, Event Planning & Services, Landmarks & Historical Buildings, Education", + "hours": null + }, + { + "business_id": "PYwg-L7NTT7Opi-jLupeRw", + "name": "Salon Royale Court", + "address": "215 S Broad St, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488957, + "longitude": -75.1642001, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "GoodForKids": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Hair Removal, Hair Salons", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-19:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "LoHhKrZyN53vwQ4BM80k7A", + "name": "Big Lots", + "address": "199 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0904414, + "longitude": -74.9655814, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Fashion, Shopping, Department Stores, Discount Store, Furniture Stores, Home Decor, Home & Garden", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "GlhqPvCyTD-Pcorhtso2Ig", + "name": "Kith + Kin", + "address": "3060 W Jefferson St, Ste K", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9791761, + "longitude": -75.1854577, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Kids Activities, Venues & Event Spaces, Event Planning & Services, Active Life", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-12:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "stO1LBPOweqpRBFieuzCug", + "name": "Irvine Auditorium", + "address": "3401 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.950927, + "longitude": -75.192981, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "CoatCheck": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DogsAllowed": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Event Planning & Services, Music Venues, Nightlife, Party & Event Planning, Wedding Planning, Venues & Event Spaces, Arts & Entertainment", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Pxmt03f0mW2DBqOeXo2JWw", + "name": "Brookshire Trace Apartments", + "address": "3 Brookshire Ter", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.131747, + "longitude": -75.007356, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": null + }, + { + "business_id": "plZhoa-_fMtBdo_Hdkx8Zw", + "name": "El Toro Pizza and Grill", + "address": "333 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.953601, + "longitude": -75.2260437, + "stars": 4.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "GoodForMeal": "None", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "5HEEApGVOAE-yf9ekCkSHw", + "name": "Maxwell Realty", + "address": "1736 Pine St, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9462589364, + "longitude": -75.171315722, + "stars": 2.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Services, Real Estate Agents, Mortgage Brokers, Real Estate, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "rvbf15JuvNJyhO2Q5zIapQ", + "name": "Blue Cat Restaurant", + "address": "1921 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967476, + "longitude": -75.1694289, + "stars": 4.0, + "review_count": 210, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Latin American, American (New), Restaurants, Sandwiches", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "jsEo_iMOgULB7w8zGfRJeA", + "name": "Mokas Mediterranean Restaurant", + "address": "3505 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583061, + "longitude": -75.1927263, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Mediterranean, Restaurants", + "hours": null + }, + { + "business_id": "05J_7mQg7dPuaSB_BBYEOQ", + "name": "Gin & Pop", + "address": "1839 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9712925, + "longitude": -75.1674205, + "stars": 4.5, + "review_count": 48, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False" + }, + "categories": "American (Traditional), Nightlife, Restaurants, Bars", + "hours": { + "Monday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "11:30-0:0" + } + }, + { + "business_id": "rzms0oQmxwVpSKCnRj_teA", + "name": "Philadelphia USCIS", + "address": "30 N 41st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9584972, + "longitude": -75.2055144, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Embassy", + "hours": { + "Monday": "8:0-15:30", + "Tuesday": "8:0-15:30", + "Wednesday": "8:0-15:30", + "Thursday": "8:0-15:30", + "Friday": "8:0-15:30" + } + }, + { + "business_id": "gLCGnjz8KQrBjxAoMm3ICw", + "name": "Ettore Salon and Spa", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952188, + "longitude": -75.160716, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Day Spas, Beauty & Spas", + "hours": null + }, + { + "business_id": "568sC23pW0WZYXafvhJZDA", + "name": "Era Atomica", + "address": "1726 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928213, + "longitude": -75.1657029, + "stars": 5.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Baby Gear & Furniture, Antiques", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "wgyh6_YZt_ByA9iBbX5i7g", + "name": "Body Graphics, Inc", + "address": "627 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408763, + "longitude": -75.1491682, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "sxou3KK5uYsRdl2RPsErbw", + "name": "Paulie's Pizza", + "address": "31 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9505508, + "longitude": -75.1583799, + "stars": 2.5, + "review_count": 144, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "WiFi": "u'no'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-4:0", + "Saturday": "9:0-4:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "aF6mtk7uOL3xiaVxkQeghw", + "name": "Terrace Street Bistro", + "address": "3989 Terrace St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0239286, + "longitude": -75.2151081, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False" + }, + "categories": "French, Restaurants", + "hours": { + "Thursday": "18:0-23:0", + "Friday": "18:0-23:0", + "Saturday": "18:0-23:0", + "Sunday": "18:0-23:0" + } + }, + { + "business_id": "AzrL-kBD05s-G_aZzwEirw", + "name": "Philly Music Lessons", + "address": "2111 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9810006, + "longitude": -75.1304684, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Musical Instruments & Teachers, Education, Shopping, Private Tutors", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "fLXVF7NB09d1KCHQCjTaYw", + "name": "Liberty Chicken", + "address": "21 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949728, + "longitude": -75.148825, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'free'" + }, + "categories": "Food, Thai, Asian Fusion, Restaurants, Bakeries, Chicken Wings", + "hours": null + }, + { + "business_id": "JqvkVi-aiTjdfdp4wP8XIA", + "name": "Wawa", + "address": "6460 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0365019, + "longitude": -75.0699667, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Caters": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "HasTV": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Sandwiches, Coffee & Tea, Food, Delis", + "hours": { + "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" + } + }, + { + "business_id": "SdkMBYvVuhLvSwmPXvu4GQ", + "name": "Dog School", + "address": "1039 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9448323, + "longitude": -75.1591431, + "stars": 4.5, + "review_count": 15, + "is_open": 0, + "attributes": null, + "categories": "Pet Training, Pet Sitting, Pets, Pet Services, Dog Walkers", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0" + } + }, + { + "business_id": "lvy7KZ_2FpxLgvsqlADqew", + "name": "Art of Pizza", + "address": "431 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970698, + "longitude": -75.1297287, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Specialty Food, Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "yDGG_496blDSpnqefHT7nQ", + "name": "Barkley's BBQ", + "address": "2017 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9869523271, + "longitude": -75.1806329191, + "stars": 3.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'quiet'", + "Alcohol": "'none'", + "HasTV": "True", + "GoodForKids": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Corkage": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Barbeque, Soul Food", + "hours": { + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0" + } + }, + { + "business_id": "O4U-lgorF8SEfuJS8J_YTQ", + "name": "Valerie Morrison", + "address": "377 Green Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0316244, + "longitude": -75.2192646, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Professional Services, Career Counseling, Psychic Mediums, Counseling & Mental Health, Psychics, Life Coach, Arts & Entertainment, Supernatural Readings, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "K_CS--rB2jpdZ_YmffEInQ", + "name": "Chestnut Hill Brewing Co - Taproom", + "address": "8231 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0741808, + "longitude": -75.2030783, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "Corkage": "False", + "BYOB": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "CoatCheck": "False" + }, + "categories": "Beer Bar, Nightlife, Food, Restaurants, Salad, Bars, Pizza, Breweries", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "11:30-21:0", + "Saturday": "11:30-21:0", + "Sunday": "11:30-20:0" + } + }, + { + "business_id": "saBJrl6wB1zjVGNeQxj1Pg", + "name": "Annie's Nail Salon", + "address": "3820 Morrell Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.064888, + "longitude": -74.986836, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "07LPxCT59Gwg57tmzQdirg", + "name": "Quick & Quality", + "address": "4836 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9535517, + "longitude": -75.219443, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "NU0cY-aujrYGlruPGTEj1Q", + "name": "Zhi Wei Guan / Magic Kingdom Of Dough", + "address": "925 Race Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553898, + "longitude": -75.1552585, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True" + }, + "categories": "Chinese, Dim Sum, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "0:0-22:0" + } + }, + { + "business_id": "picPFi6JAQ6VDQUCOqftmQ", + "name": "Pennsport Market & Deli", + "address": "1425 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9297436, + "longitude": -75.1498359, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Coffee & Tea, Delis, Food, Grocery, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "42Gq2kRqkpIFz3Yu8KiC1Q", + "name": "A New Hope Hypnosis", + "address": "525 S 4th St, Ste 361", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418998, + "longitude": -75.148874, + "stars": 4.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Life Coach, Weight Loss Centers, Health & Medical, Counseling & Mental Health, Professional Services, Hypnosis/Hypnotherapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "12:0-16:0" + } + }, + { + "business_id": "cXcMrHmKqMhV0MpvAgLHLQ", + "name": "Vito Italia", + "address": "323 Race St, Unit A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.954227, + "longitude": -75.1458748, + "stars": 1.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home & Garden, Shopping, Furniture Stores, Home Decor, Cabinetry, Interior Design, Home Services", + "hours": null + }, + { + "business_id": "dVC2Rg_BGW3XOIlvEFxh9g", + "name": "DAWA Sushi & Ramen Bar", + "address": "1204 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9692131, + "longitude": -75.1363257, + "stars": 4.5, + "review_count": 104, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': True, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sushi Bars, Restaurants, Ramen, Hawaiian, Japanese", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "15:0-21:0" + } + }, + { + "business_id": "7tBrFz4n3xtXd6BRk86TFA", + "name": "Takka Grill & Pizza", + "address": "433 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419352, + "longitude": -75.1502842, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Cheesesteaks, American (New), Restaurants, Pizza, Sandwiches", + "hours": null + }, + { + "business_id": "C9bD25sowxyzHn5IhVroWg", + "name": "Richmond Diner and Restaurant", + "address": "3447 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.986158, + "longitude": -75.094679, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "WCpFpsvJawCOYAPPTp83jA", + "name": "Chinamoto", + "address": "777 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941204, + "longitude": -75.165127, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True" + }, + "categories": "Desserts, Thai, Food, Chinese, Restaurants, Japanese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "D68heP9g3Auuz3768sl2HQ", + "name": "CBS 3 Kyw-Tv", + "address": "1555 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9617803, + "longitude": -75.1643674, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Television Stations, Mass Media", + "hours": null + }, + { + "business_id": "781S5my8ySuLpXW2HSyc9A", + "name": "Siojo Salon", + "address": "244 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9539358, + "longitude": -75.1444214, + "stars": 3.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "pyZXqpMmAJpMd8-i0GMBQw", + "name": "Greenhouse Internists", + "address": "345 E Mount Airy Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0650725, + "longitude": -75.1860697, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Internal Medicine", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "1qciFQiO1RJ83Oh7DRioKQ", + "name": "Blue Cross RiverRink", + "address": "101 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9479485975, + "longitude": -75.1397391496, + "stars": 4.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Recreation Centers, Skating Rinks, Active Life, Restaurants, American (New)", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "13:0-20:30", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "11:0-1:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Yz0fJyBkUF8VZBvwFswkRQ", + "name": "Liberty Kitchen", + "address": "1244 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9701581731, + "longitude": -75.1360908151, + "stars": 5.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsTableService": "False" + }, + "categories": "Delis, Food, Restaurants, Event Planning & Services, Grocery, Venues & Event Spaces, Sandwiches", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "IzTh_D90T7LZRxy1lgAG-Q", + "name": "Broncos Brazilian Steakhouse", + "address": "7634 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0573597, + "longitude": -75.0607952, + "stars": 4.5, + "review_count": 102, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': True, 'casual': True}", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "WiFi": "'free'", + "BikeParking": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': True}", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "None" + }, + "categories": "Steakhouses, Buffets, Brazilian, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-21:30", + "Wednesday": "13:0-22:0", + "Thursday": "12:0-21:30", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "rtMJvbYm2ECSE9xLTn7C6A", + "name": "Ground Zero Center City", + "address": "1425 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548465, + "longitude": -75.1642664, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "SAekNNLJzaVH4x1D9mB9Yg", + "name": "Govberg Realty", + "address": "1534 N Carlisle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9771215, + "longitude": -75.1591856, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate Agents, University Housing, Commercial Real Estate, Property Management, Home Services, Real Estate, Apartments, Real Estate Services", + "hours": null + }, + { + "business_id": "J0axQzhoWD6A_iHoW5Bi_g", + "name": "Pine Street Dermatology", + "address": "1233 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478751, + "longitude": -75.1618612, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dermatologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "1k-TBTpaBnxaKXlR4qSA6g", + "name": "Affordable Squeaky Clean", + "address": "2117 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.923611, + "longitude": -75.167416, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Home Cleaning", + "hours": null + }, + { + "business_id": "zwd4dyQ5ovnjVojWfAuhMw", + "name": "European Republic", + "address": "213 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486488, + "longitude": -75.1446305, + "stars": 4.0, + "review_count": 239, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Belgian, Food, Specialty Food, Restaurants, Ethnic Food, Sandwiches", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "HDGTOksawKXEPeoCUrH96g", + "name": "Jean-Georges Philadelphia", + "address": "1 N 19th St, Fl 59", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954995, + "longitude": -75.170789, + "stars": 4.0, + "review_count": 117, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': None, u'validated': None}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "4", + "NoiseLevel": "u'average'", + "DogsAllowed": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': True, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': True, 'casual': None}", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "18:0-22:0", + "Tuesday": "18:0-22:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-22:0", + "Saturday": "18:0-22:0", + "Sunday": "18:0-22:0" + } + }, + { + "business_id": "tjjVkpJSZj6ZnzcChezCuA", + "name": "Shaxian Delicacies", + "address": "106 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539055256, + "longitude": -75.1563203707, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Chinese, Local Flavor", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "9:30-21:0" + } + }, + { + "business_id": "A9El2DdT9Qx2tfFc_f279A", + "name": "Kimpton Hotel Palomar Philadelphia", + "address": "117 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508293, + "longitude": -75.1686289, + "stars": 4.0, + "review_count": 444, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Wedding Planning, Event Planning & Services, Venues & Event Spaces, Hotels & Travel, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "pq8x9lii-ZV1U4RJVG29Lg", + "name": "La Colombe Coffee", + "address": "100 S Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950289, + "longitude": -75.150852, + "stars": 4.0, + "review_count": 156, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-18:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "ZqBwsiBlMqiMTSjlXAenMA", + "name": "Banh Mi Square", + "address": "320 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9127689, + "longitude": -75.1535348, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Vietnamese, Bubble Tea, Juice Bars & Smoothies, Restaurants, Bakeries, Cafes", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "9nEASTWzpz2MildruqjFhg", + "name": "Wiz Kid", + "address": "2101 Pennyslvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629057223, + "longitude": -75.1742785246, + "stars": 4.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "Caters": "False", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Steakhouses, Restaurants, Vegan", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "My5HthuHIGv4iLm8qrjGMQ", + "name": "Trust", + "address": "249 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9523746, + "longitude": -75.1449699, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Shopping, Arts & Entertainment, Event Planning & Services, Art Galleries, Venues & Event Spaces", + "hours": null + }, + { + "business_id": "ENhzvzEbixDwE3f5G-shbg", + "name": "Yummy Sushi", + "address": "1807 Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9544373, + "longitude": -75.1700395, + "stars": 3.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': True, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "ePIFqXd6lwSLqAC3uP0P3A", + "name": "Gemini Tattoo", + "address": "13629 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.131604, + "longitude": -75.0108719, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Tattoo, Beauty & Spas", + "hours": null + }, + { + "business_id": "x97g0iKLKZD96cQmRlQGKg", + "name": "Dolce Restaurant", + "address": "241 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9487765, + "longitude": -75.1456726, + "stars": 3.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "True", + "HasTV": "False", + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "HappyHour": "True" + }, + "categories": "Restaurants, Nightlife, Italian, Lounges, American (Traditional), Bars", + "hours": { + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "PQwFeAxAm4krgDTGMMWXyA", + "name": "KYW Newsradio 1060", + "address": "400 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9501464, + "longitude": -75.147743, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Mass Media, Radio Stations, Television Stations", + "hours": null + }, + { + "business_id": "0IEn6AxLNFfdfuwd2bQlbQ", + "name": "Golden Empress Garden", + "address": "618 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941938, + "longitude": -75.152868, + "stars": 3.5, + "review_count": 181, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants, Vegetarian, Vegan", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "kmKHBCTec-e6H4aK7fD8Ag", + "name": "Burger Bar at Gallo's", + "address": "8101 Roosevelt Blvd, Ste 3013", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0577429, + "longitude": -75.0446413, + "stars": 3.5, + "review_count": 122, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Food, Burgers, Restaurants", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "EH25hIn3p1TX56vK6KFYLA", + "name": "Philly Pet Supply", + "address": "6544 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0232925, + "longitude": -75.0488144, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Pet Groomers, Pets, Pet Stores, Pet Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "tpmXakPzEw-AapddjxAx_Q", + "name": "Teaful Bliss Cafe", + "address": "1043 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961974, + "longitude": -75.1559599, + "stars": 5.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Alcohol": "u'none'", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Coffee & Tea, Food, Sandwiches, Tea Rooms", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "xGBHv5kA1Cm4eYyqzxy7Kw", + "name": "Dunkin'", + "address": "3437 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9531597, + "longitude": -75.1935218, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "NoiseLevel": "'quiet'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "DriveThru": "None", + "RestaurantsPriceRange2": "1" + }, + "categories": "Breakfast & Brunch, Donuts, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "2qVZiMB22YPC2HCM62Gnbw", + "name": "Scarpetta", + "address": "210 W Rittenhouse Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498657277, + "longitude": -75.1733916253, + "stars": 4.0, + "review_count": 213, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Smoking": "u'no'", + "CoatCheck": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "u'free'", + "HappyHour": "False", + "OutdoorSeating": "True", + "GoodForKids": "False", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsAttire": "'dressy'", + "RestaurantsDelivery": "True", + "Alcohol": "'full_bar'" + }, + "categories": "American (Traditional), Italian, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-21:0", + "Saturday": "17:30-21:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "3YCQH1QoDjnTha5S7tJtlw", + "name": "Pizza Power", + "address": "123 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9986823, + "longitude": -75.1283639, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "LVNt93fRgTR0C-eubUshbQ", + "name": "Friday Saturday Sunday", + "address": "261 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9489363, + "longitude": -75.1759896, + "stars": 4.0, + "review_count": 246, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'no'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "BikeParking": "True", + "HappyHour": "True" + }, + "categories": "American (Traditional), American (New), Restaurants", + "hours": { + "Tuesday": "15:0-1:0", + "Wednesday": "15:0-1:0", + "Thursday": "15:0-1:0", + "Friday": "15:0-1:0", + "Saturday": "15:0-1:0", + "Sunday": "15:0-1:0" + } + }, + { + "business_id": "6kxbB-9Z2Sa_V669bQos0Q", + "name": "Apple Blossom Learning Tree Day School", + "address": "1601 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451745, + "longitude": -75.1686751, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Child Care & Day Care, Preschools, Education, Local Services", + "hours": { + "Monday": "7:0-18:0" + } + }, + { + "business_id": "_a9Ts5NBDGFkIrXku79yTQ", + "name": "Mari Mi Bridal", + "address": "323 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9542279, + "longitude": -75.145883, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bridal, Shopping", + "hours": null + }, + { + "business_id": "f3OgQPvMMNaOtCpzrdsiHQ", + "name": "May's Gourmet Cafe & Deli", + "address": "1845 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941199, + "longitude": -75.174033, + "stars": 3.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True" + }, + "categories": "Delis, Sandwiches, Restaurants", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "pUBzBLKRI1IeDQJDufAa4Q", + "name": "Veith Apartments", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "f22prjTaNUWwqvVsI4HWxQ", + "name": "Starbucks", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.032118, + "longitude": -75.21384, + "stars": 3.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "5:30-20:30", + "Wednesday": "5:30-20:30", + "Thursday": "5:30-20:30", + "Friday": "5:30-20:30", + "Saturday": "5:30-20:30", + "Sunday": "5:30-20:30" + } + }, + { + "business_id": "viC-j3vKaSl2rUuR0gFWNQ", + "name": "Crane Arts", + "address": "1400 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9732491, + "longitude": -75.1404004, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Art Galleries, Shopping, Arts & Entertainment", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "0gRyrnCfbXXOnDqOszHuAg", + "name": "Photobot 3000", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Photography, Photographers, Event Planning & Services, Photo Booth Rentals, Party Supplies", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "K0lttiVfWWP1u5JmsVp4cA", + "name": "Fox & Son Fair Foods", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.5, + "review_count": 202, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': True, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "RestaurantsTableService": "False" + }, + "categories": "Hot Dogs, Restaurants, Gluten-Free, Comfort Food, Poutineries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "iL580gyKqBf3TI_JcovM6A", + "name": "Murray Cleaners", + "address": "350 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9526419, + "longitude": -75.2169704, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services", + "hours": null + }, + { + "business_id": "QQALFTHXARSAviOaSVDrKA", + "name": "Arch Enemy Arts", + "address": "109 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9518099, + "longitude": -75.1421162, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Shopping, Arts & Entertainment, Art Galleries", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0" + } + }, + { + "business_id": "ONl0IGOSaEFzP2ScQBgNMQ", + "name": "StationOne", + "address": "Temple University, N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9829369, + "longitude": -75.1547321, + "stars": 5.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "NoiseLevel": "'average'", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mediterranean, Falafel, Food Trucks, Food", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "ilms3tyoWYHDPo00lmrMOw", + "name": "Joe Coffee Bar", + "address": "1100 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484568, + "longitude": -75.1591412, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Specialty Food, Restaurants, Candy Stores, Coffee & Tea", + "hours": { + "Monday": "6:30-18:30", + "Tuesday": "6:30-18:30", + "Wednesday": "6:30-18:30", + "Thursday": "6:30-18:30", + "Friday": "6:30-18:30", + "Saturday": "8:0-18:30" + } + }, + { + "business_id": "fNL7OE0T2nXCt6gpPlxUOg", + "name": "Jats Auto Transfer", + "address": "9300 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0684550478, + "longitude": -75.0214217, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "True" + }, + "categories": "Truck Rental, Vehicle Shipping, Automotive", + "hours": { + "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-15:0" + } + }, + { + "business_id": "xSBPlusiuuEQVcFOg9AMgw", + "name": "Clark Park Dog Bowl", + "address": "43rd & Chester", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9484061, + "longitude": -75.2090355, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Pets, Parks, Dog Parks", + "hours": null + }, + { + "business_id": "GltVrzwcDYT9Om8tW6H3FA", + "name": "Fat Jack's Comicrypt", + "address": "2006 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512173, + "longitude": -75.1739013, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Comic Books, Books, Mags, Music & Video, Bookstores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:30", + "Saturday": "10:0-18:0", + "Sunday": "13:0-18:0" + } + }, + { + "business_id": "A4CPH0tLHOrtoTVNQcJSRQ", + "name": "Grand China Buffet", + "address": "29 Franklin Mills Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0837641, + "longitude": -74.9656554, + "stars": 2.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Chinese, Restaurants, Buffets, Do-It-Yourself Food, Food", + "hours": { + "Monday": "11:0-22:30", + "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": "11:0-22:0" + } + }, + { + "business_id": "QxYHiuXphuP0pVGVdCYP8g", + "name": "B N B Cigars", + "address": "7920 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.069825, + "longitude": -75.200436, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Local Flavor, Shopping", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "yZCvg0NgG2wbuuiEjhyCGg", + "name": "Helm Rittenhouse", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520009, + "longitude": -75.1720197, + "stars": 3.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, American (New), Tapas/Small Plates, Nightlife, Cocktail Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "jqJ697AWs-UgUN1MDOM2sA", + "name": "Rittenhouse Dentists", + "address": "1801 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9466103, + "longitude": -75.1715586, + "stars": 4.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "4", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Oral Surgeons, Dentists, Massage, Cosmetic Dentists, General Dentistry, Teeth Whitening, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0" + } + }, + { + "business_id": "8Nont52BjQCGlStK8Y687g", + "name": "Gemelli on Main", + "address": "4161 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.023536, + "longitude": -75.219756, + "stars": 3.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "Ambience": "{'romantic': True, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "RestaurantsAttire": "u'dressy'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "HasTV": "False", + "Caters": "False" + }, + "categories": "French, Italian, Restaurants", + "hours": { + "Monday": "17:0-21:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "hxztzzzHpUviu0dwdHM19w", + "name": "The North Face Philadelphia", + "address": "1515 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94965, + "longitude": -75.1667406882, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Shoe Stores, Fashion, Outdoor Gear, Sports Wear, Sporting Goods", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "sdfj6S0qzV5bx3FMDJnGIg", + "name": "Szechuan Hunan Chinese Restaurant", + "address": "274 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9483287, + "longitude": -75.1745225, + "stars": 3.5, + "review_count": 93, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants, Seafood, Soup", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "loH8elZE_ixjTvVug01SMw", + "name": "Brandons Nails", + "address": "7133 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0591208, + "longitude": -75.0858444, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "JiVO3KgLI5yVq4CRBac2SQ", + "name": "My Plumber", + "address": "1225 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9353909, + "longitude": -75.1642855, + "stars": 4.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Local Services, Hydro-jetting, Plumbing, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "QqEyFfbfX1hENo7-oL1vUw", + "name": "The March Hare", + "address": "131 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509045, + "longitude": -75.173629, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "rajhXVhe25WptAZx26UqTA", + "name": "Chick's Philly", + "address": "1807 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9387523, + "longitude": -75.1740837, + "stars": 4.0, + "review_count": 216, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BYOB": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "False", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", + "Smoking": "u'outdoor'", + "RestaurantsReservations": "True", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "OutdoorSeating": "True" + }, + "categories": "Beer Bar, Bars, Cocktail Bars, Restaurants, Nightlife, Pizza, Breakfast & Brunch", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "9xv80wlznxFUoKvrzbl7CQ", + "name": "Curly's Cleaners", + "address": "4022 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957099, + "longitude": -75.2029003, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'no'" + }, + "categories": "Local Services, Laundromat, Dry Cleaning, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "OPYFZTmRJwE4UnLppEZCHA", + "name": "Sportmaster Bait and Tackle", + "address": "6301 Ditman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0215169835, + "longitude": -75.054423, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Outdoor Gear, Hunting & Fishing Supplies, Restaurants, Sporting Goods, Fish & Chips, Active Life, Fishing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "10:0-16:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "oOO2VUntBvLTBDY5zOK8QQ", + "name": "Jefferson Obstetrics and Gynecology Assocs", + "address": "833 Chestnut St, Fl One", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9496892501, + "longitude": -75.1554191885, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Obstetricians & Gynecologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "Gm-Wqb_Jr4KX8QC0QqBDhg", + "name": "Fitler Dining Room", + "address": "2201 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486710323, + "longitude": -75.177930122, + "stars": 4.0, + "review_count": 168, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': True, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "3", + "Caters": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food, Desserts, Restaurants, American (New), Diners", + "hours": { + "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-21:0" + } + }, + { + "business_id": "eQJv9jSa6SNLb9X-uSJqgQ", + "name": "Hotpot Gourmet ็ซ้”…ๅฐ้ฆ†", + "address": "4255 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0248447, + "longitude": -75.2215266, + "stars": 3.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "None", + "NoiseLevel": "u'average'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Hot Pot, Chinese, Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "gB9c_OMjvGrn36XjHArAUQ", + "name": "LaScala's Pronto", + "address": "1501 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9629157, + "longitude": -75.1631614, + "stars": 3.5, + "review_count": 171, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Salad, Italian, Pizza, Restaurants", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "yc76PdPdke67hWc8OAyQCA", + "name": "Mark's Cafe", + "address": "3420 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527242, + "longitude": -75.1940217, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "Alcohol": "'none'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Coffee & Tea, Bagels, Food, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "6lt2RCjc5Pzm7jGg6n0Zsg", + "name": "room service 360", + "address": "2031 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.111226, + "longitude": -75.002942, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False" + }, + "categories": "Home Decor, Furniture Stores, Shopping, Home & Garden, Rugs", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "_ilpeu5wHnxEcsqPDhDMZw", + "name": "Guida Door & Window", + "address": "2106 S 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9275993, + "longitude": -75.2333718, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Door Sales/Installation, Garage Door Services, Windows Installation, Home Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "xR812rwwVSK4MQcB8QsEnQ", + "name": "Twenty First Street Gourmet", + "address": "119 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511019, + "longitude": -75.1755382, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "cgwydv-BvXL5A_h_SaCTNQ", + "name": "Menagerie Coffee at The Bourse", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "s8FLEVtQMV84fKUgjMPKaA", + "name": "Staples", + "address": "9906 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0922631, + "longitude": -75.017803, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Local Services, Printing Services, Shopping, Office Equipment", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "ttodCnIIrHYuz_vKuG7erQ", + "name": "Fish Town Beverage Center", + "address": "1511 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9735861, + "longitude": -75.1333922, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Food, Beer, Wine & Spirits", + "hours": null + }, + { + "business_id": "qFwKNXKt2fvCatrLAqDONg", + "name": "Taco Bell", + "address": "499 Franklin Mills Circle", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.09163, + "longitude": -74.95799, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Caters": "False", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': None}" + }, + "categories": "Restaurants, Breakfast & Brunch, Tacos, Fast Food, Tex-Mex, Mexican", + "hours": { + "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" + } + }, + { + "business_id": "NCwvtN1oZvLamyOhZ2OzAQ", + "name": "LA Fitness", + "address": "1435 Walnut Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9497264263, + "longitude": -75.1657220984, + "stars": 2.0, + "review_count": 39, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sports Clubs, Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "6:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "y_H1AXgaFWV1EsetArescA", + "name": "Chi Ken", + "address": "938 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553258698, + "longitude": -75.1554692182, + "stars": 3.5, + "review_count": 64, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Asian Fusion, Taiwanese, Restaurants, Chicken Shop, Food, Bubble Tea, Fast Food", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "eaUSPTynZkTg3qj_drNxPQ", + "name": "Okie Dokie Donuts", + "address": "1439 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9247659, + "longitude": -75.1710571, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Caterers, Gluten-Free, Donuts, Event Planning & Services, Restaurants, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "8:30-13:0", + "Friday": "8:30-13:0", + "Saturday": "8:30-13:0", + "Sunday": "8:30-13:0" + } + }, + { + "business_id": "B6RTtrOfGwXoTCJUNIsVJg", + "name": "Deneen Marcel Lashes", + "address": "624 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9611401, + "longitude": -75.1388155, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "EQli38poQh7nB01_xFxxTg", + "name": "Prince & Baron", + "address": "1500 Walnut St, Fl 7, Ste 700-21A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948958, + "longitude": -75.166447, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Formal Wear, Men's Clothing, Shopping, Fashion, Bespoke Clothing", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-19:0", + "Friday": "10:30-19:0", + "Saturday": "10:30-19:0" + } + }, + { + "business_id": "gi3skeX7tem47pqrWyam8g", + "name": "Stockbridge Fine Art Print", + "address": "319A N 11th St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9583729, + "longitude": -75.1566054, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Local Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "yJ1g8Q_z20wzUe53tUMsIg", + "name": "Bank of America Financial Center", + "address": "423 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970613328, + "longitude": -75.129862554, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "6YTyBjO6M99YgIRZztaRZg", + "name": "Pho 75", + "address": "1022 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955197, + "longitude": -75.15685, + "stars": 4.0, + "review_count": 74, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Vietnamese, Restaurants", + "hours": null + }, + { + "business_id": "yukhGNx1-95mr1IivCU31Q", + "name": "10 Arts Lounge", + "address": "10 Ave of the Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9512442, + "longitude": -75.1642799, + "stars": 3.5, + "review_count": 38, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "HappyHour": "True", + "BikeParking": "True" + }, + "categories": "Lounges, Nightlife, Bars", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "ILn5k61JhHO3dHmv_JVG4Q", + "name": "Philadelphia Tattoo Collective", + "address": "1842 N Front St, Ste B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.978073, + "longitude": -75.133944, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "True" + }, + "categories": "Beauty & Spas, Tattoo", + "hours": { + "Monday": "0:0-21:0", + "Tuesday": "0:0-21:0", + "Wednesday": "0:0-21:0", + "Thursday": "0:0-21:0", + "Friday": "0:0-21:0" + } + }, + { + "business_id": "tL-eas27iNqrRra_BYeVwA", + "name": "Umbria Golf Center", + "address": "7200 Umbria St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.039738, + "longitude": -75.242878, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Golf, Active Life", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "fSRCT2Gtc_RkO-JzR5mEZA", + "name": "Bubble Tunnel", + "address": "6135 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0469283112, + "longitude": -75.1424478291, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Car Wash, Automotive", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "rcjVayUW3WjF5CL-SBMy-A", + "name": "Four Seasons Hotel", + "address": "1 Logan Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9568965248, + "longitude": -75.1696477306, + "stars": 4.0, + "review_count": 121, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Hotels & Travel, Beauty & Spas, Hotels, Event Planning & Services, Day Spas", + "hours": null + }, + { + "business_id": "vlGBKK9Ti07MYibNQbTq5g", + "name": "Philadium", + "address": "1631 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9126266, + "longitude": -75.1764034, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Bars, American (Traditional), Restaurants, Sports Bars, Nightlife", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-0:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "fWPqX4qWh3J25xzLzqLo3w", + "name": "Public Storage", + "address": "2700 Grant Ave, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.073687, + "longitude": -75.020286, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "U_px8EKJcvrqvYuq7he_sA", + "name": "777 South Broad", + "address": "777 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94128, + "longitude": -75.16576, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Apartments, Real Estate", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "0yqpaakk5iM70s1c-L-lkA", + "name": "All That Jazz Sound & Security", + "address": "4977 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.975243, + "longitude": -75.221986, + "stars": 5.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Auto Security, Automotive, Auto Parts & Supplies, Car Stereo Installation, Auto Customization", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "Vuagn0IMG5Ug2X3dhvZ9uw", + "name": "G Casamera Hair Salon & Day Spa", + "address": "901 S 55th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9455041, + "longitude": -75.2320436, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Day Spas", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:0", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:30" + } + }, + { + "business_id": "VbEm2EN2rpCqSQDVnIZZuw", + "name": "McDonald's", + "address": "4200 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0173649056, + "longitude": -75.149853, + "stars": 1.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "DriveThru": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Fast Food, Coffee & Tea, Burgers, Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-4:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "oRLG5fJrGJzzj4AO4yjqMg", + "name": "Dragon Phoenix House", + "address": "2839 Tyson Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0395338, + "longitude": -75.0564261, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "14:30-22:0" + } + }, + { + "business_id": "2x1ahdJXuZmhxwzayUaokA", + "name": "Jerusalem Furniture", + "address": "5691 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0402351, + "longitude": -75.1076964, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": null + }, + { + "business_id": "KB3I1jQFeJqCHhVHY7TieQ", + "name": "Stanley's Hardware", + "address": "5555 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0253930587, + "longitude": -75.2082846908, + "stars": 5.0, + "review_count": 125, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Hardware Stores, Shopping, Home & Garden", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "qg4dxUN2myUvbyIm03T9oA", + "name": "Chenatural", + "address": "1650 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952659, + "longitude": -75.1680966, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Beauty & Spas, Shopping, Cosmetics & Beauty Supply", + "hours": null + }, + { + "business_id": "2Gik-IBYVBuU3e10pVdkhw", + "name": "Plenty Cafรฉ", + "address": "1710 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9284842, + "longitude": -75.1653613, + "stars": 3.5, + "review_count": 153, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Sandwiches, American (Traditional), Food, Coffee & Tea, Delis, Nightlife, Restaurants", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "-3Z9SadSY-w_ckVGQ0dedQ", + "name": "Center City Towing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Roadside Assistance, Towing", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "rf61wwRstw_Xhk7CX1slAw", + "name": "Gamestop", + "address": "505 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941973, + "longitude": -75.1509592, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Videos & Video Game Rental, Electronics, Books, Mags, Music & Video", + "hours": null + }, + { + "business_id": "pnvgzxwsuYSx0PbgfF_qxQ", + "name": "Emperor Restaurant", + "address": "725 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.105803, + "longitude": -75.033531, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "4", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True" + }, + "categories": "Modern European, American (Traditional), Restaurants, Russian", + "hours": { + "Tuesday": "13:0-19:0", + "Wednesday": "13:0-19:0", + "Thursday": "13:0-19:0", + "Friday": "13:0-3:0", + "Saturday": "13:0-3:0", + "Sunday": "13:0-3:0" + } + }, + { + "business_id": "QYnfbwG2fDfuWAI6RbGz4g", + "name": "Craft & Claw", + "address": "126 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948092, + "longitude": -75.143565, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Seafood, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "sC45E7YvilOD4mAngrr3dw", + "name": "King's Wok Chinese Food", + "address": "S 33rd St & South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9503343, + "longitude": -75.1917158, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Food Trucks, Food, Food Stands, Chinese", + "hours": { + "Monday": "11:0-19:30", + "Tuesday": "11:0-19:30", + "Wednesday": "11:0-19:30", + "Thursday": "11:0-19:30", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30" + } + }, + { + "business_id": "8jmTWp1l7gjs0sJJMthMsw", + "name": "Blue Bay Restaurant", + "address": "7642 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9776902555, + "longitude": -75.2723037139, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForKids": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "DriveThru": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': False}" + }, + "categories": "Soul Food, Seafood, Chicken Shop, Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "0:0-21:30" + } + }, + { + "business_id": "KaSlMK8uWCVVukYuanF5uA", + "name": "Millevoi Brothers", + "address": "2075 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1085216, + "longitude": -75.0004377, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Tires, Automotive, Car Dealers, Auto Repair", + "hours": { + "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": "8:0-14:0" + } + }, + { + "business_id": "xHsCrn35_NHPoEiBs9kWwg", + "name": "Cappelli Brothers Cigar Company", + "address": "211 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948392, + "longitude": -75.1621289, + "stars": 4.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "Smoking": "u'yes'", + "WiFi": "'free'", + "HappyHour": "True", + "NoiseLevel": "'average'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "BikeParking": "True", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "Music": "{'dj': False}", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': None, 'valet': False}", + "OutdoorSeating": "True" + }, + "categories": "Nightlife, Bars, Shopping, Hookah Bars, Vape Shops, Tobacco Shops", + "hours": { + "Monday": "10:0-0:0", + "Tuesday": "10:0-0:0", + "Wednesday": "10:0-0:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "_zIs2Rzj4KQpnFRxKrT_sA", + "name": "Little Caesars", + "address": "5901 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9823271, + "longitude": -75.2393831, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "O6Mn8SQzavRYCOiVeuZ6Jw", + "name": "Philadelphia Eyeglass Labs", + "address": "1547 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.925103, + "longitude": -75.1726432, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Health & Medical, Optometrists, Eyewear & Opticians", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "q-uEumFCOWgE0axea7O8mw", + "name": "Lava", + "address": "13033 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.124376, + "longitude": -75.014511, + "stars": 3.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "'average'", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "BusinessParking": "None" + }, + "categories": "Russian, Salad, Diners, Modern European, Restaurants", + "hours": { + "Tuesday": "8:0-22:0" + } + }, + { + "business_id": "Rfzv9xWZSGetxgC7Nw5dQA", + "name": "Beechwood Gardens", + "address": "9805 Haldeman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0942057, + "longitude": -75.0291702, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "ZUp2DI8r1ro5iY3ldR6x6w", + "name": "Jeans Cafe", + "address": "1334 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491798, + "longitude": -75.1635651, + "stars": 4.0, + "review_count": 180, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}" + }, + "categories": "Sandwiches, Restaurants", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0" + } + }, + { + "business_id": "dyNgfmu0wiQej_ivrxOSqw", + "name": "LA Fitness", + "address": "3400 Aramingo Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9913623, + "longitude": -75.1013861, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Active Life, Fitness & Instruction, Gyms, Sports Clubs, Trainers", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-21:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "PmAd6HbeqJLMy0s9txsZzw", + "name": "Morgan Chiropractic Center", + "address": "1019 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9394158, + "longitude": -75.1600788, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Nutritionists, Chiropractors", + "hours": null + }, + { + "business_id": "U_bggtYOkK-teWol46LHrw", + "name": "Vincent's Pizza", + "address": "6452 Lansdowne Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9747601, + "longitude": -75.2491767, + "stars": 4.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "Caters": "False", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0" + } + }, + { + "business_id": "xCAQ9Ft47lxgTOIgJ0xVyA", + "name": "Sherwood Crossing Apartments & Townhomes", + "address": "3400 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0743943268, + "longitude": -74.9870010381, + "stars": 1.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "TY4UT7ZHW9cfzxvna4mnfQ", + "name": "Dhyana Yoga", + "address": "2000 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963282, + "longitude": -75.171177, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Yoga, Fitness & Instruction", + "hours": null + }, + { + "business_id": "DwOhLOd9Say7BXn5iBKxZA", + "name": "Los Taquitos de Puebla ", + "address": "1201 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9341406, + "longitude": -75.1586879, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "P9HxiR4Zd2Nf5aQw-88oZA", + "name": "Ristorante Mamma Maria's", + "address": "1637 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9290917, + "longitude": -75.1640917, + "stars": 3.5, + "review_count": 97, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "kj3Lyh9KooU8GcRBbMDQWQ", + "name": "Le Pain Quotidien", + "address": "1425 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949621, + "longitude": -75.165252, + "stars": 3.5, + "review_count": 312, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Bakeries, Breakfast & Brunch, Coffee & Tea, Food, Belgian, French", + "hours": { + "Monday": "7:30-16:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "1TMkNxmaJuMCZh1osxizPA", + "name": "Shake Shack", + "address": "3200 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953511, + "longitude": -75.18839, + "stars": 3.5, + "review_count": 218, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'beer_and_wine'", + "RestaurantsReservations": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "American (Traditional), Restaurants, Food, Cheesesteaks, Ice Cream & Frozen Yogurt, Hot Dogs, Burgers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "fbtGwXqVRp-3ywcpK4zxsQ", + "name": "TEC Endodontics", + "address": "1601 Walnut St, Ste 402", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Endodontists, Health & Medical, Oral Surgeons, Dentists", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:30-13:30", + "Saturday": "8:30-13:30" + } + }, + { + "business_id": "vGB3LpJCXte0OC9xx-VqyQ", + "name": "Goodwill", + "address": "9920 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1013378, + "longitude": -75.0301528, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Thrift Stores, Shopping", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "WGfnSTCWAzk1xqtkJVB7RA", + "name": "Sushi Planet", + "address": "624 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9407229718, + "longitude": -75.147974, + "stars": 3.5, + "review_count": 192, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "WiFi": "u'no'", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTableService": "True", + "HasTV": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "False" + }, + "categories": "Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "16:0-21:30", + "Tuesday": "16:0-21:30", + "Wednesday": "12:0-21:30", + "Thursday": "12:0-21:30", + "Friday": "12:0-22:30", + "Saturday": "17:0-22:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "EaGQz-Y2aAdfrn1XXgjJ6A", + "name": "Ultimo Coffee", + "address": "2149 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.942568, + "longitude": -75.17902, + "stars": 4.0, + "review_count": 156, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "ByAppointmentOnly": "False", + "Caters": "False" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "5Orn19gUeqCgKu5IRYlvpQ", + "name": "Popeyes Louisiana Kitchen", + "address": "2027 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.924743, + "longitude": -75.1690735, + "stars": 3.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "DriveThru": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "None", + "WiFi": "'free'" + }, + "categories": "American (Traditional), Fast Food, Food, Chicken Wings, Restaurants", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "3xqI9xG6MFQYkCPVED985Q", + "name": "Frak's Steaks", + "address": "114 Levering St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0263908, + "longitude": -75.2244345, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Caters": "True" + }, + "categories": "Sandwiches, Restaurants, Cheesesteaks", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "xdqIB-PWPv6JUhrGHyKdOg", + "name": "Not Just Pizza", + "address": "2240 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9213449, + "longitude": -75.1651519, + "stars": 2.5, + "review_count": 97, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "American (Traditional), Sandwiches, Burgers, Restaurants, Pizza, Event Planning & Services, Italian", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "4hdSKMhViv3knwCF9auwYA", + "name": "Washington Square Park", + "address": "W Washington Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.947059, + "longitude": -75.152342, + "stars": 4.5, + "review_count": 100, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Active Life, Parks", + "hours": null + }, + { + "business_id": "zAGKuYlERFH-NRtds3q6EA", + "name": "Transit Nightclub", + "address": "600 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9612862, + "longitude": -75.1482101, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Dance Clubs, Nightlife", + "hours": null + }, + { + "business_id": "iy5qn9Yw0vepq9lxM03pGQ", + "name": "Food Basics", + "address": "8920 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0522301, + "longitude": -75.0104222, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "NqPoW5VpfnzmG4x1htuxUg", + "name": "Big City Tattoo Studio", + "address": "2635 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9743314, + "longitude": -75.1800625, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Piercing, Tattoo, Arts & Entertainment", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0" + } + }, + { + "business_id": "m79Xp_Z5tvKgtSWvKXK9_A", + "name": "South Philadelphia Locksmith", + "address": "2600 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9169989, + "longitude": -75.162864, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Security Systems, Garage Door Services, Home Services, Door Sales/Installation, Keys & Locksmiths, Professional Services", + "hours": { + "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" + } + }, + { + "business_id": "hE8DF4hPIF4T2NiQepj6ig", + "name": "Joshua Wolgin, DMD", + "address": "255 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Endodontists, Health & Medical, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "q9tRbDIim_Blb7DmAo6Gow", + "name": "The Dinner House", + "address": "2706 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.98414, + "longitude": -75.102622, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': None}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Polish, Modern European, Caterers, Event Planning & Services", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "i6jA8vSHrP9LiUPHlqPVwA", + "name": "Cafe Olรฉ", + "address": "147 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9535194938, + "longitude": -75.1448114998, + "stars": 4.0, + "review_count": 371, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "Caters": "False", + "BYOB": "False", + "ByAppointmentOnly": "False", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Food, Mediterranean, Coffee & Tea, Restaurants", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "c72aNhUfFbeJsJzGRsSqpw", + "name": "Red Central Chinese Restaurant", + "address": "1220 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0051956761, + "longitude": -75.1040227486, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'quiet'", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsReservations": "True" + }, + "categories": "Food Delivery Services, Sandwiches, Food, Asian Fusion, Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "oDl1Zh9L7rM3o5RNur0kZA", + "name": "Lee's Market", + "address": "423 N 36th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9623033162, + "longitude": -75.1940774918, + "stars": 4.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Cheesesteaks, Coffee & Tea, Italian, Turkish, Sandwiches, Grocery, Restaurants, Convenience Stores, Food", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "8:30-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "w4NsEeqUfkHqKDXiBKpuKA", + "name": "McKeown Beverages", + "address": "6830 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.05555, + "longitude": -75.090723, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "11:30-18:30" + } + }, + { + "business_id": "HWTq8bdRdf6feY75Twgwmg", + "name": "Cajun Heroes Seafood Boil Gumbo & Poโ€™Boys", + "address": "228 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412059, + "longitude": -75.1468728, + "stars": 4.0, + "review_count": 77, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "False", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': False}" + }, + "categories": "American (New), Seafood, Cajun/Creole, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "u4qHq8Hi4S7ookhvFxp_cg", + "name": "Fidelity Investments", + "address": "1735 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "8Iun0Mjc2PvFx9-iNR7qyQ", + "name": "CrossFit University City", + "address": "109 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952312, + "longitude": -75.179007, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Boot Camps, Interval Training Gyms, Gyms, Trainers, Fitness & Instruction, Active Life", + "hours": { + "Monday": "16:30-20:30", + "Tuesday": "16:30-20:30", + "Wednesday": "16:30-20:30", + "Thursday": "16:30-20:30", + "Friday": "16:30-19:30", + "Saturday": "9:0-12:0", + "Sunday": "17:30-18:30" + } + }, + { + "business_id": "0LLqluhzWOkz2H0GmSY_Sg", + "name": "Moda", + "address": "110 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480619, + "longitude": -75.1430228, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Italian, Nightlife, Lounges, Bars, Restaurants", + "hours": null + }, + { + "business_id": "d48Xrx8MhGtdaLvhcYzNWQ", + "name": "Cafe Diem", + "address": "1031 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9362435, + "longitude": -75.15667, + "stars": 4.5, + "review_count": 264, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "Alcohol": "u'none'", + "Caters": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "None", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-18:30" + } + }, + { + "business_id": "I5ueHDysyhKzHkE5Nw4Rew", + "name": "Diamond Spa", + "address": "8430 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0755313, + "longitude": -75.2059033, + "stars": 4.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Day Spas, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "8aT-k89xn1eU-eJPgEBDlA", + "name": "Taqueria Amor", + "address": "4410 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258865, + "longitude": -75.2250935, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "BYOB": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}", + "Corkage": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Mexican", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "v_scBvvSX53Dz2ze_nctoA", + "name": "Nature's Gallery Florist", + "address": "2124 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508007, + "longitude": -75.1769962, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "True" + }, + "categories": "Party Equipment Rentals, Wedding Planning, Shopping, Event Planning & Services, Floral Designers, Florists, Flowers & Gifts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "7rXZnfu2QJBfpp44B8lq5Q", + "name": "Roma's Pizza", + "address": "6129 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0344556, + "longitude": -75.2159653, + "stars": 4.5, + "review_count": 83, + "is_open": 1, + "attributes": { + "Caters": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "0vXMkbz-7AdMqw9G0ZJWTA", + "name": "Julia Taylor Massage Therapy", + "address": "440 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9704022, + "longitude": -75.128969, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Massage, Massage Therapy, Health & Medical, Beauty & Spas", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "Ziz72ECTl_7Rx_BdpRoxMA", + "name": "Waterfront Winterfest At Penn's Landing", + "address": "101 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94992, + "longitude": -75.14664, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Festivals", + "hours": null + }, + { + "business_id": "Mm0_9ASJUhxVbjALMaTw6Q", + "name": "Chestnut Food Market", + "address": "812 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494826, + "longitude": -75.1544803, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Delis, Sandwiches", + "hours": { + "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": "9:0-17:0" + } + }, + { + "business_id": "AyntLaeIPrfGkTWe52Vj3A", + "name": "The Body Shop", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Skin Care", + "hours": { + "Monday": "0:0-18:0", + "Tuesday": "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": "9:30-19:0" + } + }, + { + "business_id": "eRdMVvBObDLkZ5ykz1irkg", + "name": "Doc Bresler's Cavity Busters", + "address": "6801 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0425638738, + "longitude": -75.2260826156, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Pediatric Dentists, Health & Medical", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "10:0-19:0", + "Friday": "8:30-17:30", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "l4YoHcvnsK7ICDrTqL7EEg", + "name": "Vernick Fish", + "address": "1876 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955307, + "longitude": -75.171122, + "stars": 4.5, + "review_count": 129, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "HappyHour": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "Corkage": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "BYOB": "False", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsPriceRange2": "3", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}" + }, + "categories": "Food, Tapas/Small Plates, Desserts, Restaurants, Live/Raw Food, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "18:0-22:0", + "Thursday": "18:0-22:0", + "Friday": "18:0-22:0", + "Saturday": "18:0-22:0" + } + }, + { + "business_id": "ZY5L2t9f3uoPh9zosE4OPQ", + "name": "Mr. Wish", + "address": "1426 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.978707, + "longitude": -75.1592124, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "DogsAllowed": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Bubble Tea, Food, Juice Bars & Smoothies", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "R0uH4WFjZZbjSt7tqwXIqg", + "name": "Compassion Veterinary Clinic", + "address": "9324 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0478274, + "longitude": -74.9918598, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Veterinarians, Doctors, Pet Sitting, Health & Medical, Pets, Pet Groomers, Pet Boarding, Pet Services", + "hours": { + "Tuesday": "17:30-20:30", + "Thursday": "15:30-18:0", + "Friday": "17:30-20:30", + "Saturday": "9:0-11:0" + } + }, + { + "business_id": "t37dsDBpe65qUb81OSFr-g", + "name": "Philadelphia Theatre Company", + "address": "480 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9448916, + "longitude": -75.1654997, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "DogsAllowed": "False" + }, + "categories": "Arts & Entertainment, Cinema, Performing Arts, Ticket Sales", + "hours": null + }, + { + "business_id": "E2_AzxFPus5ztQecqq_j4A", + "name": "Nine West", + "address": "1625 Chestnut St, Ste 126, Shops At Liberty Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Fashion, Accessories, Shoe Stores, Shopping", + "hours": null + }, + { + "business_id": "531hWwPHP-dOJbzCyt4VBw", + "name": "Today's Woman: Sharan Abdul-Rahman, MD, MBA, NCMP", + "address": "1015 Chestnut St, Ste 907", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950236, + "longitude": -75.157657, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Doctors, Medical Centers, Obstetricians & Gynecologists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0" + } + }, + { + "business_id": "M0NNxVaepbnGSHQEXyxt8Q", + "name": "Chiarella's Ristorante", + "address": "1600 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9297224, + "longitude": -75.1632703, + "stars": 4.0, + "review_count": 110, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "csfMjRRfr-sku6L6bhEf_A", + "name": "Local Tavern", + "address": "8000 Essington Ave, Gate F11, Terminal F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8951784, + "longitude": -75.2279726, + "stars": 2.5, + "review_count": 275, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "GoodForDancing": "False", + "HappyHour": "False", + "WiFi": "u'free'", + "GoodForKids": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': False, u'validated': False}", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Bars, Nightlife, American (New), Italian, American (Traditional)", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "KkHtIFckgv9udL2RKWRU4w", + "name": "The Music Fountain Cafe", + "address": "308 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969711, + "longitude": -75.131355, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "qZmJGx9UOd6JaE1gMJh2jg", + "name": "The Taggart House", + "address": "9961 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0646888, + "longitude": -74.9812645, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Smoking": "u'outdoor'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "BikeParking": "True" + }, + "categories": "Nightlife, Bars, Sports Bars, Pubs, Restaurants, Chicken Wings", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "hKfs-tsper4UuAOiG23z2A", + "name": "Two Persons Coffee", + "address": "1901 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9252954, + "longitude": -75.159828, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "ITRCsFTe83h3SSs4Dy347w", + "name": "Peer Property Management", + "address": "1526 N 2nd St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9743654, + "longitude": -75.13867, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Property Management", + "hours": null + }, + { + "business_id": "spz7ztVQTTO-Kv_FFD6ysw", + "name": "CVS Pharmacy", + "address": "1001 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373760925, + "longitude": -75.1609236012, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Convenience Stores, Food, Health & Medical, Drugstores, Pharmacy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "FVqZjT4m3pigbrJPLP7Kfw", + "name": "Nordstrom Rack", + "address": "1700 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513338, + "longitude": -75.169, + "stars": 3.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "None", + "BikeParking": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Outlet Stores, Women's Clothing, Shoe Stores, Department Stores, Shopping, Discount Store, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "VDJrE9enDtjbzhr6vCRI1Q", + "name": "Lithe Method", + "address": "219 Cuthbert St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514833, + "longitude": -75.1444474, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Active Life, Barre Classes, Gyms", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "17:0-20:0", + "Wednesday": "17:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "17:0-19:0", + "Saturday": "8:0-11:30", + "Sunday": "8:0-12:30" + } + }, + { + "business_id": "wt3g5oHBuvpMJb_ZYFIGMQ", + "name": "12th Street Catering", + "address": "3312 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9627864, + "longitude": -75.1903545, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "0sb5sHF_BNcUzDxuia-D1w", + "name": "Resurrection Ale House", + "address": "2425 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.942818, + "longitude": -75.183322, + "stars": 4.0, + "review_count": 257, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Gastropubs, Nightlife, Bars", + "hours": { + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "XJq2EZRdNT-Yrm1UIK0i_A", + "name": "WYBE-35", + "address": "8200 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0582275391, + "longitude": -75.2379608154, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Mass Media, Television Stations", + "hours": null + }, + { + "business_id": "M8gqtBtaryMw4a5QStE1QQ", + "name": "Arbol Cafรฉ", + "address": "209 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9643891, + "longitude": -75.1410147, + "stars": 4.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Venues & Event Spaces, Event Planning & Services, Latin American, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "58Etdgo1QYkcOdZC7xTQgA", + "name": "Jeni's Splendid Ice Creams", + "address": "1901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9520009, + "longitude": -75.1720184, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Desserts, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "ySlb6aLKqaUmS9TS7ZCI7w", + "name": "Zesto Pizza & Grill", + "address": "125 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546963178, + "longitude": -75.2023281628, + "stars": 4.0, + "review_count": 127, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "False", + "Alcohol": "'none'", + "OutdoorSeating": "None", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Pizza, Restaurants, Chicken Wings, Food, Cheesesteaks, American (Traditional), Burgers, Desserts, Salad", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "WMDyPlL0JqdjWf0X5pJSeA", + "name": "Tri State Waste & Recycling Inc", + "address": "8950 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0426464057, + "longitude": -75.0009815899, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Dumpster Rental, Local Services", + "hours": { + "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-12:0" + } + }, + { + "business_id": "ZNPnBdUeGF93-d9BwVmPEA", + "name": "Jinxed", + "address": "4521 W Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9492264, + "longitude": -75.2137885, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True" + }, + "categories": "Home Decor, Antiques, Shopping, Used, Vintage & Consignment, Home & Garden, Fashion, Women's Clothing", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "u4Sc7E1Jl0q3HrOIaLUzRA", + "name": "Cobblestone Kids", + "address": "1352 South St, Ste C5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432966, + "longitude": -75.1646617, + "stars": 4.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Pediatric Dentists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "FZAf9spYl0bMp9Yokdcxyg", + "name": "Philadelphia Eyeglass Labs", + "address": "1030 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9535367, + "longitude": -75.1575416, + "stars": 4.0, + "review_count": 60, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "AcceptsInsurance": "True" + }, + "categories": "Eyewear & Opticians, Optometrists, Shopping, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "VVB5Jrq2TBBIeOjb16-mdg", + "name": "Replenish Massage Spa", + "address": "1440 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9734985, + "longitude": -75.1389295, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "AcceptsInsurance": "True" + }, + "categories": "Skin Care, Tanning, Body Contouring, Spray Tanning, Reflexology, Health & Medical, Massage Therapy, Day Spas, Massage, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "jXBEBuOia2FpEcH_YbAX6Q", + "name": "Global Airport Parking", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8783839766, + "longitude": -75.2462985152, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "QSX3ezwj6-KLCrLyrc9ZPA", + "name": "The Fresh Grocer of 56th & Chestnut", + "address": "5601 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.960419, + "longitude": -75.233777, + "stars": 2.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "6:0-0:0", + "Tuesday": "6:0-0:0", + "Wednesday": "6:0-0:0", + "Thursday": "6:0-0:0", + "Friday": "6:0-0:0", + "Saturday": "6:0-0:0", + "Sunday": "6:0-0:0" + } + }, + { + "business_id": "8r2jQO1QBDtzQpoH82BCUg", + "name": "Powelton Properties", + "address": "428 N 34th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9626176, + "longitude": -75.1915934, + "stars": 1.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Property Management, Home Services", + "hours": null + }, + { + "business_id": "v7RMWJJ48HrX1gI8DXZbew", + "name": "Convention Center Parking Facility", + "address": "1324 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954035, + "longitude": -75.16245, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking, Local Flavor", + "hours": { + "Monday": "6:0-6:0", + "Tuesday": "6:0-6:0", + "Wednesday": "6:0-6:0", + "Thursday": "6:0-6:0", + "Friday": "6:0-6:0", + "Saturday": "6:0-6:0", + "Sunday": "6:0-6:0" + } + }, + { + "business_id": "Z-tqtgCNUEzHPdbE7NTPuA", + "name": "Famous 4th Street Cookie", + "address": "4177 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0083072, + "longitude": -75.1933646, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Bakeries, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-14:0", + "Wednesday": "8:0-14:0", + "Thursday": "8:0-14:0", + "Friday": "8:0-12:30" + } + }, + { + "business_id": "xYHDcds5WortjUJnfvh_wA", + "name": "Chili Garden", + "address": "4626 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9485252, + "longitude": -75.2162502, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "Caters": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants, Szechuan, Japanese, Asian Fusion", + "hours": { + "Tuesday": "12:0-20:30", + "Wednesday": "12:0-20:30", + "Thursday": "12:0-20:30", + "Friday": "12:0-20:30", + "Saturday": "12:0-20:30", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "9B1nqt_eBfbgUj1AlPGYBQ", + "name": "Yarnphoria", + "address": "1020 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9446454, + "longitude": -75.1590146, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Knitting Supplies, Shopping", + "hours": { + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "9UjfWkopi0l9Ttw79S0YXQ", + "name": "Laz Parking", + "address": "114 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9505689, + "longitude": -75.1657393, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Parking", + "hours": null + }, + { + "business_id": "8p3PElrcriCFow9aErPMQA", + "name": "Charlotte's Ear Piercing Service", + "address": "3600 Conshohocken Ave, Ste S C-11, River Park House", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.003884, + "longitude": -75.2017305, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "None", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Piercing", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "wUzarCJUtAMcsR3Lt2B45A", + "name": "National Greyhound Adoption Program", + "address": "10901 Dutton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0874571, + "longitude": -74.9899268, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services", + "hours": null + }, + { + "business_id": "aDwusJ7KnvHr_-HxGGJbKg", + "name": "Ck Roofing and Siding", + "address": "296 Hermitage St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0335617, + "longitude": -75.2261324, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Siding, Roofing", + "hours": null + }, + { + "business_id": "qeGoudzR2NO9KtLdmSHtpQ", + "name": "Pizza House & Steaks", + "address": "1901 1/2 E Washington Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0661423, + "longitude": -75.1594233, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Italian, Cheesesteaks, Pizza, Restaurants, Sandwiches", + "hours": { + "Monday": "11:0-22:30", + "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-21:30" + } + }, + { + "business_id": "4PS-LXxGPlNM24Hmt4a4nw", + "name": "Shimmer and Spice", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "18976", + "latitude": 40.247267, + "longitude": -75.1428632, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Makeup Artists, Beauty & Spas", + "hours": null + }, + { + "business_id": "FfBslprOhObk8m4QcgUGcw", + "name": "Liberty Lands", + "address": "913-961 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.965642, + "longitude": -75.142115, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Playgrounds, Parks, Active Life", + "hours": null + }, + { + "business_id": "FmiF5GwSlG0tiZnmGa0Hvw", + "name": "Capital Dispatch", + "address": "1411 S Mildred St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931247, + "longitude": -75.158269, + "stars": 2.5, + "review_count": 64, + "is_open": 0, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Taxis, Airport Shuttles", + "hours": null + }, + { + "business_id": "EK98686MS55Oz6Lob2DGcA", + "name": "Rite Aid", + "address": "801 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939291, + "longitude": -75.157321, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Drugstores, Convenience Stores, Shopping, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "MdxSCDMlOPZ2peHIDUZSFg", + "name": "Courtyard by Marriott Philadelphia Airport", + "address": "8900 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8849770662, + "longitude": -75.2513694763, + "stars": 3.5, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "WiFi": "u'free'" + }, + "categories": "Hotels & Travel, Event Planning & Services, Hotels, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "XJxumy6oZFo2fkPwAIqjpw", + "name": "Bank of America Financial Center", + "address": "932 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949851874, + "longitude": -75.15690047, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-14:0", + "Friday": "9:0-14:0", + "Saturday": "10:0-13:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "xTpXA1J2Yl3iLB9RXDGwcw", + "name": "Deli at Dwell", + "address": "1300 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9711930305, + "longitude": -75.139858747, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, Delis, Beverage Store, Food, Juice Bars & Smoothies", + "hours": { + "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" + } + }, + { + "business_id": "D0gEvEMLeag7CtcaCCStPg", + "name": "Philadelphia VA Medical Center", + "address": "3900 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9479816, + "longitude": -75.2001349, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Medical Centers", + "hours": { + "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" + } + }, + { + "business_id": "QGCj7OANecI2SX31_3SYQA", + "name": "Produce Junction", + "address": "2241 Bryn Mawr Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9926388, + "longitude": -75.226144, + "stars": 4.0, + "review_count": 64, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Fruits & Veggies, Food, Specialty Food, Farmers Market", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30", + "Saturday": "8:0-17:30", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "1mHwt5rp9aKqUcFsNTBVVQ", + "name": "Miran", + "address": "2034 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951986, + "longitude": -75.17492, + "stars": 3.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Korean, Restaurants", + "hours": null + }, + { + "business_id": "Pnxr8LN-5rqxENU9HOSX9Q", + "name": "moonbowls", + "address": "1308 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707291163, + "longitude": -75.1577367884, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vegetarian, Restaurants, Gluten-Free, Korean", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "Sh92jt5l8UtW3Gs-RbbK1Q", + "name": "Cafe Ayla", + "address": "1700 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9274785, + "longitude": -75.1557124, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BYOB": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "WheelchairAccessible": "False" + }, + "categories": "Asian Fusion, Thai, Restaurants, Cafes", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0", + "Saturday": "14:0-20:0", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "o6jgjerPGnQQUUJZtqPwWQ", + "name": "Pizza Hut", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.902128, + "longitude": -75.2409345, + "stars": 2.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True" + }, + "categories": "Italian, Chicken Wings, Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "Sp-LM7L_6M-MPo5NCHw8Og", + "name": "Hidden Gem Cafe", + "address": "122 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95424, + "longitude": -75.15638, + "stars": 4.5, + "review_count": 108, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "HappyHour": "False", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cafes, Hong Kong Style Cafe, Restaurants, Breakfast & Brunch, Chinese", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "ppG9KpLkqhFouIvUYK2y5g", + "name": "Maria's Dominican Hair Salon", + "address": "1600 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9796492, + "longitude": -75.2255493, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "VIacKYoOZn6Wi9N1xtq1Hg", + "name": "Photo Booth Bookings", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499752202, + "longitude": -75.1449028775, + "stars": 1.5, + "review_count": 114, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Photographers, Event Planning & Services, DJs, Photo Booth Rentals, Event Photography", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "9RNM2ieC0Vu2tie28Qm6ZA", + "name": "Finnigan's Wake", + "address": "537 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961054, + "longitude": -75.143079, + "stars": 2.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Corkage": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsTakeOut": "False", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Pubs, Bars, Irish, Nightlife", + "hours": null + }, + { + "business_id": "0ZQVSAC4uwZR1JXmDrh9CQ", + "name": "Taco Bell", + "address": "2 Penn Center Plz", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9529553879, + "longitude": -75.1654761494, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'breakfast': False, 'brunch': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "DriveThru": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tex-Mex, Restaurants, Mexican, Fast Food", + "hours": null + }, + { + "business_id": "UsS9c7XnxwYFI8hVMDdiYw", + "name": "Meineke Car Care Center", + "address": "8051 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0781822537, + "longitude": -75.0859227777, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Oil Change Stations, Automotive, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "7:30-16:0", + "Friday": "7:30-16:0", + "Saturday": "7:30-15:0" + } + }, + { + "business_id": "31MJAbb24BEV5fSumldN4g", + "name": "iGeeks", + "address": "1516 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.978892, + "longitude": -75.1601709, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "IT Services & Computer Repair, Local Services, Mobile Phone Repair, Mobile Phones, Shopping", + "hours": { + "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": "12:0-17:0" + } + }, + { + "business_id": "YdsPB-Wl4CEo56qaFTTlGQ", + "name": "Reed's Coffee & Tea House", + "address": "3802 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9601619, + "longitude": -75.197205, + "stars": 4.5, + "review_count": 106, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'" + }, + "categories": "Cafes, Food, Restaurants, Breakfast & Brunch, Coffee & Tea", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Ri_k9eVAKZPn3qH39frvWw", + "name": "Sang Kee Peking Duck", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95337, + "longitude": -75.159295, + "stars": 3.5, + "review_count": 135, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "10:30-18:0", + "Tuesday": "10:30-18:0", + "Wednesday": "10:30-18:0", + "Thursday": "10:30-18:0", + "Friday": "10:30-18:0", + "Saturday": "10:30-18:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "2ari5VTz_0bGE7WnvBylbA", + "name": "Avis Rent A Car", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.880883, + "longitude": -75.243473, + "stars": 1.5, + "review_count": 209, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "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" + } + }, + { + "business_id": "PgxWcxh3YpjfZ6spFTIIHg", + "name": "J & A Exterior Solutions", + "address": "4415 Solly Ave, Apt B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0408045, + "longitude": -75.0188896, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Home Services, Gutter Services, Siding, Roofing", + "hours": { + "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": "10:0-15:0" + } + }, + { + "business_id": "KN3-8a1ito3X54_8YKOipA", + "name": "Zea May's", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19092", + "latitude": 39.9499983, + "longitude": -75.1799987, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "WiFi": "u'no'" + }, + "categories": "Food, American (Traditional), Empanadas, Street Vendors, Restaurants, Food Trucks", + "hours": null + }, + { + "business_id": "wrlH33d6kVvLvoxTvG5wVA", + "name": "Johnny Utahs", + "address": "461 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9589021, + "longitude": -75.1435969, + "stars": 2.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTakeOut": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False" + }, + "categories": "American (New), Nightlife, Bars, Sports Bars, Restaurants", + "hours": null + }, + { + "business_id": "L6EhAZMtseQGL36ps0go5Q", + "name": "Grant Nails Spa", + "address": "11000 Roosevelt Blvd, Ste 156", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.102609, + "longitude": -75.010123, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Waxing, Nail Technicians, Beauty & Spas, Hair Removal, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "9ZmVhCA2m3yK2mXHDFUlfA", + "name": "The Pizza Shack", + "address": "1500 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9194912, + "longitude": -75.1726302, + "stars": 3.5, + "review_count": 85, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False" + }, + "categories": "Pizza, Restaurants", + "hours": { + "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": "12:0-21:0" + } + }, + { + "business_id": "Pl_9HzOa8uy_YOUxgonzGw", + "name": "Los Gallos Mexican Taqueria", + "address": "951 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9211192555, + "longitude": -75.1632766118, + "stars": 4.5, + "review_count": 503, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "DriveThru": "None", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "HappyHour": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Mexican, Restaurants, Food", + "hours": { + "Monday": "11:0-22:30", + "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": "11:0-22:30" + } + }, + { + "business_id": "TTWfhOS2SK7K3lTRDnRavA", + "name": "The Hub on Chestnut", + "address": "3945 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9558813, + "longitude": -75.2020031, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "University Housing, Apartments, Home Services, Real Estate", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "KZyyoQ_nxLMyzO4d_Ts-NQ", + "name": "Tacos El Rodeo", + "address": "1000 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368281573, + "longitude": -75.1602197256, + "stars": 4.5, + "review_count": 105, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "'no'", + "Caters": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Food Trucks, Food, Mexican, Street Vendors, Restaurants", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "OaHcc6K38XQaStonzKJ3bg", + "name": "El Chilito Loco Mexican Restaurant", + "address": "800 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9217318, + "longitude": -75.1601358, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Mexican, Burgers, Restaurants, Chicken Wings", + "hours": { + "Monday": "15:0-23:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-23:0", + "Friday": "14:0-23:0", + "Saturday": "15:0-23:0", + "Sunday": "14:0-3:0" + } + }, + { + "business_id": "Hq2uJuRncYz51VsvMDG1BA", + "name": "The Art of Shaving", + "address": "1528 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494912, + "longitude": -75.1673083, + "stars": 4.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas, Barbers", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "LcD7bu2u0u6YGM-JX0DQYw", + "name": "C'est Moi Salon", + "address": "609 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418766, + "longitude": -75.153797, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Removal, Waxing, Hair Extensions", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "Cu9U1x0rurDYlj0_7vesAw", + "name": "Philadelphia Cycle Center", + "address": "2450 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9932611, + "longitude": -75.0942388, + "stars": 2.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Motorcycle Repair, Automotive, Motorcycle Dealers", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "9mq0Ru2xiXrI_A1gxcRB-g", + "name": "Philadelphia Beer Company", + "address": "2525 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9768914, + "longitude": -75.1229317, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "IQDtcYxo39RhG6sYjmm12Q", + "name": "New York Gyro Halal Food Cart", + "address": "38th & Spruce", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9512766, + "longitude": -75.1992615, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "B0md6FVC6Or4jZXCvOv1eg", + "name": "Veganish", + "address": "1214 N 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9718804459, + "longitude": -75.2261361708, + "stars": 4.0, + "review_count": 89, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Vegan, Seafood, Sandwiches, Burgers, Restaurants", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "2N-r5ne3I6rcVyJRcinZdg", + "name": "Sante Fe Burrito", + "address": "212 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481641, + "longitude": -75.1592112, + "stars": 3.0, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Mexican, Vegetarian", + "hours": { + "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": "12:0-20:0" + } + }, + { + "business_id": "SnDJ4wll_WTW3mCLn6BCwA", + "name": "FedEx Office Print & Ship Center", + "address": "1816 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9631687, + "longitude": -75.1686264, + "stars": 2.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Local Services, Printing Services, Professional Services, Signmaking, Shipping Centers", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "8:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "DFz52Xfl1T6iRoQhUFlRdA", + "name": "Philadelphia Ear, Nose and Throat Associates", + "address": "219 N Broad St, Fl 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9568237, + "longitude": -75.1623761, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Ear Nose & Throat, Audiologist, Neurologist", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "ActKgtb-czhXfU93dc8VDA", + "name": "Lakshmi Hair Studio", + "address": "21 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505915, + "longitude": -75.1435088, + "stars": 4.5, + "review_count": 195, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Makeup Artists, Hair Removal, Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-20:30", + "Saturday": "9:0-17:30", + "Sunday": "10:0-17:30" + } + }, + { + "business_id": "ZRCY1Y3V4ikJs8K7yZ554A", + "name": "Manny Brown's", + "address": "512 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9417207, + "longitude": -75.151323, + "stars": 3.5, + "review_count": 124, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': True, 'video': False, 'karaoke': False}", + "WiFi": "'free'" + }, + "categories": "Bars, Pubs, Nightlife, Restaurants, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "PQ15SQ4e9Gpw7KpoYHjlow", + "name": "Tandoor Authentic Indian Restaurant", + "address": "1832 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9780802, + "longitude": -75.1339293, + "stars": 4.0, + "review_count": 160, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Buffets, Desserts, Vegetarian, Restaurants, Indian, Halal, Food", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:15", + "Wednesday": "12:0-22:15", + "Thursday": "12:0-22:15", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "IQAeeDGSUUA9_vsw2Beg8A", + "name": "Fair Deal Heating & Cooling", + "address": "1423 N Lawrence St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9730855, + "longitude": -75.1431938, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Air Duct Cleaning, Home Services, Heating & Air Conditioning/HVAC, Water Heater Installation/Repair", + "hours": { + "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" + } + }, + { + "business_id": "3vQNIt7SakHj9YZIhHbJHw", + "name": "South Street Business Center", + "address": "744 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423196, + "longitude": -75.15533, + "stars": 3.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Printing Services, Mass Media, Notaries, Print Media, Shipping Centers, Local Services", + "hours": { + "Monday": "8:30-20:0", + "Tuesday": "8:30-20:0", + "Wednesday": "8:30-20:0", + "Thursday": "8:30-20:0", + "Friday": "8:30-20:0", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "9glx0sMqmHbJLChAZcEG3g", + "name": "J S Appliance Repair", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0218800647, + "longitude": -75.0492942379, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Appliances & Repair, Local Services, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "M5CjW616vAHgxnWNmxAFvw", + "name": "Point Breeze Pop Up", + "address": "1622 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9317771, + "longitude": -75.1823498, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pop-up Shops, Beer Gardens, Shopping, Food, Nightlife, Food Trucks, Beer, Wine & Spirits", + "hours": { + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "G-W4bF6oQblDpmpDj3Ft7A", + "name": "John Lerro Candies", + "address": "2434 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9197774, + "longitude": -75.1710343, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Candy Stores, Specialty Food, Food", + "hours": { + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "f-XoS1T_myjTKwE11eq9sg", + "name": "Le Cochon Noir", + "address": "5070 Parkside Ave, Ste 5100E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9800327, + "longitude": -75.2211095, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Jazz & Blues, Arts & Entertainment, Nightlife, Barbeque, Food, Specialty Food", + "hours": null + }, + { + "business_id": "MmayUCRkeV29Uf8FdY8PUg", + "name": "Nail Lounge", + "address": "2013 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514866, + "longitude": -75.1741507, + "stars": 4.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons, Hair Removal, Skin Care", + "hours": null + }, + { + "business_id": "EhotxJEJxpMgCJ0F82Buvg", + "name": "The Olde Bar", + "address": "125 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9469051201, + "longitude": -75.1440923726, + "stars": 4.0, + "review_count": 302, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "Alcohol": "'full_bar'", + "RestaurantsAttire": "'casual'", + "BYOB": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "CoatCheck": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Corkage": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Bars, American (New), Lounges, Cocktail Bars, Nightlife, Seafood", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "aw5_yvamDVIZTu8jQzxjqA", + "name": "Walk This Way", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dog Walkers, Pet Services, Pet Sitting, Pets", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "JQJIC75zDcYkou6OsHsfkQ", + "name": "DeNofa's Italian Deli", + "address": "6946 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0268798, + "longitude": -75.0418688, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Italian, Delis, Sandwiches", + "hours": null + }, + { + "business_id": "eWV5R5YV37uWCfNeclZTyg", + "name": "O'harro Furniture Repair", + "address": "2451 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9264806, + "longitude": -75.2250569, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Interior Design, Furniture Reupholstery, Home Services", + "hours": null + }, + { + "business_id": "lYltjcc0ZQzTP74iW5T09w", + "name": "Malik's Mini Mart", + "address": "10841 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1101216, + "longitude": -75.0242867, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Convenience Stores, Food", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "D-asgGqcutlSSXpNTReyGA", + "name": "Serenity Beauty Salon", + "address": "1534 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9113696, + "longitude": -75.175651, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "None", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True" + }, + "categories": "Waxing, Nail Salons, Hair Salons, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "gjFUrbSMo1rA1jgG5IhA2A", + "name": "Chima Steakhouse", + "address": "1901 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9547768017, + "longitude": -75.1726724432, + "stars": 3.5, + "review_count": 697, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'dressy'", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "WheelchairAccessible": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Brazilian, Food, Desserts, Restaurants, Barbeque, Chinese, American (New), Dim Sum, Steakhouses", + "hours": { + "Monday": "17:30-21:0", + "Tuesday": "17:30-21:0", + "Wednesday": "17:30-21:0", + "Thursday": "17:30-21:0", + "Friday": "17:30-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "x9I3MKNDtQQajmkexBsCSA", + "name": "Inchinโ€™s Bamboo Garden", + "address": "1726 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513263845, + "longitude": -75.1698829606, + "stars": 3.5, + "review_count": 50, + "is_open": 0, + "attributes": { + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Indian, Nightlife, Event Planning & Services, Venues & Event Spaces, Cocktail Bars, Restaurants, Chinese, Salad, Bars, Asian Fusion, Pan Asian", + "hours": { + "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:30-23:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "Iv5of7UP6Eq-OuQzLmIIgQ", + "name": "Taco Bell", + "address": "3541 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.993593, + "longitude": -75.095721, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "True" + }, + "categories": "Restaurants, Mexican", + "hours": null + }, + { + "business_id": "k4bOJroWX3NZ0PJHPTgU4A", + "name": "Parkwood Pack and Ship", + "address": "12325 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0954861, + "longitude": -74.975398, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Notaries, Printing Services, Professional Services, Shipping Centers, Shopping, Couriers & Delivery Services, Lawyers", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "TbDcfpPLWD4eJEtn8AND7A", + "name": "Glen Foerd on the Delaware", + "address": "5001 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0515769, + "longitude": -74.9789134, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'dressy'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Venues & Event Spaces, Arts & Entertainment, Event Planning & Services, Museums", + "hours": { + "Friday": "11:0-14:0", + "Saturday": "11:0-14:0", + "Sunday": "11:0-14:0" + } + }, + { + "business_id": "WpyQtx6bzPknYpdI6pLiRA", + "name": "Subversus Fitness CrossFit Center City", + "address": "1229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9506586, + "longitude": -75.1614269, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Active Life, Interval Training Gyms, Trainers, Fitness & Instruction", + "hours": { + "Monday": "6:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "6:0-20:30", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "18kkPUHXsYj9qfMtiLlgJw", + "name": "General Tso", + "address": "2350 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0061298, + "longitude": -75.0782137, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "HasTV": "True", + "WheelchairAccessible": "False", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:30-22:0" + } + }, + { + "business_id": "KOGYT5fzVLYRkrn3I1t3CA", + "name": "Tenth Floor Grill", + "address": "1100 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533368, + "longitude": -75.1580039, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "'paid'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': False, u'validated': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Caters": "False", + "HasTV": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "s_KDMAhH9B8NBaxIC5FZ4A", + "name": "Benjamin Franklin's Grave", + "address": "5th and arch Streets", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524817544, + "longitude": -75.1486782067, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Local Services, Landmarks & Historical Buildings, Funeral Services & Cemeteries", + "hours": null + }, + { + "business_id": "LzVvcVm48zYIcQnwLKt1oA", + "name": "Catahoula", + "address": "775 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9378923, + "longitude": -75.144601, + "stars": 4.0, + "review_count": 330, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HappyHour": "True", + "Smoking": "u'outdoor'", + "Caters": "True" + }, + "categories": "Bars, Restaurants, Cajun/Creole, American (Traditional), Breakfast & Brunch, Barbeque, Nightlife", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "up5Czl7yXI1LpZ_6Ys2Ahw", + "name": "Pho Le Lai", + "address": "2844 St Vincent St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.041604, + "longitude": -75.0543384, + "stars": 4.0, + "review_count": 120, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Food, Restaurants, Bubble Tea, Vietnamese", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "61yiMDVnDZeWLYqid7V3bg", + "name": "Cameron Collision", + "address": "1101 Napfle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0653954, + "longitude": -75.077344, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Body Shops, Automotive", + "hours": null + }, + { + "business_id": "WqWJ45Ul25_p1loGiZZONg", + "name": "The Eye Institute", + "address": "1200 W Godfrey Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0467911128, + "longitude": -75.1401657086, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Eyewear & Opticians, Shopping, Colleges & Universities, Optometrists, Education", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "9Q_dbzylYiWdF11lH8uaSg", + "name": "Sulimay's Restaurant", + "address": "632 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9714796, + "longitude": -75.1258851, + "stars": 4.0, + "review_count": 107, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HappyHour": "False", + "HasTV": "False", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{u'breakfast': True, u'brunch': None, u'lunch': None, u'dinner': False, u'latenight': False, u'dessert': False}" + }, + "categories": "Diners, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-14:0", + "Wednesday": "16:0-20:0", + "Friday": "8:0-14:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "j2-xpIyDjmtEA4QFQYN16w", + "name": "Ron Bennett Music", + "address": "338 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.946443, + "longitude": -75.168482, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Shopping, Musical Instruments & Teachers, Tutoring Centers, Education", + "hours": { + "Monday": "10:0-22:0" + } + }, + { + "business_id": "h58IC3UjznksvbKmN2pBuQ", + "name": "Mack Stylist", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0149824, + "longitude": -75.1866396, + "stars": 5.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "4", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Talent Agencies, Hair Extensions, Makeup Artists, Hair Salons, Professional Services, Blow Dry/Out Services, Beauty & Spas, Hair Stylists", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-17:0", + "Thursday": "11:0-20:0", + "Friday": "9:0-16:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "uVoAlvNxz2IRvhXccU1tFw", + "name": "Union Transfer", + "address": "1026 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9615369801, + "longitude": -75.155339421, + "stars": 4.5, + "review_count": 289, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'", + "HasTV": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForDancing": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{u'divey': False, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': True, u'upscale': False}", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}" + }, + "categories": "Music Venues, Bars, Lounges, Nightlife, Arts & Entertainment", + "hours": null + }, + { + "business_id": "ENIJoB8OHqUqpMXrXGWgzg", + "name": "YA MEI SPA", + "address": "258 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9465664, + "longitude": -75.1579746, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Massage Therapy, Health & Medical, Massage, Reflexology, Beauty & Spas", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "iaBU5h_j0TCrUFzTbjFIlw", + "name": "Laser Remedy MedSpa", + "address": "163 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9695465, + "longitude": -75.1386445, + "stars": 4.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "WheelchairAccessible": "True", + "AcceptsInsurance": "False" + }, + "categories": "Skin Care, Medical Spas, Laser Hair Removal, Hair Removal, Beauty & Spas, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-17:0", + "Friday": "8:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "ewHB0gOdZZeQlkjvvST3-w", + "name": "ZogSports", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493801, + "longitude": -75.145782, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Active Life, Sports Clubs, Amateur Sports Teams", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "cHXF8mV6r0NMTMPZZXm5ww", + "name": "Requiem Curiosity Shop", + "address": "603 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942455, + "longitude": -75.156916, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Antiques, Shopping, Hobby Shops", + "hours": null + }, + { + "business_id": "fBN7b-DFWcVdeV2FX_xUYw", + "name": "Jack's Auto Glass & Parts", + "address": "3517 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9191065, + "longitude": -75.2097541, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Car Window Tinting, Auto Glass Services, Auto Parts & Supplies", + "hours": { + "Monday": "8:30-17:0", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "6XiTlNnstoTK3tUPkc0Gbw", + "name": "Barry's Steaks", + "address": "471 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0351637, + "longitude": -75.2178685, + "stars": 4.5, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "HappyHour": "False", + "HasTV": "True" + }, + "categories": "Chicken Wings, Restaurants, Burgers, Sandwiches, Cheesesteaks, Steakhouses", + "hours": { + "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" + } + }, + { + "business_id": "Ojg0gd1fFb_u15FxxlAtKg", + "name": "Subway", + "address": "1827 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9545573, + "longitude": -75.1709457, + "stars": 2.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'" + }, + "categories": "Fast Food, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "vFyAR4mZYLx1ISZci6Mq-g", + "name": "Pat Bombino's", + "address": "767 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9397984, + "longitude": -75.1575767, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'full_bar'" + }, + "categories": "Restaurants, Italian", + "hours": null + }, + { + "business_id": "pF5W8eHkP6bvQjCgoj2MCA", + "name": "Furniture Mecca", + "address": "5648 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9801249, + "longitude": -75.2354196, + "stars": 1.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Furniture Stores, Shopping, Home & Garden", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "H4eTwVFJvjCL0asz94CSTA", + "name": "Cafe Clave", + "address": "4305 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954026, + "longitude": -75.209584, + "stars": 4.0, + "review_count": 56, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Soul Food, Coffee & Tea, Restaurants, Cuban, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "EdopUxxfxqEA79Vcy_dT3g", + "name": "Fuel", + "address": "1917 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9261735, + "longitude": -75.1675686, + "stars": 3.5, + "review_count": 262, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (New), Sandwiches, Vegetarian, Food, Coffee & Tea, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "LoGmLfB7Oqe0Pym6ThlEUQ", + "name": "Plate3photography", + "address": "720 N 5th St, Unit 306", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9640356, + "longitude": -75.1467853, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Performing Arts, Photographers, Session Photography, Arts & Entertainment, Event Photography, Event Planning & Services, Videographers", + "hours": null + }, + { + "business_id": "-kTsfH9tz1EOyVrsV_oR8g", + "name": "Kamelot Auctions", + "address": "2216-2220 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9904842, + "longitude": -75.1084014, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Fashion, Furniture Stores, Antiques, Shopping, Used, Vintage & Consignment, Art Galleries, Auction Houses, Arts & Entertainment, Home & Garden", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "Uhaee0EHa218UwmnXDoqDw", + "name": "Space 1026", + "address": "1026 Arch St, Second Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953576, + "longitude": -75.157378, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Arts & Entertainment, Art Galleries", + "hours": null + }, + { + "business_id": "bAqDJlYqB9j3tMVjhp29EQ", + "name": "Mezze", + "address": "Reading Terminal Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 3.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mediterranean, Food, Grocery, Greek, Restaurants", + "hours": null + }, + { + "business_id": "ur84JezPd2IN5PN4J-fEVw", + "name": "Indian Food Truck", + "address": "3746 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9542532, + "longitude": -75.1975032, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Alcohol": "'none'", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "HasTV": "True", + "OutdoorSeating": "True" + }, + "categories": "Pakistani, Indian, Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "XeV1YkbYj5TtkSX69h_OHA", + "name": "Universal Moving Services", + "address": "325 Chestnut St, Ste 800", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949088, + "longitude": -75.147154, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Self Storage, Home Services, Packing Services, Movers", + "hours": null + }, + { + "business_id": "-knsZfjC1tulGgNQ70NNGA", + "name": "Penn Internal Medicine - Edward S. Cooper Internal Medicine", + "address": "3701 Market St, Ste 640", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568165, + "longitude": -75.1962141, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Internal Medicine, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "ve6DA3l08JvhROGdjhYviA", + "name": "Comfort Inn At Penns Landing", + "address": "100 N Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9517693, + "longitude": -75.1405722, + "stars": 3.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "kxcbIgOEbPjHj8_wHFzqbw", + "name": "Feast Catering", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0542169, + "longitude": -75.1603752, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bartenders, Personal Chefs, Event Planning & Services, Caterers", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "6:0-22:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "tKL_MbA8s_ZeU4RV5m-0QQ", + "name": "Ali Baba Cafe & Hookah Bar", + "address": "7704 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.057756, + "longitude": -75.0602779, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Nightlife, Bars, Food, Coffee & Tea, Hookah Bars", + "hours": { + "Monday": "19:0-1:0", + "Tuesday": "19:0-1:0", + "Wednesday": "19:0-1:0", + "Thursday": "19:0-1:0", + "Friday": "19:0-2:0", + "Saturday": "19:0-2:0", + "Sunday": "19:0-2:0" + } + }, + { + "business_id": "N-R7te7N0wmyYlmNcGSNmQ", + "name": "South Street Bridge", + "address": "2800 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9467905885, + "longitude": -75.1868052822, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Hiking, Active Life, Local Flavor, Landmarks & Historical Buildings, Public Services & Government", + "hours": null + }, + { + "business_id": "7hGGEsD_t3ffW9bJURpngA", + "name": "Liberty Escape Rooms", + "address": "325 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9533988, + "longitude": -75.1461924, + "stars": 4.5, + "review_count": 47, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Escape Games, Active Life", + "hours": { + "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" + } + }, + { + "business_id": "ghFNIv9_Bde6uquScRZD7g", + "name": "Little Baby's Ice Cream", + "address": "2311 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9807047287, + "longitude": -75.1282343498, + "stars": 4.0, + "review_count": 288, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Caters": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Ice Cream & Frozen Yogurt, Food, Arts & Entertainment, Food Stands, Performing Arts, American (New), Caterers, Desserts, Event Planning & Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "e8jerbHMWQ1JSYxKtXEt5w", + "name": "Wendy's", + "address": "2615 North American Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.990641, + "longitude": -75.1358168, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-1:0" + } + }, + { + "business_id": "52d1KyaFqpwAQHkN2JJuFw", + "name": "Halteman Family Meats", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Specialty Food, Butcher, Meat Shops, Farmers Market, Smokehouse, Grocery", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "zpKTPWoW56wF6d9qNnxM3Q", + "name": "Rybread", + "address": "1711 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673313, + "longitude": -75.1658216, + "stars": 4.0, + "review_count": 433, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True" + }, + "categories": "Food, Sandwiches, Restaurants, Breakfast & Brunch, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "UzU1N9XSoAUwn4Z8BIcvKw", + "name": "Anastasi Seafood", + "address": "1101 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936139, + "longitude": -75.158194, + "stars": 4.0, + "review_count": 282, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "DogsAllowed": "False", + "BikeParking": "True" + }, + "categories": "Food, Seafood Markets, Restaurants, Seafood, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-19:30", + "Wednesday": "12:0-19:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "WAWI8FB77nZVD7_yc2PMYw", + "name": "Tony Boys Breakfast", + "address": "5951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.962189, + "longitude": -75.2406023, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "5:0-14:0", + "Tuesday": "5:0-14:0", + "Wednesday": "5:0-14:0", + "Thursday": "5:0-14:0", + "Friday": "5:0-14:0", + "Saturday": "5:0-14:0", + "Sunday": "5:0-13:0" + } + }, + { + "business_id": "LUxMJ-3S5F2JHt9u1aPh7g", + "name": "New East", + "address": "2842 Saint Vincent St, Unit B6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0421193, + "longitude": -75.0549193, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Japanese, Restaurants, Chinese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "4viOlb1jGDJUHmv8C5o2GQ", + "name": "Papps Pizza", + "address": "6001 Hazelhurst St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9826453, + "longitude": -75.2416848, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "LHyhsUpDG3-qwvRxZRLN8g", + "name": "Majestic Sun Salon", + "address": "4514 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9823816677, + "longitude": -75.2185821533, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Beauty & Spas, Tanning", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "hr01OdcdIelVhl6QgqUfog", + "name": "St Patrick's Church", + "address": "242 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9492195, + "longitude": -75.1743071, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": null + }, + { + "business_id": "KnPLPaIimYCzGu4Qxli2DA", + "name": "Geiger's Bakery of Mayfair", + "address": "6652 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0317611, + "longitude": -75.053762, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Bakeries, Restaurants", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-16:0" + } + }, + { + "business_id": "sUUD4bOV4Vo616sLI4gwRA", + "name": "All About Seafood", + "address": "5352 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9363903, + "longitude": -75.2185539, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Seafood", + "hours": null + }, + { + "business_id": "3nS9Er3UjBV0W84CJPMgSQ", + "name": "American Heritage Federal Credit Union", + "address": "2620 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007319, + "longitude": -75.1733616, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "lU83FgsPHd3XL6J3cPKN9w", + "name": "General Grants Saloon", + "address": "2459 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0784956, + "longitude": -75.0242694, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "GoodForKids": "False" + }, + "categories": "Bars, Restaurants, Nightlife, Pubs, American (Traditional)", + "hours": null + }, + { + "business_id": "Rbe567WR_gpGMHvimhLLSQ", + "name": "Original Boston Style Pizza", + "address": "6445 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.029014, + "longitude": -75.0562968, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants, Pizza", + "hours": { + "Monday": "13:0-23:0", + "Tuesday": "13:0-23:0", + "Wednesday": "13:0-23:0", + "Thursday": "13:0-23:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0", + "Sunday": "14:0-23:0" + } + }, + { + "business_id": "Fkl5eS3aJ6QzoXzQgB8p0A", + "name": "Class of 1920s Commons", + "address": "3800 Locust Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9519037, + "longitude": -75.1994966, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "03K9F1xumPgdRiohRrXyfw", + "name": "University Club at Penn", + "address": "3611 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953278, + "longitude": -75.1957582, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Monday": "7:30-14:0", + "Tuesday": "7:30-14:0", + "Wednesday": "7:30-14:0", + "Thursday": "7:30-14:0" + } + }, + { + "business_id": "phQcwI2JJ3BjzFEWGUAaOQ", + "name": "Zitners Candy", + "address": "3120 N 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.0012245, + "longitude": -75.1582368, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Candy Stores, Specialty Food, Food", + "hours": { + "Monday": "7:0-15:30", + "Tuesday": "7:0-15:30", + "Wednesday": "7:0-15:30", + "Thursday": "7:0-15:30", + "Saturday": "7:0-17:0" + } + }, + { + "business_id": "wbCox5gNs_8refT-QhF6-Q", + "name": "Bridesburg Spine And Injury Clinic", + "address": "2644 Lefevre St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0007193, + "longitude": -75.0728298, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Health & Medical, Chiropractors, Beauty & Spas, Physical Therapy, Massage", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "12:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "12:0-16:0" + } + }, + { + "business_id": "PP8nDTc_2efQZtbz1LApMQ", + "name": "Patriot Parking", + "address": "2215 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513888, + "longitude": -75.1783663, + "stars": 1.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "f8rdOaxlnKD6sLyUBokpvw", + "name": "JFK Nails", + "address": "13 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952862, + "longitude": -75.173237, + "stars": 3.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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" + } + }, + { + "business_id": "n7oAS0xmwPLjfw7lHdcAxg", + "name": "Pain Away of Philly", + "address": "936 Arch St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95332, + "longitude": -75.156147, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Reflexology, Health & Medical, Acupuncture, Tui Na, Massage Therapy, Traditional Chinese Medicine", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "gwXcHqr6OflQbW31hBc5ag", + "name": "Penn Treaty Village Pennthouses", + "address": "1 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625492, + "longitude": -75.1372078, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "11:0-15:0" + } + }, + { + "business_id": "KscVqYYG7ziAroZhfNb0Ng", + "name": "South", + "address": "600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.964395, + "longitude": -75.161227, + "stars": 4.0, + "review_count": 501, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "GoodForDancing": "False", + "RestaurantsTakeOut": "None", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "False", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "BikeParking": "True", + "CoatCheck": "False", + "BestNights": "{u'monday': False, u'tuesday': True, u'wednesday': False, u'thursday': True, u'friday': False, u'saturday': True, u'sunday': False}" + }, + "categories": "Arts & Entertainment, Restaurants, Bars, Nightlife, Southern, Jazz & Blues", + "hours": { + "Thursday": "16:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "Y_mnprcwyrxn_naoAVD1qQ", + "name": "PNC Bank", + "address": "900 Walnut St, Southwest C", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481859, + "longitude": -75.1559807, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Investing, Real Estate, Mortgage Brokers, Financial Services, Banks & Credit Unions", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "c6IrEpPNq3Ha0A4RcACNIQ", + "name": "Hand & Stone Massage and Facial Spa", + "address": "420 N 20th St, Ste 114A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9618078605, + "longitude": -75.1716823876, + "stars": 4.0, + "review_count": 121, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Skin Care, Shopping, Day Spas, Cosmetics & Beauty Supply, Hair Removal, Beauty & Spas, Massage", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "xVExbX_AWD3jlzXnKlvItQ", + "name": "Downtown Cheese Shop", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953264, + "longitude": -75.15943, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "False" + }, + "categories": "Specialty Food, Food, Cheese Shops, Farmers Market", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "rDNXWP86KQj13D4aBT8YJQ", + "name": "Philly Pretzel Factory", + "address": "5022-24 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9992943027, + "longitude": -75.2298320085, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Bakeries, Food, Pretzels, Ice Cream & Frozen Yogurt, Hot Dogs", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "5BzDew_PVYnppjRFJXGF7g", + "name": "Scarlett Alley", + "address": "239 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95417, + "longitude": -75.144381, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Shopping, Flowers & Gifts, Accessories, Fashion, Women's Clothing, Gift Shops, Bridal", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "NFU5RC8-UCzwq7RPHI4UoA", + "name": "El Rey at Baja Room", + "address": "1500 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.943647, + "longitude": -75.167396, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Mexican, Restaurants", + "hours": null + }, + { + "business_id": "ISWkfjTIT3LOWvnUSUzcyQ", + "name": "Kwik Farms Lukoil", + "address": "Spring Garden And Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9606865649, + "longitude": -75.1376075566, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Convenience Stores, Food", + "hours": null + }, + { + "business_id": "qMlco2xbB0h9CTMQxazfuQ", + "name": "XpresSpa", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.88064, + "longitude": -75.23834, + "stars": 3.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Day Spas, Beauty & Spas, Massage, Nail Salons", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "hSY4s78efO9won8WyLZWQQ", + "name": "Eagle Nail Salon", + "address": "6575 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0348517, + "longitude": -75.0656092, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "5Cj7hVtnGhaEIKYKQpQ_4w", + "name": "New Image Dominican Hair Salon", + "address": "1534 E Wadsworth Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.079155, + "longitude": -75.173477, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "jBpFv9rp7T5I7h4Nt3kTuA", + "name": "Lucky Star Chinese", + "address": "1300 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351373, + "longitude": -75.1652714, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "'very_loud'", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BikeParking": "True" + }, + "categories": "Chinese, Soup, Seafood, Restaurants", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "17:0-23:0" + } + }, + { + "business_id": "0uvzocFq0L_OMx4CF1g81g", + "name": "Moneza's Cleaners and Fashions", + "address": "8007 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0709571, + "longitude": -75.2007807, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Fashion, Sewing & Alterations, Shopping, Formal Wear, Local Services, Customized Merchandise", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-17:0", + "Wednesday": "9:0-15:0", + "Thursday": "8:30-17:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "h7Tt0R2PmopRHJ6oZonuDg", + "name": "Perri's Pizza", + "address": "2347 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9872157, + "longitude": -75.1085061, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0", + "Sunday": "15:0-23:0" + } + }, + { + "business_id": "OScArtTInz7zQdW5wC2Ebw", + "name": "Fishtown Hops", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9638134, + "longitude": -75.1324645, + "stars": 3.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "None", + "RestaurantsReservations": "True", + "Caters": "False", + "GoodForDancing": "True", + "RestaurantsDelivery": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "WiFi": "'free'" + }, + "categories": "Wine Bars, Nightlife, American (New), Cocktail Bars, Bars, Restaurants, Imported Food, Food, Beer Bar, Beer Gardens, American (Traditional)", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "OY0LKjf6JkP-DReLem-nTA", + "name": "Birds Of Prey Artistry & Aesthetics", + "address": "1748 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9277965, + "longitude": -75.1661323, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "ByAppointmentOnly": "True", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Permanent Makeup, Beauty & Spas, Makeup Artists, Eyebrow Services, Piercing, Tattoo, Hair Loss Centers", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "ifWCzW6H6t2xKQfpoleQgg", + "name": "Bucks County Coffee Co", + "address": "240 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.952718, + "longitude": -75.2029094, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Coffee & Tea, Food", + "hours": null + }, + { + "business_id": "NtMXPX9SXb5NobU82NhHgA", + "name": "Andrew Peshek, MD", + "address": "128 Chestnut St, Ste 104", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480599, + "longitude": -75.1436193, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Doctors, Psychiatrists, Counseling & Mental Health", + "hours": null + }, + { + "business_id": "cn3GfkDkzhwWBKDNgsiQLA", + "name": "Romeo Pizza", + "address": "1608 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9245699, + "longitude": -75.173413, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BikeParking": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "RM8H4Npg7kGGlf7Cb6EGdw", + "name": "Trend Eye Care II", + "address": "1501 N Broad St, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976163, + "longitude": -75.157994, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "DogsAllowed": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "True" + }, + "categories": "Laser Eye Surgery/Lasik, Optometrists, Eyewear & Opticians, Health & Medical, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "xTCSNzu7387VHOPO7DkEzA", + "name": "The Notary Hotel, Autograph Collection", + "address": "21 N Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530827357, + "longitude": -75.1621869785, + "stars": 3.5, + "review_count": 286, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "True" + }, + "categories": "Caterers, Hotels & Travel, Event Planning & Services, Hotels, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "TJ8MW2vXFgdUcEv02r1pqg", + "name": "Beautiful World Syndicate", + "address": "1619 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294085, + "longitude": -75.1638067, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Shopping, Books, Mags, Music & Video, Music & DVDs, Vinyl Records", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "0Y4YhMXpnL1qfu648jv9vg", + "name": "Five Below", + "address": "9171 Roosevelt Blvd, Ste B, Northeast Shopping Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.075707, + "longitude": -75.033363, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:30-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "e4iAF4nM2I5CUulBm4OrSQ", + "name": "Bernie's Restaurant & Bar - University City", + "address": "3432 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535726972, + "longitude": -75.1932775229, + "stars": 3.0, + "review_count": 101, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "CoatCheck": "False", + "GoodForKids": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "'casual'", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "HasTV": "True", + "Smoking": "u'no'", + "OutdoorSeating": "True" + }, + "categories": "American (New), Chicken Wings, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "5YFVP_hmIXyVDU24sTKDxA", + "name": "Dunkin'", + "address": "4100 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9483613, + "longitude": -75.2062978, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "DriveThru": "None", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-21:0", + "Saturday": "5:0-21:0", + "Sunday": "5:0-21:0" + } + }, + { + "business_id": "eM0p8P_WCJK-sHcgY7aXLQ", + "name": "Adelphia House", + "address": "1229 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9508655, + "longitude": -75.1613821, + "stars": 2.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Real Estate, Apartments", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "x7jmbNVlvKJPW_bOmedWzg", + "name": "Pizza Hut", + "address": "1401 66th Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.054088, + "longitude": -75.141911, + "stars": 2.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Pizza, Restaurants, Italian, Chicken Wings", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "dAM-uwfhhF6pOyPyvpxvNw", + "name": "Dane Decor", + "address": "315 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9524928, + "longitude": -75.1458322, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Furniture Stores, Home Decor, Home Services, Home & Garden, Shopping, Interior Design", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "oWZklx8pWXVx8Fcp67th4w", + "name": "The Wellness Refinery", + "address": "216 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9504256, + "longitude": -75.1446283, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "AcceptsInsurance": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Saunas, Shopping, Juice Bars & Smoothies, Health & Medical, Food", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "ZNlTghz93wixdR-ixvXyAQ", + "name": "I Green Dim Sum Hand Drawn Noodle", + "address": "1028 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953416, + "longitude": -75.157498, + "stars": 3.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Vegetarian, Food, Japanese, Ethnic Food, Chinese, Restaurants, Specialty Food, Ice Cream & Frozen Yogurt, Dim Sum", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "jchdx5ivrDRQlIIAXwrOkA", + "name": "My Phillie Wireless", + "address": "2701 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9941599, + "longitude": -75.1538996, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Electronics Repair, Local Services, Mobile Phone Repair, IT Services & Computer Repair, Mobile Phones, Mobile Phone Accessories, Shopping", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "oynwmvwg1CUYCk0-VpZlAg", + "name": "Sweet Treat Hut", + "address": "1240 N 50th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9731919, + "longitude": -75.2230046, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "Caters": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Food, Juice Bars & Smoothies, Coffee & Tea, Health & Medical, Restaurants, Nutritionists", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "cfD04ABSXGeOMkpCIS2Hog", + "name": "The African American Museum in Philadelphia", + "address": "701 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9532614, + "longitude": -75.1517562, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Public Services & Government, Cultural Center, Arts & Entertainment, Landmarks & Historical Buildings, Museums", + "hours": { + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "4Env6uGYxMhXFKPfcuzUuQ", + "name": "LOVE Grille", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8750348517, + "longitude": -75.2438501468, + "stars": 3.0, + "review_count": 72, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "HasTV": "False", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "'free'", + "OutdoorSeating": "False" + }, + "categories": "Chicken Wings, Comfort Food, American (New), Restaurants", + "hours": { + "Monday": "5:15-22:0", + "Tuesday": "5:15-22:0", + "Wednesday": "5:15-22:0", + "Thursday": "5:15-22:0", + "Friday": "5:15-22:0", + "Saturday": "5:15-22:0", + "Sunday": "5:15-22:0" + } + }, + { + "business_id": "g1JbKaoX67jz4S8npWQNHw", + "name": "Philadelphia Home Show", + "address": "1101 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539479, + "longitude": -75.1588457, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Home Cleaning, Shopping, Home Services", + "hours": null + }, + { + "business_id": "6Hn5DT28C59Q1rzFgFhGwQ", + "name": "Apollinare Restaurant", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9668211, + "longitude": -75.1399137, + "stars": 2.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Beer, Wine & Spirits, Restaurants, Italian, Wine Bars, Bars, Nightlife, Food", + "hours": null + }, + { + "business_id": "x4k_z6JIeR_JW4SUCUPBsw", + "name": "Miles Table Catering", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9394001759, + "longitude": -75.1835284535, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Caterers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "SzV7Gwiql507h6d0BgT_7g", + "name": "Gino's Pizza Cafe", + "address": "7326 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0373807557, + "longitude": -75.0396920938, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Caters": "False", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}" + }, + "categories": "Italian, Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0" + } + }, + { + "business_id": "p0Udyj3qsXNzCU99yW6IfA", + "name": "East End Tavern", + "address": "128 East St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0216577293, + "longitude": -75.2159369208, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pubs, Nightlife, Dive Bars, Music Venues, Bars, Arts & Entertainment", + "hours": null + }, + { + "business_id": "cbmnzbkml6_KtHaRIGXxgQ", + "name": "Green Room", + "address": "1940 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647691, + "longitude": -75.1706129, + "stars": 4.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "ByAppointmentOnly": "False", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Beer Bar, Shopping, Pool Halls, Sports Bars, Nightlife, Bars, Pool & Billiards", + "hours": { + "Monday": "15:0-2:0", + "Tuesday": "15:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "_dTBUYA7qaXCOn3TomqI_w", + "name": "City View Pizza and Grill", + "address": "1547 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630851, + "longitude": -75.164461, + "stars": 3.0, + "review_count": 118, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Cheesesteaks, Pizza, Restaurants, Sandwiches", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "flEgE05YQ0__KuV1XBns1w", + "name": "Philadelphia Caterer Catering By Rich", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0390934, + "longitude": -75.064035, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": null + }, + { + "business_id": "zvixukO8M4PCmMMaZOldPg", + "name": "Torero Tapas Bar", + "address": "940 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93776, + "longitude": -75.158289, + "stars": 4.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'breakfast': False, 'brunch': False}", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Food, Spanish, Tapas Bars, Italian", + "hours": null + }, + { + "business_id": "q43nr6E8ib2p39sVYtPGww", + "name": "Juju Salon & Organics", + "address": "713 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9401291, + "longitude": -75.1492822, + "stars": 4.5, + "review_count": 300, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "odCUjUDOQt0yzoz5VYJkwA", + "name": "About Face Skin Care", + "address": "1015 Chestnut St, Ste 1205", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501750868, + "longitude": -75.1577684884, + "stars": 4.5, + "review_count": 104, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "Smoking": "u'no'", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True" + }, + "categories": "Health & Medical, Day Spas, Skin Care, Acne Treatment, Medical Spas, Beauty & Spas, Hair Removal, Laser Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "10:0-20:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Bu9x6JH0H_b7_R_X53glOw", + "name": "Potbelly Sandwich Shop", + "address": "1 Convention Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.948934, + "longitude": -75.19219, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "WiFi": "'free'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "GoodForKids": "True" + }, + "categories": "Delis, Sandwiches, Restaurants, Fast Food", + "hours": { + "Monday": "6:30-21:0", + "Tuesday": "6:30-21:0", + "Wednesday": "6:30-21:0", + "Thursday": "6:30-21:0", + "Friday": "6:30-21:0", + "Saturday": "7:0-19:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "HApa-rYgGx0goGEk0Wf8GA", + "name": "Gold Medal Disposal", + "address": "3323 S 61st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9202544, + "longitude": -75.2124582, + "stars": 1.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Junk Removal & Hauling, Local Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "U64xmOqOHKSYXR6fQ9dwmw", + "name": "FBI Pest Control", + "address": "2509 S Broad St, Ste 202", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9190578, + "longitude": -75.1705099, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Pest Control, Local Services", + "hours": null + }, + { + "business_id": "YS_z3EK7UHvM1hCvLVaBBw", + "name": "Philly Music Lessons", + "address": "1548 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9303389, + "longitude": -75.1664431, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Musical Instruments & Teachers, Shopping", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "7g6bsvzLv50NCgXgUfjSdQ", + "name": "Dattilo's Delicatessen", + "address": "8000 Horrocks St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0599673, + "longitude": -75.0524675, + "stars": 4.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "WiFi": "'no'" + }, + "categories": "Food, Restaurants, Sandwiches, Delis, Meat Shops, Specialty Food", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "8:30-14:0" + } + }, + { + "business_id": "OUmuCtzcoJ_PcbtNEKu1gQ", + "name": "Cavanaugh's Riverdeck", + "address": "417 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19195", + "latitude": 39.9577962, + "longitude": -75.1374815, + "stars": 2.5, + "review_count": 205, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'loud'", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "Smoking": "u'yes'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Dance Clubs, Bars, Nightlife", + "hours": { + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "yU_9stIlB93Np-gKUOV6EA", + "name": "Wrigley Eye Associates", + "address": "1919 Chestnut St, Ste 105", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9523630917, + "longitude": -75.1725182021, + "stars": 2.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Optometrists", + "hours": null + }, + { + "business_id": "gjALduh0HJg-xMHMm0Uz0Q", + "name": "Chickie's & Pete's", + "address": "4010 Robbins Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.027319, + "longitude": -75.0600255, + "stars": 3.5, + "review_count": 115, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "HasTV": "True", + "BikeParking": "False", + "Caters": "False", + "WiFi": "'free'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': True, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Nightlife, American (Traditional), Bars, Restaurants, Seafood, Sports Bars", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "1KxvbQoLUSnYlgxzJ3FEJw", + "name": "Green Line Cafe", + "address": "136 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949886322, + "longitude": -75.1659622192, + "stars": 4.0, + "review_count": 24, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "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": "9:0-15:0" + } + }, + { + "business_id": "2juujWzR3Ac_TSmbTzWawQ", + "name": "Paddywax Candle Bar", + "address": "1733 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517732786, + "longitude": -75.1699171493, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Gift Shops, Shopping, Home & Garden, Flowers & Gifts, Candle Stores, Coffee & Tea, Food", + "hours": { + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "jVU7HIS6NJKBFmAvTIu35A", + "name": "US Post Office", + "address": "1299 N 7Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9715548, + "longitude": -75.1475606, + "stars": 1.5, + "review_count": 30, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Shipping Centers, Post Offices, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:30-12:0" + } + }, + { + "business_id": "-Om8XgP9GZ4UUFbgTRI4YQ", + "name": "Martha", + "address": "2113 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9822216, + "longitude": -75.1281087, + "stars": 4.0, + "review_count": 155, + "is_open": 1, + "attributes": { + "Caters": "True", + "NoiseLevel": "u'average'", + "DogsAllowed": "True", + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "GoodForKids": "False", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}" + }, + "categories": "Bars, Restaurants, Cocktail Bars, Nightlife, American (New), Sandwiches", + "hours": { + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "HS741Ek9wipds4usHKulyA", + "name": "Usona", + "address": "1633 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9487908, + "longitude": -75.1691001, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Outdoor Furniture Stores, Shopping, Furniture Stores, Home & Garden, Office Equipment", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "rMWdWJHblLHt_BQ2kWj5Bg", + "name": "Seger Dog Park", + "address": "1001 Rodman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943364, + "longitude": -75.159817, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Dog Parks, Parks", + "hours": { + "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" + } + }, + { + "business_id": "5O6Tg6yWk2ySa9rD7QTcGw", + "name": "Evolution Tech", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0913752, + "longitude": -74.9851678, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, IT Services & Computer Repair", + "hours": { + "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" + } + }, + { + "business_id": "ewLF-CJ70-jVixC1eAWwsg", + "name": "Manuela's", + "address": "184A E Evergreen Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076895, + "longitude": -75.2063692, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "UlIZJH8vtu71Qs_9CkPxgA", + "name": "Freedom Credit Union", + "address": "10400 Drummond Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0837571, + "longitude": -74.9956674, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Financial Services, Banks & Credit Unions, Home Services, Mortgage Brokers, Real Estate", + "hours": null + }, + { + "business_id": "1lBAIOyr2sBZf2dBwmpqQw", + "name": "The Church of the Holy Trinity", + "address": "1904 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502755, + "longitude": -75.1731673, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-14:30", + "Wednesday": "11:30-14:30", + "Thursday": "11:30-14:30", + "Saturday": "11:0-16:0", + "Sunday": "11:0-12:30" + } + }, + { + "business_id": "XPOvJBe5f-gYMdboT_MXmw", + "name": "Subway", + "address": "6125 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.034586, + "longitude": -75.215842, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Fast Food, Burgers, Sandwiches, Food", + "hours": null + }, + { + "business_id": "BON1JqGZyG2D1m1Uc9AP9g", + "name": "Pacifico Airport Valet Service", + "address": "6715 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.91206, + "longitude": -75.22283, + "stars": 2.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Transportation, Hotels & Travel, Valet Services, Parking, Airport Shuttles, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "KMoEorja57rkcOSz5bEzCA", + "name": "RIVA Health + Wellness", + "address": "1 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9625492, + "longitude": -75.1372078, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "AcceptsInsurance": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True" + }, + "categories": "Food, Yoga, Acupuncture, Chiropractors, Juice Bars & Smoothies, Fitness & Instruction, Active Life, Nutritionists, Beauty & Spas, Skin Care, Health & Medical, Medical Spas", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "n8frxLrBPbBYRI7XqDQ5Qg", + "name": "Bachelor Boys Band", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19101", + "latitude": 39.9522725, + "longitude": -75.1625181, + "stars": 4.5, + "review_count": 80, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'" + }, + "categories": "Musicians, Photographers, Event Planning & Services, Event Photography, Videographers", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "OlZLWzpPRjG4fiXO-Ug4ug", + "name": "Monte & Sons Auto Repair", + "address": "44 E Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0411344, + "longitude": -75.177133, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "2gbiwt06lPGhaCCeQcmHKQ", + "name": "Immortal Uncommon Resale", + "address": "125 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95081, + "longitude": -75.170334, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Used, Vintage & Consignment", + "hours": null + }, + { + "business_id": "jGIRx6Ium6U69owDUB4phQ", + "name": "Tu's Tea & Banh Mi South Philly", + "address": "525 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.935158, + "longitude": -75.153184, + "stars": 4.0, + "review_count": 71, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Bubble Tea, Bakeries, Food, Noodles, Sandwiches, Vietnamese", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "xxEHFHP76kpurV_ra9YGHw", + "name": "Bento Tokyo", + "address": "2 Penn Center Plz", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507507, + "longitude": -75.1503979, + "stars": 2.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False" + }, + "categories": "Japanese, Restaurants", + "hours": null + }, + { + "business_id": "KX8xXj7JKgYEIWJiEUGhYg", + "name": "Johnnie's Italian Specialties", + "address": "2240 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9215499, + "longitude": -75.1667365, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Italian, Delis", + "hours": { + "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", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "ZlX3l2TMlgU7TlomVsE1Pw", + "name": "Mathilda African Hair Braiding", + "address": "2101 S Woodstock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9255417, + "longitude": -75.1797489, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "bdteJqgoj0OaALhj9RFtmw", + "name": "Koreana", + "address": "3801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9556166133, + "longitude": -75.1989265346, + "stars": 3.5, + "review_count": 363, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsTableService": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Italian, Korean, Restaurants", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "kJg3OA_-aXgLnIxizh76Hg", + "name": "Kat Cares Dog Walking & Pet Sitting", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services", + "hours": { + "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" + } + }, + { + "business_id": "D3se5JzK_90jCX6i7UqNUg", + "name": "Ken Shin Asian Diner", + "address": "301 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9610864189, + "longitude": -75.1435467142, + "stars": 3.5, + "review_count": 152, + "is_open": 1, + "attributes": { + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "'no'", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Desserts, Food, Chinese, Japanese, Restaurants, Pan Asian", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "Ko4QKy1FGcOlHURKZNaNJQ", + "name": "The Baker's Jar", + "address": "625 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9432555, + "longitude": -75.1687429, + "stars": 4.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Bakeries, Food", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "74Z_ntFe-1DaLkCLHAKTCw", + "name": "The Vitamin Shoppe", + "address": "1701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517287, + "longitude": -75.1689025, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Vitamins & Supplements, Health Markets, Food, Shopping, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-8:45", + "Sunday": "10:0-10:15" + } + }, + { + "business_id": "lIgEQlXldrdW5uw_ceVsOg", + "name": "Nina's Trattoria", + "address": "910 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386103, + "longitude": -75.1581065, + "stars": 3.5, + "review_count": 180, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "Caters": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Breakfast & Brunch, Pizza, Italian, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "IqyHN1g7PO179qtqDf01tw", + "name": "The UPS Store", + "address": "1735 Market St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9537107, + "longitude": -75.1695108, + "stars": 3.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Mailbox Centers, Printing Services, Local Services, Shipping Centers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "W_T3Q1vEArb30JZ-FdVmuQ", + "name": "PUPS", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pets, Pet Sitting, Dog Walkers", + "hours": { + "Monday": "9:0-9:0", + "Tuesday": "9:0-9:0", + "Wednesday": "9:0-9:0", + "Thursday": "9:0-9:0", + "Friday": "9:0-9:0", + "Saturday": "9:0-9:0", + "Sunday": "9:0-9:0" + } + }, + { + "business_id": "9ciFIt5951W-InCyYqs0CQ", + "name": "Cucina Forte", + "address": "768 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9397045, + "longitude": -75.1562596, + "stars": 4.0, + "review_count": 140, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:30-21:30" + } + }, + { + "business_id": "oHxmQ83FfYbxA_AA72aYgg", + "name": "La Fusion Restaurant Bar", + "address": "2650 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9172527, + "longitude": -75.1731612, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': True, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Caters": "False", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "WiFi": "'no'" + }, + "categories": "Hotel bar, Nightlife, Restaurants, Asian Fusion, Sushi Bars, American (New), Bars, Thai", + "hours": { + "Monday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "H3PBFYqsgtA_EZr5WgroeA", + "name": "Modern Vac & Sew Centers", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0631436, + "longitude": -75.2357443, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Appliances & Repair, Local Services, Sewing & Alterations", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "p4cIEx3GrI4R1OYbMjiGBg", + "name": "Popeye's", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.875516503, + "longitude": -75.2418031524, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Fast Food, Chicken Wings, Southern, Restaurants, Food Court", + "hours": null + }, + { + "business_id": "li4Yw2cG968EiymHMCdoXg", + "name": "Redz Bar and Grill", + "address": "8208 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0608590409, + "longitude": -75.0447888735, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "False", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "None", + "GoodForDancing": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}" + }, + "categories": "Restaurants, American (Traditional), Nightlife, Bars", + "hours": { + "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" + } + }, + { + "business_id": "OZUeAf-kVB0ml5xmzJb4zw", + "name": "Sunshine Jewelry", + "address": "702 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9354075, + "longitude": -75.1555491, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Local Services, Watch Repair, Jewelry Repair, Watches, Shopping, Jewelry", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "QX6qD3JEopZSH2SQsmObxg", + "name": "Xi'an Cuisine", + "address": "120 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480215063, + "longitude": -75.1433062159, + "stars": 3.0, + "review_count": 63, + "is_open": 0, + "attributes": { + "GoodForDancing": "False", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': False, 'background_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': True}", + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "OutdoorSeating": "False", + "CoatCheck": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Karaoke, Chinese, Seafood, Restaurants, Nightlife, Bars, Lounges", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "IL5uM-wSJCc19cclqeqGqg", + "name": "Spring Reflexology Center", + "address": "110 S 20th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95158, + "longitude": -75.17371, + "stars": 4.0, + "review_count": 40, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'paid'" + }, + "categories": "Reflexology, Massage, Medical Spas, Beauty & Spas, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "vC98a0bIcSDVfX3dOuuAkQ", + "name": "Yummy Pizza", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534737729, + "longitude": -75.1660586932, + "stars": 4.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "HasTV": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, American (New), Pizza, American (Traditional)", + "hours": { + "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" + } + }, + { + "business_id": "xq28cPEi0e8UpULdkcdghA", + "name": "King Grill", + "address": "725 N 42nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.966593, + "longitude": -75.207345, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Event Planning & Services, Restaurants, American (Traditional), Fast Food, Caterers, Chicken Wings, Burgers, Soul Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "gkrDiCU_sRZKwuBlhEzv6A", + "name": "Shiroi Hana", + "address": "222 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9488295, + "longitude": -75.1663147, + "stars": 4.0, + "review_count": 217, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "Corkage": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Japanese, Restaurants, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "17:0-22:30", + "Saturday": "16:0-21:0", + "Sunday": "16:0-20:30" + } + }, + { + "business_id": "cv-SmPhbpwQCtlI2Q7KJIQ", + "name": "Sakura Mandarin", + "address": "1038 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9554771, + "longitude": -75.1572987, + "stars": 3.5, + "review_count": 318, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True" + }, + "categories": "Chinese, Japanese, Dim Sum, Sushi Bars, Restaurants, Szechuan", + "hours": { + "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" + } + }, + { + "business_id": "tw_PmFjjCyg0t8Ek_kQz0Q", + "name": "Four Worlds Bakery", + "address": "4634 Woodland", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9434251, + "longitude": -75.2104913, + "stars": 4.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "False" + }, + "categories": "Bagels, Pizza, Bakeries, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-13: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" + } + }, + { + "business_id": "BqvKbM7EOI0jXs0G-h2C9g", + "name": "Rocket Cat Cafe", + "address": "2001 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978541, + "longitude": -75.130099, + "stars": 3.0, + "review_count": 141, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "Alcohol": "'none'", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Breakfast & Brunch, Performing Arts, Arts & Entertainment, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "7:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "osAciuw9I_hvll-vT7uXPA", + "name": "Orchid Flower Shop", + "address": "1633 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9493967776, + "longitude": -75.1689099558, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Shopping, Florists, Flowers & Gifts, Gift Shops", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "3oVxEZuYf7RSQ6DJkwTqbQ", + "name": "BHLDN", + "address": "1801 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9503293, + "longitude": -75.1708177, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Bridal, Formal Wear, Fashion", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "xYnPSmVyKTevyjky3PlTDg", + "name": "Bare Feet Shoes", + "address": "609 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413095, + "longitude": -75.1489028, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Shoe Stores, Fashion, Shopping", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-22:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "_1itCzaA3bDVdPSwNCNPtA", + "name": "Chili's Grill & Bar", + "address": "3801 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553485, + "longitude": -75.1986908, + "stars": 2.5, + "review_count": 41, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Corkage": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'loud'", + "GoodForKids": "True", + "BYOBCorkage": "'yes_corkage'", + "BikeParking": "True", + "HasTV": "True" + }, + "categories": "Barbeque, American (Traditional), Tex-Mex, Burgers, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "CJkBaoXWYI5FwjxmVZPbyg", + "name": "Chester Avenue Dog Park", + "address": "801 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9482382, + "longitude": -75.2185146, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Parks, Dog Parks, Active Life", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "g1-d6abGlN4YRfSONkLtuw", + "name": "Posh Nails & Spa", + "address": "2528 S 24th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9206670372, + "longitude": -75.187726374, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30" + } + }, + { + "business_id": "4FzEYIhYeHoo8_EP23enPA", + "name": "Pete's Dry Cleaners", + "address": "2640 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.972642, + "longitude": -75.180649, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Laundry Services, Dry Cleaning, Dry Cleaning & Laundry, Local Services", + "hours": null + }, + { + "business_id": "jsGqQytwijhwPzqbO60oAQ", + "name": "Super Nails & Spa", + "address": "213 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.956535, + "longitude": -75.2253328, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:30" + } + }, + { + "business_id": "Ja5q1hoxAWrmb8ghT3y7BQ", + "name": "APO Bar + Lounge", + "address": "102 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9501094, + "longitude": -75.1619732, + "stars": 4.0, + "review_count": 98, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Pubs, Lounges, Nightlife", + "hours": { + "Wednesday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "FaRiZSGNY9G4aOn1I_J52g", + "name": "Sandy Kauffman - BHHS Fox & Roach, Realtors", + "address": "2200 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507954562, + "longitude": -75.1775426294, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Real Estate Agents, Real Estate", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "XT-ycQ8ItomJj0yD27IGEw", + "name": "Baskin-Robbins", + "address": "9834 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.093105, + "longitude": -75.031915, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "zRLIbiUqmTDLxJUqugBO2w", + "name": "Fiesta Pizza", + "address": "4518 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9486043, + "longitude": -75.2134574, + "stars": 3.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Caters": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Greek, Restaurants, Pizza, Sandwiches, Italian", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:30", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-22:30", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "aVQmL4KGcp-JHy7RIim4Og", + "name": "Rapco Automotive Centers", + "address": "1620 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0161765, + "longitude": -75.151876, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Real Estate, Home Services, Oil Change Stations, Transmission Repair, Smog Check Stations, Automotive, Shared Office Spaces, Auto Repair, Auto Parts & Supplies", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "lFs4LIQn_kbsLozQzk-4Qg", + "name": "Philadelphia's 9th Street Italian Market", + "address": "919 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9389055424, + "longitude": -75.157853149, + "stars": 4.5, + "review_count": 161, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': True, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "HasTV": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Local Flavor, Public Markets, Fruits & Veggies, Grocery, Food, Shopping, Farmers Market, Restaurants", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "BizQb-SEiGjln1UMkOBhrQ", + "name": "Stats on 17th", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510009972, + "longitude": -75.1687400043, + "stars": 2.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, Sports Bars, Dance Clubs", + "hours": null + }, + { + "business_id": "I7W8NCBr9MuUg5BiRZiqTA", + "name": "Soundgarden Hall", + "address": "520 N Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.959855, + "longitude": -75.137913, + "stars": 3.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'" + }, + "categories": "Arts & Entertainment, Music Venues, Nightlife, Dance Clubs", + "hours": null + }, + { + "business_id": "gwUJdtb5vdVEmpa75yPDsA", + "name": "Richard Nicholas Hair Studio", + "address": "1716 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506061, + "longitude": -75.1695519, + "stars": 4.0, + "review_count": 186, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False" + }, + "categories": "Barbers, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "10:0-13:0" + } + }, + { + "business_id": "QHcyKaKnpqW_MRU1oPxUUA", + "name": "GMC Movers", + "address": "5601 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9607353, + "longitude": -75.2342326, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Organization, Movers, Home Services, Shopping, Local Services, Junk Removal & Hauling, Packing Supplies", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "VXQwSIdKeahnOBLeJL7hxg", + "name": "Philly Phitness", + "address": "130 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95051, + "longitude": -75.1692048, + "stars": 5.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Weight Loss Centers, Trainers, Active Life, Gyms, Fitness & Instruction, Health & Medical", + "hours": { + "Monday": "5:0-22:0", + "Tuesday": "5:0-22:0", + "Wednesday": "5:0-22:0", + "Thursday": "5:0-22:0", + "Friday": "5:0-22:0", + "Saturday": "5:0-22:0", + "Sunday": "5:0-22:0" + } + }, + { + "business_id": "WWbrvdfiqWsNaNu0N9Qe2Q", + "name": "Perfect Choice Cleaning Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Office Cleaning, Shopping, Professional Services, Home Cleaning, Home & Garden", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "i5fUc_Xu_hlvCbuWjot_og", + "name": "Doobies", + "address": "2201 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9464286, + "longitude": -75.1784665, + "stars": 4.0, + "review_count": 150, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False" + }, + "categories": "Dive Bars, Nightlife, Bars", + "hours": { + "Monday": "14:0-2:0", + "Tuesday": "14:0-2:0", + "Wednesday": "14:0-2:0", + "Thursday": "14:0-2:0", + "Friday": "14:0-2:0", + "Saturday": "15:0-2:0", + "Sunday": "15:0-2:0" + } + }, + { + "business_id": "7gNY2fx_8-RFicmecY3RsA", + "name": "Sports & Social Philly", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9093845767, + "longitude": -75.1647046174, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "HasTV": "True" + }, + "categories": "Nightlife, Arts & Entertainment, Restaurants, Bars, Sports Bars, Casinos, Sports Betting", + "hours": { + "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" + } + }, + { + "business_id": "tDB0l01VMA2MWk3wytLVDA", + "name": "The Corner Grill", + "address": "5243 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0195006, + "longitude": -75.2105855, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "7:0-15:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:30-17:0", + "Sunday": "8:30-17:0" + } + }, + { + "business_id": "Fz5e611pvaSZmtUqiryHRg", + "name": "Atlas Pizza & Steaks", + "address": "736 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947459, + "longitude": -75.227509, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "3g8hmFwzRP5J_JGUJWE9rg", + "name": "Hairs 2 U Wig Bank", + "address": "760 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388058, + "longitude": -75.1499949, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Hair Extensions, Hair Salons, Hats, Health & Medical, Jewelry, Beauty & Spas, Wigs, Fashion, Accessories", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:30-17:0" + } + }, + { + "business_id": "f3Q9uQHYKrjfCtzmU9ti7w", + "name": "Nuts To You", + "address": "24 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524629, + "longitude": -75.1734984, + "stars": 4.0, + "review_count": 67, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Chocolatiers & Shops, Health Markets, Food, Organic Stores, Candy Stores, Specialty Food", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-19:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "1TOdCvqS_Ui51Ql3TbQ9oQ", + "name": "Daniel Baer - Compass Realtor", + "address": "1624 Locust St, Fl 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486190596, + "longitude": -75.168999, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Agents, Real Estate, Real Estate Services, Home Services", + "hours": null + }, + { + "business_id": "ArNDRug3p5zngNHiLivnFA", + "name": "CIBO Bistro Wine Bar", + "address": "8000 Essington Ave, Level 2, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.875016, + "longitude": -75.243913, + "stars": 3.0, + "review_count": 129, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "HasTV": "True", + "WiFi": "u'free'", + "GoodForKids": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Bars, Restaurants, Italian, Wine Bars, American (New), Breakfast & Brunch, Nightlife", + "hours": { + "Monday": "5:0-0:0", + "Tuesday": "5:0-0:0", + "Wednesday": "5:0-0:0", + "Thursday": "5:0-0:0", + "Friday": "5:0-0:0", + "Saturday": "5:0-0:0", + "Sunday": "5:0-0:0" + } + }, + { + "business_id": "77URLWmG54d-PNWWJgytCQ", + "name": "Hooters", + "address": "9183 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0756175, + "longitude": -75.0333365, + "stars": 2.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chicken Wings, Beer, Wine & Spirits, Food, Nightlife, Bars, American (New), Sports Bars, American (Traditional), Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "JE7SWXVgY73azAd2I8Gq1A", + "name": "Cinderella Nails", + "address": "4363 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0258144, + "longitude": -75.2240109, + "stars": 4.0, + "review_count": 173, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-21:0", + "Tuesday": "9:30-21:0", + "Wednesday": "9:30-21:0", + "Thursday": "9:30-21:0", + "Friday": "9:30-21:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "1-fNb0DyGtCuD4qg2uA7bQ", + "name": "Pazzo Pazzo", + "address": "1614 Cecil B Moore", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9791026041, + "longitude": -75.1616665689, + "stars": 2.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "Caters": "True", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': None, 'classy': False, 'casual': None}" + }, + "categories": "Seafood, Cheesesteaks, Sandwiches, American (New), Salad, Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "94Ar41929FFMhPmUMaFvKA", + "name": "Hair Cuttery", + "address": "9206 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0555529435, + "longitude": -75.0043956935, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Barbers, Hair Stylists, Men's Hair Salons, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "MjaNcaAWUFCW0mpNL-ymmQ", + "name": "CrossFit 2 St", + "address": "1323 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9309229075, + "longitude": -75.1478080686, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Boot Camps, Interval Training Gyms, Gymnastics, Gyms", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-20:0", + "Saturday": "9:0-11:0" + } + }, + { + "business_id": "AEtZdFFfDi-FBYUVH4CBkg", + "name": "Herban Quality Eats", + "address": "310 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9534956, + "longitude": -75.2181771, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "RestaurantsReservations": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False" + }, + "categories": "Food Delivery Services, Caterers, Event Planning & Services, Restaurants, Gluten-Free, American (New), Food, Vegan, Specialty Food, Health Markets", + "hours": { + "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" + } + }, + { + "business_id": "tm8QlATLujjH9-VHj0HVMg", + "name": "So'Reall's Deep Steam Carpet Cleaners", + "address": "212 W Roberts Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0212915636, + "longitude": -75.1625720597, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Home Services, Damage Restoration, Carpet Cleaning, Furniture Reupholstery", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "TyYpzJzeKWtyMdPFtPRUEg", + "name": "Prince Pizza", + "address": "201 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0215353, + "longitude": -75.1222247, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "Caters": "True", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "riAkNe1cAKEyQHYxk_JDzg", + "name": "Calvary Chapel of Philadelphia", + "address": "13500 Philmont Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1301884218, + "longitude": -75.0166472207, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": null, + "categories": "Churches, Religious Organizations", + "hours": null + }, + { + "business_id": "eUPf2XQgiZEVRO8-5RrSng", + "name": "Liberty Travel", + "address": "1524 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9511125, + "longitude": -75.1667022, + "stars": 2.5, + "review_count": 32, + "is_open": 0, + "attributes": null, + "categories": "Travel Services, Hotels & Travel", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-16:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "prg-VuBmLu82ixjahIhQzg", + "name": "T-Mobile", + "address": "3441 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546221, + "longitude": -75.193061, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True" + }, + "categories": "Mobile Phones, Electronics, Mobile Phone Accessories, Shopping, IT Services & Computer Repair, Telecommunications, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "IaelRCI4Ah5oxiHuBnFC7w", + "name": "ShopRite - Snyder Plaza", + "address": "29 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9215803789, + "longitude": -75.146732584, + "stars": 4.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Grocery, Shopping, Food", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-23:0", + "Saturday": "6:0-23:0", + "Sunday": "6:0-22:0" + } + }, + { + "business_id": "OCR7S1ymLXezUwUB8N5TCg", + "name": "Lee's Kitchen", + "address": "930 N 29th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9740785, + "longitude": -75.1838469, + "stars": 3.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "14:0-1:30", + "Tuesday": "14:0-1:30", + "Wednesday": "14:0-1:30", + "Thursday": "14:0-1:30", + "Friday": "14:0-1:45", + "Saturday": "14:0-1:45", + "Sunday": "14:0-1:30" + } + }, + { + "business_id": "PlGi2QJiVdij5Yv-QTkmMQ", + "name": "Bacchus Market & Catering", + "address": "2300 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9486121, + "longitude": -75.1791856, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Caterers, Event Planning & Services", + "hours": { + "Wednesday": "11:30-19:0", + "Thursday": "11:30-19:0", + "Friday": "11:30-19:0", + "Saturday": "11:30-19:0", + "Sunday": "11:30-19:0" + } + }, + { + "business_id": "HWunRZkrbkdvMgDsr7_b6Q", + "name": "Studio1831", + "address": "1831 Brandywine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9641888, + "longitude": -75.1687201, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Pilates, Active Life, Fitness & Instruction, Dance Studios, Health & Medical, Physical Therapy, Yoga", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "npDpDAJ2-tjAabqN4p3c5Q", + "name": "Sam's Fresh Spot", + "address": "135 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9487783, + "longitude": -75.1571366, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Delis, Coffee & Tea, Food, Convenience Stores", + "hours": { + "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" + } + }, + { + "business_id": "D8kaGtgZ5ofwq11EX5fczg", + "name": "Lap of Love", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9840919, + "longitude": -75.1808035, + "stars": 5.0, + "review_count": 32, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Hospice, Veterinarians", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "H3T-c6Mx1L7NnyOwva-irQ", + "name": "Philly Bike Tour", + "address": "2015 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967468, + "longitude": -75.17083, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hotels & Travel, Active Life, Bike tours, Bike Rentals, Tours", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "pmalaicQwRnji1zGlt0whQ", + "name": "Rittenhouse Eye Associates", + "address": "2000 Hamilton St, Ste 306, Rodin Place", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.962264, + "longitude": -75.171268, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Eyewear & Opticians, Ophthalmologists, Optometrists, Doctors, Health & Medical, Shopping", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "11:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "UiuYQTP-oxhEd01qpjQszw", + "name": "Campbell's Place", + "address": "8337 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0751627, + "longitude": -75.2044998, + "stars": 3.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "GoodForDancing": "False", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BYOB": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{u'breakfast': False, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': False, u'dessert': False}", + "CoatCheck": "False", + "HappyHour": "True" + }, + "categories": "Bars, American (New), American (Traditional), Restaurants, Lounges, Nightlife", + "hours": { + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "dn8KhjqxANODHPynkxeKqQ", + "name": "Hooked", + "address": "2210 W Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0048639, + "longitude": -75.1661779, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Towing, Automotive", + "hours": null + }, + { + "business_id": "istq5KVETngo8mWIKPJwEw", + "name": "Hollowsands Luxury Limousine", + "address": "6940 Norwitch Dr, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.937382175, + "longitude": -75.1560974121, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Airport Shuttles, Limos, Transportation, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "oRtkYR-JpnhZTigQOgw-XA", + "name": "Ruby'z Beauty Studio", + "address": "14 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567872, + "longitude": -75.2021637, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "WiFi": "u'free'" + }, + "categories": "Eyebrow Services, Eyelash Service, Beauty & Spas, Hair Removal, Waxing", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "eKEJ0gZzw6Ox2CYZ5jKQUg", + "name": "Erogenous Zone", + "address": "523 S Franklin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427262, + "longitude": -75.1545525, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False" + }, + "categories": "Shopping, Adult, Fashion, Lingerie", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "WEyscOTFMWXEAH5Mloh6AA", + "name": "NAYA - Philly", + "address": "1601 Market St, -", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9530971, + "longitude": -75.1673521, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}", + "Caters": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}" + }, + "categories": "Fast Food, Lebanese, Middle Eastern, Restaurants, Mediterranean", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-16:0" + } + }, + { + "business_id": "Q0qL3w1O6YfXs6PCS5JL_Q", + "name": "The Grill Cheese", + "address": "48TH And Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9600168, + "longitude": -75.2274866, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "American (New), Restaurants, Food Trucks, Food, Food Stands, Sandwiches", + "hours": { + "Monday": "11:30-14:0", + "Tuesday": "11:30-14:0", + "Wednesday": "11:30-14:0", + "Thursday": "11:30-14:0", + "Friday": "11:30-14:0", + "Saturday": "11:30-14:0" + } + }, + { + "business_id": "2SMb-aUyrBOog3zymv6b8g", + "name": "Restaurant Week", + "address": "660 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Local Flavor", + "hours": null + }, + { + "business_id": "wonHZWFcekpuzJUPsec8ng", + "name": "Queen Express Pizza", + "address": "8101 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0669879, + "longitude": -75.1779879, + "stars": 2.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "etK5pTCprPuKJCtiU-iLKw", + "name": "Darling's Coffeehouse & Cheesecake", + "address": "404 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465979, + "longitude": -75.17476, + "stars": 4.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Coffee & Tea, Restaurants, Desserts, Food", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "My5_W97qij_TuBAsuHOSOg", + "name": "Greene Street", + "address": "8524 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.076247, + "longitude": -75.207288, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Used, Vintage & Consignment, Women's Clothing, Men's Clothing, Shopping, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "6yUwIic-obMfUiPBDDkTkw", + "name": "Pizza Jawn", + "address": "4330 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025144, + "longitude": -75.2232, + "stars": 4.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0" + } + }, + { + "business_id": "RzCizi_BMcm65l3r8XdT_Q", + "name": "U-Save Gutters & Services", + "address": "4763 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0212792, + "longitude": -75.1127028, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Pressure Washers, Roofing, Gutter Services, Home Services", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "pDqI2SmxP2IukZ-vhnmgtQ", + "name": "Swiger Photography", + "address": "2540 S American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9161256, + "longitude": -75.1523605, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Photography Stores & Services, Photographers, Shopping, Session Photography, Event Planning & Services, Event Photography", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "2YKmChrYAiCkW624GTRLNQ", + "name": "Al Sham Restaurant 3 - Philadelphia", + "address": "5228 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.958343, + "longitude": -75.226156, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Halal, Kebab, Restaurants, Middle Eastern", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "Oiwll1QEUAKhnvex5HePfQ", + "name": "Cafe Tinto", + "address": "143 E Wyoming Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.02154, + "longitude": -75.122587, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'dressy'", + "WheelchairAccessible": "False", + "HappyHour": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BikeParking": "False" + }, + "categories": "Colombian, Restaurants, Coffee & Tea, Food, Latin American, Bakeries", + "hours": { + "Monday": "6:0-15:0", + "Tuesday": "6:0-15:0", + "Wednesday": "6:0-15:0", + "Thursday": "6:0-15:0", + "Friday": "6:0-15:0", + "Saturday": "6:0-15:0" + } + }, + { + "business_id": "esrz2kFPZB7oPiC-Pj9ZiQ", + "name": "Wendy's", + "address": "2385 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.073879655, + "longitude": -75.1569770245, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "DriveThru": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "5D0olR3bAHAk2Eaczn1TzQ", + "name": "Sherman Properties", + "address": "3726 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0091484, + "longitude": -75.193353, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Property Management, Real Estate, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "PkzH56GHMq0t-sNes-rHdQ", + "name": "New York Gyro Truck", + "address": "20TH And Market", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535916, + "longitude": -75.173181, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "pD5iEviqhZ9ZnsBi26lb7Q", + "name": "Pure Barre - Philadelphia Center City", + "address": "1701 Walnut St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502165, + "longitude": -75.1691989, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Barre Classes, Women's Clothing, Fitness & Instruction, Shopping, Cardio Classes, Fashion", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-19:0", + "Saturday": "8:0-13:0", + "Sunday": "8:0-17:30" + } + }, + { + "business_id": "TPl-ZIXCP4yBA_OygHCbNQ", + "name": "Love And Hair Peace", + "address": "605 East Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9716456, + "longitude": -75.1270026, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "False" + }, + "categories": "Eyelash Service, Beauty & Spas, Hair Loss Centers, Hair Stylists, Blow Dry/Out Services, Hair Salons, Makeup Artists, Hair Extensions", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "-RpUSbVtSGO9LZwMzGogww", + "name": "Tinaโ€™s tacos", + "address": "2327 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9792884, + "longitude": -75.1255088, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Nightlife, Bars, Tacos, Restaurants, Mexican", + "hours": { + "Tuesday": "15:0-0:0", + "Wednesday": "15:0-0:0", + "Thursday": "15:0-0:0", + "Friday": "15:0-0:0", + "Saturday": "15:0-0:0", + "Sunday": "15:0-0:0" + } + }, + { + "business_id": "1yaUqxNualSrisnr0s1j8Q", + "name": "Pretty Nails", + "address": "9315 Banes St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.083506, + "longitude": -75.040492, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "s_nwnE9IDzSolkPp2fD9PA", + "name": "GNC", + "address": "1711 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9516527, + "longitude": -75.1692184, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Vitamins & Supplements, Health Markets, Specialty Food, Food", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "hp-jB-dXH2I7Jyw_oaFT7Q", + "name": "Hello Vietnam", + "address": "191230000 N 2 St Unit Stre Front Phila", + "city": "Philadelphia ", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9626294207, + "longitude": -75.1412540674, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': True, 'upscale': False, 'classy': None, 'casual': None}", + "RestaurantsTableService": "True", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "ZZeW-9eJ-QjB2dpA1WKleg", + "name": "Clock Bar", + "address": "3649 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0088409, + "longitude": -75.1504451, + "stars": 3.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "NoiseLevel": "'loud'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsTableService": "False", + "RestaurantsGoodForGroups": "False", + "CoatCheck": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': True, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Nightlife, Restaurants, Seafood, Bars", + "hours": null + }, + { + "business_id": "zqZx70_E5Y_W4rjhahpJag", + "name": "Tashia's Cocktails & Cuisine", + "address": "1641 W Hunting Park Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0159472577, + "longitude": -75.1543130726, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HasTV": "True" + }, + "categories": "Bars, Lounges, Dive Bars, Cocktail Bars, Nightlife", + "hours": { + "Monday": "13:0-2:0", + "Tuesday": "13:0-2:0", + "Wednesday": "13:0-2:0", + "Thursday": "13:0-2:0", + "Friday": "13:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "v6fxTp1bn-iVijDoTJix2Q", + "name": "Honey Bare Sugaring & Lash Studio", + "address": "124 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480979, + "longitude": -75.1434597, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Pest Control, Eyelash Service, Local Services, Hair Removal, Eyebrow Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "AWNu8J1JUe43CQXV7zHPQQ", + "name": "Philadelphia Health Center #2", + "address": "1700 S Broad St, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9291811, + "longitude": -75.1692716, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Medical Centers, Health & Medical", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "7:30-16:30", + "Thursday": "8:0-19:30", + "Friday": "8:0-16:30", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "2AfL7nh8ae3nGE9cpGwFZA", + "name": "Wissahickon Spine Center", + "address": "15 W Highland Ave, Ste F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0757279, + "longitude": -75.2070424, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Chiropractors, Physical Therapy, Rehabilitation Center, Nutritionists, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-12:0", + "Thursday": "13:0-19:0", + "Friday": "8:0-12:0" + } + }, + { + "business_id": "8gufdqP_ZArKVoJdwE-JcQ", + "name": "Victoria Secret", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 3.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Lingerie, Fashion, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "4x_DhrjTcrpieMkbrrCU-g", + "name": "Miller's Ale House", + "address": "2100 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.920208058, + "longitude": -75.1417470431, + "stars": 3.5, + "review_count": 132, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTableService": "True", + "HasTV": "True", + "Smoking": "u'no'", + "CoatCheck": "False", + "RestaurantsAttire": "'casual'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "WiFi": "'free'", + "GoodForDancing": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Chicken Wings, Seafood, Sports Bars, American (Traditional), American (New), Nightlife, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "hFK-VVVTo0ovUjAKTQsYoA", + "name": "Bi-Rite Deli", + "address": "3220 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0805635, + "longitude": -74.9946056, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Delis", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "LFmq7ZPuuTybUXht0n-bVQ", + "name": "Jade Palace", + "address": "736 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031862, + "longitude": -75.107067, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "2pNajQRwyng0u6c3J7ONjQ", + "name": "Stevens Heating & Air Conditioning", + "address": "4310 Megargee St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.048308, + "longitude": -75.012052, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Appliances, Electricians, Water Heater Installation/Repair, Home & Garden, Shopping, Heating & Air Conditioning/HVAC, Air Duct Cleaning, Home Services, Plumbing, Local Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "2lKvBXZbRDoosTR5QzXWRA", + "name": "The Meltzer Antell Real Estate Company", + "address": "215 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486858, + "longitude": -75.1639321, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Real Estate, Real Estate Agents", + "hours": null + }, + { + "business_id": "tGHAPwy-v_UdCXkLV27qYQ", + "name": "Desimone Contracting llc", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Contractors, Home Services", + "hours": null + }, + { + "business_id": "i1pGM3unRHXWLr15yyeL9Q", + "name": "Astral Plane", + "address": "1708 Lombard Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451614, + "longitude": -75.170498, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "iMT8En2vAPbNhxE-GqB4nA", + "name": "Requisite Fitness", + "address": "3500 Scotts Ln, Ste 215", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0084328, + "longitude": -75.1834255, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gymnastics, Gyms", + "hours": { + "Monday": "6:0-20:0", + "Tuesday": "6:0-20:0", + "Wednesday": "6:0-20:0", + "Thursday": "6:0-20:0", + "Friday": "6:0-19:0", + "Saturday": "8:0-12:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "Dm-YfL7owZ8_pUWdzFtJ5w", + "name": "Workshop Underground", + "address": "1544 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439075, + "longitude": -75.1686175, + "stars": 5.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Decor, Home & Garden, Fashion, Gift Shops, Shopping, Flowers & Gifts, Jewelry", + "hours": { + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "Cf6p9CjO2uACyz_cSKhJhw", + "name": "Discover Touch", + "address": "202 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948465, + "longitude": -75.160863, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Massage, Massage Therapy, Health & Medical, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "OBxzsMyF37M-iNM7TorTog", + "name": "Five Star Diner", + "address": "11650 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1046204, + "longitude": -75.0032119, + "stars": 3.0, + "review_count": 45, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "'no'" + }, + "categories": "Restaurants, Diners", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0" + } + }, + { + "business_id": "3IDTJXyPKz1vOcJQD1Cn9w", + "name": "Thin & Crispy", + "address": "2563 Trenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9831195, + "longitude": -75.1230116, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Diners, Pizza, Sandwiches, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "t40e1Vl7vEfWEobf1DxRhg", + "name": "Hรคagen-Dazs", + "address": "242 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412842465, + "longitude": -75.1472332931, + "stars": 4.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "False" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Juice Bars & Smoothies, Gelato", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "RQ_J-SNNYZRSo-RdM44x5w", + "name": "The UPS Store", + "address": "7715 Crittenden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.072731, + "longitude": -75.195163, + "stars": 2.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Notaries, Mailbox Centers, Local Services, Shipping Centers, Printing Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "pr4NB_zaJxaOAto7HYh6Ag", + "name": "Tap & Terrier", + "address": "7152 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059537, + "longitude": -75.1908114, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "HasTV": "True", + "WiFi": "u'free'", + "DogsAllowed": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "RestaurantsDelivery": "None", + "Caters": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, American (Traditional), Nightlife, Bars, Gastropubs, American (New)", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "z5elz-by9uvkQL3wmfCDpw", + "name": "Blue Cross River Rink Summer Fest", + "address": "101 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490794, + "longitude": -75.1401723, + "stars": 2.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Skating Rinks, Festivals, Active Life", + "hours": null + }, + { + "business_id": "9Qfor2Rl4MBWnyZTfQYWrg", + "name": "Great Wraps", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514394729, + "longitude": -75.167555809, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "NoiseLevel": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "None", + "OutdoorSeating": "None", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Salad, American (Traditional), Restaurants, Sandwiches, American (New)", + "hours": { + "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": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "qesrSLuacbxAcLz0P6DBVQ", + "name": "Little Baby's Ice Cream-East Market Palace", + "address": "19 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951186, + "longitude": -75.160003, + "stars": 4.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Event Planning & Services, Restaurants, Desserts, Vegan, Caterers, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "nPwqq8lMqYb506GuBgM9DA", + "name": "Appliance Care & Service", + "address": "6407 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0496211, + "longitude": -75.0951284, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Appliances & Repair", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "R5J5bwnRGQ2NPRZHvCdgDA", + "name": "Asanti Hair Studio", + "address": "2827 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9747457, + "longitude": -75.1827326, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Hair Stylists, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "01YFYYmevGER3VJ1xFtUcA", + "name": "Nom Nom Ramen", + "address": "3401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953173, + "longitude": -75.1928651, + "stars": 2.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True" + }, + "categories": "Ramen, Japanese, Restaurants", + "hours": { + "Monday": "10:30-21:30", + "Tuesday": "10:30-21:30", + "Wednesday": "10:30-21:30", + "Thursday": "10:30-21:30", + "Friday": "10:30-21:30", + "Saturday": "10:30-21:30", + "Sunday": "12:0-19:30" + } + }, + { + "business_id": "2LsGwE2DIQaBPvOZ0iNv0g", + "name": "All Star Pizza & Restaurant", + "address": "5154 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.018057, + "longitude": -75.211658, + "stars": 2.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Caters": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'" + }, + "categories": "Seafood, Restaurants, Italian, Pizza, Burgers", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "16:0-4:0", + "Saturday": "16:0-4:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "kgLF1Ly0c8fX8qpZ8H6Zog", + "name": "Phone Repair Philly - Temple Campus", + "address": "1910 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9820041621, + "longitude": -75.1560173598, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "True", + "WheelchairAccessible": "True" + }, + "categories": "IT Services & Computer Repair, Mobile Phone Accessories, Shopping, Mobile Phone Repair, Local Services, Electronics Repair, Data Recovery", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "cjg_d3DimSlqzA3LrL4KuA", + "name": "Brothers Old Style Deli", + "address": "3492 Tilden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0128978, + "longitude": -75.1901747, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "HasTV": "False", + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Food, Delis, Restaurants", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Mm1UbuwHILcih1TJ4pE2Rw", + "name": "Anniefei Nails & Spa", + "address": "7610 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0564601925, + "longitude": -75.0615512207, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Day Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "FamA9E7MQRWGIyktvrcHpA", + "name": "Omega Optical", + "address": "3212 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.081968, + "longitude": -75.172473, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Eyewear & Opticians, Doctors, Optometrists, Ophthalmologists, Shopping, Health & Medical", + "hours": { + "Monday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "k9k8KR-HWclyvAWMR71_ZQ", + "name": "Munchie's Cafe", + "address": "728 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495009, + "longitude": -75.1536808, + "stars": 3.5, + "review_count": 72, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': False, u'dessert': None}", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, American (New), Cafes", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "s8bRGBrGXoFuumL-QF6_YQ", + "name": "Irish American Flooring", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0890568, + "longitude": -75.0435916, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Flooring, Home Services", + "hours": null + }, + { + "business_id": "MmbIJYu5m-9ymC5qZ2d-1Q", + "name": "Door 2 Door Notary Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Notaries, Fingerprinting, Legal Services, Professional Services, Couriers & Delivery Services, Passport & Visa Services, Hotels & Travel, Travel Services", + "hours": { + "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" + } + }, + { + "business_id": "GzMyIDM8KTg-doebtZw8pA", + "name": "Philadelphia Garden Inc.", + "address": "662 W Johnson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0341955, + "longitude": -75.195382, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Gardeners, Landscaping, Landscape Architects", + "hours": null + }, + { + "business_id": "AawRT7FMzXfMd0HwYvb57Q", + "name": "Little Negril Jamaican Restaurant", + "address": "627 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421920762, + "longitude": -75.1532606408, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Food, Cajun/Creole, Caribbean, Desserts, Restaurants", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-1:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "IZIjOSlY1QqzGUfgrnB32w", + "name": "Bill's Old London Pizza", + "address": "328 Loney St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0763366, + "longitude": -75.0859248, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Pizza, Convenience Stores, Food, Sandwiches, Salad", + "hours": null + }, + { + "business_id": "JgFwbdsUGT7cxIn-z7iMTw", + "name": "Al's Pest Control", + "address": "2117 Afton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0619332905, + "longitude": -75.046641046, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Local Services, Pest Control", + "hours": { + "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" + } + }, + { + "business_id": "_1rB4ggX8rhCPHmqqYnltw", + "name": "Shums Auto Repair", + "address": "3600 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0420457262, + "longitude": -75.0289627116, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Automotive, Tires, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "gnE7VBl6EDTiy02a4WP4ng", + "name": "McDonald's", + "address": "34-98 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9545676777, + "longitude": -75.1634571328, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "HasTV": "False", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Restaurants, Burgers, Food, Fast Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "d0kjsERgstlfSBfkFyhhcw", + "name": "MANH -Mt Airy Noodle House", + "address": "7133 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0593943, + "longitude": -75.190119, + "stars": 1.5, + "review_count": 31, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "Caters": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Alcohol": "'none'" + }, + "categories": "Vegetarian, Restaurants, Vegan, Vietnamese", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "9sOHuGGwb8uRVu7pANSWfg", + "name": "South Street Philly Bagels", + "address": "613 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9408795261, + "longitude": -75.1475532699, + "stars": 4.0, + "review_count": 248, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Bagels, Coffee & Tea, Restaurants, Food, Breakfast & Brunch", + "hours": { + "Monday": "6:30-16:0", + "Tuesday": "6:30-16:0", + "Wednesday": "6:30-16:0", + "Thursday": "6:30-16:0", + "Friday": "6:30-16:0", + "Saturday": "6:30-16:0", + "Sunday": "6:30-16:0" + } + }, + { + "business_id": "20DL03rDdw1R2mSH4ORVJA", + "name": "Fishtown Bikes-n-Beans", + "address": "1321 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9708217, + "longitude": -75.1353379, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "False" + }, + "categories": "Bikes, Public Art, Local Services, Shopping, Bike Repair/Maintenance, Food, Sporting Goods, Coffee & Tea, Arts & Entertainment, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "gcjziNbsRYMfdcbOuCCufw", + "name": "Rx Restaurant", + "address": "4443 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9529696, + "longitude": -75.2119807, + "stars": 3.5, + "review_count": 98, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "WiFi": "u'no'", + "BYOBCorkage": "'yes_free'", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Breakfast & Brunch, American (New), Restaurants", + "hours": null + }, + { + "business_id": "4tgm6KADoZz_hbukxqK7sA", + "name": "Kitchen Gia", + "address": "3400 Civic Center Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9478000298, + "longitude": -75.1932610432, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'very_loud'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': None, 'valet': False}" + }, + "categories": "Sandwiches, Coffee & Tea, Restaurants, Salad, Italian, Food", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-17:0" + } + }, + { + "business_id": "tzgrrqQ0SCVXQV02D37Ydw", + "name": "Lavender Nails & Spa", + "address": "1714 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0854833, + "longitude": -75.038161, + "stars": 3.0, + "review_count": 80, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:30-18:0" + } + }, + { + "business_id": "DZxyXqQSmR59wFOTT7UJBg", + "name": "Whispering Leaves", + "address": "4615 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9442486, + "longitude": -75.2103152, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Specialty Food, Herbs & Spices, Food, Internet Cafes, Restaurants, Sandwiches, Coffee & Tea", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "BzYlrtKVKZ2YZV5mCMXBuw", + "name": "The Franklin Hotel at Independence Park", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490544471, + "longitude": -75.1476610189, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Hotels, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "jL4fYp0j8Jn31BiYptb10g", + "name": "Woosa Bubble Tea", + "address": "3639 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9592387831, + "longitude": -75.1945384964, + "stars": 4.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "DogsAllowed": "False" + }, + "categories": "Bubble Tea, Coffee & Tea, Food", + "hours": { + "Monday": "12:0-22:30", + "Tuesday": "12:0-22:30", + "Wednesday": "12:0-22:30", + "Thursday": "12:0-22:30", + "Friday": "12:0-22:30", + "Saturday": "12:0-22:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "ydq75wqbB6vevRvvFgINoQ", + "name": "Eagle Hair Salon", + "address": "119 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954049, + "longitude": -75.1544666, + "stars": 3.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:30-20:0" + } + }, + { + "business_id": "LVfCt9n02ylrle12sP_-1w", + "name": "Metropolitan Bakery", + "address": "8229 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074255377, + "longitude": -75.2030780285, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BikeParking": "True" + }, + "categories": "Bakeries, Food, Restaurants", + "hours": { + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "1whTNrRcL7E0rzLYURJvmA", + "name": "B Wilk Fabrics", + "address": "801 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938089, + "longitude": -75.1498315, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fabric Stores, Shopping, Arts & Crafts", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "eqqfXrtdXTdwxR0qt_nn-Q", + "name": "City Line Pizza", + "address": "2749 N 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0015642, + "longitude": -75.2231686, + "stars": 3.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': None}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0" + } + }, + { + "business_id": "VRX2u1zBqdWhJGMiBJPuDw", + "name": "Gentle Giant Moving Company", + "address": "1450 S Warfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9361358, + "longitude": -75.200523, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Self Storage, Packing Services, Home Services, Local Services, Movers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "IL1t53JLx3Gu0rUB4P50EQ", + "name": "Tiramisu", + "address": "1519 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9499551, + "longitude": -75.1668474, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'dressy'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Alcohol": "'full_bar'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': True}" + }, + "categories": "Restaurants, Italian", + "hours": { + "Monday": "17:0-23:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "mVEqN8IPU-vCeKTXC5lsSQ", + "name": "Kensington Pub", + "address": "2116 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.995567, + "longitude": -75.1025302, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "HasTV": "True", + "OutdoorSeating": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Nightlife, Pubs, Restaurants, American (Traditional), Bars, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "5iVzAXPYqeMx6f2o4AYRcw", + "name": "Green Leafs & Bananas", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8764013502, + "longitude": -75.2469757727, + "stars": 2.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'formal'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "GoodForMeal": "None", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': True, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': None}" + }, + "categories": "Restaurants, Sandwiches, Salad, Food, Fast Food, Ice Cream & Frozen Yogurt, Juice Bars & Smoothies", + "hours": null + }, + { + "business_id": "6-go97sf0sXpNCCe3XW0Cg", + "name": "Snyder Opticians", + "address": "251 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948174, + "longitude": -75.169212, + "stars": 5.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "DogsAllowed": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Eyewear & Opticians", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0" + } + }, + { + "business_id": "U9TJ13_B6mySAb1RI4lhug", + "name": "Rumor", + "address": "1500 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9501823, + "longitude": -75.1660753, + "stars": 2.5, + "review_count": 151, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Dance Clubs", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "21:0-2:0", + "Thursday": "22:0-2:0", + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0", + "Sunday": "22:0-2:0" + } + }, + { + "business_id": "DqtDCKP9mDgIJDw7Umbb3g", + "name": "Art Plus Science", + "address": "801 N 2nd St, 2nd Fl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9630353, + "longitude": -75.1406284, + "stars": 4.5, + "review_count": 85, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "ZNW2cB5dSRUrLHVvXQ059g", + "name": "Almond Street Garage", + "address": "3161 Almond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9848617, + "longitude": -75.1046856, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "fMwsP6V-osjd2icB6kkSGQ", + "name": "HK Hair Studio", + "address": "625 S 23rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446768, + "longitude": -75.1802828, + "stars": 5.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': False, u'extensions': False, u'straightperms': False, u'coloring': True, u'kids': True}", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Blow Dry/Out Services, Men's Hair Salons, Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "gdHu728ScSbbYZ6s88IaaQ", + "name": "Mr. Cleans Carpet & Uphostery Cleaning", + "address": "7800 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.054152, + "longitude": -75.047729, + "stars": 1.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Carpet Cleaning, Home Cleaning, Automotive, Home Services, Auto Detailing, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "woNKqqAki96qvJX3JONQfw", + "name": "Dunkin'", + "address": "2327 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.046212, + "longitude": -75.0565730862, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Donuts, Bagels", + "hours": { + "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" + } + }, + { + "business_id": "IVA_KlMolrs2LVWLVXAs8A", + "name": "Benjamin Lovell Shoes", + "address": "4305 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0250081, + "longitude": -75.2220077, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Shoe Stores", + "hours": null + }, + { + "business_id": "NyH11DJUjiGIrSq7n8IDSQ", + "name": "ACME Markets", + "address": "29 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9232533, + "longitude": -75.1447786, + "stars": 2.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Grocery, Shopping, Drugstores, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "6:0-23:0" + } + }, + { + "business_id": "CzNfFYkI5syKGZnOuWSfYw", + "name": "Dynamite Pest Control", + "address": "279 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9548562962, + "longitude": -75.2258044852, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Pest Control, Local Services, Professional Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "jjFUWQdn6HANmgVy3Qy0RA", + "name": "la bamba", + "address": "600 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9386746, + "longitude": -75.1531814, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': True, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Tacos, Restaurants, Mexican", + "hours": { + "Monday": "17:0-19:30", + "Tuesday": "17:0-19:30", + "Wednesday": "17:0-19:30", + "Thursday": "17:0-19:30", + "Friday": "15:45-19:30", + "Saturday": "15:45-19:30", + "Sunday": "15:45-19:30" + } + }, + { + "business_id": "Un6UO11mgLC6oRgozaJAKw", + "name": "Chipotle Mexican Grill", + "address": "2327 Cottman Ave, Ste 61", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0478755407, + "longitude": -75.0582505447, + "stars": 2.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "False" + }, + "categories": "Fast Food, Restaurants, Mexican", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:45-22:0", + "Wednesday": "10:45-22:0", + "Thursday": "10:45-22:0", + "Friday": "10:45-22:0", + "Saturday": "10:45-22:0", + "Sunday": "10:45-22:0" + } + }, + { + "business_id": "C4JRZbx9La4VONDO-zEkgA", + "name": "Cibo Express Gourmet Market", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.877812, + "longitude": -75.239831, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Caters": "False" + }, + "categories": "Restaurants, Sandwiches, Convenience Stores, Food, Salad", + "hours": null + }, + { + "business_id": "MFdWavlObX_pyrHtkSLWnA", + "name": "Danger Salon", + "address": "108 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9686647, + "longitude": -75.1341106, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "GoodForKids": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Nail Technicians, Hair Salons, Beauty & Spas, Barbers, Nail Salons, Waxing, Hair Removal", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "1QYCVx7Rvqbr7NZF5ZJRaw", + "name": "Girard Food & Gas Mart", + "address": "1138 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9716826, + "longitude": -75.1249615, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Gas Stations, Automotive", + "hours": null + }, + { + "business_id": "thJbpQSBJ8mT92stCg1h6Q", + "name": "G & J Automotive Repairs", + "address": "2511 E Westmoreland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9881361, + "longitude": -75.1022102, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Automotive, Oil Change Stations", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "yYwZWTgSoweD0YNh2p9QRw", + "name": "Tiffany Diner", + "address": "9010 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0740183, + "longitude": -75.0361529, + "stars": 2.5, + "review_count": 155, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForDancing": "False", + "CoatCheck": "False", + "HappyHour": "False", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Cocktail Bars, Restaurants, Bars, Venues & Event Spaces, Nightlife, American (Traditional), Food, Bakeries, Event Planning & Services, Diners", + "hours": { + "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" + } + }, + { + "business_id": "YYP6YG2G_hn7PiqjS3ji2A", + "name": "Olde City Taxi", + "address": "6958 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0272262, + "longitude": -75.0414468, + "stars": 2.5, + "review_count": 47, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Hotels & Travel, Taxis, Airport Shuttles", + "hours": null + }, + { + "business_id": "uAiXaOgglbRpNGzCkUhXiw", + "name": "Absolute Chimney And Masonry Restoration", + "address": "4543 Pearce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0036042, + "longitude": -75.0787498, + "stars": 2.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Masonry/Concrete, Heating & Air Conditioning/HVAC, Home & Garden, Chimney Sweeps, Contractors, Appliances, Home Services, Fireplace Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "YHqsQGotZMlvBW5EdLepmw", + "name": "Models Ink Hair Studio", + "address": "4640 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.028731, + "longitude": -75.099167, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "8:0-17:0", + "Sunday": "7:0-16:0" + } + }, + { + "business_id": "MtqyrUucAWu3UqdOzhQcbA", + "name": "Big 8 Supermarket", + "address": "1600 Carpenter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939248, + "longitude": -75.170307, + "stars": 3.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Grocery, Food", + "hours": { + "Monday": "8:0-20:30", + "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" + } + }, + { + "business_id": "abyhAtKhZUh8w0VT3Rn_BA", + "name": "Dunkin'", + "address": "5643 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0267818, + "longitude": -75.2090475, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "N2SCSKcIyMyk7xIFdUIY6Q", + "name": "America's Best Contacts & Eyeglasses", + "address": "2437 S 24th St, Ste E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920225, + "longitude": -75.186151, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Ophthalmologists, Shopping, Doctors, Health & Medical, Eyewear & Opticians, Optometrists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "garSfHRFg9fASfWcBnMMEQ", + "name": "Happy Garden", + "address": "9916 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0944627, + "longitude": -75.0183533, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "None", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "-Bhoyo7LL97tgt9Hze0Saw", + "name": "Colombian Bakery", + "address": "4944 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0270908616, + "longitude": -75.1327757719, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False" + }, + "categories": "Bakeries, Latin American, Restaurants, Colombian, Food", + "hours": { + "Monday": "5:0-20:0", + "Tuesday": "5:0-20:0", + "Wednesday": "5:0-20:0", + "Thursday": "5:0-20:0", + "Friday": "5:0-20:0", + "Saturday": "5:0-20:0", + "Sunday": "6:0-16:0" + } + }, + { + "business_id": "SYb7oCytGSV6a3RnSFnE1g", + "name": "Naked Chocolate Cafe", + "address": "1317 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492948, + "longitude": -75.1630387, + "stars": 4.0, + "review_count": 212, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'" + }, + "categories": "Chocolatiers & Shops, Coffee & Tea, Specialty Food, Candy Stores, Restaurants, Desserts, Bakeries, Food", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:30", + "Saturday": "10:0-23:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "cpLRN_Ze8BowhfSx5_urWQ", + "name": "Ardiente", + "address": "33 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949015, + "longitude": -75.143818, + "stars": 4.5, + "review_count": 77, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars, Latin American, Restaurants, Lounges, Asian Fusion", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "xo4z2wCKcdK7FQ_6EYDhvA", + "name": "Keep It Moving", + "address": "2212 Glendale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 39.943436462, + "longitude": -74.8937988281, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Couriers & Delivery Services, Movers, Local Services, Home Services, Junk Removal & Hauling", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "kLq_rhEQhIkzKU0n6E9V6A", + "name": "Basic 4 Vegetarian Cafรฉ", + "address": "Reading Terminal Mrkt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9484374254, + "longitude": -75.1509475708, + "stars": 3.5, + "review_count": 53, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False" + }, + "categories": "Vegan, Restaurants, Vegetarian", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "20gJLt2-gr8MNQG84-K-4g", + "name": "Sonata Restaurant", + "address": "1030 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671988, + "longitude": -75.1410133, + "stars": 4.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Wednesday": "17:0-22:30", + "Thursday": "17:0-22:30", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:30" + } + }, + { + "business_id": "WTyW0nI_zv0T3kB9jR750w", + "name": "Wawa", + "address": "14101 Bustleton Pk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.131730184, + "longitude": -75.0120184148, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Gas Stations, Automotive, Food, Coffee & Tea, Restaurants, Convenience Stores, Sandwiches", + "hours": { + "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" + } + }, + { + "business_id": "L-qu3bjkz4Uar55Fxa5JZA", + "name": "Hong Qi Gong", + "address": "135 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9544401037, + "longitude": -75.1542798802, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Hot Pot, Restaurants, Chinese", + "hours": null + }, + { + "business_id": "DBSsY0WloqbYcPcDJWeKOw", + "name": "Miga Korean BBQ & Sushi", + "address": "2001 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9623486549, + "longitude": -75.1722698211, + "stars": 3.0, + "review_count": 141, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "DogsAllowed": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Korean, Sushi Bars, Asian Fusion, Barbeque, Hot Pot", + "hours": { + "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" + } + }, + { + "business_id": "pA4zx5tE-lKSRKAQ_6BJRA", + "name": "Snyderman's Gulf Station", + "address": "260 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9553468, + "longitude": -75.1427725, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Automotive, Gas Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "j52SvHWTd6h-6vywAQInBQ", + "name": "Campus Pizza Restaurant", + "address": "1000 Diamond St, Ste 114", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9834801, + "longitude": -75.1499321, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Pizza, Sandwiches", + "hours": { + "Monday": "11:0-22:45", + "Tuesday": "11:0-22:45", + "Wednesday": "11:0-22:45", + "Thursday": "11:0-22:45", + "Friday": "11:0-1:30", + "Saturday": "11:0-1:30", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "vhDWGF-8BfsxvS7Zo5Wv2w", + "name": "Abe Fisher", + "address": "1623 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507508655, + "longitude": -75.1682812761, + "stars": 4.5, + "review_count": 640, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "False", + "Caters": "False", + "GoodForDancing": "False", + "CoatCheck": "True", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "DogsAllowed": "False", + "BikeParking": "True", + "Corkage": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "True" + }, + "categories": "Beer, Wine & Spirits, Nightlife, Food, Beer Bar, Bars, Restaurants, Modern European", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "DgDd0A3nI-mMi35jZIlyxg", + "name": "The Parish Pub", + "address": "3510 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0373492, + "longitude": -75.0423481, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "HappyHour": "True", + "RestaurantsReservations": "False" + }, + "categories": "Sports Bars, Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "YMgae4QWClowhR3ZE7oXiQ", + "name": "Blue Line Collectibles", + "address": "1728 W Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9212459, + "longitude": -75.1764946, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Comic Books, Toy Stores, Books, Mags, Music & Video", + "hours": { + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "tPjOfyMMlx8eNULcP6tGbA", + "name": "Dukes Plumbing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.063992, + "longitude": -75.080067, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Plumbing, Home Services, Water Heater Installation/Repair, Heating & Air Conditioning/HVAC", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "Y8frpWVw_dtheWSnIkRBmA", + "name": "Collision Decision", + "address": "7373 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0269089, + "longitude": -75.0293527, + "stars": 4.5, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "YYptLsyFiaBumtrXVtdi3g", + "name": "Food & Friends", + "address": "316 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9444959, + "longitude": -75.1503963, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fruits & Veggies, Beer, Wine & Spirits, Specialty Food, Food, Grocery", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "dNhZQWYVm3V4rnyqL3oWVw", + "name": "Sam's Club", + "address": "1000 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0930401, + "longitude": -74.9586875, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Shopping, Wholesale Stores, Tires, Eyewear & Opticians, Grocery, Automotive, Fashion, Department Stores, Drugstores, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "3bkqiYxu6bo0k0JT39SZSw", + "name": "Post Office Cafe", + "address": "2696 Bridge St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0032247, + "longitude": -75.0661115, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Bars", + "hours": { + "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-0:0" + } + }, + { + "business_id": "3mdQC4EqCJ-WAmkgjij2XA", + "name": "Little Joe's Pizzeria & Hoagie Shop", + "address": "125 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0297678427, + "longitude": -75.2286778665, + "stars": 2.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "'free'", + "GoodForKids": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsReservations": "False" + }, + "categories": "Pizza, Sandwiches, Restaurants", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-3:0", + "Saturday": "10:30-3:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "PRN4IdoPO7mCG_GWtHYE0g", + "name": "Car Spot", + "address": "2375 Welsh Rd, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0725432, + "longitude": -75.0326844, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": null, + "categories": "Car Dealers, Auto Repair, Automotive, Auto Loan Providers", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "pmnaMretlgmAA96i8Z7NFw", + "name": "Malelani Cafe", + "address": "6734 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0529533, + "longitude": -75.1861048, + "stars": 4.5, + "review_count": 145, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "WiFi": "'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "HasTV": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "DogsAllowed": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "HappyHour": "False" + }, + "categories": "Mediterranean, Bubble Tea, Food, Restaurants, Coffee & Tea, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "JDPGNFFq6kheUQVb8Tt-RA", + "name": "Chamounix Mansion Youth Hostel", + "address": "3250 Chamounix Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0037866, + "longitude": -75.1962728, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": null, + "categories": "Hostels, Hotels & Travel", + "hours": { + "Monday": "8:0-2:0", + "Tuesday": "8:0-2:0", + "Wednesday": "8:0-2:0", + "Thursday": "8:0-2:0", + "Friday": "8:0-2:0", + "Saturday": "8:0-2:0", + "Sunday": "8:0-2:0" + } + }, + { + "business_id": "MEFlbQsRU9trw5m3Jeflew", + "name": "The Grille at the Reserve", + "address": "9000 Bartram Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.883829, + "longitude": -75.2495468, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'paid'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True" + }, + "categories": "Hotels & Travel, Restaurants, American (New)", + "hours": { + "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" + } + }, + { + "business_id": "JYv4luEjJ43seuZ54vJzvA", + "name": "Bristish Imperial Cleaners", + "address": "1322 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478399, + "longitude": -75.1633165, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Sewing & Alterations, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "QHpf3YP3mjENTwciIQ_m5A", + "name": "Tuk Tuk Real", + "address": "429 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941958, + "longitude": -75.15019, + "stars": 3.5, + "review_count": 69, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Mexican, Asian Fusion, Thai", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "HkQ_ZTwjVMxBa3HISF5heg", + "name": "John Gabriel Jr", + "address": "5961 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0315449, + "longitude": -75.2125538, + "stars": 4.5, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Auto Repair, Automotive, Tires, Gas Stations, Transmission Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:30-14:30" + } + }, + { + "business_id": "D-Gxa1i6RZe_9QGQ9eWZJw", + "name": "Maximum Level Lounge", + "address": "5118 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.957379, + "longitude": -75.2239539, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Nightlife, Bars, Lounges", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "19:0-2:0", + "Wednesday": "15:0-2:0", + "Thursday": "15:0-2:0", + "Friday": "15:0-2:0", + "Saturday": "21:0-2:0", + "Sunday": "19:0-2:0" + } + }, + { + "business_id": "OdIBX09glfXNVSyd0RnIeg", + "name": "Monk's Cafe", + "address": "264 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947701, + "longitude": -75.1682869, + "stars": 4.0, + "review_count": 2184, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "HasTV": "False", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Caters": "False", + "GoodForDancing": "False", + "WiFi": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "WheelchairAccessible": "False", + "CoatCheck": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "None", + "OutdoorSeating": "True" + }, + "categories": "Nightlife, Pubs, Bars, Belgian, Restaurants, Gastropubs", + "hours": { + "Wednesday": "11:30-0:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "L_Rwy6oSAnMUY3NCDspxmA", + "name": "The Good King Tavern", + "address": "614 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941969, + "longitude": -75.154207, + "stars": 4.0, + "review_count": 338, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Caters": "False", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}" + }, + "categories": "Nightlife, Wine Bars, Breakfast & Brunch, Bars, Restaurants, Cocktail Bars, Brasseries, French", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-23:0", + "Wednesday": "17:0-23:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "15:0-23:0" + } + }, + { + "business_id": "y_j4V5xyL1tUfsnSIKNunQ", + "name": "Hoorfar Dental Group- Philadelphia", + "address": "1825 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.963682, + "longitude": -75.1691989, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Endodontists, Health & Medical, Dentists, General Dentistry, Cosmetic Dentists", + "hours": { + "Monday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-13:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "EMXZ_zHfbFQi18J88-i3lw", + "name": "Harmony Nails & Spa", + "address": "330 W Oregon Ave, Ste D", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.914557, + "longitude": -75.156693, + "stars": 3.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Beauty & Spas, Waxing, Nail Salons", + "hours": null + }, + { + "business_id": "vWF2QhXj6tzN1hVmBFRNOw", + "name": "Tang Thai Restaurant", + "address": "6190 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.035393, + "longitude": -75.217551, + "stars": 3.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Thai, Restaurants", + "hours": null + }, + { + "business_id": "T3qhnbZ4la5wPgwkc_8apA", + "name": "Philly Flavors", + "address": "44 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524319, + "longitude": -75.1718049, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "WiFi": "'no'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "Gbme3lbFUzssuPJsOfDUQw", + "name": "Bentoulis Pizza", + "address": "2347 E Somerset St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9837637, + "longitude": -75.1155537, + "stars": 4.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "3t5cdchllD4uloxHbfxBiA", + "name": "VOG", + "address": "135 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950672524, + "longitude": -75.172072649, + "stars": 4.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Makeup Artists, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "wc2XgFV0HnvgF127QHkSNw", + "name": "Watkins Drinkery", + "address": "1712 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9279435, + "longitude": -75.1620511, + "stars": 4.0, + "review_count": 145, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "WiFi": "u'free'", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Burgers, Restaurants, Pets, Bars, Nightlife, Vegan, Pubs, Gastropubs", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "ZzWhjzj-BRFjtgGjdvGglw", + "name": "Boba and Company", + "address": "600 W Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9208209, + "longitude": -75.1572173, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Bubble Tea, Food Trucks, Juice Bars & Smoothies", + "hours": { + "Tuesday": "14:0-21:0", + "Wednesday": "14:0-21:0", + "Thursday": "14:0-21:0", + "Friday": "14:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "4IrGZzglUUDgxfBBJKbnZw", + "name": "Roy-Pitz Barrel House", + "address": "990 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614570819, + "longitude": -75.1541474462, + "stars": 4.0, + "review_count": 151, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Smoking": "u'outdoor'", + "Caters": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BYOB": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "u'loud'", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "False", + "HasTV": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "True" + }, + "categories": "Restaurants, Gastropubs, Pizza, Bars, Nightlife, Food, Breweries, Beer Bar, Brewpubs", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "13:0-22:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "e9CyHKDfTSfKYLs6KAmN1Q", + "name": "Burns Funeral Home", + "address": "9708 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0596127, + "longitude": -74.9935904, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Funeral Services & Cemeteries", + "hours": { + "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" + } + }, + { + "business_id": "tB7QhPfp3FSHwY4CPNa6tA", + "name": "The Passport Guys", + "address": "1341 N Delaware Ave, Ste 303", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9678851, + "longitude": -75.1274849, + "stars": 5.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Travel Services, Hotels & Travel, Public Services & Government, Passport & Visa Services, Professional Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "jvQLCjrq4nUAslDg3CWOhQ", + "name": "Old City Cheese Shop", + "address": "160 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9538007, + "longitude": -75.1449469, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Specialty Food, Food, Restaurants, Cheese Shops", + "hours": { + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "y930pQM0EUblQluRLkXLQg", + "name": "Park Pizza", + "address": "434 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9524671, + "longitude": -75.2267231, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Salad, Pizza, Cheesesteaks, Restaurants, Sandwiches", + "hours": { + "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", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "xByz2KVNOKmwBbHxabjsKQ", + "name": "Larose Jazz Club", + "address": "5531 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0348183, + "longitude": -75.1728924, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Arts & Entertainment, Haitian, Caribbean, Restaurants, Nightlife, Jazz & Blues", + "hours": { + "Monday": "17:0-0:0", + "Thursday": "17:0-0:0", + "Friday": "17:0-0:0", + "Saturday": "17:0-0:0" + } + }, + { + "business_id": "OhhVlGfQ8tPyfjni6U1qBQ", + "name": "Rosalind Stella's Wig Boutique", + "address": "1916 Welsh Rd, Ste 1B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0811093, + "longitude": -75.0382522, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wigs, Hair Salons, Cosmetics & Beauty Supply, Beauty & Spas, Shopping", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "uGQTlLly4em2Y3TtfHomvQ", + "name": "Rite Aid", + "address": "5627-99 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.960197, + "longitude": -75.234411, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Drugstores, Convenience Stores, Food", + "hours": { + "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" + } + }, + { + "business_id": "OoZwHpfwHT04hu5-SrJeLQ", + "name": "Latin Fashion", + "address": "4648 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.022384, + "longitude": -75.1338442, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Lingerie, Plus Size Fashion, Shoe Stores, Women's Clothing, Shopping, Fashion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "eMNs566mbPabyLvWYuAfLA", + "name": "Franks Gun Shop", + "address": "4730 Blakiston St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0405702, + "longitude": -75.0125795, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Guns & Ammo", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "5KMhHFniN-BL0IPjVKOeog", + "name": "Architectural Antiques Exchange", + "address": "721 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9624073, + "longitude": -75.1406284, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "4", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Active Life, Antiques", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "xJ3aziMabFEjF8X0kvPfLw", + "name": "Au Bon Pain", + "address": "421 Curie Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9480509614, + "longitude": -75.1962727917, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "Caters": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'" + }, + "categories": "Sandwiches, Restaurants, Cafes, Food, Breakfast & Brunch, Bakeries", + "hours": null + }, + { + "business_id": "Mj0eEQNzeL3kSPwSH8yRVA", + "name": "Buccann", + "address": "7254 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0510947, + "longitude": -75.0666122, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "True", + "HappyHour": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "WiFi": "'no'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Latin American, Bars, Nightlife, Caribbean, Lounges", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "enBi-JPJ8hXXYkTRUtDTlA", + "name": "Today's Furniture Design", + "address": "191 W Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.025977, + "longitude": -75.1273329, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Baby Gear & Furniture, Office Equipment, Home & Garden, Home Decor, Furniture Stores, Shopping", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "OO4hFB_yYtM7tyJUt6s-PQ", + "name": "Rite Aid", + "address": "5214-30 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.947313, + "longitude": -75.228872, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}" + }, + "categories": "Food, Shopping, Convenience Stores, Photography Stores & Services, Drugstores", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "j8jO9qn_KB_Lt9zcZWIheQ", + "name": "Genji Sushi Bar & Izakaya", + "address": "2101 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9634523, + "longitude": -75.1744675, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "HasTV": "True" + }, + "categories": "Ramen, Restaurants, Asian Fusion, Japanese, Food, Grocery, Sushi Bars", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "tKsawuzB214VPzXb1488Ew", + "name": "Homemade Goodies by Roz", + "address": "510 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9424822, + "longitude": -75.1507643, + "stars": 4.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "WiFi": "u'free'", + "NoiseLevel": "u'very_loud'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Bakeries, Restaurants, Kosher, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-17:0", + "Friday": "7:30-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "pCjWFP6aC0hE9QugVCTpiw", + "name": "Green Olives Cafe", + "address": "1941 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9256118, + "longitude": -75.1684246, + "stars": 3.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "Caters": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Mediterranean, Food, Food Delivery Services, Cafes, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "e0KzISSDK4b4unzirf3cYQ", + "name": "Mimmo's Pizza", + "address": "3000 W Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 40.004687, + "longitude": -75.17882, + "stars": 2.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "'average'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "u'no'" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "uNh3Eeucqrd07qJ8hG11dQ", + "name": "You Ring We Bring", + "address": "2256 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9936066, + "longitude": -75.1008423, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "HasTV": "True", + "WiFi": "'no'", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "Afjdx1dQT7PyMhwRfU_c-w", + "name": "Lundy Law - Philadelphia Office", + "address": "1818 Market St, Ste 2400", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9529111, + "longitude": -75.1710457, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Personal Injury Law, Professional Services, Lawyers", + "hours": { + "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" + } + }, + { + "business_id": "VpJNqYcAGqCbTSl-9Q9N9w", + "name": "Rita's Alterations", + "address": "1201 Moore St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9276936, + "longitude": -75.1654939, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Sewing & Alterations, Local Services", + "hours": null + }, + { + "business_id": "RaK2NlWb8RV3xckcug_TJg", + "name": "Black Seed Cafe", + "address": "2400 Federal St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.93815, + "longitude": -75.183637014, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Cafes, Burgers, Restaurants, Breakfast & Brunch", + "hours": { + "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": "8:0-15:0" + } + }, + { + "business_id": "nWpIXaVS8VuAsHZYID4Lww", + "name": "The Corner", + "address": "102 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950171, + "longitude": -75.16213, + "stars": 3.5, + "review_count": 189, + "is_open": 0, + "attributes": { + "HasTV": "False", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:30", + "Saturday": "11:30-23:30", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "9rjYYWTMZj2LzDuBl9rKEQ", + "name": "Happy Wok Chinese Restaurant", + "address": "6420 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.029547, + "longitude": -75.058484, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "GoodForKids": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "RadvqFuRTZNEfSZ_avPRog", + "name": "Honest Tom's Plant Based Taco Shop", + "address": "261 S 44th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9532203, + "longitude": -75.2102519, + "stars": 4.0, + "review_count": 597, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "HasTV": "False", + "GoodForKids": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "DriveThru": "False", + "RestaurantsDelivery": "None", + "HappyHour": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Tex-Mex, Tacos, Vegan, Restaurants, Mexican, Breakfast & Brunch", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "m2dSfWtjHiJzcQRN43rfgA", + "name": "Arthur W Greenfield, DDS", + "address": "9501 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0807685, + "longitude": -75.0269035, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Orthodontists, Dentists, Oral Surgeons, General Dentistry, Health & Medical", + "hours": { + "Monday": "12:0-18:30", + "Tuesday": "8:30-16:0", + "Thursday": "8:30-18:30", + "Friday": "8:30-13:30" + } + }, + { + "business_id": "vP0Un0I4ttXgjEnYbmwUIw", + "name": "Rita's Italian Ice", + "address": "1511 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9473586, + "longitude": -75.1669321, + "stars": 4.0, + "review_count": 83, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Desserts, Food, Shaved Ice", + "hours": { + "Monday": "13:0-20:0", + "Tuesday": "13:0-20:0", + "Wednesday": "13:0-20:0", + "Thursday": "13:0-20:0", + "Friday": "13:0-20:0", + "Saturday": "13:0-20:0", + "Sunday": "13:0-20:0" + } + }, + { + "business_id": "6X6L-lYcsi28PPNiLGWVKg", + "name": "Rare Co Vintage", + "address": "410 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391024, + "longitude": -75.1501695, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Home Decor, Furniture Stores, Shopping, Home & Garden, Antiques", + "hours": { + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "FCayNgVF7non019PU-1cEg", + "name": "Wallace & Nilan", + "address": "1714 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96696, + "longitude": -75.16592, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Occupational Therapy, Sports Medicine, Doctors, Health & Medical, Physical Therapy", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-15:0" + } + }, + { + "business_id": "iydOdxf9QnI6tIvyWXxPqQ", + "name": "Kurry Shack", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526099274, + "longitude": -75.1757499576, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Vegetarian, Indian, Restaurants, Halal", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "mRdcJuevKVLcy2bIYWjO2Q", + "name": "Concentra Medical Centers", + "address": "2010 Levick St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0357981, + "longitude": -75.0714724, + "stars": 1.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Medical Centers", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "KQIPm9YpHlfwawl-9Y5Cyg", + "name": "Help U Store It", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9915379, + "longitude": -75.2187346, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Colleges & Universities, Self Storage, Education, Home Services, Local Services, Movers", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "aVqpkblvTeJsRQQ9UbKN2A", + "name": "Standing O", + "address": "237 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.948063, + "longitude": -75.163985, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': None, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "WiFi": "'free'" + }, + "categories": "Nightlife, Salad, Restaurants, Bars, American (Traditional), Sandwiches", + "hours": { + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0" + } + }, + { + "business_id": "xEaNFfbt5V3evb7H2XFX-A", + "name": "Brewery ARS", + "address": "1927 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9239563124, + "longitude": -75.1788754016, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "DogsAllowed": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Breweries, Beer, Wine & Spirits, Food", + "hours": { + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:0", + "Saturday": "14:0-19:0", + "Sunday": "14:0-19:0" + } + }, + { + "business_id": "o6-sdAt6oTC3A52azk6FBQ", + "name": "PrimoHoagies", + "address": "51 Bethlehem Pike", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0782181696, + "longitude": -75.2082422376, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': None}" + }, + "categories": "Restaurants, Sandwiches, Burgers, Food, Italian, Desserts", + "hours": { + "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-18:0" + } + }, + { + "business_id": "Qfep5GxJqJU0X2cFEeD6ww", + "name": "BP", + "address": "4268 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0095951, + "longitude": -75.1963281, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Gas Stations", + "hours": null + }, + { + "business_id": "ZMed2YHPduN6mbQUXMIaUw", + "name": "S.mart Snacks Store", + "address": "224 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956253526, + "longitude": -75.1558835059, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Imported Food, Food, Specialty Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "JIQgUceja_UVBefHpOJp0w", + "name": "Reyes Appliances", + "address": "256 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.95545, + "longitude": -75.2260849, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Appliances & Repair, Shopping, Appliances, Home & Garden, Local Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "5lk4EesrynaKnqM4FzLpug", + "name": "Best Choice Plumbing & Heating", + "address": "2510 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.002467, + "longitude": -75.077336, + "stars": 2.5, + "review_count": 63, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Property Management, Plumbing, Apartments, Home Services, Water Heater Installation/Repair, Heating & Air Conditioning/HVAC, Hotels & Travel, Vacation Rentals", + "hours": { + "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" + } + }, + { + "business_id": "OLaIlFwd5R0nyozIx6Q4eg", + "name": "Ultrabeauty European Day Spa & Salon", + "address": "10767 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1091731, + "longitude": -75.0250582, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "False" + }, + "categories": "Day Spas, Nail Salons, Hair Salons, Beauty & Spas, Hair Removal, Health & Medical, Massage Therapy", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "dc98lqGzBSpZZExT_LSiCA", + "name": "Thunder Mug Cafe", + "address": "4233 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0093857912, + "longitude": -75.1948174462, + "stars": 5.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "False", + "Caters": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "ziyXteCmNmRprs10buP2iQ", + "name": "Kilimandjaro Restaurant", + "address": "4317 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567961, + "longitude": -75.208836, + "stars": 4.0, + "review_count": 252, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Caters": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "RestaurantsDelivery": "True", + "OutdoorSeating": "None" + }, + "categories": "African, Restaurants", + "hours": { + "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": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "BRl-KarobZBNuCvhz5RWKg", + "name": "Ginza", + "address": "1100 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93245, + "longitude": -75.14619, + "stars": 4.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Caters": "True", + "Alcohol": "u'none'", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BikeParking": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Sushi Bars, Ramen, Restaurants, Japanese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "xhdirtsnMI0245B4b1vbZQ", + "name": "The BarberShop Lounge", + "address": "1632 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9244019807, + "longitude": -75.174186524, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Beauty & Spas, Hair Salons, Men's Hair Salons, Barbers", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "2lcgp7-09VXUTnlQ4PPKpw", + "name": "Dunkin' Donuts", + "address": "1105 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504898, + "longitude": -75.1588181, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Donuts, Coffee & Tea", + "hours": null + }, + { + "business_id": "HCrj9O5EYTsU0c5ebtfT-w", + "name": "TrappedPHL", + "address": "38 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9200584, + "longitude": -75.1473341, + "stars": 4.5, + "review_count": 20, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True" + }, + "categories": "Challenge Courses, Escape Games, Active Life, Mini Golf, Arts & Entertainment", + "hours": { + "Wednesday": "18:0-21:0", + "Thursday": "18:0-21:0", + "Friday": "18:0-21:0", + "Saturday": "15:0-21:0", + "Sunday": "12:30-17:0" + } + }, + { + "business_id": "gpBBspj0xly8vEVz3sPvfg", + "name": "Urban Jungle", + "address": "1526 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9303878, + "longitude": -75.1630645, + "stars": 4.0, + "review_count": 106, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home & Garden, Landscaping, Irrigation, Shopping, Home Services, Local Flavor, Nurseries & Gardening", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "15eVb-rIKkWyWjcAvYmmPg", + "name": "Cha Cha", + "address": "1286 W Montgomery Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9799137, + "longitude": -75.155228, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "Caters": "False", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Korean, Food Stands, Restaurants", + "hours": null + }, + { + "business_id": "qOCZYVpQ_H0BabYkWcbXhA", + "name": "Roxborough Seafood House", + "address": "601 Jamestown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0297696, + "longitude": -75.2061641, + "stars": 3.0, + "review_count": 135, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "None", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "DogsAllowed": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Sandwiches, Pubs, American (Traditional), Salad, Event Planning & Services, Bars, Nightlife, Seafood, Restaurants, Caterers", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "H2ES2RwZWnCCT6VB0ywYTQ", + "name": "Les & Doreen's Happy Tap", + "address": "1301 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9737612, + "longitude": -75.1254746, + "stars": 4.0, + "review_count": 28, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'very_loud'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "Music": "{u'dj': None, u'live': False, u'jukebox': True, u'video': False, u'background_music': False, u'karaoke': True, u'no_music': False}" + }, + "categories": "Dive Bars, Bars, Nightlife", + "hours": { + "Monday": "7:0-2:0", + "Tuesday": "7:0-2:0", + "Wednesday": "7:0-2:0", + "Thursday": "7:0-2:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "smbRW49nmlLj7nO7PZLmJw", + "name": "Community Laundromat", + "address": "1501 Montrose St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939751384, + "longitude": -75.1680663471, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1" + }, + "categories": "Laundry Services, Local Services, Laundromat, Dry Cleaning & Laundry", + "hours": { + "Monday": "8:0-20: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-20:0" + } + }, + { + "business_id": "Y8gU_q-bGqMP0uJgCgdiBA", + "name": "The Big Bus Company", + "address": "600 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505117, + "longitude": -75.1507681, + "stars": 3.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Tours, Transportation, Hotels & Travel, Wedding Planning, Bus Tours", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-15:0", + "Wednesday": "9:30-16:30", + "Thursday": "9:30-16:30", + "Friday": "9:30-16:30", + "Saturday": "9:30-16:30", + "Sunday": "9:30-16:30" + } + }, + { + "business_id": "A73hMO-Ireqx47M88FWYTw", + "name": "The Rhawnhurst", + "address": "8002 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0621074, + "longitude": -75.0562093, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "BikeParking": "False", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "American (Traditional), Nightlife, Bars, Dive Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "d36q8xxhWiKhRaRs7Q42BA", + "name": "Asia Mix Restaurant", + "address": "11000 Roosevelt Blvd, Ste 154", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.103218, + "longitude": -75.010237, + "stars": 5.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Corkage": "False", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "BYOB": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "WiFi": "u'free'" + }, + "categories": "Uzbek, Korean, Modern European, Restaurants", + "hours": { + "Friday": "11:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "gJ5Szgefk1fJ4WSfGre_ng", + "name": "Delta Sky Club", + "address": "8500 Essington Ave, Terminal D, Philadelphia International Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8771009637, + "longitude": -75.2409021024, + "stars": 2.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "False", + "CoatCheck": "False", + "RestaurantsReservations": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "Smoking": "u'no'", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "RestaurantsPriceRange2": "3", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': False, u'validated': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "HasTV": "True" + }, + "categories": "Airports, Nightlife, Travel Services, Hotels & Travel, Airport Lounges, Bars", + "hours": { + "Monday": "4:30-19:45", + "Tuesday": "4:30-19:45", + "Wednesday": "4:30-19:45", + "Thursday": "4:30-19:45", + "Friday": "4:30-19:45", + "Saturday": "4:30-18:0", + "Sunday": "4:30-19:45" + } + }, + { + "business_id": "g_6tzTTNk2qlGE6n_H6Q7A", + "name": "Hand & Stone Massage and Facial Spa", + "address": "3200 Chestnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953801, + "longitude": -75.189242, + "stars": 2.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Day Spas, Massage Therapy, Massage, Hair Removal, Health & Medical, Skin Care, Waxing", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "AEAW8IkEQv8wV6lXKfx06w", + "name": "Hibachi Express", + "address": "1900 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 4.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': True, 'valet': False}", + "GoodForKids": "False", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Seafood, Asian Fusion, Chicken Wings, Restaurants, Teppanyaki, Salad, Poke, Japanese, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "11:30-21:30" + } + }, + { + "business_id": "tdCWwSbMXBHomFe1aILUgw", + "name": "XFINITY Kiosk", + "address": "1455 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0874635008, + "longitude": -74.9614910172, + "stars": 1.5, + "review_count": 137, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Internet Service Providers, Security Systems, Television Service Providers, Home Services, Professional Services", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "bzOCjuydWTkgkbZeaec8Zg", + "name": "La Colombe", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.878166, + "longitude": -75.237845, + "stars": 3.0, + "review_count": 110, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': True}", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsTableService": "False", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "Caters": "True", + "WiFi": "u'no'", + "GoodForKids": "True", + "BikeParking": "False" + }, + "categories": "Food, Coffee & Tea, Juice Bars & Smoothies, Bakeries, Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "rZkwiLIUO50ozobE0sVp3A", + "name": "Novita Bistro", + "address": "1608 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9439473, + "longitude": -75.16914, + "stars": 3.0, + "review_count": 47, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': True, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "French, Moroccan, Restaurants", + "hours": null + }, + { + "business_id": "hHs2Ytn2QSHnFscnALsLlQ", + "name": "The Industry", + "address": "1401 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9303951, + "longitude": -75.1495562, + "stars": 4.0, + "review_count": 280, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTableService": "True", + "GoodForKids": "False" + }, + "categories": "American (New), Nightlife, Restaurants, Bars, Fast Food, Cocktail Bars, Food", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "zf10JmXNZFljGl3IgWW-Lg", + "name": "Mizu", + "address": "111 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552752, + "longitude": -75.2022328, + "stars": 3.0, + "review_count": 120, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'yes_free'", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "nnj7qBkatEsflXfnPzsBZw", + "name": "WYSP 94.1 FM", + "address": "101 S Independence Mail E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9492005, + "longitude": -75.1507641, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Mass Media, Fashion, Accessories, Women's Clothing, Radio Stations, Shopping", + "hours": null + }, + { + "business_id": "zp9OcdUq2CWtQuI9FFBOQQ", + "name": "Iovine Brothers Produce", + "address": "1136 Arch St Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530156477, + "longitude": -75.1595171081, + "stars": 4.5, + "review_count": 204, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fruits & Veggies, Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "zeph20t-1wXKmVejMvT3Wg", + "name": "Betterclean Laundry", + "address": "6391 Oxford Ave, Ste A3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0444446382, + "longitude": -75.087115395, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Local Services, Laundry Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "VF-2iy72uC28Bk2zLdnLMA", + "name": "Tutti Frutti Frozen Yogurt", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491958, + "longitude": -75.1629504, + "stars": 4.0, + "review_count": 64, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Bakeries, Professional Services", + "hours": null + }, + { + "business_id": "1qZBvcMWD_p-MINXW9HYYQ", + "name": "Robert Stevens Scratch & Dent Appliance Outlets", + "address": "7119 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0587981, + "longitude": -75.0860725, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "DogsAllowed": "False" + }, + "categories": "Appliances & Repair, Electronics, Shopping, Appliances, Home & Garden, Local Services", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "Tb-TrnvMd0iSA2AMHLyGEQ", + "name": "Best Western Plus Philadelphia Convention Center Hotel", + "address": "1225 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.957823, + "longitude": -75.159432, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "9UFYQ6JqAXwny1ttma4cjw", + "name": "All Bright", + "address": "112 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490857, + "longitude": -75.1525257, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": null + }, + { + "business_id": "D48I-imYNjFo9bmsiZc-YQ", + "name": "Yamato Japanese Sushi and Hibachi", + "address": "9910 Frankford Ave, Ste 270", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0649342, + "longitude": -74.9836156, + "stars": 4.0, + "review_count": 97, + "is_open": 1, + "attributes": { + "Alcohol": "'none'", + "GoodForKids": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': None}", + "RestaurantsTakeOut": "True" + }, + "categories": "Steakhouses, Sushi Bars, Japanese, Restaurants, Asian Fusion", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "nh381E6YztF3b8_fkdVMtQ", + "name": "Goodfella's Vape Shop", + "address": "1800 Ritner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9215051349, + "longitude": -75.1769848982, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "False", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Shopping, Doctors, Vape Shops, Electronics, Health & Medical, Naturopathic/Holistic", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "bJ6v-8MvXhr21eLvAIC8iw", + "name": "French Nail Bar", + "address": "817 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9634533, + "longitude": -75.140699, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Massage, Beauty & Spas, Hair Removal", + "hours": { + "Monday": "10:30-19:0", + "Tuesday": "10:30-19:0", + "Wednesday": "10:30-19:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-18:30", + "Sunday": "10:30-17:30" + } + }, + { + "business_id": "hsL36MhSYSph3huIA2RDNg", + "name": "Martin's Quality Meats & Sausage", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': None, u'lot': False, u'validated': None}", + "RestaurantsTakeOut": "True" + }, + "categories": "Meat Shops, Food, Specialty Food", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "EsQZIf_5Typ-plWtOr0DgA", + "name": "Andonio's Diner", + "address": "9244 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0854409066, + "longitude": -75.0474668907, + "stars": 4.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Diners, Breakfast & Brunch", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "erObO9jRvqdnSY6uyeQTnQ", + "name": "Peter's Chicken & Seafood", + "address": "7361 N19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.067023554, + "longitude": -75.1465638354, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Chicken Wings, Seafood, Restaurants", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-21:0", + "Sunday": "7:30-21:0" + } + }, + { + "business_id": "pfDMVE6dvvI8t_UYg0ZVeg", + "name": "Simple Cleaners", + "address": "724 North 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9630752, + "longitude": -75.1431026, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Sewing & Alterations, Dry Cleaning, Dry Cleaning & Laundry, Shoe Repair, Laundry Services, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-17:0", + "Friday": "13:0-19:0", + "Saturday": "9:30-15:0" + } + }, + { + "business_id": "hKvPFno02JUW-sGCkHSnMQ", + "name": "Don Quixote Tapas & Things", + "address": "526 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419131724, + "longitude": -75.1492121816, + "stars": 3.0, + "review_count": 48, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Caters": "True" + }, + "categories": "Spanish, Restaurants, Tapas Bars, Tapas/Small Plates", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "N3CuXqWoFpBtYMBGhBE2fA", + "name": "Milk & Honey Market", + "address": "4435 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9490875, + "longitude": -75.2127041, + "stars": 3.0, + "review_count": 203, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Cheese Shops, Bagels, Coffee & Tea, Desserts, Juice Bars & Smoothies, Food, Specialty Food, Grocery", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "1XaQZyreWusmSTBcuDKgnA", + "name": "Chimney Pro Cleaning", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0380778, + "longitude": -75.1136721, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Chimney Sweeps", + "hours": null + }, + { + "business_id": "-qE-vxoQK-Ve-dMgHA9kSg", + "name": "The Station at Manayunk", + "address": "1 Parker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0344983293, + "longitude": -75.2365513, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Real Estate, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "ihu7p7Kbju98fG8jqwe_Dg", + "name": "LL Flooring - Philadelphia", + "address": "1530 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9278117, + "longitude": -75.1456465, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Flooring, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "F7hZGoYPmFX5JhBGzQqtPQ", + "name": "Shaffer Cleaners", + "address": "2148 Green St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9651889, + "longitude": -75.1740829, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": null + }, + { + "business_id": "4Peac-dIOM80hSw9iqEAJw", + "name": "Hertz", + "address": "1201 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.952297, + "longitude": -75.160785, + "stars": 1.5, + "review_count": 26, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "k5o5J1WTVV-LtPM2m7IEUw", + "name": "Meringue Salon", + "address": "1440 Lombard St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446936, + "longitude": -75.1668212, + "stars": 4.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "bRhUak1PMKvQ3qqcmqc--A", + "name": "Main Street Pho", + "address": "4307 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025053, + "longitude": -75.2220736, + "stars": 4.0, + "review_count": 133, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "Caters": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "RestaurantsTableService": "True" + }, + "categories": "Vietnamese, Restaurants, Asian Fusion", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-21:30", + "Saturday": "11:30-21:30", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "fw-azRuIMCPCR3b4Urh_yA", + "name": "Scott Page, OD", + "address": "1015 Chestnut St, Ste 417", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950377, + "longitude": -75.157535, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Eyewear & Opticians, Shopping, Optometrists, Health & Medical", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "kpZqQ7jjV-ETz4wY0MpJ7A", + "name": "Molly's Books and Records", + "address": "1010 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373168, + "longitude": -75.1584257, + "stars": 4.5, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bookstores, Books, Mags, Music & Video, Vinyl Records, Shopping", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "qt-lApHa14LT6Jqpq0J-Yw", + "name": "Mayas Painting", + "address": "5924 Greenway Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9316159, + "longitude": -75.2276575, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Kitchen & Bath, Home & Garden, Home Services, Shopping, Stucco Services, Painters, Drywall Installation & Repair, Contractors", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0" + } + }, + { + "business_id": "tjpguRERkWbvQNcSxy4B7Q", + "name": "Ricciardi Brothers", + "address": "8002 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.07076, + "longitude": -75.2012249, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Home Services, Painters, Home & Garden, Hardware Stores, Shopping", + "hours": { + "Monday": "7:0-17:30", + "Tuesday": "7:0-17:30", + "Wednesday": "7:0-17:30", + "Thursday": "7:0-17:30", + "Friday": "7:0-17:30", + "Saturday": "8:0-16:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "mcwEsGHIzaDmPrUtOCUFuQ", + "name": "Henry A. Davidsen, Master Tailors & Image Consultants", + "address": "1701 Spruce St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.947769, + "longitude": -75.1697005, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "3", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Local Services, Men's Clothing, Women's Clothing, Accessories, Personal Shopping, Shopping, Sewing & Alterations, Bespoke Clothing, Formal Wear, Fashion", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "2Q5gjf_K68145UdUyKGAaw", + "name": "Cafรฉ L'Aube", + "address": "1512 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.938817, + "longitude": -75.182574, + "stars": 4.5, + "review_count": 75, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'" + }, + "categories": "Coffee & Tea, Desserts, Food, French, Creperies, Restaurants", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "FSsBUhbhEBE9N9tJ3V3bIg", + "name": "6ABC Dunkin Donuts Thanksgiving Day Parade", + "address": "Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9625900801, + "longitude": -75.1768903156, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Arts & Entertainment, Festivals, Local Flavor", + "hours": null + }, + { + "business_id": "t2IQvO-1VT-KBA0w2XtHfg", + "name": "Christine Wu, MD", + "address": "1015 Chestnut St, Ste 601, Thomas Jefferson University Hospitals", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950385, + "longitude": -75.157526, + "stars": 3.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "AcceptsInsurance": "True" + }, + "categories": "Obstetricians & Gynecologists, Health & Medical, Doctors", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "xXD8QNGjjIMgtTGwceriJQ", + "name": "D'Antonio & Klein Jewelers", + "address": "726 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484908, + "longitude": -75.1535576, + "stars": 5.0, + "review_count": 142, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Jewelry", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "Rd8UbVjam5zKSCBbb0Uv5w", + "name": "Action Pizza", + "address": "7202 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0642131, + "longitude": -75.1538654, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Italian, Pizza", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "knp4GbMlIQZAppyEVnUkQg", + "name": "Koja Grille", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.977972, + "longitude": -75.158453, + "stars": 3.5, + "review_count": 131, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "Caters": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Japanese, Korean", + "hours": { + "Monday": "11:0-22:30", + "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-21:0" + } + }, + { + "business_id": "_L6F7nbjVNTPDUjl94b_eA", + "name": "Me On 2nd Salon", + "address": "710 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.962249, + "longitude": -75.1413357, + "stars": 4.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Makeup Artists, Hair Extensions, Beauty & Spas, Hair Stylists, Men's Hair Salons, Hair Salons, Waxing, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "4D_GsaRoqk7P09VOcgezlQ", + "name": "B2", + "address": "1500 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9308747, + "longitude": -75.1624161, + "stars": 3.5, + "review_count": 187, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "False", + "DogsAllowed": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vegan, Restaurants, Food, Coffee & Tea", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "8:0-20:0" + } + }, + { + "business_id": "cu-s8VMSSUKPosPS9ktGaw", + "name": "Somerton Jewelers", + "address": "10853 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1103324, + "longitude": -75.0241042, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Watch Repair, Local Services, Shopping, Jewelry, Watches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-17:30" + } + }, + { + "business_id": "a4dtv7k-nOoohJxF5maHBw", + "name": "Indulge Nail Studio", + "address": "1032 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428607536, + "longitude": -75.1596224406, + "stars": 5.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Waxing, Hair Removal, Eyelash Service, Nail Technicians, Nail Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-17:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "Fb6pH53eHaDI8bpjEFrSHg", + "name": "John F. Collins Park", + "address": "1707 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517692, + "longitude": -75.1690621, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "9:0-17:30", + "Saturday": "10:45-11:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "gmGp0R8_Hf_zJzS5VL6kyQ", + "name": "Dimitrio & Frida's Food Cart", + "address": "S 33rd St And Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9525561, + "longitude": -75.1900379, + "stars": 5.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True" + }, + "categories": "Restaurants, Food Trucks, Food Stands, Food, Sandwiches", + "hours": null + }, + { + "business_id": "0-Lihni2Ak2RL6RwHb4fpw", + "name": "Broad Deli", + "address": "2200 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9865131, + "longitude": -75.1566358, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "u'no'", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Beer, Wine & Spirits, Delis, Restaurants, Bars, Beer Bar, Beverage Store, Nightlife, Pizza, Food Delivery Services, Food", + "hours": { + "Monday": "6:0-2:0", + "Tuesday": "6:0-2:0", + "Wednesday": "6:0-2:0", + "Thursday": "6:0-2:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "v1msvs2bf_LwGUnIcCgSEg", + "name": "King of Tandoor", + "address": "1824 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96038, + "longitude": -75.16935, + "stars": 3.5, + "review_count": 230, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'beer_and_wine'", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WiFi": "u'no'" + }, + "categories": "Indian, Seafood, Restaurants, Pakistani", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "rg2irwT6v80vQ0sGXmJ7Yg", + "name": "Jefferson Hospital Cardiology", + "address": "925 Chestnut St, Mezzanine Floor", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950356, + "longitude": -75.156505, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Cardiologists, Hospitals", + "hours": null + }, + { + "business_id": "M3e2tb_biSJJzI71Mpq5Ig", + "name": "Suburban Pharmacy", + "address": "10875 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1108157, + "longitude": -75.0237619, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Drugstores, Shopping", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "3SpZV3ao9ziQsSyRRUJBXQ", + "name": "Anjali Power Yoga", + "address": "1519 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9441069, + "longitude": -75.1678092, + "stars": 4.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Pilates, Yoga, Fitness & Instruction, Active Life", + "hours": { + "Monday": "18:30-20:0", + "Tuesday": "18:0-20:30", + "Wednesday": "18:30-20:0", + "Thursday": "18:0-20:30", + "Friday": "18:0-19:0", + "Saturday": "16:0-17:0", + "Sunday": "16:0-17:30" + } + }, + { + "business_id": "EVufVDMJrR-mi6qEyyPRFw", + "name": "ttTHERAPY", + "address": "1209 Locust St, Apt 1R", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478581647, + "longitude": -75.1610758135, + "stars": 5.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Massage, Health & Medical, Shopping, Skin Care, Beauty & Spas, Nutritionists, Massage Therapy, Vitamins & Supplements", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "2I4TvcKVkEWWbnLrUG2EcA", + "name": "Lomanno's Auto Repair", + "address": "5140 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.017849, + "longitude": -75.211499, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "X9iI5xlG6DDwwXESWgD9RQ", + "name": "Motion N'dance", + "address": "7265 Revere St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.043267, + "longitude": -75.0533849, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dance Schools, Fitness & Instruction, Active Life, Dance Studios, Specialty Schools, Education", + "hours": { + "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": "9:0-14:0" + } + }, + { + "business_id": "fhoqmnw5sXzj91-7yBW0Kw", + "name": "Mugshots Coffeehouse & Cafe", + "address": "2106 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9672753, + "longitude": -75.1723717, + "stars": 3.0, + "review_count": 197, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "Corkage": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'yes_free'", + "WiFi": "'free'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': True, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'none'" + }, + "categories": "Vegetarian, Food, Coffee & Tea, Vegan, Sandwiches, Restaurants", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "5INWCIArMbFd-aku3-UI3Q", + "name": "Ana Pesce Advance Skin Technology", + "address": "1601 Walnut St, Ste 903, Medical Arts Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949966, + "longitude": -75.16769, + "stars": 4.5, + "review_count": 127, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Skin Care, Beauty & Spas", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-16:0" + } + }, + { + "business_id": "-jjdFyiXbyldHOmpAXg-1Q", + "name": "Living Water Massage", + "address": "1523 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.931361, + "longitude": -75.169711, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False" + }, + "categories": "Massage, Beauty & Spas", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "OddKlB5d2KQpIP2rJt89ow", + "name": "White Yak", + "address": "6118 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0337825, + "longitude": -75.2158399, + "stars": 4.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "Alcohol": "u'none'", + "BYOB": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': None, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "False", + "BikeParking": "False" + }, + "categories": "Himalayan/Nepalese, Restaurants", + "hours": { + "Tuesday": "16:30-21:30", + "Wednesday": "16:30-21:30", + "Thursday": "16:30-21:30", + "Friday": "16:30-21:30", + "Saturday": "16:30-21:30", + "Sunday": "16:30-21:30" + } + }, + { + "business_id": "ctlxZ6crKEcPeuzTGGN4sw", + "name": "Glam Extensions Boutique", + "address": "611 S. Orianna Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941143, + "longitude": -75.14806, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Fashion, Hair Extensions, Hair Stylists, Women's Clothing, Hair Salons, Shopping, Beauty & Spas", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "jlfCyRKvRtcRTV9wzSU_eQ", + "name": "Donut Plus", + "address": "4325 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568619, + "longitude": -75.2090931, + "stars": 4.5, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "BikeParking": "False", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Donuts, Breakfast & Brunch, Restaurants, Food, Desserts", + "hours": null + }, + { + "business_id": "C8IVH04NnrQ9gINalbiI4A", + "name": "Mickey Group - Keller Williams Philly", + "address": "728 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9422651, + "longitude": -75.1664857, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Real Estate Agents, Home Services, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "4owrIR0t7W5WR1a8-VsoKQ", + "name": "New Ocean Chinese Restaurant", + "address": "1128 E Luzerne St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0079019, + "longitude": -75.1058596, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "WiFi": "'no'", + "NoiseLevel": "'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Alcohol": "'none'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Chinese, Asian Fusion, Seafood", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "Rta-rDiQ37MsWGPsCQ_mWw", + "name": "Cafe Mai Vy", + "address": "1037 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9360632985, + "longitude": -75.1567949216, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "5jjW-iNd2RWaG0i_xFT3-A", + "name": "US Storage Centers", + "address": "1910 S Christopher Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9228977, + "longitude": -75.14379, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "502aMuqChPfiF7TTIP6gcQ", + "name": "Aramingo Carpet Outlet", + "address": "4591 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0032034, + "longitude": -75.0783848, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Carpeting, Flooring, Home Services", + "hours": { + "Monday": "9:0-20:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-20:0", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "IuLBhQTVsn-XIYk_n36NEg", + "name": "The Metropolitan", + "address": "The Metropolitan", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1648387307, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "LnnWq5-4pTnBn96E3lQygw", + "name": "Starbucks", + "address": "1755 N 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9790436, + "longitude": -75.1550992, + "stars": 2.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Cafes, Restaurants, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Gqly-fbSiUhgXGgP4hAx7A", + "name": "Mugshots", + "address": "2831 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.974752, + "longitude": -75.1828869, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Caters": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "7:30-17:0", + "Sunday": "7:30-17:0" + } + }, + { + "business_id": "x5V3KWRLzGbdOZ24AqceWA", + "name": "Renaissance Properties Group", + "address": "1324 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9478863, + "longitude": -75.1635217, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Property Management, Real Estate, Home Services, Real Estate Agents", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "HgxY_RnJFGqqSVO32nxS4A", + "name": "Chili Szechuan", + "address": "4205 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956415169, + "longitude": -75.2067339699, + "stars": 4.0, + "review_count": 147, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BYOB": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "WiFi": "'no'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "True", + "OutdoorSeating": "None", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Chinese, Restaurants, Szechuan", + "hours": { + "Monday": "11:30-20:30", + "Wednesday": "11:30-20:30", + "Thursday": "11:30-20:30", + "Friday": "11:30-20:30", + "Saturday": "11:30-20:30", + "Sunday": "11:30-20:30" + } + }, + { + "business_id": "P6NMy0i18WO9gaaHXXqyKg", + "name": "Freshii", + "address": "1414 S Penn Sq, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.951489, + "longitude": -75.16494, + "stars": 2.5, + "review_count": 66, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "WiFi": "u'no'" + }, + "categories": "Salad, Sandwiches, Restaurants, Soul Food, Gluten-Free", + "hours": { + "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": "10:0-17:0" + } + }, + { + "business_id": "a888q4wZiB5OyWed5WoHdA", + "name": "Touch Window Cleaning", + "address": "4327 Benner St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0221603, + "longitude": -75.0605329, + "stars": 5.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Carpeting, Home Cleaning, Carpet Cleaning, Window Washing, Pressure Washers, Local Services, Home Services, Car Wash, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "5X5Nn-jlIoWFhkgewON6sA", + "name": "Speedway", + "address": "3300 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9393186694, + "longitude": -75.1978959516, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Food, Convenience Stores, Coffee & Tea, Gas Stations", + "hours": { + "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" + } + }, + { + "business_id": "k-NmsEI3L9rq7TiLBhgXHg", + "name": "Til-Mar Designs", + "address": "1708 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.93118, + "longitude": -75.187237, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Shopping, Kitchen & Bath, Home & Garden, Contractors, Cabinetry, Flooring, Countertop Installation", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "Et8nGhb6FHiIB44Cc5zOtg", + "name": "Ace Public Adjusters", + "address": "7920 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0411974, + "longitude": -75.0291858, + "stars": 1.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Public Adjusters", + "hours": null + }, + { + "business_id": "SYt5vLiLkNCkYfN5CCqVFg", + "name": "Oriental Chinese", + "address": "1800 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280019, + "longitude": -75.1692901, + "stars": 3.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "eDDsEhpYHGRmRpV5uR80qw", + "name": "60OUT Escape Rooms", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951001, + "longitude": -75.16874, + "stars": 5.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "BikeParking": "False", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Escape Games, Active Life, Arts & Entertainment", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "Yi3GhaguYigGhtu_ckjaUQ", + "name": "The Enerjuicer", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9515591, + "longitude": -75.1557742, + "stars": 4.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Juice Bars & Smoothies", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "9Lrfpcq2XqgkgJYOLZmFJA", + "name": "Fairmount Animal Hospital", + "address": "2315 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9674995, + "longitude": -75.1759018, + "stars": 2.5, + "review_count": 32, + "is_open": 1, + "attributes": null, + "categories": "Pets, Pet Services, Pet Sitting, Veterinarians", + "hours": null + }, + { + "business_id": "lSq24-u8U2jGgojxb2l2JQ", + "name": "We Get It Done Group", + "address": "4963 N Franklin St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.028735, + "longitude": -75.1367668, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Landscaping, Plumbing, Tree Services, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "KTgZXj6xh8aN_tLfI-YZ1Q", + "name": "Bar Poulet", + "address": "2005 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508012, + "longitude": -75.1739867, + "stars": 4.5, + "review_count": 51, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}" + }, + "categories": "Cocktail Bars, Restaurants, Nightlife, Bars, Beer Bar, Wine Bars, French", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "idH97uIodDocSlWM16Muug", + "name": "Crab Du Jour - Philadelphia", + "address": "822 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9687706, + "longitude": -75.160512, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Caters": "True" + }, + "categories": "Cajun/Creole, Seafood, Restaurants", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-23:30", + "Saturday": "10:30-23:30", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "jZm8spW0NitIZkUaN1Q3Hg", + "name": "Social Security", + "address": "1500 Jfk Blvd 20Th Fl, 2 Penn Ctr Ste 2000A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658782, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Public Services & Government", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "cunSJWc4s4A2kbbnFoYBow", + "name": "ShopRite of Front & Olney", + "address": "101 E Olney Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.038997, + "longitude": -75.118643, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': None, 'lot': None, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Food, Grocery, Shopping Centers, Event Planning & Services, Specialty Food, Caterers, Delis, Bakeries, Flowers & Gifts, Shopping, Florists, Restaurants, Fruits & Veggies", + "hours": { + "Monday": "7:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-0:0", + "Saturday": "7:0-0:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "aSLURDEj9Kw2YQkpP_ZAlg", + "name": "Taste King Restaurant", + "address": "10763 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1090436, + "longitude": -75.025017, + "stars": 3.5, + "review_count": 70, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': None, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "9YmRTVldrOQCcg24kaE0Hw", + "name": "Paddy's Well", + "address": "1873 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9784, + "longitude": -75.13033, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "HappyHour": "True" + }, + "categories": "Bars, Nightlife, Dive Bars", + "hours": null + }, + { + "business_id": "Pa1qHPH02JRDOw1RSpG0zw", + "name": "Saltyโ€™s Seafood & Ice Cream Shack", + "address": "105 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504002, + "longitude": -75.1616683602, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "Caters": "False", + "HappyHour": "True", + "BYOB": "False", + "WiFi": "u'no'", + "RestaurantsTableService": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Seafood, American (Traditional), Restaurants, Pop-Up Restaurants", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "29XaptDXAsBqbeYabooCQQ", + "name": "Shoe Factory", + "address": "7000 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0471767, + "longitude": -75.0703773, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Shoe Stores, Fashion", + "hours": null + }, + { + "business_id": "qISf5ojuYbD9h71NumGUQA", + "name": "Han Dynasty", + "address": "123 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485257778, + "longitude": -75.143727802, + "stars": 4.0, + "review_count": 1474, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "ByAppointmentOnly": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "None", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "CoatCheck": "False" + }, + "categories": "Beer, Wine & Spirits, Chinese, Restaurants, Food, Szechuan, Noodles, Soup", + "hours": { + "Monday": "16:0-21:30", + "Tuesday": "15:0-21:30", + "Wednesday": "15:0-21:30", + "Thursday": "13:0-21:30", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:30" + } + }, + { + "business_id": "v-qDdlIXikYyh65Qij9fpA", + "name": "Puyero Venezuelan Flavor", + "address": "524 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419625269, + "longitude": -75.1492561027, + "stars": 4.5, + "review_count": 170, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "HasTV": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "WiFi": "u'free'", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WheelchairAccessible": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "BikeParking": "True" + }, + "categories": "Latin American, Food, Restaurants, Gluten-Free, Cheesesteaks, Sandwiches, Venezuelan, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:30-19:30", + "Thursday": "11:30-19:30", + "Friday": "11:30-19:30", + "Saturday": "12:0-19:30", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "rVUQMiFeHaLbGZYnqVXRTw", + "name": "Chattime", + "address": "3608 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547256, + "longitude": -75.1951003, + "stars": 4.0, + "review_count": 107, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "Alcohol": "'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "GoodForKids": "True" + }, + "categories": "Japanese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "UzbNTU2k8A4k0uLrDbRq2w", + "name": "Clubhouse Sports Lounge", + "address": "111 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951001, + "longitude": -75.16874, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Caters": "True", + "OutdoorSeating": "False", + "Smoking": "u'no'", + "Alcohol": "'full_bar'", + "HappyHour": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}" + }, + "categories": "Restaurants, Active Life, Bars, Escape Games, Nightlife, Sandwiches, Lounges, Sports Bars", + "hours": { + "Monday": "17:0-0:0", + "Tuesday": "17:0-0:0", + "Wednesday": "17:0-0:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "K6GTL-hbT2o0BdyEXP2T1g", + "name": "Di's Color Crazy", + "address": "837 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365915493, + "longitude": -75.1468456919, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': True, 'asian': True}" + }, + "categories": "Makeup Artists, Hair Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "29mQNZv8dsN8IAJ8uBnjUw", + "name": "Dunkin'", + "address": "717 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9723048, + "longitude": -75.1256685, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Caters": "True", + "WiFi": "'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Restaurants, Food, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "OPwDzQAcngmd2DDdL791Lw", + "name": "Mike & Kates Sport Shoppe", + "address": "7492 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0665081, + "longitude": -75.084066, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Sporting Goods, Shopping, Outdoor Gear, Guns & Ammo, Active Life, Fishing", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "_XtUZuRLeTu-TqUjfF_OsQ", + "name": "Almonte market", + "address": "883 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9663901, + "longitude": -75.1458109, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Convenience Stores, Food", + "hours": null + }, + { + "business_id": "mfyPIFFxymN4mT_m4Hillw", + "name": "Klenk Law", + "address": "1701 Walnut St, Fl 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950207, + "longitude": -75.169174, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Wills, Trusts, & Probates, Real Estate Law, Professional Services, Lawyers, General Litigation, Estate Planning Law", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "G8qD8M6rHAMGL4Tt1SiPFA", + "name": "Modo Mio Taverna", + "address": "705 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940039, + "longitude": -75.151019, + "stars": 4.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BYOB": "False", + "Smoking": "u'no'", + "HasTV": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Restaurants, Nightlife, Italian, Bars", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "4LkQ65dWQiRWfYihguKqOQ", + "name": "Tilden Food Market", + "address": "3539 Vaux St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0143166, + "longitude": -75.1883349, + "stars": 2.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Grocery, Food", + "hours": null + }, + { + "business_id": "_ebEols7F_e3J7mbtjucTw", + "name": "Nash Athletic BodyWorks", + "address": "15 W Highland Ave, Ste F, Fl 2, Wissahickon Spine Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0757279, + "longitude": -75.2070424, + "stars": 2.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "2", + "AcceptsInsurance": "False", + "BikeParking": "True" + }, + "categories": "Massage Therapy, Pets, Active Life, Arts & Entertainment, Pet Services, Beauty & Spas, Massage, Professional Sports Teams, Fitness & Instruction, Health & Medical, Pet Training", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "dlrnA5FAdu9ZYTjP3ffmnA", + "name": "Philly Pretzel Factory", + "address": "3220 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0021113335, + "longitude": -75.1530348233, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': None, u'validated': None}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bakeries, Pretzels, Food, Hot Dogs, Restaurants", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0", + "Saturday": "6:0-14:0" + } + }, + { + "business_id": "vVDuxBvheADnCmNuZUy6zQ", + "name": "America's Best Contacts & Eyeglasses", + "address": "1315 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9494250937, + "longitude": -75.1629271172, + "stars": 3.0, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Eyewear & Opticians, Optometrists, Health & Medical, Doctors, Shopping, Ophthalmologists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-15:0", + "Thursday": "8:30-18:30", + "Friday": "8:30-18:30", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "R49ZLFHn9fhEwPCh2FQeDA", + "name": "New Wave Cafe", + "address": "784 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9380675, + "longitude": -75.1485297, + "stars": 3.5, + "review_count": 225, + "is_open": 1, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsReservations": "False", + "Corkage": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "American (Traditional), Breakfast & Brunch, Bars, Restaurants, Nightlife", + "hours": { + "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": "10:0-2:0", + "Sunday": "9:0-2:0" + } + }, + { + "business_id": "tMj79H5v1nOWmg9tsMfWiQ", + "name": "Dunkin'", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9553198753, + "longitude": -75.182006, + "stars": 3.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "Caters": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "DriveThru": "None", + "RestaurantsTakeOut": "True" + }, + "categories": "Donuts, Coffee & Tea, Food", + "hours": { + "Monday": "4:0-23:0", + "Tuesday": "4:0-23:0", + "Wednesday": "4:0-23:0", + "Thursday": "4:0-23:0", + "Friday": "4:0-23:0", + "Saturday": "4:0-23:0", + "Sunday": "4:0-23:0" + } + }, + { + "business_id": "qIYZ8uTzQcBkdH-lC3loug", + "name": "CHOP Primary Care - South Philadelphia", + "address": "1700 S Broad St, Unit 301, Children's Hospital of Philadelphia", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9291119329, + "longitude": -75.1688778028, + "stars": 2.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Pediatricians, Doctors, Health & Medical", + "hours": { + "Monday": "8:30-19:0", + "Tuesday": "8:30-19:0", + "Wednesday": "8:30-19:0", + "Thursday": "8:30-19:0", + "Friday": "8:30-17:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "Y0FAADX0gHBvUcnb2y8kwg", + "name": "University of Pennsylvania School of Dental Medicine", + "address": "240 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9527786, + "longitude": -75.2032502, + "stars": 2.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, General Dentistry, Education, Dentists, Colleges & Universities", + "hours": { + "Monday": "17:30-20:0", + "Tuesday": "8:0-17:0", + "Wednesday": "17:30-20:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "yjVqm4shWfOriY8wakOB5Q", + "name": "Ali Baba Limo", + "address": "4701 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0138774, + "longitude": -75.202729, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Transportation, Limos", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "wFzRHd3HJ6m0g2dUW1kxlw", + "name": "L'Oca Italian Bistro", + "address": "2025 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967476, + "longitude": -75.171166, + "stars": 3.0, + "review_count": 52, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Italian", + "hours": { + "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" + } + }, + { + "business_id": "jM6Ri5mLLPopwK5e8XY_lA", + "name": "Fabriq Spa", + "address": "728 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93979, + "longitude": -75.1496926, + "stars": 5.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "WheelchairAccessible": "False" + }, + "categories": "Beauty & Spas, Massage, Day Spas, Eyelash Service, Skin Care, Acupuncture, Health & Medical, Estheticians, Waxing, Hair Removal, Massage Therapy", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "suu00nBOfDsTOjSm_WtV8A", + "name": "Malooga", + "address": "134 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9482947, + "longitude": -75.1438236, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Seafood, Mediterranean, Breakfast & Brunch, Hookah Bars, Salad, Arabic, Chicken Shop, Restaurants, Nightlife, Bars", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "4I0C-1XMCU87VlG6Nv_wBQ", + "name": "A Part Of Me", + "address": "3834 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.960902, + "longitude": -75.198523, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Used, Vintage & Consignment, Women's Clothing, Jewelry, Fashion, Shopping", + "hours": { + "Tuesday": "10:30-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "bsURJ0e03KYrFfkvU_iznA", + "name": "DiveSeekers", + "address": "4322 Bermuda St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.004514, + "longitude": -75.081701, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'" + }, + "categories": "Scuba Diving, Sporting Goods, Diving, Active Life, Outdoor Gear, Specialty Schools, CPR Classes, Education, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "gLRjcn1IcPWaXtEeWbEinw", + "name": "Massage Passyunk Ave", + "address": "1635 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9291786, + "longitude": -75.1640803, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage, Health & Medical, Beauty & Spas, Massage Therapy", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "11:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "5hI6QAk53K8A6s_4M7LOPQ", + "name": "Allen S Ruane, DDS", + "address": "1603 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.066222, + "longitude": -75.0627345, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists, Oral Surgeons, Cosmetic Dentists", + "hours": null + }, + { + "business_id": "8zaercyYIECy4ySW6iIUhw", + "name": "Dana Mandi", + "address": "4211 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.956430412, + "longitude": -75.2069518411, + "stars": 4.0, + "review_count": 78, + "is_open": 0, + "attributes": { + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "NoiseLevel": "'average'" + }, + "categories": "Ethnic Food, Indian, Food, Restaurants, Grocery, Specialty Food, International Grocery", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "6CpCnFzpyOV4ymhNP1AOGw", + "name": "Tamalex Restaurant", + "address": "1163 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.933916, + "longitude": -75.1555299, + "stars": 4.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "BYOB": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Mexican, Honduran, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "irFttJiDNjW-QKbmxNDjUQ", + "name": "PhillySmiles", + "address": "1804 Rittenhouse Sq", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9485932133, + "longitude": -75.1715325216, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Health & Medical, Cosmetic Dentists, Dentists, Pediatric Dentists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "rN5OJ7lPrvgEju-fSskS2g", + "name": "VIP Cleaners", + "address": "1326 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9466853, + "longitude": -75.1639777, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "None", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "4IvQU16RBKuLtpgx8yLqmQ", + "name": "Hunan Palace", + "address": "6118 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9833884, + "longitude": -75.2442216, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants", + "hours": null + }, + { + "business_id": "jg02zYvPsUGyHQBlKQJjZQ", + "name": "Central AirPark", + "address": "7601 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9001505, + "longitude": -75.2292633, + "stars": 2.0, + "review_count": 31, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Parking", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "1OQpdtSuaLD2jNTyPtug1A", + "name": "Broad Street Braces", + "address": "1819 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9274503, + "longitude": -75.1686516, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Orthodontists, Dentists, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-16:30", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "0lcyi1tnVldDB8rxKraZSQ", + "name": "Bloom", + "address": "910 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644567592, + "longitude": -75.1407444477, + "stars": 5.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Women's Clothing, Jewelry, Accessories", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "y9Jpw5Koli_-dGL0S5RI0A", + "name": "Margherita Pizzeria", + "address": "60 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485358, + "longitude": -75.1441972, + "stars": 3.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "WiFi": "'no'", + "HasTV": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "QuU-a6FEcC_aZTgZkYFeLA", + "name": "The Bards", + "address": "2013 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507583, + "longitude": -75.174269, + "stars": 3.5, + "review_count": 177, + "is_open": 0, + "attributes": { + "Corkage": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "HappyHour": "True", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "WiFi": "u'free'", + "DogsAllowed": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Bars, Pubs, Restaurants, Nightlife, Irish", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "uURTGL0NC7bUNClPgcWXXQ", + "name": "Gorgas Park", + "address": "6400 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0372093971, + "longitude": -75.2213931084, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks, Playgrounds, Local Flavor", + "hours": null + }, + { + "business_id": "M3XidaggiVRg2g0miuBn-g", + "name": "Thai Chef & Noodle Fusion", + "address": "2028 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95196, + "longitude": -75.174711, + "stars": 3.0, + "review_count": 51, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'quiet'" + }, + "categories": "Vietnamese, Vegetarian, Thai, Restaurants, Vegan", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "idZObzj0IXJ2TcZJeji1pQ", + "name": "McFadden's at the Ballpark", + "address": "1001 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9046043, + "longitude": -75.1673349, + "stars": 3.0, + "review_count": 92, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'very_loud'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "'full_bar'", + "HasTV": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsReservations": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "WiFi": "'free'" + }, + "categories": "Bars, Sports Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "ZJGo8ch9AGkl63hdbgeEkA", + "name": "Saint Benjamin Brewing Company", + "address": "1710 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.977299, + "longitude": -75.143601, + "stars": 4.0, + "review_count": 83, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True" + }, + "categories": "Gastropubs, Food, Breweries, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "mKJZREPhvsVgHebHK8dFew", + "name": "The Dwight D", + "address": "256 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9479893, + "longitude": -75.1682766, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Event Planning & Services, Hotels & Travel, Hotels", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "9v-CkheflZhvHS9QT3-S6Q", + "name": "Kingston City Restaurant", + "address": "732 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0449465, + "longitude": -75.1650186, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "OutdoorSeating": "None" + }, + "categories": "Restaurants, Caribbean", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0" + } + }, + { + "business_id": "P0ocXDQY6mHneytJhCDG2g", + "name": "Philly's Homes", + "address": "223-225 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503576, + "longitude": -75.1445478, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Real Estate Agents, Real Estate, Real Estate Services, Home Services, Property Management", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "0AX9PGwHwH-bc2zjt5cM4A", + "name": "Lot-A-Junk", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9412882, + "longitude": -75.2187346, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Damage Restoration, Junk Removal & Hauling, Movers, Home Cleaning, Recycling Center, Local Services, Home Services, Pool Cleaners", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "5:30-21:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "8F6URCmvOYbzX4ErKgmQ0w", + "name": "Schuylkill River Park", + "address": "300 S 25th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488054891, + "longitude": -75.1817243795, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Parks, Amateur Sports Teams, Tennis, Active Life, Playgrounds", + "hours": null + }, + { + "business_id": "lCc7zQvPAslp0kUHdmILHw", + "name": "Chestnut Jewelry & Accessories", + "address": "1927 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9521619, + "longitude": -75.172804, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Accessories, Watch Repair, Jewelry, Local Services, Fashion, Shopping, Jewelry Repair", + "hours": { + "Monday": "11:0-17:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "n6GeIePXC0G3eS8UPGvloQ", + "name": "Chops Restaurant & Bar", + "address": "1701 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954782, + "longitude": -75.168476, + "stars": 3.0, + "review_count": 94, + "is_open": 1, + "attributes": { + "GoodForDancing": "False", + "Caters": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'dressy'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "GoodForKids": "False", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "'full_bar'", + "Music": "{'dj': False}", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': None, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Corkage": "True", + "Smoking": "u'outdoor'", + "HasTV": "True", + "WheelchairAccessible": "True", + "BYOB": "False", + "CoatCheck": "True" + }, + "categories": "Restaurants, Bars, Cocktail Bars, Steakhouses, Seafood, Nightlife, Venues & Event Spaces, Event Planning & Services, American (New), American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0" + } + }, + { + "business_id": "CgweZJAp5Fz-2XzjPE4Htw", + "name": "Wawa", + "address": "4506-10 Castor Ave, Ste 10", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0184548748, + "longitude": -75.097338668, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Food, Sandwiches, Delis, Convenience Stores, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "A6UsHHqoI-TQ558N2gUxXQ", + "name": "A & P Custom Kitchens", + "address": "1721-23 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9280001, + "longitude": -75.1653962, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Interior Design", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-20:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "X2Twkcsvn5vk7yxn2PrAtQ", + "name": "Chestnut Hill Automotive", + "address": "8019 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0712462, + "longitude": -75.2009783, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Repair, Oil Change Stations, Smog Check Stations", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "wlmddk9BEW3dnxuaFwwjaw", + "name": "Frankford Nail Salon", + "address": "6646 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0316598, + "longitude": -75.053891, + "stars": 4.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:0-18:30" + } + }, + { + "business_id": "ctObtwPf9BCya-nDE8rvzQ", + "name": "Creme Brulee Bistro & Cafe", + "address": "618 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940628, + "longitude": -75.1458846, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Coffee & Tea, Patisserie/Cake Shop", + "hours": { + "Monday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "fcGexL5VH5G2Xw0tRj9uOQ", + "name": "Slice", + "address": "1740 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507452, + "longitude": -75.1701679, + "stars": 3.5, + "review_count": 214, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Q1jYPFUp2PCZVhsRwg0rrw", + "name": "City Nails", + "address": "1802 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515054, + "longitude": -75.1705783, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "jZGqAdBlDnrP-J7--vdPxA", + "name": "Beijing Restaurant", + "address": "3714 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510037033, + "longitude": -75.1980656121, + "stars": 3.5, + "review_count": 188, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "Caters": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants, Bubble Tea, Noodles, Food, Coffee & Tea", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "vtfv5u6uGa-Zrw2QW5vYzA", + "name": "Al's Performance", + "address": "4832 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0252991, + "longitude": -75.1350875, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive, Transmission Repair, Oil Change Stations, Auto Detailing", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "6o_nPu2NOnVkdHXvGy1tQQ", + "name": "LeBus Bakery", + "address": "Terminal C Philadelphia Airport", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.88678, + "longitude": -75.23097, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "WiFi": "u'free'" + }, + "categories": "Bakeries, Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "WzAi9U3CdzsVnvdhKaqb8A", + "name": "Uhuru Furniture & Collectibles", + "address": "1220 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946413, + "longitude": -75.162072, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Antiques, Furniture Stores, Discount Store, Home & Garden", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "i3mk-jyyDvdsWGn6AtdkgA", + "name": "Cafe India", + "address": "522 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422524, + "longitude": -75.150823, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Indian, Restaurants", + "hours": null + }, + { + "business_id": "joZiynWmh9cenAL7ErPdJg", + "name": "Sugarcube", + "address": "124 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9528273, + "longitude": -75.1451628, + "stars": 3.5, + "review_count": 68, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Accessories, Fashion, Shopping, Jewelry, Women's Clothing, Men's Clothing, Used, Vintage & Consignment, Shoe Stores", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "-pPtjsbwgoJjOaI5g5NFNg", + "name": "Young Children's Center For the Arts", + "address": "929 S Water St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.934584, + "longitude": -75.144511, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Local Services, Education, Child Care & Day Care, Preschools", + "hours": { + "Monday": "7:30-17:30", + "Tuesday": "7:30-17:30", + "Wednesday": "7:30-17:30", + "Thursday": "7:30-17:30", + "Friday": "7:30-17:30" + } + }, + { + "business_id": "B6dZpcQU2766nS9Ve5Qi1g", + "name": "Schwartz Preschool at Kesher Israel", + "address": "412 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9426298, + "longitude": -75.1494744, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Elementary Schools, Child Care & Day Care, Education, Preschools, Local Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "hSziErXSdjiWYEGDo4ywyA", + "name": "I Glide", + "address": "2600 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9647337, + "longitude": -75.179406, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Arts & Entertainment, Hotels & Travel, Tours, Local Flavor", + "hours": null + }, + { + "business_id": "1tkXPP1K1jBIgIthy6idwQ", + "name": "Burholme Park Golf Center", + "address": "401 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0673283, + "longitude": -75.093113, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Entertainment, Kids Activities, Active Life, Golf, Arcades", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "Kgb-t7QzVrnWlZ5gcuGO5w", + "name": "Riverwards Produce", + "address": "2200 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9780453, + "longitude": -75.1299559, + "stars": 4.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'none'", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True" + }, + "categories": "Food, Grocery, Specialty Food, Bakeries, Farmers Market, Wholesalers, Organic Stores, Fruits & Veggies, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "trH0bWrq9kwLoLHbvlPKmw", + "name": "Villekebabs and Platters", + "address": "1722 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505739884, + "longitude": -75.1697461, + "stars": 5.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Corkage": "False", + "Caters": "True", + "RestaurantsReservations": "True", + "DogsAllowed": "False", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "DriveThru": "False", + "BikeParking": "True", + "BYOB": "True", + "HasTV": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Restaurants, Mediterranean, Afghan, Halal", + "hours": { + "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:30", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "x6oSCUwOGzJvxkKJ230jdw", + "name": "Back2New 24 Hour Tire Shop", + "address": "1530 S 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9350713, + "longitude": -75.1991547, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Wheel & Rim Repair, Tires, Automotive, Auto Detailing", + "hours": { + "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" + } + }, + { + "business_id": "V9ajbgVgiZfR0mD-ZRerDw", + "name": "Milkhouse", + "address": "2955 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557799, + "longitude": -75.1819683, + "stars": 2.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsTableService": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "None", + "WiFi": "u'no'" + }, + "categories": "Food, American (New), Restaurants, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "LQR2MrrRBoQxqlmKh-x8XQ", + "name": "reYOU Massage", + "address": "Intoxx Fitness, 123 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0296944, + "longitude": -75.2289759, + "stars": 1.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Massage, Day Spas, Beauty & Spas", + "hours": null + }, + { + "business_id": "1-KxvPja7GvoCYVIgxgAOw", + "name": "Penzeys", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9499741921, + "longitude": -75.1486646757, + "stars": 4.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Food, Specialty Food, Herbs & Spices, Grocery", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "anllpSTX3K_PLTUBs95wuQ", + "name": "Print Liberation", + "address": "1901 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9252954, + "longitude": -75.159828, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Professional Services, Graphic Design, Screen Printing/T-Shirt Printing", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "IY7cyEidmdGsxGzb2-gx5g", + "name": "Mojo's Pizza", + "address": "8107 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0422411, + "longitude": -75.0251083, + "stars": 3.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Pizza, Sandwiches, Restaurants, Chicken Wings", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "RPjJzbiIedTvwyie7Ejl-Q", + "name": "Marshalls", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0742819, + "longitude": -75.0331506, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Fashion, Department Stores", + "hours": null + }, + { + "business_id": "pp04uE8hzooaK-GEiZeR_Q", + "name": "Joe Pirrone Transmissions", + "address": "4198 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0073436, + "longitude": -75.0870762, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Transmission Repair, Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "tCX_WQZSUgfzL5eXjTqmbA", + "name": "Casper's Place", + "address": "3510 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0373492, + "longitude": -75.0423481, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "3" + }, + "categories": "Bars, Nightlife", + "hours": null + }, + { + "business_id": "XLLy-geeVwPF-awhMG8kGQ", + "name": "Mad River", + "address": "126 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948092, + "longitude": -75.143565, + "stars": 2.5, + "review_count": 58, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True" + }, + "categories": "American (Traditional), Sports Bars, Gay Bars, Nightlife, Dance Clubs, Restaurants, Bars", + "hours": null + }, + { + "business_id": "JJ6tYuw5Ms_r58DhnMtOCA", + "name": "Orient Hookah Lounge", + "address": "1040 N 2nd St, Unit 501", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673028113, + "longitude": -75.1405622093, + "stars": 4.0, + "review_count": 86, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "BikeParking": "True", + "Alcohol": "'none'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'outdoor'", + "Corkage": "True", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "DogsAllowed": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BYOB": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nightlife, Food, Event Planning & Services, Coffee & Tea, Bars, Party & Event Planning, Hookah Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-0:0" + } + }, + { + "business_id": "USWExyvvb9TiyRosfVwyvA", + "name": "Fringe Salon", + "address": "1901 S 9th St, Room 505", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.925288, + "longitude": -75.16007, + "stars": 4.5, + "review_count": 168, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': True, 'kids': False, 'perms': False, 'asian': False}", + "WiFi": "u'free'" + }, + "categories": "Massage, Local Flavor, Hair Salons, Beauty & Spas, Arts & Entertainment, Hair Removal, Waxing, Art Galleries, Shopping", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "EAmx_lbvIBPX7wimjt3cxQ", + "name": "Morea", + "address": "110 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9498058, + "longitude": -75.158806, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}" + }, + "categories": "Restaurants, Nightlife, Adult, Bars, Cocktail Bars, Sandwiches, American (New), Seafood, Shopping, Breakfast & Brunch", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "q5CXrtbyX6OYeHJtVoBJyg", + "name": "Something Different...In Flowers", + "address": "399 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.033664, + "longitude": -75.22092, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Wedding Planning, Flowers & Gifts, Florists, Floral Designers, Event Planning & Services, Shopping", + "hours": { + "Monday": "9:30-17:30", + "Tuesday": "9:30-17:30", + "Wednesday": "9:30-17:30", + "Thursday": "9:30-17:30", + "Friday": "9:30-17:30", + "Saturday": "9:30-15:0" + } + }, + { + "business_id": "R80QoRhVnUff04VYoFXRsg", + "name": "Total Security Locksmith", + "address": "521 Fairmount Ave, Unit 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9635641, + "longitude": -75.1474565, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "vUc8E20T4d4HlHv2h2cyqg", + "name": "The Upstairs Bar", + "address": "112 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951299, + "longitude": -75.1706467, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForDancing": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "NoiseLevel": "'loud'", + "WheelchairAccessible": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "u'full_bar'", + "ByAppointmentOnly": "False", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Cocktail Bars, Nightlife, Dive Bars, Bars, Tiki Bars", + "hours": { + "Monday": "18:0-2:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "3Rn91lErljcpt0sY31bXQw", + "name": "McDonald's", + "address": "1401 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.954608, + "longitude": -75.163381, + "stars": 1.5, + "review_count": 35, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "RestaurantsDelivery": "True", + "HasTV": "True", + "RestaurantsTableService": "False" + }, + "categories": "Burgers, Fast Food, Food, Restaurants, Coffee & Tea", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-23:0", + "Saturday": "5:0-23:0", + "Sunday": "5:0-23:0" + } + }, + { + "business_id": "O0-JXumMHDTbvFuH-2pozw", + "name": "US Post Office", + "address": "228 S 40Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9532564, + "longitude": -75.203008, + "stars": 2.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Post Offices, Public Services & Government, Shipping Centers, Local Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "E60KIzFHO_lzWQwN6rIv7g", + "name": "Starlight Ballroom Dance Club", + "address": "460 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9603849, + "longitude": -75.1531952, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Arts & Entertainment, Music Venues, Nightlife", + "hours": null + }, + { + "business_id": "ozOneB4jXOD6hv5WBGj4KQ", + "name": "Ristorante Pesto", + "address": "1915 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9263553, + "longitude": -75.1689367, + "stars": 4.5, + "review_count": 578, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "Alcohol": "'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "BikeParking": "False", + "HappyHour": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Italian", + "hours": { + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-21:30", + "Saturday": "17:0-21:30" + } + }, + { + "business_id": "IC4r-CreIIONpsXIrvtGJg", + "name": "Dunkin'", + "address": "701 Market Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9512937, + "longitude": -75.1526227, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "None", + "RestaurantsGoodForGroups": "False", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Food, Coffee & Tea", + "hours": { + "Monday": "4:0-18:0", + "Tuesday": "4:0-18:0", + "Wednesday": "4:0-18:0", + "Thursday": "4:0-18:0", + "Friday": "4:0-18:0", + "Saturday": "5:0-16:0" + } + }, + { + "business_id": "Mc8ktBCT4Y25jIP5DGZFtA", + "name": "Midtown Village Fall Festival", + "address": "1300 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9488867, + "longitude": -75.162323, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Festivals, Local Flavor, Arts & Entertainment", + "hours": null + }, + { + "business_id": "6jX8cFjfoIFNH5IZmDNH6A", + "name": "Fresh Cuts on Midvale", + "address": "3700 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0099191, + "longitude": -75.1929924, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "7:30-19:0", + "Tuesday": "7:30-19:0", + "Wednesday": "7:30-19:0", + "Thursday": "7:30-19:0", + "Friday": "7:30-19:0", + "Saturday": "7:30-19:0" + } + }, + { + "business_id": "LM4-MPJIIwQlpBVZuzbJxg", + "name": "Stock", + "address": "308 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9696821256, + "longitude": -75.1314063513, + "stars": 4.0, + "review_count": 304, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "HasTV": "False", + "WiFi": "'no'", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False" + }, + "categories": "Restaurants, Thai, Vietnamese, American (New)", + "hours": { + "Thursday": "17:0-21:0", + "Friday": "17:0-21:0", + "Saturday": "17:0-21:0", + "Sunday": "17:0-21:0" + } + }, + { + "business_id": "Tv6_epKcnsxpjne-D8Fmgw", + "name": "Craft Pro Masonry", + "address": "59 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9519461, + "longitude": -75.1450637, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Contractors, Stucco Services, Masonry/Concrete, Home Services, Fireplace Services, Foundation Repair, Damage Restoration, Chimney Sweeps", + "hours": { + "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" + } + }, + { + "business_id": "Y_jeUnxSurAOMPp4Km2kCQ", + "name": "Untouchable Roofers", + "address": "3440 Mercer St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9882123, + "longitude": -75.0976946, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Windows Installation, Electricians, Door Sales/Installation, Roofing, Home Services", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "nqkMURJeB7RBi2serBYFNg", + "name": "W XYZ Bar", + "address": "101 North Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9546225, + "longitude": -75.1627921, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Restaurants, Tapas/Small Plates, Cocktail Bars, Bars, Event Planning & Services, Venues & Event Spaces, Nightlife", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "17:0-1:0" + } + }, + { + "business_id": "q40t6wDJQobul1ifFD6NSg", + "name": "Roberts & de Marsche", + "address": "1601 Walnut St, Ste 1513", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Cosmetic Dentists, Dentists, Health & Medical, Orthodontists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "BtXXYIQosyO8SbO718tXVQ", + "name": "Cafรฉ Carmela", + "address": "2859 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571730637, + "longitude": -75.0303380112, + "stars": 4.5, + "review_count": 103, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "OutdoorSeating": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "HappyHour": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Pizza, Pasta Shops, Food, Specialty Food, Restaurants, Italian", + "hours": { + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "BaHKwFGTuQGy-kfQXkfQeA", + "name": "The Dominic Fuscia Team - Coldwell Banker", + "address": "223-25 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950364, + "longitude": -75.144555, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Real Estate Agents, Real Estate, Real Estate Services", + "hours": { + "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" + } + }, + { + "business_id": "Cxojgx6wYWpa5ifSBbXekg", + "name": "Muse Gallery", + "address": "52 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9513448, + "longitude": -75.1436048, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "False" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": { + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "iLiL0EQIgcbX-DpV3gevvg", + "name": "Riff Tailoring & Dry Cleaning", + "address": "105 N 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9549184, + "longitude": -75.1646877, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Local Services, Sewing & Alterations, Dry Cleaning, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "2mkBNO0XdithuGir_qO6Ag", + "name": "El Bocado", + "address": "1005 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936367, + "longitude": -75.155403, + "stars": 5.0, + "review_count": 104, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "NoiseLevel": "u'average'", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "False", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsBitcoin": "False", + "DriveThru": "None", + "RestaurantsReservations": "True", + "BikeParking": "True" + }, + "categories": "Restaurants, Mexican, Latin American, Salvadoran, Honduran", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30" + } + }, + { + "business_id": "stjNpLZW_Tp60UqXqN21aQ", + "name": "Sweets & Treats", + "address": "3138 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9824799, + "longitude": -75.1027408, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Specialty Food, Candy Stores, Food", + "hours": { + "Monday": "15:0-20:0", + "Tuesday": "15:0-20:0", + "Wednesday": "15:0-20:0", + "Thursday": "15:0-20:0", + "Friday": "15:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "_RTFBSlmluADfvdU4hw3_w", + "name": "Salon Norman Dee", + "address": "2550 Grant Ave, Ste 100", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0789508, + "longitude": -75.0262921, + "stars": 3.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Hair Extensions, Makeup Artists, Hair Salons, Beauty & Spas, Barbers, Nail Salons, Hair Removal", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "WhQbZWc3it5ifR-pWtjBag", + "name": "Northeast Dental", + "address": "2409 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.987957, + "longitude": -75.105418, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Health & Medical", + "hours": { + "Tuesday": "9:30-20:0", + "Thursday": "9:30-20:0" + } + }, + { + "business_id": "QSmuCHi63m8zEJvUc6SDAA", + "name": "Monster Vegan", + "address": "1229 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9467611936, + "longitude": -75.1622402094, + "stars": 4.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Vegan, Sandwiches, Vegetarian, Italian", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "1ynfWYtAWbbMJs3NnRNXtQ", + "name": "Curran's Irish Inn", + "address": "6900 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0220843, + "longitude": -75.0400549, + "stars": 3.0, + "review_count": 73, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "Alcohol": "u'full_bar'", + "GoodForDancing": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "DogsAllowed": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "Smoking": "u'outdoor'" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": { + "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" + } + }, + { + "business_id": "Xtw1Rpqj3IV-TKn19fIgpA", + "name": "Corner Bakery", + "address": "3737 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9569164648, + "longitude": -75.1968805919, + "stars": 3.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "NoiseLevel": "'average'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Breakfast & Brunch, Food Delivery Services, Coffee & Tea, Event Planning & Services, Restaurants, Bakeries, Cafes, Food, Caterers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0" + } + }, + { + "business_id": "bvCP5AUnA63vPzuLXD_tbQ", + "name": "Phoย House Thang Long", + "address": "177 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9696017, + "longitude": -75.1388957, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "HappyHour": "False", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Coffee & Tea, Breakfast & Brunch, Soup, Food, Vietnamese, Restaurants, Noodles", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "bzAuVc17AxrckfQSXjHhog", + "name": "GE Electrical Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.035837, + "longitude": -75.0202247, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Lighting Fixtures & Equipment, Home Services, Electricians", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "x4855nj7vfdXeVpg5fREZA", + "name": "1100 Social", + "address": "1100 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9041687186, + "longitude": -75.1691288928, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "HappyHour": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': None, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'" + }, + "categories": "Bars, Nightlife, Restaurants, American (New)", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0" + } + }, + { + "business_id": "JmQ9qWR3orqlMfC717BGJQ", + "name": "Frankford Avenue Health Center", + "address": "4500-10 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0141912, + "longitude": -75.0864694, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Medical Centers, Family Practice, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "zuNEmJXTIAMRwRY5v-oSCg", + "name": "L'etage", + "address": "624 S 6th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412707, + "longitude": -75.1526797, + "stars": 3.0, + "review_count": 147, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HappyHour": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Dance Clubs, Lounges, Nightlife, Bars", + "hours": { + "Tuesday": "19:30-1:0", + "Wednesday": "19:30-1:0", + "Thursday": "19:30-1:0", + "Friday": "19:0-2:0", + "Saturday": "19:0-2:0", + "Sunday": "19:30-1:0" + } + }, + { + "business_id": "-KWel73upKHxstRCr9JGLw", + "name": "Smokey Joe's Tavern", + "address": "210 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9537915, + "longitude": -75.2030239, + "stars": 3.5, + "review_count": 94, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "OutdoorSeating": "False", + "WiFi": "'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "BikeParking": "True", + "HappyHour": "True", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': False}", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}" + }, + "categories": "Bars, Dive Bars, Pizza, Nightlife, Restaurants", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0" + } + }, + { + "business_id": "saVXla5i8TjE51S5uCaf6w", + "name": "Steak 48", + "address": "260 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.947286, + "longitude": -75.165197, + "stars": 4.0, + "review_count": 137, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "BYOB": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "OutdoorSeating": "True" + }, + "categories": "Seafood, Restaurants, Steakhouses, Salad, American (New)", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-21:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:30", + "Saturday": "16:0-21:30", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "XxguP0h4uLdvymJd4NpKJw", + "name": "Samwich", + "address": "1040 N American St, Ste 1101", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674016, + "longitude": -75.1411529, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'" + }, + "categories": "Salad, Sandwiches, Restaurants, Burgers", + "hours": null + }, + { + "business_id": "7FuRGGi8N6bbpuh0_ilTRw", + "name": "Grand Prix Worx", + "address": "9909 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0973106, + "longitude": -75.0298548, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Detailing", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "veMkbZDBlV2cV1hdgYNb5w", + "name": "Spinning Chairs", + "address": "5029 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480146, + "longitude": -75.2244895, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons, Men's Hair Salons, Barbers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "j64EU44IBM7PzswAz6fPoQ", + "name": "Relish Burger Bistro", + "address": "4101 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8915679, + "longitude": -75.232716, + "stars": 2.5, + "review_count": 36, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForKids": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "WiFi": "'free'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Burgers", + "hours": null + }, + { + "business_id": "Xf2bYD_gsKuWiGYZw2qsYg", + "name": "Lazeez Indian cuisine", + "address": "763 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.939496, + "longitude": -75.1558606, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "BYOB": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "HasTV": "False", + "WiFi": "u'free'", + "Corkage": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Indian, Restaurants", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:30-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "a2VOVxw1kgFgpa59i-V5Dg", + "name": "AL-JANA Halal Food Market", + "address": "6826 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0410958357, + "longitude": -75.0652301544, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Grocery, Butcher, Meat Shops, Food, Specialty Food, Halal", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "v4QsKtLkKYrZYrqvivmsLQ", + "name": "Eastern Mountain Sports", + "address": "3401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9547648871, + "longitude": -75.1919620388, + "stars": 3.5, + "review_count": 30, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Sports Wear, Outdoor Gear, Sporting Goods, Fashion, Bikes, Shopping", + "hours": { + "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", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "5cPzd9lx9-zpFvEDOr3Hjg", + "name": "Pep Boys", + "address": "9101-15 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.073378, + "longitude": -75.2419657, + "stars": 3.0, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Tires, Auto Parts & Supplies, Auto Repair, Oil Change Stations", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "bSq6f-qGD0ncnU4Fh5yD1w", + "name": "Bertolino's Pharmacy", + "address": "1500 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9311599, + "longitude": -75.1645933, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Drugstores, Shopping, Health & Medical", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "6-lUuX1akde1zzs9yTqxWQ", + "name": "Hand Made Massage", + "address": "1100 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9447276, + "longitude": -75.1599355, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Massage", + "hours": { + "Monday": "14:0-20:0", + "Tuesday": "14:0-20:0", + "Wednesday": "14:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "14:0-20:0" + } + }, + { + "business_id": "G2n77sQxr0XqPekhTu6HvA", + "name": "Germantown Espresso Bar", + "address": "26 Maplewood Mall", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0343452, + "longitude": -75.1746671, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "HappyHour": "False", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "DogsAllowed": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Music Venues, Food, Nightlife, Coffee & Tea, Arts & Entertainment, Restaurants, Breakfast & Brunch, Cafes, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14:0", + "Wednesday": "8:0-15:0", + "Thursday": "7:0-14:0", + "Friday": "7:0-14:0", + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "gLnf805Btf9vbiQ6_X1WAw", + "name": "Helen's Cleaners", + "address": "2000 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944725, + "longitude": -75.175222, + "stars": 2.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Dry Cleaning & Laundry, Laundry Services, Sewing & Alterations, Dry Cleaning, Local Services", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "-Ah-gbZpa-IiQVIrhKRhhA", + "name": "Saigon Cuisine", + "address": "4000 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9555996, + "longitude": -75.202664, + "stars": 3.0, + "review_count": 80, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Restaurants, Vietnamese, Chinese", + "hours": { + "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" + } + }, + { + "business_id": "V0SHmvYtXqdv8-AsqshV6w", + "name": "Smokin Bettys", + "address": "116 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495395623, + "longitude": -75.158919096, + "stars": 3.5, + "review_count": 796, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "Caters": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True", + "CoatCheck": "False" + }, + "categories": "Nightlife, Bars, American (New), Barbeque, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "OLC8D6ig4vyLLXvPlQUFpw", + "name": "Sunoco A Plus", + "address": "630 Walnut Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0287102, + "longitude": -75.2060843, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True" + }, + "categories": "Convenience Stores, Food", + "hours": null + }, + { + "business_id": "oNGQMJmwwPWD1ELyAV9Rjg", + "name": "Sugar Bar Salon", + "address": "214 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950102, + "longitude": -75.174166, + "stars": 5.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'" + }, + "categories": "Hair Removal, Beauty & Spas, Sugaring", + "hours": null + }, + { + "business_id": "el-WV1mOpFmrQOowLnh4aw", + "name": "Paesano's Philly Style", + "address": "1429 Marlborough St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.973362, + "longitude": -75.133615, + "stars": 4.5, + "review_count": 652, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Hot Dogs, Sandwiches, Salad", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "BSO5jj-slpLdLgDtLWoD0w", + "name": "Peking Inn", + "address": "4905 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.94846, + "longitude": -75.221493, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}" + }, + "categories": "American (New), Chinese, Restaurants", + "hours": null + }, + { + "business_id": "o2NjTbShIkaBabMRpFF8UA", + "name": "Lov-N Care Cleaners", + "address": "1901 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9480965, + "longitude": -75.1728947, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "V0DE3adlCc6m3t-yTxAg4g", + "name": "Venice Pizza and Italian Eatery", + "address": "3613 Rhawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0420055, + "longitude": -75.02845, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "False", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "Yra4YGXmiHv7My5MZ8fjOw", + "name": "Affordable Electric", + "address": "8001 Castor Ave, Ste 352", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0618375, + "longitude": -75.0554644, + "stars": 1.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Electricians", + "hours": { + "Monday": "7:0-6:0", + "Tuesday": "7:0-6:0", + "Wednesday": "7:0-6:0", + "Thursday": "7:0-6:0", + "Friday": "7:0-6:0", + "Saturday": "8:0-6:0" + } + }, + { + "business_id": "u9ZKz1sVVkLr0qTjj3B1mQ", + "name": "Grubhouse", + "address": "Bourse Food Hall, 111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': False, u'lot': False, u'validated': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "DriveThru": "False", + "RestaurantsTableService": "False" + }, + "categories": "Bars, Nightlife, Beer Bar, Restaurants, Breakfast & Brunch, Sandwiches, Waffles, Burgers", + "hours": { + "Monday": "9:0-16:0", + "Wednesday": "8:0-13:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-13:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "LYkQFSYLRVaRU4aL4KifSw", + "name": "Candytopia - Philadelphia", + "address": "901 Market St, Ste 1150", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9517142, + "longitude": -75.1557198, + "stars": 3.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Specialty Food, Shopping, Candy Stores, Arts & Entertainment, Food, Museums, Pop-up Shops", + "hours": { + "Thursday": "12:0-20:0", + "Friday": "11:0-19:30", + "Saturday": "11:0-19:30", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "2EmAukTYm2mOBEIKEYBRNg", + "name": "Nick's Bar and Grille", + "address": "16 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495571, + "longitude": -75.1439805, + "stars": 4.0, + "review_count": 181, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "False", + "Caters": "False", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "None" + }, + "categories": "American (Traditional), Sandwiches, Restaurants, Bars, Cheesesteaks, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "CJJRMvWMr7r2MGhLg3Ij0A", + "name": "Sea Blue Nails and Spa", + "address": "249 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.946883, + "longitude": -75.15743, + "stars": 4.5, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True" + }, + "categories": "Nail Salons, Hair Removal, Waxing, Beauty & Spas, Massage", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-18:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "XhoODVSS1ri5Mr6yUB7hWw", + "name": "Artisans On the Avenue", + "address": "8440 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0756907, + "longitude": -75.206323, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Accessories, Fashion, Home Decor, Home & Garden, Women's Clothing", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "10:0-19:0", + "Saturday": "11:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "3WgzKhDmH5nU946Yk4wbzA", + "name": "Club Adesso", + "address": "1519 Walnut St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9498741, + "longitude": -75.1668733, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "3", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'dressy'" + }, + "categories": "Lounges, Nightlife, Italian, Bars, Restaurants", + "hours": { + "Friday": "20:0-2:0", + "Saturday": "20:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "MJLQbWdO5h8FFKOMDUZ_9g", + "name": "J & D Taylor Cleaners", + "address": "247 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947234, + "longitude": -75.160714, + "stars": 4.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Dry Cleaning & Laundry, Sewing & Alterations, Local Services, Laundry Services", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "GEtK2S6zALXgsjKjK3abJw", + "name": "Starbucks", + "address": "525 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.954023, + "longitude": -75.148885, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "nBqvryCdn9N_vU4rdCbnHw", + "name": "Spread Bagelry", + "address": "2401 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515389392, + "longitude": -75.1798004285, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bagels, Breakfast & Brunch, Sandwiches, Restaurants, Food", + "hours": { + "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:0", + "Sunday": "7:0-15:0" + } + }, + { + "business_id": "js1qPAGsX9q1Sc9x4vncEQ", + "name": "Love City Pets", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9793657, + "longitude": -75.1253492, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Dog Walkers, Pet Sitting, Pets", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "6EmOcxZOFJp8n-CSOAU9ZQ", + "name": "Body By Fisher Tabor", + "address": "6248 Tabor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0459342, + "longitude": -75.0933439, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Weight Loss Centers, Health & Medical", + "hours": { + "Monday": "14:0-19:0", + "Tuesday": "9:0-12:0", + "Wednesday": "1:0-17:30", + "Thursday": "14:0-19:30", + "Friday": "9:0-12:0" + } + }, + { + "business_id": "Z9QsWMsrvOyvF77k5YYuzg", + "name": "Benny Casanova's", + "address": "3300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9661671579, + "longitude": -75.1910782957, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "None" + }, + "categories": "Pizza, Restaurants, Italian", + "hours": null + }, + { + "business_id": "en_RXTfwOL_NiInszgD2ww", + "name": "Supreme Clientele Barbershop", + "address": "1354 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.94342, + "longitude": -75.165063, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WheelchairAccessible": "True", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': True, 'asian': True}", + "WiFi": "u'free'" + }, + "categories": "Men's Hair Salons, Barbers, Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "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": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "huXr3ate-syDAbBe7E-avw", + "name": "Ironworks Fitness Clubs: Old City", + "address": "141 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9533152, + "longitude": -75.1447709, + "stars": 4.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Gyms, Active Life, Fitness & Instruction", + "hours": null + }, + { + "business_id": "L-hvp_vsi16XTFCdf7yf7A", + "name": "Potbelly Sandwich Shop", + "address": "4040 City Line Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0074797274, + "longitude": -75.2126632343, + "stars": 3.0, + "review_count": 26, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Caters": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'" + }, + "categories": "Delis, Restaurants, Sandwiches, Fast Food", + "hours": null + }, + { + "business_id": "ELY0HI8GDEx0jkmREVna0A", + "name": "Frankford Hall", + "address": "1210 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969439, + "longitude": -75.134647, + "stars": 4.0, + "review_count": 981, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "HasTV": "True", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "CoatCheck": "False", + "Smoking": "u'no'", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None" + }, + "categories": "German, Restaurants, Nightlife, Food, Bars, Pretzels, Beer Gardens, Pubs", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-20:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "6eMJVVDFJJNokFCjgLIqNw", + "name": "Barsky Diamonds", + "address": "724 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486019246, + "longitude": -75.1534581184, + "stars": 4.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Jewelry, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "V58y45seW-Yp3gzHLnrPIw", + "name": "Liberties Walk", + "address": "1040 N American St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9674016, + "longitude": -75.1411529, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping Centers, Shopping", + "hours": null + }, + { + "business_id": "owa7WsRu__bm-UYK6KRVkg", + "name": "Bombay Dhabba - Philadelphia", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9568595, + "longitude": -75.1941599, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BYOB": "True", + "WiFi": "u'free'", + "HappyHour": "False", + "OutdoorSeating": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "Corkage": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Asian Fusion, Pizza, Indian, Restaurants, Caterers, Event Planning & Services, Vegetarian", + "hours": { + "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": "14:0-22:0" + } + }, + { + "business_id": "9hAQD5rq0PCqhq4RVqgI6Q", + "name": "Smiles At the Square", + "address": "255 S 17th St, Ste 2507", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481867, + "longitude": -75.1692901, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-16:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "y4exYcOCc5ximnsZu5hx2w", + "name": "A Man's Image", + "address": "1841 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9268327, + "longitude": -75.1666956, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Men's Clothing", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "pL1C3UIhlqVZXFpA8J8Q7w", + "name": "University City Housing", + "address": "3418 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.953621, + "longitude": -75.192889, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "v70BCKY2DJQ9Ve5C6Ab7tg", + "name": "Luigi's Pizzaria", + "address": "716 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9484491, + "longitude": -75.1532384, + "stars": 4.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Breakfast & Brunch, Restaurants, Pizza, Italian", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0" + } + }, + { + "business_id": "kPIApumYYUFVSLS38-ajSQ", + "name": "Shun Da Live Poultry", + "address": "1164 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9345464, + "longitude": -75.1589387, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1" + }, + "categories": "Food, Specialty Food", + "hours": null + }, + { + "business_id": "d506Vzct8XmgLrQ5SOoA2A", + "name": "The Little Candy Shoppe", + "address": "1030 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9671396, + "longitude": -75.1401769, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Chocolatiers & Shops, Specialty Food, Food", + "hours": null + }, + { + "business_id": "d9yY8vavRGnq3sIi1khJWQ", + "name": "Hana & Posy", + "address": "35 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95122, + "longitude": -75.1453851, + "stars": 4.0, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Flowers & Gifts, Event Planning & Services, Wedding Planning, Cards & Stationery, Shopping, Florists, Arts & Crafts", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "jZNURvrGXciY9aBpl6Z-CQ", + "name": "Elle Beautรฉ Nail & Waxing Salon", + "address": "1634 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9504379, + "longitude": -75.168155, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}" + }, + "categories": "Waxing, Hair Removal, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "_HjSeGPK9XTL5SWK-zbHOA", + "name": "Meathead's Deli", + "address": "2863 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0571582044, + "longitude": -75.0322477152, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "NoiseLevel": "'quiet'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "HasTV": "False", + "OutdoorSeating": "False", + "Alcohol": "'none'", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Delis, Restaurants", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "H13Ujpop52WuIGLU2tqJTg", + "name": "Sedgely Woods Disc Golf Club", + "address": "33rd St & Oxford St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9814298488, + "longitude": -75.19176174, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Parks, Golf, Disc Golf, Local Flavor", + "hours": { + "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": "9:0-20:0" + } + }, + { + "business_id": "5Oidx4OZxCj6Y4SoXQIZsg", + "name": "Renaissance Sausage Truck", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 4.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, American (Traditional), Food, Food Stands, Specialty Food", + "hours": { + "Wednesday": "10:0-15:0", + "Thursday": "10:0-15:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-15:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "oHbSVpEWCgRdmVZVdEmcRw", + "name": "Fred's Mt Airy Motors", + "address": "208 E Mount Airy Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0625751, + "longitude": -75.1875059, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "hyFzDuyOWNG2rg5GYJ2wiQ", + "name": "Alpen Rose", + "address": "116 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949778, + "longitude": -75.1621538401, + "stars": 4.5, + "review_count": 153, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None" + }, + "categories": "Nightlife, Steakhouses, Bars, Restaurants, Seafood, Cocktail Bars", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "tEo6P6BFXxuGL4yImZXPvQ", + "name": "Asi Management", + "address": "100 S Broad St, Ste 1300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19110", + "latitude": 39.9502943, + "longitude": -75.1645249, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Property Management, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "v1uBnT3mOKraXTizL41O3w", + "name": "Philly Photography", + "address": "6118 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0337802, + "longitude": -75.2158399, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Professional Services, Video/Film Production, Photographers, Event Planning & Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "ujdzJZr-TnlRivX35KgYiA", + "name": "WashLB", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Car Wash, Auto Detailing, Automotive", + "hours": { + "Monday": "1:0-0:0", + "Tuesday": "1:0-0:0", + "Wednesday": "1:0-0:0", + "Thursday": "1:0-0:0", + "Friday": "1:0-0:0", + "Saturday": "1:0-0:0", + "Sunday": "1:0-0:0" + } + }, + { + "business_id": "T5cYaN8KuRDlU3HMi02VQg", + "name": "Dollar Tree", + "address": "9163 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0691453946, + "longitude": -75.0279402019, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Discount Store, Shopping", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "r4Kx92NJW2aJjofpEuqM6Q", + "name": "Foam Floaterie", + "address": "517 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9422602, + "longitude": -75.1504636, + "stars": 5.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Ice Cream & Frozen Yogurt", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "8N3Ph2rHIKjwDAMFbru-KQ", + "name": "Azure Ultra Lounge", + "address": "1439 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.944025, + "longitude": -75.166676, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nightlife, Lounges, Bars", + "hours": { + "Friday": "21:0-2:0", + "Saturday": "21:0-2:0" + } + }, + { + "business_id": "jz_2B9gw8Ho18ZJmi-iyRw", + "name": "Tai Chi Bodywork Center", + "address": "4438 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0262908, + "longitude": -75.2260166, + "stars": 4.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "WheelchairAccessible": "True" + }, + "categories": "Acupuncture, Traditional Chinese Medicine, Health & Medical, Beauty & Spas, Reflexology, Massage, Massage Therapy", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "wfaXAE1Kh7D5CYr-AsiSOg", + "name": "Cleopatra Beauty Salon", + "address": "5456 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0350541, + "longitude": -75.1310848, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Barbers, Beauty & Spas", + "hours": null + }, + { + "business_id": "vTpA-4yzldOJEXHFEOO4QQ", + "name": "Big Deans Hot Chicken", + "address": "6901 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0440239, + "longitude": -75.2272131, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": null, + "categories": "Chicken Shop, Desserts, Restaurants, Waffles, Sandwiches, Food", + "hours": null + }, + { + "business_id": "rsUBdaoZIgZLUwKMQAPnzQ", + "name": "Papa Joe's", + "address": "7204 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19138", + "latitude": 40.0642416, + "longitude": -75.1539338, + "stars": 2.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'quiet'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "GoodForKids": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "mUrTR_JyWnQBCdpluZai8g", + "name": "Lauterborn Electric", + "address": "3570 Edgemont St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9888763, + "longitude": -75.0939309, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Local Services, Electricians, TV Mounting, Lighting Fixtures & Equipment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "9:0-14:0", + "Sunday": "9:0-14:0" + } + }, + { + "business_id": "kJbPlVPlX41tek7HXJGehQ", + "name": "The Sweet Life Bakeshop", + "address": "1242 S 22nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.936647, + "longitude": -75.18069, + "stars": 5.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Cupcakes, Caterers, Bakeries, Event Planning & Services, Food", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0" + } + }, + { + "business_id": "1Sk3-T3lQPDsmLEHMCUZHQ", + "name": "H Smith Shop", + "address": "1242 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9360485, + "longitude": -75.178151, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BikeParking": "True" + }, + "categories": "Hair Salons, Shopping, Art Galleries, Barbers, Beauty & Spas, Men's Hair Salons, Arts & Entertainment, Cosmetics & Beauty Supply", + "hours": { + "Wednesday": "13:0-18:0", + "Thursday": "13:0-20:0", + "Friday": "12:0-18:0", + "Saturday": "13:0-18:0" + } + }, + { + "business_id": "81ayGRiiiGMNVv5xQgFK2A", + "name": "National Bartenders", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "", + "latitude": 39.9525839, + "longitude": -75.1652215, + "stars": 1.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Bartenders", + "hours": { + "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" + } + }, + { + "business_id": "wPi7p5fZyGTOjDU28IlTqA", + "name": "Woody's", + "address": "202 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949064, + "longitude": -75.16241, + "stars": 3.0, + "review_count": 325, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BYOBCorkage": "'yes_free'", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Corkage": "False", + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "AgesAllowed": "u'21plus'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "NoiseLevel": "u'loud'", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Bars, American (Traditional), Gay Bars, Dance Clubs, Nightlife, Pubs", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "19:0-2:0", + "Wednesday": "19:0-2:0", + "Thursday": "19:0-2:0", + "Friday": "19:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "8OirL-hbzxuvwGLke6HirQ", + "name": "Puppy Land", + "address": "633 W Rittenhouse St, Ste 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0311095, + "longitude": -75.1850919, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Groomers, Pet Services, Dog Walkers, Pet Sitting", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "1Ggw9DE7s9h4q9sRo-f3oA", + "name": "Happy Dragon Chinese Restaurant", + "address": "2047 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9220776, + "longitude": -75.1508278, + "stars": 3.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "HasTV": "False", + "Caters": "True", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Chinese, Restaurants, Comfort Food, Asian Fusion", + "hours": { + "Monday": "0:0-0: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": "14:0-22:0" + } + }, + { + "business_id": "C-4Nn2flVd2LCKPpzfXzfg", + "name": "South Street Barbers", + "address": "1302 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9432423, + "longitude": -75.1635901, + "stars": 4.0, + "review_count": 158, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-15:30", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "JZC1rJ6UmpNteyWM5dsMxg", + "name": "Black Pearl BBQ", + "address": "42nd & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.9576766, + "longitude": -75.206078, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False" + }, + "categories": "Barbeque, Restaurants, Food Trucks, Food", + "hours": { + "Saturday": "11:30-15:30", + "Sunday": "11:30-15:30" + } + }, + { + "business_id": "PGdk_1MjMzrfKkRz_pfKaw", + "name": "Sache Beauty Studio", + "address": "2417 Welsh Rd, Ste 25 & 26", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.072026, + "longitude": -75.030923, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': False, 'perms': True, 'asian': True}", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Hair Salons, Eyelash Service, Beauty & Spas, Hair Stylists, Hair Extensions, Waxing, Hair Removal, Nail Salons", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "MOVFDKVqWkDM1hUJNwpaYQ", + "name": "Grovers Meat Market", + "address": "2910 S 70th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9123634, + "longitude": -75.2337768, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Meat Shops, Food, Specialty Food, Convenience Stores, Grocery", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "Mrv9peYeHnxAQAntYw50rA", + "name": "Sunny Nails", + "address": "1522 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9767583, + "longitude": -75.1588809, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "HSE8mV8pKmnYuo843dBIhQ", + "name": "New Horizons Housing", + "address": "4101 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9501647, + "longitude": -75.2059019, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Apartments, Property Management, Home Services", + "hours": null + }, + { + "business_id": "_vi0nhfx0jSlIOp8PzD8QQ", + "name": "Rosa's Fresh Pizza", + "address": "25 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507211, + "longitude": -75.1583126, + "stars": 4.5, + "review_count": 195, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "V4A1CtHRgztPNUbxvuizXQ", + "name": "NextFab", + "address": "2025 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.939622, + "longitude": -75.177313, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Vocational & Technical School, Adult Education, Education, Educational Services, Electronics Repair, Arts & Entertainment, Community Service/Non-Profit, Home Services, Local Services, Real Estate, 3D Printing, Professional Services, Specialty Schools, Shared Office Spaces, Makerspaces", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "10:30-17:0", + "Saturday": "10:30-17:0", + "Sunday": "10:30-17:0" + } + }, + { + "business_id": "OJ7cVWbpkAU9BjgU1UC9Lw", + "name": "Shai", + "address": "3300 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9661569, + "longitude": -75.1910622, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "None", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "None", + "Caters": "True" + }, + "categories": "Mediterranean, Falafel, Restaurants, Middle Eastern, Vegetarian, Pizza", + "hours": null + }, + { + "business_id": "FCBrbR6GpRop7DCMQ1tpZA", + "name": "The Bike Stop", + "address": "206 S Quince St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948344206, + "longitude": -75.159897543, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "WiFi": "'no'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForDancing": "False", + "CoatCheck": "True", + "HappyHour": "True" + }, + "categories": "Nightlife, Bars, Gay Bars", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "14:0-2:0" + } + }, + { + "business_id": "_tt4nysrN8JpzLLVXL-z5A", + "name": "Creperie Beau Monde & L'Etage", + "address": "624 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412513696, + "longitude": -75.1526180588, + "stars": 4.0, + "review_count": 595, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "BikeParking": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': None, 'brunch': True, 'breakfast': None}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Breakfast & Brunch, Creperies, French, Restaurants", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "thPp3lfdb9ytmZ0T0YP6Hw", + "name": "Christian Street Branch YMCA", + "address": "1724 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.940499, + "longitude": -75.17214, + "stars": 3.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Gyms, Local Services, Child Care & Day Care, Active Life, Fitness & Instruction", + "hours": { + "Monday": "5:0-21:0", + "Tuesday": "5:0-21:0", + "Wednesday": "5:0-21:0", + "Thursday": "5:0-21:0", + "Friday": "5:0-20:0", + "Saturday": "7:0-17:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "LfQBrluW-nAR-VEuS_MNiw", + "name": "Chris'pizza", + "address": "3701 Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9636975, + "longitude": -75.1961457, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "7QhxQrhqVJYo8JvPUGFD4A", + "name": "Allen Edmonds Mens Shoe Store", + "address": "1736 Chestnut St, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514689, + "longitude": -75.1702932528, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Shoe Stores", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "3gVSrS4kffGGZT8oXHsIcw", + "name": "Pod", + "address": "3636 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9539707735, + "longitude": -75.1960369886, + "stars": 3.5, + "review_count": 797, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "HappyHour": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "None", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "False" + }, + "categories": "Restaurants, Lounges, Asian Fusion, Nightlife, Sushi Bars, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-0:0", + "Saturday": "17:0-0:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "Zy5IZ-3C8s4iHw55LPkKVQ", + "name": "Al Zaytouna", + "address": "906 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388459, + "longitude": -75.1581065, + "stars": 4.0, + "review_count": 246, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "DriveThru": "False" + }, + "categories": "Mediterranean, Sandwiches, Restaurants, Middle Eastern", + "hours": { + "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" + } + }, + { + "business_id": "o7mN59QlAoL6dJctc014MQ", + "name": "Dunkin'", + "address": "9173 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0742819, + "longitude": -75.0331506, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "None", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Donuts, Food", + "hours": { + "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" + } + }, + { + "business_id": "kT8IlV47kz1rz2lTuNyO1w", + "name": "Christie's Deli", + "address": "1822 Spring Garden St, Unit B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630809277, + "longitude": -75.1693602651, + "stars": 5.0, + "review_count": 152, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "'none'", + "NoiseLevel": "'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "None", + "RestaurantsTableService": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Delis, Sandwiches", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-15:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "cWu31txqrvLHMCUNdmnxfQ", + "name": "a.bar", + "address": "1737 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9502708009, + "longitude": -75.1705138959, + "stars": 4.0, + "review_count": 116, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "OutdoorSeating": "True", + "Alcohol": "u'full_bar'" + }, + "categories": "Bars, Tapas Bars, Restaurants, American (Traditional), Cocktail Bars, Nightlife, Tapas/Small Plates", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-1:0", + "Saturday": "16:0-1:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "3CIQ89DosNbNhhhqdjzN3Q", + "name": "Glasco Security Corporation", + "address": "5553 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.028992, + "longitude": -75.180738, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Door Sales/Installation, Security Systems, Metal Fabricators, Home Services, Keys & Locksmiths", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "a16P2HssDZrEEWXHl22d9Q", + "name": "Philadelphia Dental Associates", + "address": "2000 Market St, Ste BSA 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953289, + "longitude": -75.1736448, + "stars": 4.0, + "review_count": 35, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Dentists, Pediatricians, General Dentistry, Doctors, Pediatric Dentists, Health & Medical, Cosmetic Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-13:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "okRo0xYqltRX-xxHX0khmw", + "name": "Curtis Institute of Music", + "address": "1726 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488117997, + "longitude": -75.170646, + "stars": 5.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "False", + "Ambience": "None", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "None", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Music Venues, Specialty Schools, Art Schools, Arts & Entertainment, Education, Nightlife", + "hours": { + "Wednesday": "20:0-22:0", + "Thursday": "20:0-22:0", + "Friday": "20:0-22:0", + "Saturday": "20:0-22:0", + "Sunday": "20:0-22:0" + } + }, + { + "business_id": "27AYMHTMgS7UIkO6M1KfpA", + "name": "4 Sisters Nail Salon", + "address": "2101 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524435, + "longitude": -75.1757574, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "cmL_EUGOZBaMZe-OAZ_-dg", + "name": "Wake Up Yoga South", + "address": "1839 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9268742, + "longitude": -75.1666339, + "stars": 4.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Yoga, Fitness & Instruction, Active Life", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0", + "Saturday": "8:0-17:30", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "TpE22_ITBg1ubzNVHE2MHQ", + "name": "Fat tuna", + "address": "2451 N 54th", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9956107, + "longitude": -75.2338566, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Corkage": "True", + "Caters": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BikeParking": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bubble Tea, Juice Bars & Smoothies, Coffee & Tea, Sushi Bars, Ramen, Food, Restaurants, Japanese", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-21:0", + "Wednesday": "11:30-21:0", + "Thursday": "11:30-21:0", + "Friday": "11:30-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "1OfhM-ZKvcpxyxptCCzEwA", + "name": "Independence Beer Garden", + "address": "100 S Independence Mall W", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502943, + "longitude": -75.150981, + "stars": 3.5, + "review_count": 513, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "RestaurantsTableService": "True", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "Alcohol": "'full_bar'", + "Music": "{'dj': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "GoodForDancing": "False", + "CoatCheck": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "Smoking": "u'outdoor'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}" + }, + "categories": "Bars, Nightlife, American (New), Gastropubs, Food Trucks, Parks, Restaurants, Beer Gardens, Active Life, Barbeque, Food, Beer, Wine & Spirits, American (Traditional)", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "15:0-0:0", + "Thursday": "15:0-0:0", + "Friday": "15:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "FedLWKgw_FWN23S6-G6_KA", + "name": "Les Richards Menswear", + "address": "1625 Chestnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Men's Clothing", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "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": "12:0-18:0" + } + }, + { + "business_id": "vgSfuvMzkNPJd7YAht31OQ", + "name": "Clementines Stable Cafe", + "address": "631 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.964545, + "longitude": -75.1607530281, + "stars": 4.0, + "review_count": 92, + "is_open": 1, + "attributes": { + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "False", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "American (Traditional), Restaurants", + "hours": { + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0", + "Sunday": "16:0-20:0" + } + }, + { + "business_id": "_mdevGmDGzBSJORHGA9xaA", + "name": "Eden Autos", + "address": "6213 E Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.033905, + "longitude": -75.073001, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Used Car Dealers, Car Dealers", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "R3YKAnoDH0aUKdwnmmnrDw", + "name": "S & H Kebabhouse", + "address": "611 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414165, + "longitude": -75.1503119, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True" + }, + "categories": "Turkish, American (New), Middle Eastern, Restaurants", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "13:0-22:0" + } + }, + { + "business_id": "echcBPjvo9CKDyU3qi9kRw", + "name": "La Divisa Meats", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531914, + "longitude": -75.1594066, + "stars": 5.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Butcher, Specialty Food, Food, Meat Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "dMOozW28RPXGlFlpyfCoxw", + "name": "Chez Sonia Hair Studio & Spa", + "address": "620 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9430857, + "longitude": -75.165837, + "stars": 2.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Blow Dry/Out Services, Barbers, Hair Salons, Beauty & Spas, Hair Stylists", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "ELZqT1x_b17XF_k4jnjpWQ", + "name": "Carnivolution", + "address": "Ellen Powell Tiberino Museum, 3819 Hamilton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.961676, + "longitude": -75.197784, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "GoodForKids": "False" + }, + "categories": "Performing Arts, Art Galleries, Shopping, Arts & Entertainment", + "hours": null + }, + { + "business_id": "r9tA8yW_grASyrJ-zN9dvg", + "name": "Public Storage", + "address": "7571 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.050813, + "longitude": -75.235851, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Self Storage", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "itwiCpfGR5xlUpawXrt4tA", + "name": "Penn Campus Recreation", + "address": "3701 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9493286, + "longitude": -75.1875515, + "stars": 3.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BikeParking": "True" + }, + "categories": "Pilates, Martial Arts, Active Life, Trainers, Fitness & Instruction, Yoga, Gyms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-23:30", + "Wednesday": "6:0-23:30", + "Thursday": "6:0-23:30", + "Friday": "11:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "8XtpIfn6bjrzKQraKuZHEQ", + "name": "Renaissance Philadelphia Downtown Hotel", + "address": "401 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9490202, + "longitude": -75.1478095, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "m2VQOl_sBHg2wJHdG99uQQ", + "name": "Mr Wish", + "address": "2100 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950613, + "longitude": -75.175916, + "stars": 4.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Bubble Tea, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "IDdVpQSDPe_VSXvUU68JwA", + "name": "World of Animals At Rittenhouse", + "address": "408 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9465082, + "longitude": -75.174854, + "stars": 4.5, + "review_count": 113, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0", + "Sunday": "9:0-13:0" + } + }, + { + "business_id": "fSf3TliYT-rprh3YDs4phQ", + "name": "Chef King", + "address": "1013 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9618929, + "longitude": -75.1549619, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "10:30-22:30", + "Tuesday": "10:30-22:30", + "Wednesday": "10:30-22:30", + "Thursday": "10:30-22:30", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "11:30-22:30" + } + }, + { + "business_id": "Ct23NeSxZrayJd_n9pkK-Q", + "name": "Noshery Gourmet Cafe", + "address": "1600 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.9782363, + "longitude": -75.1582145, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "HasTV": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "Corkage": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Monday": "11:0-20:30", + "Tuesday": "11:0-20:30", + "Wednesday": "11:0-20:30", + "Thursday": "11:0-20:30", + "Friday": "11:0-20:30", + "Saturday": "11:0-20:30", + "Sunday": "11:0-20:30" + } + }, + { + "business_id": "Nt8bwriX3NX249EJC7XUsQ", + "name": "Happy Noodle Bar", + "address": "927 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553779183, + "longitude": -75.155342035, + "stars": 3.5, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "WiFi": "'free'", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Breakfast & Brunch, Asian Fusion, Chinese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "j8NpaEvv4AaweMybeADmGQ", + "name": "Cafe Breezes", + "address": "5131 W Columbia Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9800064, + "longitude": -75.2229397, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Cafes, Nightlife, Bars", + "hours": null + }, + { + "business_id": "Mp0rF67b3fKyNRiVPAlPwQ", + "name": "Liberty Bell Cleaners", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9486697525, + "longitude": -75.1429265988, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Laundry Services, Local Services, Dry Cleaning & Laundry", + "hours": { + "Monday": "7:30-18:30", + "Tuesday": "7:30-18:30", + "Wednesday": "7:30-18:30", + "Thursday": "7:30-18:30", + "Friday": "7:30-18:30", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "Psx9NiBwmK4r_j811Mn6fQ", + "name": "The Fairview", + "address": "601 N 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9653988, + "longitude": -75.1724036, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Music": "{u'dj': False, u'live': True, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': False, u'no_music': False}", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True" + }, + "categories": "Nightlife, Bars, Sandwiches, Restaurants, Tapas/Small Plates", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "F00qGEKYhqD43At669lcjw", + "name": "La Stanza", + "address": "2001 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9180723319, + "longitude": -75.1810526848, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'" + }, + "categories": "Bars, Restaurants, Nightlife, Cocktail Bars, Italian, Seafood", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:30", + "Saturday": "17:0-22:30", + "Sunday": "17:0-20:30" + } + }, + { + "business_id": "rgeuy1qbw6Z8B6CSVANHIA", + "name": "Federal Donuts", + "address": "1632 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950589, + "longitude": -75.168329, + "stars": 4.0, + "review_count": 1464, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "HasTV": "False", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsTakeOut": "None", + "HappyHour": "False", + "DogsAllowed": "False", + "OutdoorSeating": "None" + }, + "categories": "Donuts, Sandwiches, Soul Food, Food, Coffee & Tea, Restaurants, Chicken Wings", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "xFkINhOx95KPIGvoGRzcmg", + "name": "Painting with a Twist", + "address": "1520 Locust St, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482048, + "longitude": -75.1671697, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Education, Arts & Entertainment, Art Classes, Paint & Sip", + "hours": { + "Monday": "12:0-17:0", + "Tuesday": "12:0-17:0", + "Wednesday": "12:0-17:0", + "Thursday": "12:0-17:0", + "Friday": "12:0-17:0", + "Saturday": "12:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Afh9UF8-oTTwPFaGwIskKg", + "name": "The Pizza Store", + "address": "2727 E Allegheny Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9835245, + "longitude": -75.1015152, + "stars": 4.5, + "review_count": 28, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}", + "HasTV": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:45", + "Saturday": "11:0-23:45", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "dMameAEcJgKSGQDcCYYjxw", + "name": "Market Street Gold", + "address": "936 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9513496, + "longitude": -75.1565009, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True" + }, + "categories": "Jewelry, Landmarks & Historical Buildings, Shopping, Public Services & Government", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "JUQG2g3KYK6nbEuKNSxWiA", + "name": "Westbury Bar & Restaurant", + "address": "261 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9468010264, + "longitude": -75.1624771881, + "stars": 3.5, + "review_count": 33, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "True" + }, + "categories": "Burgers, Gay Bars, Bars, Nightlife, American (New), Salad, Restaurants", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-1:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-1:0" + } + }, + { + "business_id": "dEhAt44jZaAcJtQCEa2Lqw", + "name": "Christy Magic Nails", + "address": "2417 Welsh Rd, Ste 27", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0710306323, + "longitude": -75.0310641007, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "2Iao5aQSNsv2W0pts0cL4g", + "name": "Public Storage", + "address": "2190 Wheatsheaf Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.99774, + "longitude": -75.089252, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Self Storage, Local Services", + "hours": { + "Monday": "9:30-18:0", + "Tuesday": "9:30-18:0", + "Wednesday": "9:30-18:0", + "Thursday": "9:30-18:0", + "Friday": "9:30-18:0", + "Saturday": "9:30-17:0", + "Sunday": "9:30-17:0" + } + }, + { + "business_id": "qQkBiAiK_LG1fnXQlQ5NVA", + "name": "Simmons Animal Hospital", + "address": "1500 Wolf St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9219619, + "longitude": -75.1720716, + "stars": 3.5, + "review_count": 38, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians, Pet Services", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-13:0" + } + }, + { + "business_id": "EGWIM5Bw9T6_QnD2unbULg", + "name": "Rittenhouse Row Spring Festival", + "address": "18th St & Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9496588223, + "longitude": -75.1674733311, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True" + }, + "categories": "Festivals, Restaurants, Local Flavor, Arts & Entertainment", + "hours": null + }, + { + "business_id": "UdoQN2UIdBnsc3Vc2ygoFA", + "name": "Adelphia Electric", + "address": "3528 Nottingham Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.071705, + "longitude": -74.986132, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Electricians, Home Services, Utilities, Lighting Fixtures & Equipment", + "hours": { + "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" + } + }, + { + "business_id": "Apg6r-2CGinmTRFnt-5Zow", + "name": "New China", + "address": "7961 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0613069, + "longitude": -75.0561751, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "AUFcWR8Cu6FWNIy2DwUycQ", + "name": "A-1 Family Dental Care", + "address": "8001 Roosevelt Blvd, Ste 503", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0563121, + "longitude": -75.0453189, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Dentists, General Dentistry, Health & Medical", + "hours": null + }, + { + "business_id": "oTHZ62gNeAmdci7QOii_pA", + "name": "Escape Away Day Spa", + "address": "13050 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.125435, + "longitude": -75.015082, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Beauty & Spas, Day Spas, Skin Care, Massage", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "npw3D_brtWFXlMASPBEzHQ", + "name": "Northeast High School", + "address": "1601 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0558164626, + "longitude": -75.0701798745, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Middle Schools & High Schools, Education", + "hours": null + }, + { + "business_id": "LMwidP7zstUZz_u6yRcVFQ", + "name": "Payless Car Rental", + "address": "2075 Byberry Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1085216, + "longitude": -75.0004377, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Car Rental", + "hours": null + }, + { + "business_id": "gJLJgXz_1pjnDuHfuni1jA", + "name": "Starbucks", + "address": "3340 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.004383, + "longitude": -75.15253, + "stars": 2.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0" + } + }, + { + "business_id": "Ha5YbtGAAR_CZx4MChu3sA", + "name": "Philadelphia Boat Supply", + "address": "8900 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0425628, + "longitude": -75.001693, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Boating, Automotive, Local Services, Shopping, Self Storage, Boat Dealers, Home & Garden, Boat Repair, Boat Parts & Supplies, Professional Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "k4_m-ss0f01TTX41WStUqg", + "name": "The Witch", + "address": "1401 E Moyamensing Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9303951, + "longitude": -75.1495562, + "stars": 3.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False" + }, + "categories": "Restaurants, Breakfast & Brunch, American (New)", + "hours": null + }, + { + "business_id": "43BhZZJqMC32hv9xE7d0CQ", + "name": "Holtzman Tax Service", + "address": "2001 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9673674, + "longitude": -75.17027, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Tax Services, Insurance, Accountants, Professional Services", + "hours": { + "Monday": "9:0-18:45", + "Tuesday": "9:0-18:45", + "Wednesday": "9:0-18:45", + "Thursday": "9:0-18:45", + "Friday": "9:0-18:45" + } + }, + { + "business_id": "GoYSJ-YY-YwbxdgasHuq-Q", + "name": "Mixto", + "address": "1141 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.945195, + "longitude": -75.161082, + "stars": 4.0, + "review_count": 1246, + "is_open": 1, + "attributes": { + "HasTV": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BYOBCorkage": "'no'", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "BikeParking": "False", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': None, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Latin American, Argentine, Restaurants, Breakfast & Brunch, Italian, Cuban, Caribbean", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "11:0-17:0", + "Thursday": "16:0-21:30", + "Friday": "16:0-21:45", + "Saturday": "10:0-21:45", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "Dp52q5mxImbYwVi7Q2yKDw", + "name": "Craig's Collision Center", + "address": "4925 Van Kirk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0135558, + "longitude": -75.0580802, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Body Shops", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "dEZ1cuy89qDfFjy12tJ-Ng", + "name": "The Bone Appetite", + "address": "8517 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0764668, + "longitude": -75.2067639, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": null, + "categories": "Pet Services, Pet Stores, Pets", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "9:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "CFxs7aHPs60lgQmSvAkmPA", + "name": "Philadelphia Dentistry", + "address": "1601 Walnut St, Ste 1302, Medical Arts Building", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 4.0, + "review_count": 234, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Health & Medical, General Dentistry, Pediatric Dentists, Cosmetic Dentists, Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-13:0" + } + }, + { + "business_id": "ELJABLYAI-bM8wYk5uSZBg", + "name": "Melino's Market", + "address": "1501 Ellsworth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9371378, + "longitude": -75.1687999, + "stars": 4.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "d9T1Jgf4N2vY3dcMlnCgeA", + "name": "Philadelphia Airport Marriott", + "address": "One Arrivals Road, Terminal B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.877788, + "longitude": -75.244411, + "stars": 3.0, + "review_count": 176, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Hotels, Hotels & Travel, Event Planning & Services, Venues & Event Spaces", + "hours": { + "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" + } + }, + { + "business_id": "UUd81cZe5bpyFLwnYIZ6MA", + "name": "Omoi Zakka Shop", + "address": "41 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94905, + "longitude": -75.14582, + "stars": 4.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "WiFi": "u'no'", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home Decor, Home & Garden, Art Galleries, Event Planning & Services, Men's Clothing, Shopping, Fashion, Accessories, Flowers & Gifts, Cards & Stationery, Toy Stores, Arts & Entertainment, Arts & Crafts, Women's Clothing", + "hours": { + "Monday": "0:0-0: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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "lMo-DYKFYipOhTwYYQ4fXw", + "name": "Eternity Fashion", + "address": "1410 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9506369, + "longitude": -75.1645933, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False" + }, + "categories": "Fashion, Shopping, Leather Goods, Women's Clothing, Shoe Stores", + "hours": { + "Monday": "9:30-20:0", + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-20:0", + "Saturday": "9:30-20:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "IniyEQNtws9g8Ts66-fatQ", + "name": "Oath Pizza", + "address": "1308 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707238, + "longitude": -75.1577388, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Vegan, Pizza, Salad, Restaurants", + "hours": { + "Monday": "16:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "12:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "SSoN6EHMxzrdQfwf9T74jw", + "name": "The Tavern Restaurant", + "address": "243 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473333, + "longitude": -75.1616774, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForDancing": "False", + "HasTV": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "HappyHour": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Nightlife, American (Traditional), Bars, Burgers, Cocktail Bars, American (New)", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "8-A_4Jp2-NHKvjLcPE8HVA", + "name": "United States Postal Service Land Title Station", + "address": "123 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19109", + "latitude": 39.9498227, + "longitude": -75.1638251, + "stars": 3.0, + "review_count": 28, + "is_open": 1, + "attributes": null, + "categories": "Public Services & Government, Post Offices", + "hours": null + }, + { + "business_id": "FNQfc2Ih5bSKnmRcsHTcKw", + "name": "Global Crepes & Local Shakes", + "address": "1309 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9327294207, + "longitude": -75.1590674903, + "stars": 4.5, + "review_count": 71, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "Caters": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}" + }, + "categories": "Coffee & Tea, Food, Creperies, Restaurants, Breakfast & Brunch, Cafes", + "hours": { + "Monday": "11:0-17:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "6tF6rdyOEm4EE3AGJ2zFWw", + "name": "Serenity Nail Salon", + "address": "413 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9450698, + "longitude": -75.1649581, + "stars": 4.0, + "review_count": 82, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'" + }, + "categories": "Massage, Beauty & Spas, Waxing, Eyelash Service, Hair Removal, Nail Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:30", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "3ut1fzbMfQ1VhFvHpeLOMw", + "name": "Mei Mei Philadelphia", + "address": "33 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949015, + "longitude": -75.143818, + "stars": 4.0, + "review_count": 66, + "is_open": 1, + "attributes": { + "CoatCheck": "True", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "Smoking": "u'outdoor'", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True" + }, + "categories": "Taiwanese, Nightlife, Bars, Asian Fusion, Restaurants", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-0:0", + "Saturday": "16:0-0:0" + } + }, + { + "business_id": "CT2QgcDyqc5EmJ4HT18uSQ", + "name": "Roxy Theatre", + "address": "2023 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514956232, + "longitude": -75.1745702625, + "stars": 3.5, + "review_count": 62, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": { + "Monday": "12:0-23:0", + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "kQsIMjPfcleugX1rESDdOQ", + "name": "The Piano Bar", + "address": "1939 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556973, + "longitude": -75.1726199, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "OutdoorSeating": "False" + }, + "categories": "Music Venues, Arts & Entertainment, Bars, Nightlife", + "hours": null + }, + { + "business_id": "MLJPwU3m5ROXySNumU9j7Q", + "name": "Joseph's Tailor Shop", + "address": "143 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506219, + "longitude": -75.1736726, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Sewing & Alterations", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "vsdYVJC_1FU7yGrKVpYQyQ", + "name": "Chick-fil-A", + "address": "4670 Roosevelt Blvd NE, Northeast Tower Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0290057, + "longitude": -75.0996805, + "stars": 3.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': None, u'validated': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Fast Food, Restaurants, Chicken Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-18:0" + } + }, + { + "business_id": "X1AeBeua7lzXCqxnLpq17g", + "name": "11th Street Auto Repair", + "address": "820-22 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9396065788, + "longitude": -75.1613953668, + "stars": 4.5, + "review_count": 205, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Smog Check Stations, Automotive, Auto Repair", + "hours": { + "Monday": "6:30-17:0", + "Tuesday": "6:30-17:0", + "Wednesday": "6:30-17:0", + "Thursday": "6:30-17:0", + "Friday": "6:30-17:0" + } + }, + { + "business_id": "eEquyJ-Iy8yYjxvAunHW7A", + "name": "Just Great Frozen Yogurt", + "address": "112 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949541, + "longitude": -75.142784, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "BikeParking": "False" + }, + "categories": "Food, Ice Cream & Frozen Yogurt, Coffee & Tea, Bubble Tea", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "h_rcMQtglIiAs-Oc5d8Ozw", + "name": "Old City Coffee", + "address": "1136 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531371442, + "longitude": -75.1592822517, + "stars": 3.5, + "review_count": 221, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food, Coffee Roasteries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "o7_9bx3j9aJpSiEJFP_trw", + "name": "Sunflower Nails Spa", + "address": "9227 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0552650844, + "longitude": -75.0036855787, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-18:0" + } + }, + { + "business_id": "36Ir9P6IBsmPx8YaPHFeQg", + "name": "Rita's Italian Ice", + "address": "5420 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0224225, + "longitude": -75.209002, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Desserts, Food, Ice Cream & Frozen Yogurt, Shaved Ice", + "hours": null + }, + { + "business_id": "26T1l_bH8dUg1TNqsjJuEg", + "name": "Pizza Fanatic", + "address": "1000 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9836459, + "longitude": -75.1498377, + "stars": 1.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "0wlZLeOAxvxqRrpRlo6PpQ", + "name": "Nightmare Before Tinsel", + "address": "116 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497935036, + "longitude": -75.160552, + "stars": 4.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}" + }, + "categories": "Restaurants, Pop-Up Restaurants, Nightlife, Bars", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "14:0-23:0", + "Sunday": "14:0-23:0" + } + }, + { + "business_id": "dmyPzMRNgTIOBRT11NFcvg", + "name": "Starbucks", + "address": "1128 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.949016, + "longitude": -75.16065, + "stars": 4.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': None, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Food, Coffee & Tea, Bakeries, Fast Food", + "hours": { + "Monday": "5:30-21:0", + "Tuesday": "5:30-21:0", + "Wednesday": "5:30-21:0", + "Thursday": "5:30-21:0", + "Friday": "5:30-21:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-20:30" + } + }, + { + "business_id": "PfQwlQLn4COxZvD9nU6DCw", + "name": "Shouk Lounge", + "address": "622 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413202, + "longitude": -75.1525027, + "stars": 3.5, + "review_count": 25, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True" + }, + "categories": "Bars, Restaurants, Nightlife, Mediterranean, Hookah Bars, Greek", + "hours": { + "Tuesday": "18:0-0:0", + "Wednesday": "18:0-1:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-0:0" + } + }, + { + "business_id": "YrHkfX3Rngx4ZTR04wb9bA", + "name": "Admirals Club", + "address": "8500 Essington Ave, Terminal B/C 1 Arrivals Rd, Fl 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8756481316, + "longitude": -75.2439095825, + "stars": 3.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BikeParking": "False", + "HappyHour": "False", + "RestaurantsPriceRange2": "3", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': None, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "GoodForDancing": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': None, 'classy': None, 'casual': None}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Airports, Travel Services, Hotels & Travel, Airport Lounges, Nightlife, Bars", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0", + "Saturday": "5:0-17:45", + "Sunday": "5:0-19:0" + } + }, + { + "business_id": "pPSyVQy_DtiWk9_K1y797g", + "name": "Rita's Italian Ice", + "address": "2200 S Broad St At Jackson", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9230716, + "longitude": -75.1703389, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'no'", + "RestaurantsTakeOut": "True" + }, + "categories": "Shaved Ice, Ice Cream & Frozen Yogurt, Desserts, Food", + "hours": null + }, + { + "business_id": "_kYZkAEEPAXleFI7_A9TzA", + "name": "Little White Dog Doggie Daycare", + "address": "90 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0160975, + "longitude": -75.2075659, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pet Boarding, Pet Groomers, Pet Training, Pets, Pet Services, Pet Sitting", + "hours": { + "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": "8:30-17:30" + } + }, + { + "business_id": "Slcy2eFMS3cwwAfZls71bg", + "name": "Little Caesars Pizza", + "address": "3250 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0803629, + "longitude": -74.9930674, + "stars": 2.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsDelivery": "None", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False" + }, + "categories": "Food Delivery Services, Pizza, Food, Restaurants", + "hours": null + }, + { + "business_id": "dL8WVYwZnU-JSRw3bv0cZg", + "name": "Advanced Family Smiles - Philadelphia Dentist", + "address": "10501 Academy Rd, Ste A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.080218648, + "longitude": -74.9963620688, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Endodontists, General Dentistry, Dentists, Cosmetic Dentists, Health & Medical", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "19aqkl42CAi2V0vH8UJSfg", + "name": "Hope's Cookies", + "address": "12TH And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 40.025021, + "longitude": -75.325, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Restaurants, Bakeries", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "OVBvIiuTxlMy_Ue-U2JObg", + "name": "Little Man's Juice Bar and Grill", + "address": "4218 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.039759108, + "longitude": -75.0292318234, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Juice Bars & Smoothies, Vegan, Restaurants, Acai Bowls", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "R2oX1nmrHZ-2x9Dap_5VcQ", + "name": "Mount Airy Violins & Bows", + "address": "6665 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0512024, + "longitude": -75.1848272, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Musical Instruments & Teachers", + "hours": { + "Tuesday": "13:0-18:0", + "Wednesday": "13:0-18:0", + "Thursday": "13:0-18:0", + "Friday": "13:0-18:0", + "Saturday": "13:0-18:0" + } + }, + { + "business_id": "7VEWhpizNhESOIApBAhnlw", + "name": "Northern Liberty Tattoo", + "address": "823 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9635503, + "longitude": -75.1405144, + "stars": 4.0, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Arts & Entertainment, Art Galleries, Shopping, Beauty & Spas, Tattoo", + "hours": { + "Monday": "12:0-21:0", + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "0WazipZOwJa63JGwOMubBg", + "name": "The Indian Grill", + "address": "114 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948182, + "longitude": -75.1431548, + "stars": 4.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "Gluten-Free, Vegetarian, Restaurants, Indian", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "11:30-22:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "Lv1sMLqeXVn0CaZLIrewlw", + "name": "Deneen Marcel Lashes", + "address": "525 S 4th St, Ste 370", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941967, + "longitude": -75.149034, + "stars": 4.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Eyelash Service", + "hours": { + "Monday": "10:0-14:0", + "Tuesday": "10:0-14:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "A4fbwssaFFh60rNYjKGzag", + "name": "Fabrika Fishtown", + "address": "1108 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.967315, + "longitude": -75.134545, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BYOB": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "None", + "RestaurantsPriceRange2": "3", + "RestaurantsReservations": "True", + "Corkage": "False", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "None", + "HasTV": "False", + "BikeParking": "True", + "OutdoorSeating": "True", + "Caters": "True" + }, + "categories": "Dinner Theater, Modern European, Restaurants", + "hours": null + }, + { + "business_id": "1KYspvONE-f1RBIQlpunXw", + "name": "Benny's Place", + "address": "435 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489355, + "longitude": -75.148167, + "stars": 3.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Diners", + "hours": null + }, + { + "business_id": "GUY8jHP3eUSuPTDh_kjBzw", + "name": "Ortlieb's Jazzhaus", + "address": "847 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9644992, + "longitude": -75.142262, + "stars": 4.0, + "review_count": 43, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False" + }, + "categories": "Jazz & Blues, Nightlife, Arts & Entertainment", + "hours": { + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "ExD3yBY3iJQ0zs-0BhGwIg", + "name": "Love Vape", + "address": "608 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415856838, + "longitude": -75.1508620754, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True" + }, + "categories": "Vape Shops, Fashion, Tobacco Shops, Electronics, Shopping", + "hours": { + "Monday": "11:0-21:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "P3bw4h4kCaMaYqGGNLt3Jg", + "name": "The Mission Grill", + "address": "1835 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9556081938, + "longitude": -75.1708622313, + "stars": 3.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Caters": "False", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "HappyHour": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:30-23:0", + "Tuesday": "11:30-23:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-23:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0" + } + }, + { + "business_id": "ejGvT928AVjXPb84T8hmXQ", + "name": "4 Sons Pizzeria", + "address": "3145 Kensinton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9957284, + "longitude": -75.1144248, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "Caters": "False", + "BYOB": "False", + "HasTV": "True", + "NoiseLevel": "'average'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Sandwiches, Restaurants, Pizza, Salad, Cheesesteaks", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "FKcvOjndFdq7-Dy4M-mrKQ", + "name": "Glam Natural Hair by Aronda Denise", + "address": "5200 Gainor Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9895428993, + "longitude": -75.2290902611, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "z4sNgoL5QRElS1JwAFewWw", + "name": "Philly Kids Gym", + "address": "610 S Percy St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.942313, + "longitude": -75.1578059, + "stars": 2.5, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Education, Preschools, Local Services, Gyms, Fitness & Instruction, Child Care & Day Care", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "5OoFsXfKgASrN_bMVTpxMA", + "name": "Voix", + "address": "2825 Cottman Ave, Unit 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0437752, + "longitude": -75.052381, + "stars": 3.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "CoatCheck": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': None, 'video': False, 'karaoke': None}", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTableService": "True", + "BYOB": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "RestaurantsGoodForGroups": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': True}", + "RestaurantsTakeOut": "True", + "GoodForDancing": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True" + }, + "categories": "Sushi Bars, Restaurants, Asian Fusion, Nightlife, Lounges, Japanese, Bars, Karaoke", + "hours": { + "Monday": "14:0-0:0", + "Tuesday": "14:0-0:0", + "Wednesday": "14:0-0:0", + "Thursday": "14:0-0:0", + "Friday": "14:0-0:0", + "Saturday": "14:0-0:0", + "Sunday": "14:0-0:0" + } + }, + { + "business_id": "E8BoWn9q87ztDAt5zJgiPg", + "name": "Millcreek Tavern", + "address": "4200 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9482447, + "longitude": -75.2072988, + "stars": 3.0, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Pubs, Music Venues, Arts & Entertainment, Bars, Nightlife", + "hours": { + "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" + } + }, + { + "business_id": "w11Otihc6hePFT37pPc8Cg", + "name": "Parkway House Apts", + "address": "2201 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9639216, + "longitude": -75.1751039, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": null + }, + { + "business_id": "6w3M1agy0CI3H6Zsux7AbA", + "name": "Creative Business Accounting & Tax Service", + "address": "818 South St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940813, + "longitude": -75.1515019, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Payroll Services, Accountants, Professional Services, Notaries, Tax Services, Financial Services, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "uoM0gzCHgeUkHabDyYMY8Q", + "name": "Wells Fargo Bank", + "address": "1712 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.949718, + "longitude": -75.169851, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "9:30-16:0", + "Tuesday": "9:30-16:0", + "Wednesday": "9:30-16:0", + "Thursday": "9:30-16:0", + "Friday": "9:30-16:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "tuBPp6lhttLhCPZ8zHh-og", + "name": "Crisp", + "address": "32 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952108, + "longitude": -75.170477, + "stars": 3.5, + "review_count": 39, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "Caters": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Event Planning & Services, Vegetarian, Caterers, Middle Eastern, Mediterranean, Restaurants", + "hours": { + "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": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "7Z2Xr8yowbTILokoXQGU0w", + "name": "Cup Grinders", + "address": "1703 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0863871, + "longitude": -75.0378898, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Coffee & Tea, Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "4rG4tJF2EC2CfYvBu_uqpQ", + "name": "Cry Baby Pasta", + "address": "627 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406127199, + "longitude": -75.1475720108, + "stars": 3.5, + "review_count": 198, + "is_open": 1, + "attributes": { + "CoatCheck": "False", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "False", + "Smoking": "u'no'", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForDancing": "False", + "Caters": "False", + "HappyHour": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': None, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Music": "{u'dj': False, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Wine Bars, Bars, Nightlife, Restaurants, Italian", + "hours": { + "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" + } + }, + { + "business_id": "OMieiNtpV9INei8voiGMqw", + "name": "Fort Mifflin", + "address": "6400 Hog Island Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8753247, + "longitude": -75.213082, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": null, + "categories": "Landmarks & Historical Buildings, Public Services & Government", + "hours": { + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "ZewrmVIdr77Kinj-njv6RQ", + "name": "Insomnia Cookies", + "address": "108 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.950845, + "longitude": -75.167422, + "stars": 4.0, + "review_count": 457, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Bakeries, Food Delivery Services, Desserts", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "CWoOZKfVFh_lVaOPhKj9tw", + "name": "V's Barbershop - Old City Philadelphia", + "address": "58 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514574, + "longitude": -75.1436451, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'" + }, + "categories": "Men's Hair Salons, Beauty & Spas, Barbers, Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "THX24QYkOFtbgEKERo3Lzw", + "name": "Au Naturale", + "address": "501 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0418867, + "longitude": -75.1688455, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "aQ3c9DAQ4HYTRxzEqELpVg", + "name": "Good Food Flats", + "address": "4030 Baring St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9601079, + "longitude": -75.2032578, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Apartments, Real Estate, University Housing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0" + } + }, + { + "business_id": "ijIeHwnXzYW0DWAO3KLDFw", + "name": "Nara Japanese Restaurant", + "address": "4002 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.951523, + "longitude": -75.2032843, + "stars": 2.5, + "review_count": 24, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'very_loud'", + "RestaurantsReservations": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "False", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Japanese, Restaurants", + "hours": { + "Monday": "17:0-21:30", + "Tuesday": "17:0-21:30", + "Wednesday": "17:0-21:30", + "Thursday": "17:0-21:30", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "ytynqOUb3hjKeJfRj5Tshw", + "name": "Reading Terminal Market", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533414645, + "longitude": -75.1588545174, + "stars": 4.5, + "review_count": 5721, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "'beer_and_wine'", + "NoiseLevel": "u'loud'", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BYOBCorkage": "'yes_free'", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': False}", + "Ambience": "{'touristy': True, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Caters": "False", + "WiFi": "u'no'", + "HasTV": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Candy Stores, Shopping, Department Stores, Fast Food, Beer, Wine & Spirits, Fruits & Veggies, Chinese, Food, Ice Cream & Frozen Yogurt, Desserts, Seafood, Health Markets, Bagels, Cheese Shops, Shopping Centers, Chocolatiers & Shops, Meat Shops, Public Markets, Food Court, Wineries, Local Flavor, Ethnic Food, Restaurants, Specialty Food, Arts & Entertainment, Juice Bars & Smoothies, Seafood Markets, Farmers Market, Coffee & Tea, Bakeries, Food Stands, Dinner Theater, Sporting Goods, Grocery, Fashion", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "SOsjW1JARmtHUFtpFlp8rw", + "name": "Snap Custom Pizza - Center City", + "address": "1504 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502972, + "longitude": -75.1661556, + "stars": 4.0, + "review_count": 271, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "Caters": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "8j5bQ0nDwoGiFaTQDNCQTg", + "name": "Jack's Place", + "address": "7167 Hegerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0281895, + "longitude": -75.0358106, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'none'", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "HasTV": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "WheelchairAccessible": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants, Salad, Cheesesteaks", + "hours": { + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "benTAK8255VkJu14ZxVtDQ", + "name": "Sate Kampar", + "address": "1837 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9269086, + "longitude": -75.166608, + "stars": 4.0, + "review_count": 270, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'", + "HappyHour": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "HasTV": "False", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Malaysian", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "-_0w82rV27l51N3ABkCI0A", + "name": "Prima Pizza Taqueria Mexicana", + "address": "1104 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936093, + "longitude": -75.1586309, + "stars": 4.5, + "review_count": 126, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "Alcohol": "'none'", + "GoodForKids": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Pizza, Mexican, Restaurants", + "hours": { + "Monday": "12:0-4:0", + "Tuesday": "12:0-1:0", + "Wednesday": "12:0-1:0", + "Thursday": "12:0-1:0", + "Friday": "12:0-3:0", + "Saturday": "12:0-3:0", + "Sunday": "21:0-4:0" + } + }, + { + "business_id": "BQBhwjeZa19jHSVjoHsVXw", + "name": "The Yoga and Movement Sanctuary", + "address": "2623 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9742502144, + "longitude": -75.179787688, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Active Life, Yoga, Martial Arts, Fitness & Instruction", + "hours": { + "Monday": "6:30-21:30", + "Tuesday": "6:30-21:30", + "Wednesday": "6:30-21:30", + "Thursday": "6:30-21:30", + "Friday": "6:30-21:30", + "Saturday": "8:0-13:30", + "Sunday": "8:0-13:30" + } + }, + { + "business_id": "myQJP8ZziqXDgQBpfqoTvQ", + "name": "CVS Pharmacy", + "address": "4314 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535455315, + "longitude": -75.2097082559, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "DriveThru": "True", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Drugstores, Pharmacy, Health & Medical, Convenience Stores, Food, Shopping", + "hours": { + "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" + } + }, + { + "business_id": "lNxwIwzCFd3BsxrEqafLwA", + "name": "11th Street Family Health Services", + "address": "850 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967964, + "longitude": -75.155007, + "stars": 3.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Medical Centers, Dentists, Family Practice, Health & Medical, Doctors, Physical Therapy", + "hours": null + }, + { + "business_id": "X0-paC0CaIY5yTZUHOU4IQ", + "name": "Heart + Paw", + "address": "1111 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951124, + "longitude": -75.159003, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Veterinarians, Pet Groomers, Pet Services, Pets", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "YtKb_4jugA6VQaTxtQv5nA", + "name": "Cakes By Kharis", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9691106811, + "longitude": -75.136625811, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "WiFi": "'free'", + "NoiseLevel": "'quiet'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Restaurants, Hookah Bars, Bakeries, Nightlife, Breakfast & Brunch, Bars, Food, Cafes", + "hours": null + }, + { + "business_id": "WCH833DCRcTuzU_J-5JRxA", + "name": "Hunk-O-Mania Male Strip Club", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9556241, + "longitude": -75.1647529, + "stars": 3.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'very_loud'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Adult Entertainment, Nightlife", + "hours": { + "Monday": "9:0-23:45", + "Tuesday": "9:0-23:45", + "Wednesday": "9:0-23:30", + "Thursday": "9:0-23:30", + "Friday": "9:0-23:30", + "Saturday": "9:0-23:30", + "Sunday": "9:0-23:30" + } + }, + { + "business_id": "NtJU9h4fDhe_fSoE1Gibbg", + "name": "Bravo Pizza II", + "address": "1323 Lindley Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0304136, + "longitude": -75.1456061, + "stars": 2.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Italian, Restaurants", + "hours": null + }, + { + "business_id": "-TdNv5o5J2JjTmIuAbIWzw", + "name": "East Falls Family Dentistry", + "address": "3722-3724 Midvale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0092812, + "longitude": -75.193425, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "General Dentistry, Dentists, Health & Medical", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0" + } + }, + { + "business_id": "QMPyu1S5yzQrXQxAk_s0zg", + "name": "Retro Fitness", + "address": "1500 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9626584827, + "longitude": -75.1646166869, + "stars": 4.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "DogsAllowed": "False" + }, + "categories": "Active Life, Fitness & Instruction, Trainers, Gyms", + "hours": { + "Monday": "5:0-23:0", + "Tuesday": "5:0-23:0", + "Wednesday": "5:0-23:0", + "Thursday": "5:0-23:0", + "Friday": "5:0-17:0", + "Saturday": "7:0-12:0", + "Sunday": "7:0-19:0" + } + }, + { + "business_id": "t8xJ1hwM41vYwe7LxIyqaw", + "name": "Sally", + "address": "2229 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9488774598, + "longitude": -75.1788794249, + "stars": 4.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "Caters": "False", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsReservations": "True", + "ByAppointmentOnly": "False", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "RestaurantsTakeOut": "False" + }, + "categories": "Wine Bars, Pizza, Nightlife, Tapas/Small Plates, Bars, Beverage Store, Food, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "K1PVi_o6gMkuASnnFR9hWw", + "name": "Good Day Deli", + "address": "37 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9524039, + "longitude": -75.173278, + "stars": 4.0, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "GoodForKids": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": { + "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": "8:0-16:0" + } + }, + { + "business_id": "AcYIHFnobT3yT6bSZg2UgA", + "name": "ACME Markets", + "address": "1400 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9323010443, + "longitude": -75.1622973459, + "stars": 2.5, + "review_count": 89, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'" + }, + "categories": "Grocery, Fashion, Food, Shopping, Department Stores, Drugstores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "0XFmfcyzFXS9NsW12Ycpzg", + "name": "Signatures Du Mei", + "address": "112 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9686954, + "longitude": -75.1366511, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Hair Stylists, Hair Salons, Beauty & Spas, Makeup Artists", + "hours": null + }, + { + "business_id": "XsfuqDqw9eOaQ_2FCv5MuQ", + "name": "Masala Kitchen Kati Rolls and Platters", + "address": "1115 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9491761, + "longitude": -75.159714, + "stars": 4.0, + "review_count": 361, + "is_open": 1, + "attributes": { + "Smoking": "u'no'", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "GoodForKids": "True", + "GoodForDancing": "False", + "Alcohol": "u'none'", + "BikeParking": "True", + "DogsAllowed": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "'average'", + "DriveThru": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "Music": "{'dj': False}", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "HappyHour": "False" + }, + "categories": "Halal, Restaurants, Indian, Fast Food, Nightlife", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "65sPpkVbRSYS0droEoRavw", + "name": "Rita's Italian Ice", + "address": "499 Domino Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.04536, + "longitude": -75.2327223, + "stars": 4.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "'no'", + "DogsAllowed": "None", + "Caters": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Shaved Ice, Desserts", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "ZcyU_eLX6XvlMG7fumzKoQ", + "name": "Mayer's Car Care", + "address": "3301 Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0477673, + "longitude": -75.0258613, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Auto Repair, Automotive, Transmission Repair, Oil Change Stations", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "tFNSLWl2Tcaf0tkeu48JSA", + "name": "Konditori", + "address": "115 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9511917, + "longitude": -75.1703574, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BikeParking": "True" + }, + "categories": "Juice Bars & Smoothies, Coffee & Tea, Food, Bagels", + "hours": { + "Monday": "6:30-19:0", + "Tuesday": "6:30-19:0", + "Wednesday": "6:30-19:0", + "Thursday": "6:30-19:0", + "Friday": "6:30-19:0", + "Saturday": "6:30-18:0", + "Sunday": "6:30-18:0" + } + }, + { + "business_id": "JR8xod3kSAhG6ZSGZle-9g", + "name": "Planet Fitness", + "address": "6410 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0292584964, + "longitude": -75.0576806393, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Active Life, Trainers, Gyms, Fitness & Instruction", + "hours": { + "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" + } + }, + { + "business_id": "hZJoD4qGn01l3ErVUIwyeQ", + "name": "Methodist Hospital - Jefferson Health", + "address": "2301 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9214613, + "longitude": -75.1695865, + "stars": 3.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "WiFi": "u'free'" + }, + "categories": "Hospitals, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "-qIAPgwbbiIWk7gOkqXgOA", + "name": "Walkies", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9665611, + "longitude": -75.1399899, + "stars": 5.0, + "review_count": 27, + "is_open": 1, + "attributes": null, + "categories": "Pets, Dog Walkers, Pet Services, Pet Sitting", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "U4m0wYkafqvs7vf7Q5Liwg", + "name": "Wireless Phildelphia - Earthlink Municipal Wifi", + "address": "121 S 13th St, Fl 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497245, + "longitude": -75.1617158, + "stars": 1.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "IT Services & Computer Repair, Local Services", + "hours": null + }, + { + "business_id": "oiu5rHUNk2C0e0nkRzAwcw", + "name": "Peter Cona Ignition Service", + "address": "2025 S Juniper St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9248396, + "longitude": -75.1680817, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "7y1zIK1ZtkkGIKeRUobThg", + "name": "Gallo's Seafood", + "address": "8101 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0577429, + "longitude": -75.0446413, + "stars": 3.5, + "review_count": 178, + "is_open": 1, + "attributes": { + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "BYOBCorkage": "'no'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "'average'", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False" + }, + "categories": "Seafood, Bars, American (Traditional), Nightlife, Restaurants", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-20:30" + } + }, + { + "business_id": "UaNyROLmXS4w8JIW-6Vlbg", + "name": "The Philly Game Shop", + "address": "519 S 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9421966, + "longitude": -75.1505021, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None", + "WheelchairAccessible": "True" + }, + "categories": "Hobby Shops, Toy Stores, Shopping, Tabletop Games", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-21:0", + "Wednesday": "15:0-21:0", + "Thursday": "15:0-21:0", + "Friday": "15:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "cCLINaXaTfB1grCOBfnY1Q", + "name": "Dunkin'", + "address": "4268 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0095951, + "longitude": -75.196321, + "stars": 3.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "DriveThru": "None", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Donuts, Coffee & Tea, Bagels, Food", + "hours": { + "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" + } + }, + { + "business_id": "AdUcitpXQXZiJ3wA82RrlQ", + "name": "Madira Bar & Grill", + "address": "1252 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.935974, + "longitude": -75.17918, + "stars": 4.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "GoodForKids": "False", + "Caters": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "GoodForDancing": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "NoiseLevel": "u'average'", + "HasTV": "True", + "RestaurantsDelivery": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "Alcohol": "u'full_bar'", + "Smoking": "u'no'" + }, + "categories": "Indian, Beer, Wine & Spirits, Pubs, American (Traditional), Restaurants, Food, Nightlife, Bars", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "jkGQQ4_LgJx3hwPtCFkzbQ", + "name": "Max Brenner - Philadelphia", + "address": "1500 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9491000076, + "longitude": -75.1661748827, + "stars": 3.5, + "review_count": 1358, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "WiFi": "'free'", + "Caters": "False", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "False", + "DogsAllowed": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsDelivery": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "American (Traditional), Restaurants, Desserts, Food, Chocolatiers & Shops, American (New), Specialty Food, Breakfast & Brunch", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "14:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "LUrHWJLYXObeFPLKsoN05g", + "name": "Leda & The Swan", + "address": "1224 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950367, + "longitude": -75.1614923403, + "stars": 4.0, + "review_count": 33, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "CoatCheck": "False", + "WheelchairAccessible": "True", + "Smoking": "u'outdoor'", + "BYOB": "False", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': True, u'upscale': None}", + "ByAppointmentOnly": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BestNights": "{u'monday': False, u'tuesday': False, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "BikeParking": "True" + }, + "categories": "Event Planning & Services, Arts & Entertainment, Lounges, Venues & Event Spaces, Music Venues, Cocktail Bars, Nightlife, Bars", + "hours": { + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0" + } + }, + { + "business_id": "-1B9pP_CrRBJYPICE5WbRA", + "name": "Spice 28", + "address": "1228 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950352, + "longitude": -75.1615829, + "stars": 4.0, + "review_count": 822, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "OutdoorSeating": "False", + "HappyHour": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Asian Fusion, Restaurants, American (New), Thai, Szechuan, Chinese", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "iPyhEN7uBsRYQdDDs36f2w", + "name": "Twisted Gingers Brewing Company", + "address": "4317 Fleming St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0274932, + "longitude": -75.218518, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Pizza, Restaurants, Breweries, Brewpubs", + "hours": { + "Monday": "16:0-20:30", + "Wednesday": "16:0-20:30", + "Thursday": "16:0-20:30", + "Friday": "16:0-21:30", + "Saturday": "12:0-21:30", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "U6Fq-uk9TM5OeiHzg7t6AA", + "name": "Chaat and Chai", + "address": "111 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497563, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 21, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Food Stands, Indian, Restaurants", + "hours": { + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-16:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "1Q9kJXg3CzZQVFNGv8swlA", + "name": "Discover Travel", + "address": "230 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9561755, + "longitude": -75.1544583, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Travel Services", + "hours": { + "Monday": "9:0-16:0", + "Tuesday": "9:0-16:0", + "Wednesday": "9:0-16:0", + "Thursday": "9:0-16:0", + "Friday": "9:0-16:0" + } + }, + { + "business_id": "qATSs3f4s2x_Ec8qm-xjjw", + "name": "Calle Del Sabor", + "address": "34 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968711, + "longitude": -75.135957, + "stars": 4.5, + "review_count": 73, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "BikeParking": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Food Trucks, Food, Latin American, Restaurants, Caterers, Event Planning & Services, Caribbean", + "hours": { + "Monday": "16:30-22:0", + "Tuesday": "12:30-22:0", + "Wednesday": "12:30-22:0", + "Thursday": "12:30-22:0", + "Friday": "13:0-23:0", + "Saturday": "13:0-23:0" + } + }, + { + "business_id": "F7fC4dZW17muSvE8ixaXkQ", + "name": "LeBus Bakery", + "address": "129 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506974, + "longitude": -75.1703606, + "stars": 4.0, + "review_count": 134, + "is_open": 0, + "attributes": { + "HasTV": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Bagels, Restaurants, Bakeries, Food, Sandwiches", + "hours": { + "Monday": "8:0-14: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" + } + }, + { + "business_id": "g-1nawzL7_5Lvmi6NuAaFw", + "name": "Sears Outlet", + "address": "1357 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0854645, + "longitude": -74.9637234, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Shopping, Appliances & Repair, Appliances, Local Services, Mattresses, Home & Garden, Furniture Stores, Outlet Stores", + "hours": { + "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-19:0" + } + }, + { + "business_id": "cMSPldkfDC_nxxloW3FQxQ", + "name": "You Dirty Dog DIY Dog Wash", + "address": "926 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9658183, + "longitude": -75.1425479, + "stars": 4.5, + "review_count": 27, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Services, Pet Groomers", + "hours": null + }, + { + "business_id": "XQjnh-n0o11MhApzCfRPxg", + "name": "KFC", + "address": "5700 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9461148326, + "longitude": -75.2375532744, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "Caters": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "Ambience": "None", + "BusinessParking": "None", + "RestaurantsTakeOut": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fast Food, Chicken Wings, Restaurants, Chicken Shop", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-23:0", + "Saturday": "10:30-23:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "1BEXYIqtRq6lZAdfzqicfg", + "name": "Nafeesa Unique Bites", + "address": "8th & Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19019", + "latitude": 39.9834805, + "longitude": -75.1471324, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True" + }, + "categories": "Food Trucks, Food, Restaurants, Chicken Wings, Wraps, Soul Food, Comfort Food", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "13:0-20:0", + "Saturday": "13:0-20:0" + } + }, + { + "business_id": "2HHPBg7WSC3czt7uUkXE8Q", + "name": "The Breakfast Club", + "address": "1424 Cecil B Moore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.978643, + "longitude": -75.1591569, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "Corkage": "False", + "HasTV": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "Bf65X7McIKtxAhehA8jfjQ", + "name": "River Wards Cafe", + "address": "3118 Richmond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.982199, + "longitude": -75.103423, + "stars": 5.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0" + } + }, + { + "business_id": "Uh83MtOIOgkVGpI39DSK2w", + "name": "Karrie Gavin - Elfant Wissahickon Realtors", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate Services, Real Estate Agents, Real Estate, Home Services", + "hours": { + "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" + } + }, + { + "business_id": "fG6Wg3yrjY5Wm7UL00y3fw", + "name": "Applebee's Grill + Bar", + "address": "9142 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.07662, + "longitude": -75.033565, + "stars": 2.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "Caters": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "NoiseLevel": "u'loud'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'free'", + "RestaurantsTableService": "True", + "Ambience": "{u'divey': None, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "BestNights": "{u'monday': False, u'tuesday': True, u'wednesday': False, u'thursday': False, u'friday': False, u'saturday': False, u'sunday': False}", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Burgers, Sandwiches, Restaurants, Chicken Wings, Bars, Salad, Nightlife, Sports Bars, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "XI1O5v5l4WcNkS-RH6o2KQ", + "name": "Linde Electric", + "address": "1248 Federal St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9351663, + "longitude": -75.1650426, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Electricians, Home Services", + "hours": { + "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-14:0" + } + }, + { + "business_id": "_3F4-hH5zhJJDTyvzNlDcg", + "name": "China Rainbow Restaurant", + "address": "7217 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0294625, + "longitude": -75.0360275, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Soup, Restaurants, Chinese, Seafood", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "VJjFHQJ08SR_Pl7Bk4o2xQ", + "name": "Helm", + "address": "1303 N Fifth St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.971548, + "longitude": -75.144505, + "stars": 4.5, + "review_count": 227, + "is_open": 1, + "attributes": { + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "True", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "WiFi": "'no'", + "GoodForKids": "False", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "American (New), Restaurants, Food", + "hours": { + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "gh_ymgpoa_AlJA5fey5eRA", + "name": "Phila-Deli Inc", + "address": "410 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9414866, + "longitude": -75.1497891, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Restaurants, Event Planning & Services, Caterers, Delis", + "hours": null + }, + { + "business_id": "Ls3zQR47_wmUkupJXm59oQ", + "name": "Sorrentino's Grocery", + "address": "4361 Cresson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0264607, + "longitude": -75.2238352, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "NoiseLevel": "'average'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "WiFi": "'no'", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True" + }, + "categories": "Food, Cheesesteaks, Grocery, Delis, Restaurants", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "8:0-23:0" + } + }, + { + "business_id": "7__20lI7RsC9J6C-DrTzFg", + "name": "El Balconcito II", + "address": "7326 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.052959, + "longitude": -75.064898, + "stars": 3.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Smoking": "u'no'", + "BikeParking": "False", + "CoatCheck": "False", + "GoodForDancing": "False", + "RestaurantsDelivery": "True", + "DogsAllowed": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "WheelchairAccessible": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Mexican, Portuguese, Cocktail Bars, Nightlife, Restaurants, Peruvian, Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "911Zlr47_jGbqa1KRs8xqg", + "name": "Good Good Comedy Theatre", + "address": "215 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9560382, + "longitude": -75.1571203, + "stars": 4.5, + "review_count": 66, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "True", + "HasTV": "False", + "Smoking": "u'no'", + "GoodForKids": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "WheelchairAccessible": "True", + "CoatCheck": "False", + "HappyHour": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "GoodForDancing": "False", + "OutdoorSeating": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'" + }, + "categories": "Performing Arts, Specialty Schools, Arts & Entertainment, Nightlife, Comedy Clubs, Education, Art Schools", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-23:30", + "Friday": "17:0-1:0", + "Saturday": "17:0-1:0", + "Sunday": "17:0-23:30" + } + }, + { + "business_id": "vWnnHbWZETzYwyaOxixlqA", + "name": "Sun William Z MD", + "address": "2031 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9497, + "longitude": -75.1752301, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Optometrists, Ophthalmologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "Npn4dowvl5xiJzVfKZEV3Q", + "name": "InstaTech Home Theaters", + "address": "1800 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509748023, + "longitude": -75.1708228803, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "3", + "BikeParking": "False" + }, + "categories": "Shopping, TV Mounting, Security Systems, Home Automation, Electronics, Home Theatre Installation, Electronics Repair, Electricians, Local Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "TKIEJYoHqcP4Rg9EhkrTsw", + "name": "Kellijane", + "address": "148 N Third St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.953556, + "longitude": -75.145161, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Home Services, Home Decor, Home & Garden, Interior Design", + "hours": { + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "5ysISW_Tc4YVg5VbM1-5Xg", + "name": "Papa John's Pizza", + "address": "3621 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9934378, + "longitude": -75.0952881, + "stars": 2.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "RSKvB-XntkiDnMqYqAmtKw", + "name": "Seafood Unlimited", + "address": "270 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9484043, + "longitude": -75.1744997, + "stars": 3.5, + "review_count": 143, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "HasTV": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Seafood Markets, Restaurants, Specialty Food, Soup, Desserts, Seafood, Food", + "hours": { + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0" + } + }, + { + "business_id": "J0jCMhGSKiaYM7rmxSnMNg", + "name": "Smile Direct Club", + "address": "1122 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9486467, + "longitude": -75.16017, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Teeth Whitening, Dentists, Cosmetic Dentists, Health & Medical, Orthodontists", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "XcJfZgJKYOfkpIG4qWw7MA", + "name": "917 Luxury Residences", + "address": "917 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953457454, + "longitude": -75.1555447603, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "13:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "13:0-15:0" + } + }, + { + "business_id": "DqMK22MKFgpUfmgzMH3G5A", + "name": "Dunkin'", + "address": "2805-2809 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9118, + "longitude": -75.1500233, + "stars": 2.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "DriveThru": "None", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Food, Coffee & Tea, Donuts", + "hours": { + "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" + } + }, + { + "business_id": "2M6OcWNdRXm8mNKrJYlZ0A", + "name": "Mark Anthony's Wall Coverings", + "address": "1823 W Porter St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.920592, + "longitude": -75.178098, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Painters, Home Services, Wallpapering", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "cjiQAJNjeiuYB8PhydOxTQ", + "name": "Ida Mae's Bruncherie", + "address": "2302 E Norris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9778559, + "longitude": -75.1295203, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "False", + "Corkage": "False", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': True, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "BikeParking": "False" + }, + "categories": "Breakfast & Brunch, Restaurants, American (New)", + "hours": { + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Ag_GeZwOrT0nmyhnKQiVBA", + "name": "Starbucks", + "address": "1500 Market St, Ste 465", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.952545, + "longitude": -75.166731, + "stars": 3.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "NoiseLevel": "u'average'" + }, + "categories": "Restaurants, Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "Vxsq098z903XRXBq4IZWTw", + "name": "PASSIONAL Boutique & Sexploratorium", + "address": "317 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941674, + "longitude": -75.1481706, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True" + }, + "categories": "Arts & Crafts, Lingerie, Women's Clothing, Costumes, Fashion, Shopping, Adult", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "azfjxlAnSATyLBAGiuSq3A", + "name": "Lau Kee Restaurant", + "address": "934 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95518, + "longitude": -75.155571, + "stars": 4.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "FUpDwSrQgdm4DOzV8f_PlA", + "name": "Far From Home", + "address": "16TH St And Jfk Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9537996, + "longitude": -75.1666213, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Caters": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'casual': False}", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "HasTV": "True" + }, + "categories": "Restaurants, Food Stands, Latin American", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-15:0" + } + }, + { + "business_id": "iVUn8TARiBRzrgvDXpqONw", + "name": "Pho Ta Restaurant", + "address": "1111 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93666, + "longitude": -75.16123, + "stars": 3.5, + "review_count": 52, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "Caters": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Vietnamese", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "RXIf1sx7tKS2zUQN78o6_w", + "name": "Ryan Crowns Juice Club", + "address": "1425 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9548465, + "longitude": -75.1642664, + "stars": 4.5, + "review_count": 58, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True" + }, + "categories": "Juice Bars & Smoothies, Food, Restaurants", + "hours": { + "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": "9:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "TLcwutJ1pVrmj_2p_OdJXA", + "name": "Hong Kong Garden", + "address": "8002 Ogontz Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0733429, + "longitude": -75.1584941, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': None, 'validated': False, 'lot': None, 'valet': False}" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Tuesday": "12:0-23:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-23:30", + "Saturday": "12:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "CZyOI0tkdu4y35xnNmamlg", + "name": "Northern Liberties Beer", + "address": "1022 N Marshall St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9701645, + "longitude": -75.1475834, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Convenience Stores, Beer, Wine & Spirits, Breweries", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "N_3sTTMqsMkB0w7jJMVKXw", + "name": "Boston Market", + "address": "451 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0866977, + "longitude": -74.965124, + "stars": 2.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "OutdoorSeating": "False", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "BikeParking": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Wings, American (Traditional), Sandwiches, Event Planning & Services, Chicken Shop, American (New), Comfort Food, Caterers", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "qjIN4UbE96Cq6JKwLIQ9VQ", + "name": "Saloon Restaurant", + "address": "750 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9398664, + "longitude": -75.1545609, + "stars": 4.5, + "review_count": 190, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "WiFi": "'free'", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsTableService": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': True, 'valet': True}", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "BYOB": "False", + "RestaurantsDelivery": "True", + "HappyHour": "False" + }, + "categories": "Restaurants, Chinese, Italian", + "hours": { + "Monday": "17:0-21:15", + "Tuesday": "17:0-21:15", + "Wednesday": "17:0-21:15", + "Thursday": "17:0-21:15", + "Friday": "17:0-21:15", + "Saturday": "17:0-21:15", + "Sunday": "15:0-19:30" + } + }, + { + "business_id": "-1yftDfgOUlxe_IACM5PFg", + "name": "The Tubby Olive", + "address": "12TH And Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9539376, + "longitude": -75.159431, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Specialty Food, Herbs & Spices, Food", + "hours": null + }, + { + "business_id": "0h4Oo6W8mG4HEYQzZRkoOA", + "name": "BAMBU", + "address": "5520 Whitaker Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0348900461, + "longitude": -75.1003371425, + "stars": 3.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'none'", + "NoiseLevel": "'loud'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bubble Tea, Desserts, Food, Juice Bars & Smoothies, Coffee & Tea, Vietnamese, Restaurants", + "hours": null + }, + { + "business_id": "g-cQ3TeR7lcY_TObcDkw6w", + "name": "Show & Tel", + "address": "1900 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9232785, + "longitude": -75.1436988, + "stars": 3.0, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "NoiseLevel": "u'very_loud'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}" + }, + "categories": "Books, Mags, Music & Video, Nightlife, Bookstores, Shopping, Adult Entertainment", + "hours": { + "Friday": "22:0-2:0", + "Saturday": "22:0-2:0" + } + }, + { + "business_id": "_7V_3b2dSSVIXqVMJwGmoQ", + "name": "Golden Cuisine", + "address": "679 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9658337, + "longitude": -75.160398, + "stars": 3.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "HasTV": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "11:0-23:45", + "Wednesday": "11:0-23:45", + "Thursday": "11:0-23:45", + "Friday": "11:15-23:45", + "Saturday": "12:15-23:45", + "Sunday": "14:0-23:45" + } + }, + { + "business_id": "YvXc-eHfs1FutFFw31kz7w", + "name": "Abbolone and Scullin Realty", + "address": "415 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9463331, + "longitude": -75.1745909, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": null + }, + { + "business_id": "42Fn1Qf_bdicA6W0HaoWhg", + "name": "Poppy Flower Shop", + "address": "616 S 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415109, + "longitude": -75.1525395, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Home Services, Shopping, Flowers & Gifts, Florists, Home & Garden, Event Planning & Services, Gardeners, Nurseries & Gardening", + "hours": null + }, + { + "business_id": "K00KiknORCOQdIhMisBjbA", + "name": "Dantรจ", + "address": "1615 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9294742, + "longitude": -75.1636617, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "HasTV": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Food, Restaurants, Cafes, Coffee & Tea", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "x-Jq6ChfYfKwfoRid3GnMQ", + "name": "Michael's Custom Cut", + "address": "4002 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9515319, + "longitude": -75.2033034, + "stars": 4.0, + "review_count": 27, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Nail Salons, Barbers, Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0", + "Saturday": "8:30-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "MGKqN8FyfJEuxvlZHzsXRg", + "name": "Fortune Kitchen", + "address": "1900 Grant Ave, Ste 7", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08396, + "longitude": -75.035514, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "None", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "WiFi": "'no'" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "oD3mqAFsT04wPeKvOU7JaA", + "name": "Epic Mobile Detailing", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 5.0, + "review_count": 65, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'" + }, + "categories": "Automotive, Auto Detailing, Car Wash, Registration Services, Mobile Dent Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "wXMUeRbZRr9B6sBPRhvf4w", + "name": "Pete's Little Lunch Box Truck", + "address": "11 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9561682012, + "longitude": -75.1893565741, + "stars": 5.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Food Trucks, Food", + "hours": { + "Monday": "6:0-16:0", + "Tuesday": "6:0-16:0", + "Wednesday": "6:0-16:0", + "Thursday": "6:0-16:0", + "Friday": "6:0-16:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "kS-YHWG_AtqS9LFAMhBVgg", + "name": "Mamma Mia Pizzeria", + "address": "1508 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9471729, + "longitude": -75.1669453, + "stars": 3.0, + "review_count": 37, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Caters": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "0xadnlAs2uV7Ax-7RViZEw", + "name": "Ikki Sushi", + "address": "310 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9500962, + "longitude": -75.1462398, + "stars": 4.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "Ambience": "{u'divey': False, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsDelivery": "True", + "Corkage": "True", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Caters": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'average'" + }, + "categories": "Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0" + } + }, + { + "business_id": "aunmz06iWvo3bd6MMHEbqg", + "name": "Rivers Casino Philadelphia", + "address": "1001 N Delaware Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9643365308, + "longitude": -75.1335456091, + "stars": 2.0, + "review_count": 297, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Caters": "False", + "HappyHour": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Casinos, Arts & Entertainment", + "hours": { + "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" + } + }, + { + "business_id": "x4yPO-t8bLp3vWWb4yn9Mg", + "name": "Robert Half", + "address": "1735 Market St, Fl 25", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9536631, + "longitude": -75.1695865, + "stars": 3.0, + "review_count": 42, + "is_open": 1, + "attributes": null, + "categories": "Professional Services, Employment Agencies", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "O-Gtgxb2mvqyEdDfmkfFVw", + "name": "Tommi Salon and Spa", + "address": "718 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949445, + "longitude": -75.153222, + "stars": 3.0, + "review_count": 114, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False" + }, + "categories": "Day Spas, Photographers, Hair Salons, Event Planning & Services, Beauty & Spas, Wedding Planning", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "04vmwMgr5bmT8tGokHrLEg", + "name": "The Wander Inn", + "address": "2500 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9169865, + "longitude": -75.1528165, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "CoatCheck": "False", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Smoking": "u'no'", + "HasTV": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "WiFi": "u'free'", + "Alcohol": "u'full_bar'" + }, + "categories": "Restaurants, Bars, Gastropubs, Cocktail Bars, Pubs, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "N971nQQSkod30TvgmOx-fg", + "name": "Oral Surgery Consultants of Pennsylvania", + "address": "1601 Walnut St, Ste 1207", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9500233, + "longitude": -75.1675812, + "stars": 2.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Oral Surgeons", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "GKBN0jG6f9XhvWmAEOgYPw", + "name": "Bar Ferdinand", + "address": "1030 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.967136901, + "longitude": -75.1402146458, + "stars": 3.5, + "review_count": 438, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': True, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Apartments, Restaurants, Breakfast & Brunch, Tapas Bars, Nightlife, Spanish, Real Estate, Home Services, Bars", + "hours": { + "Monday": "16:30-0:0", + "Tuesday": "16:30-0:0", + "Wednesday": "16:30-0:0", + "Thursday": "16:30-0:0", + "Friday": "16:30-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "OjCC8UauCM9UqOejP2Xt8g", + "name": "V&V Foot Massage Spa", + "address": "1100 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9365446628, + "longitude": -75.1626228964, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Massage, Day Spas", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "zR4f-27GTZSQ-39BnEj9IA", + "name": "Bernie's Tire Service, Inc.", + "address": "5740 Torresdale Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0164206, + "longitude": -75.0622782, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Automotive", + "hours": null + }, + { + "business_id": "KMpVCSIfiTm8fx8T32C-fg", + "name": "Brandywine Laundromat", + "address": "2001 Brandywine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9644502, + "longitude": -75.1709223, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Laundromat, Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": null + }, + { + "business_id": "PgGdMdLyaKTbRpWOIBC_Lw", + "name": "Spice Grill & Asian Cuisine", + "address": "3451 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.991588, + "longitude": -75.099707, + "stars": 3.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Caters": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, Asian Fusion", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "RIHjQ4U0J_6Hgd8IBEtPnw", + "name": "Fishtown Real Estate", + "address": "624 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9714339, + "longitude": -75.126136, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate Services, Commercial Real Estate, Home Services, Property Management, Real Estate, Real Estate Agents, Apartments", + "hours": { + "Monday": "9:30-17:0", + "Tuesday": "9:30-17:0", + "Wednesday": "9:30-17:0", + "Thursday": "9:30-17:0", + "Friday": "9:30-17:0" + } + }, + { + "business_id": "1trZ_fJYb4u2NiTusqzqTg", + "name": "D and J's BP Service Station", + "address": "401 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.915196, + "longitude": -75.1554273, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Oil Change Stations, Automotive, Auto Repair, Smog Check Stations", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "woTZpX92uByUgliPrh39Mg", + "name": "Ocean Prime", + "address": "124 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9501744, + "longitude": -75.1659335862, + "stars": 4.0, + "review_count": 513, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'dressy'", + "HasTV": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsGoodForGroups": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}", + "WiFi": "u'free'", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Cocktail Bars, American (New), Bars, Restaurants, Steakhouses, Seafood, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "16:0-22:0", + "Sunday": "16:0-21:0" + } + }, + { + "business_id": "K_cYYWf7cAyTw1vUEW1dSA", + "name": "Exotic Diamond Jewelers", + "address": "316 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413217, + "longitude": -75.1481163, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Watches, Jewelry, Shopping", + "hours": { + "Monday": "11:30-19:30", + "Tuesday": "11:30-19:30", + "Wednesday": "11:30-19:30", + "Thursday": "11:30-19:30", + "Friday": "11:30-19:30", + "Saturday": "11:30-19:30" + } + }, + { + "business_id": "qYGM6V73aSxc_1Pr_W28NQ", + "name": "Umbria Restaurant", + "address": "7131 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0593007, + "longitude": -75.1900898, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "RestaurantsAttire": "u'dressy'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "Caters": "False", + "RestaurantsTakeOut": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Wednesday": "18:0-21:0", + "Thursday": "18:0-21:0", + "Friday": "18:0-21:0", + "Saturday": "18:0-21:0" + } + }, + { + "business_id": "5WqN8-soSGAWawN9IGQBhg", + "name": "Ernest A Benedetto, MD", + "address": "1200 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9476269, + "longitude": -75.1609257, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Cosmetic Surgeons, Dermatologists, Doctors, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "y3y5CquZ6lLDswB7uDVSTw", + "name": "Regal UA Grant Plaza", + "address": "1619 Grant Avenue", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.08787, + "longitude": -75.03788, + "stars": 3.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Cinema, Arts & Entertainment", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:30", + "Wednesday": "11:0-23:30", + "Thursday": "11:0-23:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "U7HYUH8SqZO6OQMNKCr5kQ", + "name": "Porco's Porchetteria", + "address": "2204 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9393052955, + "longitude": -75.1801168178, + "stars": 4.5, + "review_count": 84, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "Caters": "True", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BYOB": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "DogsAllowed": "True", + "HappyHour": "True" + }, + "categories": "Restaurants, Sandwiches", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "AYat87Z6okUeOMIVOt-_TA", + "name": "Gourmet of Olde City", + "address": "26 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950988, + "longitude": -75.145839, + "stars": 3.5, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Gift Shops, Food, Flowers & Gifts, Home & Garden, Specialty Food, Grocery, Home Decor", + "hours": { + "Monday": "11:0-18:30", + "Tuesday": "11:0-18:30", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-18:30", + "Friday": "11:0-18:30", + "Saturday": "11:0-18:30" + } + }, + { + "business_id": "2cYLqw9V-abBcPjzmz_G2Q", + "name": "Berkshire Hathaway HomeServices Fox & Roach", + "address": "112 S 19th St, Ste 200", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9513708, + "longitude": -75.1723118, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Real Estate Agents, Home Services, Mortgage Lenders, Insurance, Real Estate, Financial Services, Mortgage Brokers, Real Estate Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "TB86XyHuen8Lj6MqU8gEIg", + "name": "Kohl's", + "address": "8500 Henry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0628104624, + "longitude": -75.2352982, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "False", + "BikeParking": "False", + "HasTV": "False", + "Smoking": "u'no'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "HappyHour": "False", + "RestaurantsTakeOut": "False", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "Caters": "False" + }, + "categories": "Toy Stores, Department Stores, Women's Clothing, Home & Garden, Furniture Stores, Fashion, Shopping, Shoe Stores, Men's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "CZNKuIB_TMfryRcT48feXA", + "name": "Bronzed By Bee", + "address": "715 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9480567012, + "longitude": -75.1532625425, + "stars": 4.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Tanning, Waxing, Eyelash Service, Hair Removal, Spray Tanning, Permanent Makeup", + "hours": { + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-14:0" + } + }, + { + "business_id": "4IsLGHKy6PDg3M6Y5g4zGw", + "name": "Earthstone Tile Works", + "address": "1224 Tasker St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.929958, + "longitude": -75.165557, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Flooring", + "hours": null + }, + { + "business_id": "OVlGCqEUNvocaPbSyVSjfA", + "name": "Roll's Auto Sales", + "address": "6547 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0303462, + "longitude": -75.0551094, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Car Dealers, Automotive", + "hours": { + "Monday": "9:30-19:0", + "Tuesday": "9:30-19:0", + "Wednesday": "9:30-19:0", + "Thursday": "9:30-19:0", + "Friday": "9:30-19:0", + "Saturday": "9:30-17:0" + } + }, + { + "business_id": "qC48vqfqccfFrphukR5WkQ", + "name": "Campo's Deli", + "address": "3601 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9011799, + "longitude": -75.1719716, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Cheesesteaks", + "hours": null + }, + { + "business_id": "v1fRlnm3qP1ofRKnUrbq7Q", + "name": "P.S. Pup Struts", + "address": "800 N 2nd St, Ste 181", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631059, + "longitude": -75.1411268, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": null, + "categories": "Pets, Pet Services, Dog Walkers, Professional Services, Pet Sitting", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "JlbAYc0fgqVX2IVT113BnQ", + "name": "Pop's Homemade Water Ice", + "address": "1337 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9168993, + "longitude": -75.170401, + "stars": 4.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Caters": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "False" + }, + "categories": "Food, Shaved Ice, Desserts, Event Planning & Services, Ice Cream & Frozen Yogurt, Caterers", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "VUK3TEdtbyNRegrzKXIsSg", + "name": "Angeles Anne Marie, MD", + "address": "1440 McKean St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9256574, + "longitude": -75.1709659, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Dermatologists, Doctors, Health & Medical", + "hours": null + }, + { + "business_id": "1hFBAjRLIq82kz5R9kRxfw", + "name": "VIP Market", + "address": "1312-1314 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.948891, + "longitude": -75.1627479, + "stars": 3.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "True", + "HasTV": "False" + }, + "categories": "Grocery, Food, Beer, Wine & Spirits, Restaurants, Buffets, Convenience Stores, Salad, Sandwiches, Delis", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-0:0", + "Wednesday": "7:0-0:0", + "Thursday": "7:0-0:0", + "Friday": "7:0-1:0", + "Saturday": "8:0-1:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "EmrOCT7fArKI0JI_XF6aaw", + "name": "Temple University", + "address": "1801 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.981192, + "longitude": -75.155354, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Colleges & Universities, Education", + "hours": null + }, + { + "business_id": "B2MKYwShNmBiaQ3EJadR-Q", + "name": "honeygrow", + "address": "1601 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9784134463, + "longitude": -75.157349919, + "stars": 3.5, + "review_count": 46, + "is_open": 1, + "attributes": { + "Caters": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "HasTV": "False", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "DogsAllowed": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Fast Food, Salad, Juice Bars & Smoothies, American (New), Food, Noodles, Asian Fusion, Vegetarian, Restaurants, Vegan", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-21:0" + } + }, + { + "business_id": "krni7-dr1D7u-grtaEfOSw", + "name": "Crown Fried Chicken", + "address": "2737 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9939506, + "longitude": -75.1474124, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "DogsAllowed": "False", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "HappyHour": "False", + "BikeParking": "False", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Shop, Chicken Wings, American (New)", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "nsH0hQ7xB5LS2_Ba3mqHTQ", + "name": "Paesano's Philly Style", + "address": "1017 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.937135, + "longitude": -75.158062, + "stars": 4.5, + "review_count": 387, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Sandwiches, Italian", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "11:0-15:0", + "Wednesday": "11:0-15:0", + "Thursday": "11:0-15:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "CVXPA2pB9YWJWwUGl_cECg", + "name": "Sunshine Movers", + "address": "1431 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.0840239, + "longitude": -75.1776095, + "stars": 4.5, + "review_count": 167, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services", + "hours": { + "Monday": "0:0-0: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": "0:0-5:0" + } + }, + { + "business_id": "kOVYDwD9LbgBKwBkztDcag", + "name": "Messina Club", + "address": "1533 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9297638, + "longitude": -75.1614432, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Active Life, Sports Clubs, Social Clubs, Restaurants, Italian, Nightlife, American (Traditional), Cocktail Bars, Arts & Entertainment, Bars", + "hours": { + "Thursday": "18:0-0:0", + "Friday": "18:0-3:0", + "Saturday": "18:0-3:0" + } + }, + { + "business_id": "kUZUmdBTtQ6284Qlzc_NyA", + "name": "Vetter Pet Care", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9583587, + "longitude": -75.1953934, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "X3vdh9Dtyap9jqKdZrcKYw", + "name": "Natural Nails", + "address": "7727 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0396511, + "longitude": -75.0323149, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Day Spas, Beauty & Spas, Waxing, Eyelash Service, Hair Removal", + "hours": { + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "Vf7meUouR3TMU6OPMpbYtQ", + "name": "Sofra", + "address": "114 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948182, + "longitude": -75.1431548, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "BYOB": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "HasTV": "False", + "WiFi": "u'free'", + "RestaurantsTableService": "False", + "Corkage": "False", + "OutdoorSeating": "False", + "WheelchairAccessible": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Middle Eastern", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "LampjstbVInCDYjznOFixg", + "name": "Neighborhood Watch Repair", + "address": "1001 N 2nd St, Ste 7, Duke Barber Shop", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9663420536, + "longitude": -75.1400623794, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Antiques, Local Services, Shopping, Watch Repair, Watches", + "hours": { + "Wednesday": "12:30-17:0", + "Thursday": "12:30-17:0", + "Friday": "12:30-17:0", + "Saturday": "12:30-18:0" + } + }, + { + "business_id": "K3oSW7x3LU74viHIbL8b_A", + "name": "Wendy's", + "address": "3000 Island Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9026332387, + "longitude": -75.240421614, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "Caters": "False", + "NoiseLevel": "u'quiet'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Burgers, Fast Food, Restaurants", + "hours": { + "Monday": "10:0-3:0", + "Tuesday": "10:0-3:0", + "Wednesday": "10:0-3:0", + "Thursday": "10:0-3:0", + "Friday": "10:0-3:0", + "Saturday": "10:0-3:0", + "Sunday": "10:0-3:0" + } + }, + { + "business_id": "uL4b3AVzlHJtsZChujNEMg", + "name": "Philadelphia Urban Adventures", + "address": "229 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.952091, + "longitude": -75.1401399646, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": null, + "categories": "Hotels & Travel, Tours", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "8:30-18:0" + } + }, + { + "business_id": "f_bUsM34FGpzECag3Cn8gw", + "name": "Cappys Cafe", + "address": "6901 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0328076, + "longitude": -75.0482692, + "stars": 4.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForKids": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Restaurants, Seafood, Italian, Beer, Wine & Spirits, Chicken Wings, American (Traditional), Sports Bars, Nightlife, Bars", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "H3nfY0QV36HiVHkeJBrjyw", + "name": "Making Life Easier", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0703334, + "longitude": -75.2070644, + "stars": 4.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "AcceptsInsurance": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Cleaning, Grout Services, Assisted Living Facilities, Home Services, Carpet Cleaning, Home Organization, Professional Services, Local Services, Office Cleaning, Personal Care Services, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "vuSp3ILoi1iryDH-CeRGEQ", + "name": "Half Time Good Time", + "address": "120 Diamond St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9815597534, + "longitude": -75.1341018677, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HappyHour": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Bars, Dive Bars, Nightlife, Sports Bars", + "hours": null + }, + { + "business_id": "hdGSVYYrLFS4iNufBX3q6A", + "name": "The Druid's Keep", + "address": "149 Brown St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9628781, + "longitude": -75.1398759, + "stars": 4.0, + "review_count": 57, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True", + "WiFi": "'free'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "DogsAllowed": "True", + "RestaurantsReservations": "False" + }, + "categories": "Bars, Nightlife", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "13:0-2:0", + "Sunday": "13:0-2:0" + } + }, + { + "business_id": "eFLhp3y2BjuZAE7cUZB_Kg", + "name": "BONeJOUR", + "address": "53 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9517849, + "longitude": -75.1448813, + "stars": 4.5, + "review_count": 67, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Pet Groomers, Pet Services, Pet Stores, Shopping, Pets", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "6dyBK_8wytjRK2vf6ez_9g", + "name": "Kerrigan Automotive", + "address": "2899 Holme Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0569311, + "longitude": -75.0293054, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "tfLT9EdzxFCW8yWAQyN4Qw", + "name": "New Golden Palace", + "address": "801-21 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.936307, + "longitude": -75.157265, + "stars": 2.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Chinese, Vietnamese, Seafood, Dim Sum, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "ny1yTbD10uB5QLeb5Y_xmg", + "name": "J&T Nail Salon", + "address": "2204 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9866249, + "longitude": -75.1565902, + "stars": 3.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Removal, Waxing, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "9:30-18:30", + "Tuesday": "9:30-18:30", + "Wednesday": "9:30-18:30", + "Thursday": "9:30-18:30", + "Friday": "9:30-18:30", + "Saturday": "9:30-18:30" + } + }, + { + "business_id": "BE7efGAH9Eb2aGbMGFfgQQ", + "name": "The Gallery At Market East", + "address": "901 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9516327, + "longitude": -75.1557451, + "stars": 2.0, + "review_count": 134, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Shopping, Shopping Centers, Art Galleries, Arts & Entertainment", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "2U4MQ3dOhp9Fia7tzBnMSQ", + "name": "Bluesquare Property Management & Realty, LLC", + "address": "225 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9520587, + "longitude": -75.1433854, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Property Management, Home Services", + "hours": null + }, + { + "business_id": "FImeJg7pVG9K7wjuexmV4Q", + "name": "Pass & Stow", + "address": "1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9059929, + "longitude": -75.1666401, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "HasTV": "True" + }, + "categories": "Pizza, Beer Gardens, Bars, Nightlife, Pubs, Restaurants", + "hours": null + }, + { + "business_id": "0feKq4uYJXW8BbVn8u7pkg", + "name": "Schuylkill River Trail", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0532987, + "longitude": -75.2304038, + "stars": 4.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Landmarks & Historical Buildings, Public Services & Government, Active Life, Parks, Hiking", + "hours": null + }, + { + "business_id": "t5T6NYFsOqnYl0NETDgj7g", + "name": "Sophie's Kitchen", + "address": "522 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.93474, + "longitude": -75.15321, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'none'", + "BYOB": "True", + "RestaurantsTakeOut": "True", + "Corkage": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTableService": "True", + "Caters": "True" + }, + "categories": "Restaurants, Cambodian", + "hours": { + "Monday": "15:0-20:30", + "Tuesday": "15:0-20:30", + "Wednesday": "15:0-20:30", + "Thursday": "15:0-20:30", + "Friday": "15:0-20:30", + "Saturday": "15:0-20:30", + "Sunday": "15:0-20:30" + } + }, + { + "business_id": "kfRNvp6426TSfKG1FSGR1g", + "name": "Pizza Hut", + "address": "8045 Frankford Ave, Ste E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0416891, + "longitude": -75.0259754, + "stars": 1.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Chicken Wings, Pizza, Italian", + "hours": { + "Monday": "10:0-23:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:45", + "Saturday": "10:0-0:45", + "Sunday": "10:30-22:30" + } + }, + { + "business_id": "jNxvJeAUzzpC7zW3UN78HA", + "name": "Pizza Shackamaxon", + "address": "115 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.969258, + "longitude": -75.1339582, + "stars": 4.0, + "review_count": 145, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': True, 'trendy': True, 'upscale': False, 'classy': None, 'casual': True}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False" + }, + "categories": "Restaurants, Fast Food, Pizza", + "hours": { + "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": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "yHVRTVExX668sav-FXiKgA", + "name": "Alamo Rent A Car", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8813232, + "longitude": -75.2427818, + "stars": 3.5, + "review_count": 186, + "is_open": 1, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "tOe1Pz28wXY3vUhc3uPBKQ", + "name": "Cheers Cut", + "address": "925 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9538136, + "longitude": -75.1558378, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "HasTV": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "WiFi": "'no'" + }, + "categories": "Comfort Food, Taiwanese, Fast Food, Restaurants", + "hours": { + "Monday": "10:30-23:0", + "Tuesday": "10:30-23:0", + "Wednesday": "10:30-23:0", + "Thursday": "10:30-23:0", + "Friday": "10:30-0:0", + "Saturday": "10:30-0:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "riJXTWzl2sz2iJSBHL2MsA", + "name": "Route 23 Cafe", + "address": "4102 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0159611, + "longitude": -75.1541207, + "stars": 3.0, + "review_count": 38, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "NoiseLevel": "'average'", + "HasTV": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': False}", + "RestaurantsReservations": "None", + "WheelchairAccessible": "True", + "WiFi": "'free'", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'" + }, + "categories": "Breakfast & Brunch, Burgers, American (New), Cheesesteaks, Cafes, Soul Food, Comfort Food, Restaurants", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-23:0", + "Saturday": "11:30-23:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "9DfzRvTs9tzFuj5PnnLOrA", + "name": "The Barnes Foundation", + "address": "2025 Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9605399867, + "longitude": -75.1725628227, + "stars": 4.0, + "review_count": 414, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': True}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "DogsAllowed": "False" + }, + "categories": "Art Galleries, Education, Arts & Entertainment, Shopping, Art Classes, Museums, Art Museums", + "hours": { + "Monday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "12:0-19:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "jh-Sg2S4wlelkifvhjwSlg", + "name": "China Garden", + "address": "2120 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9238557, + "longitude": -75.1701679, + "stars": 3.5, + "review_count": 53, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "Caters": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BikeParking": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "GoodForKids": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:30" + } + }, + { + "business_id": "zxtDh0mCBrYiT9UksuK4hQ", + "name": "Kerrigans Florist", + "address": "1523 E Susquehanna Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9765006, + "longitude": -75.1270704, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Local Services, Florists, Flowers & Gifts", + "hours": null + }, + { + "business_id": "v2AwJ1s_gyIi2C9gGUGLcQ", + "name": "Swiacki Stan Meats", + "address": "3623 Salmon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9885221, + "longitude": -75.0917525, + "stars": 5.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Food, Meat Shops, Bakeries, Specialty Food, Ethnic Food", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-13:0" + } + }, + { + "business_id": "DB8YfpBxsPlxDcNhfTKOWA", + "name": "Blue Nail & Spa", + "address": "2107 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508436, + "longitude": -75.176231, + "stars": 4.0, + "review_count": 227, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'" + }, + "categories": "Massage, Tanning Beds, Tanning, Beauty & Spas, Nail Salons, Skin Care", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "C5MdSiVtZKirRghyh08C0g", + "name": "Bodhi Coffee", + "address": "410 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428633, + "longitude": -75.1456224, + "stars": 4.0, + "review_count": 167, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "False", + "BikeParking": "True", + "GoodForKids": "True", + "HasTV": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Sandwiches, Breakfast & Brunch, Food, Coffee & Tea, Restaurants", + "hours": { + "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": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "zyPABnfcXJagJGwReCsT1A", + "name": "Jay's Pedal Power Bicycle Shop", + "address": "512 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970766, + "longitude": -75.1279602, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Sporting Goods, Active Life, Shopping, Bike Rentals, Bikes, Fitness & Instruction", + "hours": null + }, + { + "business_id": "QC4t5EWxTU880V6yrI0kVA", + "name": "Manayunk Sport and Social Club", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0288905, + "longitude": -75.226028, + "stars": 2.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Amateur Sports Teams, Sports Clubs, Active Life", + "hours": null + }, + { + "business_id": "coQmizmObK58x9fd9SjPKw", + "name": "Fishtown Lawyers", + "address": "2424 E York St, Ste 111", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9774593, + "longitude": -75.124602, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Criminal Defense Law, General Litigation, DUI Law, Personal Injury Law, Lawyers, Professional Services", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "f88R41qxHK65RkDjn3TehA", + "name": "I CE NY", + "address": "1016-1018 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.955391325, + "longitude": -75.1566101418, + "stars": 4.5, + "review_count": 226, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "DogsAllowed": "True", + "WiFi": "u'free'", + "Caters": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "DriveThru": "False" + }, + "categories": "Restaurants, Food Court, Food, Desserts, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "_Bde2pfPu-Uq9wlQhGhjEQ", + "name": "Chubby's Fox Chase Deli", + "address": "537 Hoffnagle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0795819, + "longitude": -75.0774267, + "stars": 4.5, + "review_count": 57, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Delis, Restaurants", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "jfjpExDsvog4CYFsBMmwdw", + "name": "Swiss Haus Cafe & Pastry Bar", + "address": "1740 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507452, + "longitude": -75.1701679, + "stars": 2.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Alcohol": "u'none'", + "BYOB": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "Corkage": "False", + "BikeParking": "True" + }, + "categories": "Coffee & Tea, Food, Restaurants, Desserts, Cafes, Bakeries", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "xWl-iea0iGvID_fqTxaNQw", + "name": "US Post Office", + "address": "2001 E Willard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.994898, + "longitude": -75.10953, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Post Offices, Shipping Centers, Local Services, Public Services & Government", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "965Cdtp9ylAsV8gzWHHLzg", + "name": "Sophistikids", + "address": "1395 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.086077, + "longitude": -74.962417, + "stars": 1.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Children's Clothing, Shopping, Accessories, Fashion, Shoe Stores", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "x6uWZx9z_KbvEP0rU37Cvw", + "name": "Villavillekula", + "address": "8419 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0756394, + "longitude": -75.2053777, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Toy Stores, Fashion, Children's Clothing, Shopping", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:30", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "rfoXDskPG0IK7F1xEEmkKA", + "name": "Tower Health Urgent Care", + "address": "2231 Bryn Mawr Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9917574, + "longitude": -75.2261647, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Urgent Care", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "vt_esoDw6HG5ClM12OPkMg", + "name": "Bontรฉ Wafflerie & Cafรฉ", + "address": "130 S 17th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.95051, + "longitude": -75.1692048, + "stars": 3.5, + "review_count": 115, + "is_open": 0, + "attributes": { + "Corkage": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "True", + "Caters": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HappyHour": "True" + }, + "categories": "Coffee & Tea, Restaurants, Breakfast & Brunch, Food, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "6:30-18:0", + "Sunday": "6:30-18:0" + } + }, + { + "business_id": "YS_1Q_G3yjAckM7k30rIVw", + "name": "Ezra Reuven's Gulf", + "address": "301 S 48th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9533743, + "longitude": -75.2178407, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Auto Repair, Automotive", + "hours": null + }, + { + "business_id": "mHY_tUZBy_0dMEcCrYNgGQ", + "name": "Alif Brew & Mini Mart", + "address": "4501 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9491783, + "longitude": -75.2131685, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Convenience Stores, Cafes, Ethiopian", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "QCfrzQGkUNDXD5NOIOyqoA", + "name": "Angel Natural Beauty Skin Care", + "address": "1023 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9540097, + "longitude": -75.1572498, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False" + }, + "categories": "Nail Salons, Beauty & Spas, Skin Care, Massage", + "hours": null + }, + { + "business_id": "J54i6cg5rVVFq9cwzKhk8w", + "name": "Shana's Caribbean Cafe", + "address": "5706 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.03828, + "longitude": -75.130459, + "stars": 3.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Restaurants, Specialty Food, Ethnic Food, Bakeries, Caribbean, Food", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-23:0", + "Saturday": "8:0-23:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "6_J_rXp9R1qhwSS0ZBn5GQ", + "name": "Ramayana Store", + "address": "1543 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929123, + "longitude": -75.156563, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Indonesian, Ethnic Food, International Grocery, Grocery, Restaurants, Food, Specialty Food", + "hours": { + "Monday": "10:30-20:30", + "Tuesday": "10:30-20:30", + "Wednesday": "10:30-20:30", + "Thursday": "10:30-20:30", + "Friday": "10:30-20:30", + "Saturday": "10:30-20:30", + "Sunday": "10:30-20:30" + } + }, + { + "business_id": "FFeHf7WyHxvfwyQla3wbnA", + "name": "Cafette", + "address": "8136 Ardleigh St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.074058, + "longitude": -75.201157, + "stars": 3.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "HasTV": "False", + "WiFi": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Breakfast & Brunch, Salad, Restaurants, American (New)", + "hours": { + "Monday": "11:0-15: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" + } + }, + { + "business_id": "hd9AZL7gAxeRWBjwvX7aGA", + "name": "Marsh + Mane", + "address": "529 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9418370841, + "longitude": -75.1490368322, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Cosmetics & Beauty Supply, Shopping, Beauty & Spas", + "hours": { + "Monday": "12:0-19:0", + "Tuesday": "12:0-19:0", + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "9b1zwZatzcDYNNVwfiBrjA", + "name": "Canvas Coffee Company", + "address": "400 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19176", + "latitude": 39.9699963, + "longitude": -75.130227, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "'free'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Coffee & Tea", + "hours": null + }, + { + "business_id": "b2WN3yA79dMvCUMywM3I_A", + "name": "Dunkin'", + "address": "2001 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952193, + "longitude": -75.1736043, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Caters": "True", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Coffee & Tea, Food, Donuts", + "hours": { + "Monday": "4:30-22:0", + "Tuesday": "4:30-22:0", + "Wednesday": "4:30-22:0", + "Thursday": "4:30-22:0", + "Friday": "4:30-22:0", + "Saturday": "4:30-22:0", + "Sunday": "5:30-21:0" + } + }, + { + "business_id": "WJnWJ91JQd1Vfe2Z65uj7g", + "name": "Tip Top Nails", + "address": "53 N 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9530064, + "longitude": -75.1579115, + "stars": 4.0, + "review_count": 91, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "dD8qp4Ro74EI4DqQl8FFCw", + "name": "Au Bon Pain", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557002, + "longitude": -75.182516, + "stars": 2.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Cafes, Food, Restaurants, Bakeries", + "hours": { + "Monday": "5:30-22:0", + "Tuesday": "5:30-22:0", + "Wednesday": "5:30-22:0", + "Thursday": "5:30-22:0", + "Friday": "5:30-22:0", + "Saturday": "6:0-21:0", + "Sunday": "6:0-21:0" + } + }, + { + "business_id": "c1Cds6ml72ioKDheikpWVw", + "name": "Thomas M Kohler, DDS", + "address": "255 S 17th St, Fl 12 , Ste 1206", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9481733, + "longitude": -75.1692883, + "stars": 5.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Dentists, Health & Medical, Oral Surgeons, Periodontists", + "hours": { + "Monday": "8:30-15:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-17:0" + } + }, + { + "business_id": "cFSyJluKa2SHtgMMvlx6SQ", + "name": "Angelo's Pizzeria", + "address": "736 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9406517812, + "longitude": -75.1576136221, + "stars": 4.5, + "review_count": 393, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': None}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "None", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "None", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}" + }, + "categories": "Restaurants, Pizza, Sandwiches", + "hours": { + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "j485zQQvqv2tTIqvRTPwMg", + "name": "Expect Lace", + "address": "4403 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0260721, + "longitude": -75.2247858, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "True", + "WheelchairAccessible": "True" + }, + "categories": "Fashion, Shopping, Lingerie", + "hours": { + "Tuesday": "13:0-18:0", + "Wednesday": "13:0-18:0", + "Thursday": "13:0-18:0", + "Friday": "13:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "xWfm4AwLZr-B97fYVsIgCA", + "name": "Tria Taproom", + "address": "2005 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9506754, + "longitude": -75.1740099, + "stars": 4.5, + "review_count": 357, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Caters": "False", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsTableService": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "HasTV": "False", + "Smoking": "u'no'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': True, 'saturday': True}", + "CoatCheck": "True", + "HappyHour": "False", + "DogsAllowed": "True" + }, + "categories": "Nightlife, Gastropubs, French, Beer Bar, Pubs, Bars, Restaurants, American (New), Wine Bars, Cocktail Bars", + "hours": { + "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" + } + }, + { + "business_id": "bh85W8Dwc0UUp75H-EYnkQ", + "name": "Rising Sun Pizza", + "address": "6919 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0566502119, + "longitude": -75.0884260933, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BikeParking": "False", + "HasTV": "True", + "NoiseLevel": "u'loud'", + "WiFi": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Chicken Wings, Cheesesteaks, Pizza", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-1:0", + "Saturday": "11:0-1:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "Eke1SRMGRmIVUz158w_fKA", + "name": "Moving Image Dance Academy", + "address": "2030 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9625500148, + "longitude": -75.1996994019, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": null, + "categories": "Nightlife, Performing Arts, Arts & Entertainment, Specialty Schools, Dance Clubs, Social Clubs, Dance Schools, Education, Dance Studios, Active Life, Fitness & Instruction", + "hours": { + "Monday": "13:0-22:0", + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "13:0-22:0", + "Saturday": "13:0-17:0" + } + }, + { + "business_id": "7-js-chyskuWGRfHTeItXQ", + "name": "Enterprise Rent-A-Car", + "address": "1 Arrivals Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8820971, + "longitude": -75.2423309, + "stars": 3.5, + "review_count": 290, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "WiFi": "u'no'" + }, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "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" + } + }, + { + "business_id": "YcbICqp_TlaxNx7gIkRSzw", + "name": "Hickory Lane American Bistro", + "address": "2025 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967476, + "longitude": -75.171166, + "stars": 3.5, + "review_count": 287, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Diners, American (New), French, Restaurants, Breakfast & Brunch", + "hours": { + "Monday": "16:30-21:0", + "Tuesday": "16:30-21:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-22:0", + "Saturday": "16:30-22:0", + "Sunday": "16:30-21:0" + } + }, + { + "business_id": "Eg5vpF4qNLWAIRz1DmjggA", + "name": "Robinson Luggage", + "address": "201 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9492832084, + "longitude": -75.1642110965, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Luggage, Shopping", + "hours": null + }, + { + "business_id": "n6FxuhBjD0c0VkpGhIDGeQ", + "name": "Eat-A-Pita", + "address": "128 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9493662, + "longitude": -75.1606882, + "stars": 4.0, + "review_count": 139, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Salad, Restaurants, Food Trucks, Food, American (New), American (Traditional)", + "hours": { + "Monday": "11:0-14:0", + "Tuesday": "11:0-14:0", + "Wednesday": "11:0-14:0", + "Thursday": "11:0-14:0", + "Friday": "11:0-14:0" + } + }, + { + "business_id": "j7z0VfA0BjEG6dIVNprH9Q", + "name": "Fezziwig's Sweet Shoppe", + "address": "17 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9508179, + "longitude": -75.1453195, + "stars": 4.0, + "review_count": 87, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "WiFi": "'no'" + }, + "categories": "American (Traditional), Ice Cream & Frozen Yogurt, Desserts, Restaurants, Coffee & Tea, Food, American (New)", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-9:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "I_x0qFo4NRvS1nfiPz_G8A", + "name": "Chestnut Hill Friends Meeting", + "address": "20 E Mermaid Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0684606, + "longitude": -75.1959861, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Event Planning & Services, Community Centers, Religious Organizations, Churches, Public Services & Government, Arts & Entertainment, Venues & Event Spaces", + "hours": { + "Sunday": "10:30-11:30" + } + }, + { + "business_id": "s5nduiTPNps4_2p9ZoHDbA", + "name": "2 Street Sammies", + "address": "118 Morris St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926384, + "longitude": -75.147946, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "HasTV": "False", + "DogsAllowed": "True", + "BikeParking": "True", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsTableService": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Event Planning & Services, Street Vendors, Salad, Caterers, Food, Sandwiches, Restaurants", + "hours": null + }, + { + "business_id": "_tZhtCocFzXihnF7-CXUTw", + "name": "Hertz Rent A Car", + "address": "1 Dock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9463008, + "longitude": -75.1435473, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Car Rental, Hotels & Travel", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-14:0", + "Sunday": "10:0-14:0" + } + }, + { + "business_id": "u7pjTQFjvHeJdsH2K54U5w", + "name": "Lipkin's Bakery", + "address": "2153 S Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9206146705, + "longitude": -75.1494646445, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bakeries, Food, Bagels", + "hours": { + "Saturday": "8:0-14:0", + "Sunday": "8:0-14:0" + } + }, + { + "business_id": "u5dDEh6EO7PyTzOSwJV92A", + "name": "The Gold Standard", + "address": "2003 Fitzwater St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9430630757, + "longitude": -75.1756434935, + "stars": 3.0, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Breakfast & Brunch, Bakeries, Bagels, Coffee & Tea, Food", + "hours": { + "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": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "U2NR4ZJKHrW1UmCuRcoDqA", + "name": "Sulimay's Studio On Main", + "address": "4233 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0243999, + "longitude": -75.2208201, + "stars": 4.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "WheelchairAccessible": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Barbers, Beauty & Spas, Makeup Artists, Hair Salons, Hair Stylists, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "8:30-16:30", + "Sunday": "8:30-16:30" + } + }, + { + "business_id": "kQ5jvz_iyX2wRKQkFcH1Og", + "name": "Heads Up", + "address": "1800 W Shunk St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9188336, + "longitude": -75.1777592, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "kufdqqeufwSP6rgeIKLKAg", + "name": "McDonald's", + "address": "Broad St & Snydr Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9243837, + "longitude": -75.1697454, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "Caters": "False", + "NoiseLevel": "'average'", + "HasTV": "False", + "WiFi": "'free'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Fast Food, Restaurants, Burgers", + "hours": null + }, + { + "business_id": "zc5VAa0CBWIvk7GLr9d5Qw", + "name": "The Pleasure Chest", + "address": "2039 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508319, + "longitude": -75.1751267, + "stars": 3.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Toy Stores, Shopping, Fashion, Adult, Lingerie, Local Flavor", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "PSz9hS4KEAOUFWNauBMRlg", + "name": "Pearle Vision", + "address": "3400 Aramingo Ave, Ste 9", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.991716, + "longitude": -75.101828, + "stars": 1.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'" + }, + "categories": "Optometrists, Shopping, Eyewear & Opticians, Health & Medical", + "hours": { + "Monday": "10:0-16:0", + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "iWV1MgLsI9ma5zrzNUy_NQ", + "name": "Olympia Gyro", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953644, + "longitude": -75.159212, + "stars": 4.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "Caters": "False" + }, + "categories": "Specialty Food, Ethnic Food, Food, Imported Food", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "trTTls_MshX8H3hptEVKrw", + "name": "All American Limousine", + "address": "3452 Collins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9952517, + "longitude": -75.1032943, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Limos, Hotels & Travel, Airport Shuttles, Transportation", + "hours": { + "Monday": "8:0-20: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": "8:0-20:0" + } + }, + { + "business_id": "5x09OHk4-TyUvJ0ibqshuw", + "name": "E Nails", + "address": "3400 Aramingo Ave, Ste 4", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9927022691, + "longitude": -75.1001775103, + "stars": 2.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "rJD6RS9k88bnvx6YLqqF5g", + "name": "Anthony's Pest Control", + "address": "961 Ayrdale Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0743256, + "longitude": -75.2409555, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Pest Control, Local Services", + "hours": null + }, + { + "business_id": "4hM6GbEq5Jt-YZ0vRN1-Lw", + "name": "The Gables", + "address": "4520 Chester Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9468926, + "longitude": -75.2121474, + "stars": 5.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "WiFi": "u'free'", + "ByAppointmentOnly": "True" + }, + "categories": "Hotels & Travel, Bed & Breakfast, Hotels, Event Planning & Services", + "hours": { + "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" + } + }, + { + "business_id": "VG9Uz8YL8_-DdAY6nB_m6A", + "name": "$155 Flat Rate Hauling Trash Removal", + "address": "1000 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9383261, + "longitude": -75.1670085, + "stars": 5.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Junk Removal & Hauling", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0" + } + }, + { + "business_id": "x8cu2dYQHfQYSDLxGBg5cw", + "name": "John's Diner", + "address": "119 E Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0377018, + "longitude": -75.1731318, + "stars": 4.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "NoiseLevel": "'quiet'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "Caters": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "Alcohol": "'none'", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "'free'" + }, + "categories": "Restaurants, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "xVsNfyuMEX5d1QHHMsU6YA", + "name": "Tri-County Pediatrics", + "address": "Roosevelt Blvd & Welsh Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 40.074475, + "longitude": -75.0349345, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Doctors", + "hours": null + }, + { + "business_id": "w6WduajsiHjcFN4WxgRTkA", + "name": "Brookmont Apartment Homes", + "address": "600 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.1070222, + "longitude": -75.0391462, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "4NYZ-PHH7GDgjfIO7_Vfgg", + "name": "Cร phรช Roasters", + "address": "3400 J St, G1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9993382221, + "longitude": -75.1091215387, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Coffee Roasteries, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-15:0", + "Friday": "7:0-13:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "nzZrLZyU9w_4MGBNi7dRiA", + "name": "CB2", + "address": "1422 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9493582, + "longitude": -75.1655063, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Shopping, Home & Garden, Home Decor, Outdoor Furniture Stores, Furniture Stores", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "r4eDzodjjoxk79ydS7V67Q", + "name": "1518 Bar & Grill", + "address": "1518 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9501977, + "longitude": -75.1666386, + "stars": 4.0, + "review_count": 221, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "HappyHour": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Nightlife, Cocktail Bars, Breweries, Bars, Restaurants, Food, American (Traditional)", + "hours": { + "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" + } + }, + { + "business_id": "slGOgDwclwZY9loX3r31LA", + "name": "South Street Barbers", + "address": "1316 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943348, + "longitude": -75.163541, + "stars": 4.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2" + }, + "categories": "Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "Gmt4tiyNB3XgtkO5R1ptjA", + "name": "Affordable Roofing", + "address": "2832 E Pacific St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9878188, + "longitude": -75.090726, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Contractors, Roofing", + "hours": null + }, + { + "business_id": "0KU6dANHsL1_xPVd6anm0Q", + "name": "Philadelphia 30th Street Club Acela", + "address": "2951 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557513114, + "longitude": -75.1818856201, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'" + }, + "categories": "Train Stations, Hotels & Travel", + "hours": null + }, + { + "business_id": "K5iDEmYP3mc_uwZqHMSR2g", + "name": "i MADE a MESS", + "address": "1019 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9463576, + "longitude": -75.1585739, + "stars": 3.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Professional Services, Interior Design, Home Organization, Office Cleaning, Home Cleaning", + "hours": { + "Monday": "9:0-23:0", + "Tuesday": "9:0-23:0", + "Wednesday": "9:0-23:0", + "Thursday": "9:0-23:0", + "Friday": "9:0-23:0", + "Saturday": "9:0-23:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "LI-ajMokOWZpefMUA_UeWg", + "name": "Cafe Binh", + "address": "834 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938687, + "longitude": -75.1574909, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Sandwiches, Vietnamese, Restaurants", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Friday": "7:0-18:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "DAGbCH6-lWHELaKpNoLpVg", + "name": "C Neri Antiques", + "address": "313 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415683, + "longitude": -75.1480927, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home Decor, Home & Garden", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "sDaBm5V1VQMOPfCm76turg", + "name": "Applebee's Grill + Bar", + "address": "701 Cathedral Rd, Andorra Shopping Center, Unit 15", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.063437, + "longitude": -75.23814, + "stars": 2.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "'beer_and_wine'", + "RestaurantsTableService": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "NoiseLevel": "u'loud'", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}", + "CoatCheck": "False", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Bars, Nightlife, American (New), Restaurants, Sports Bars, Burgers, Steakhouses", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "5EHpBOAzRVDBt17jCkgelQ", + "name": "Nicotra Construction", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9120596, + "longitude": -75.1487007, + "stars": 3.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Painters, Carpenters, Contractors, Windows Installation, Home Services, Masonry/Concrete", + "hours": { + "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" + } + }, + { + "business_id": "BEuGzy5gxtGyOEk8iwDfTg", + "name": "Kaku Latin Food", + "address": "3300 Memphis St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9903953, + "longitude": -75.1042523, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Cajun/Creole, Caribbean, Restaurants, Event Planning & Services, Latin American, Caterers, Dominican", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-23:45", + "Saturday": "8:0-23:45" + } + }, + { + "business_id": "linRzPvXlfNwBqBIHYNYcg", + "name": "Provenance Architecturals", + "address": "912 N Canal", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9631615, + "longitude": -75.1373895, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Antiques, Building Supplies, Home Services", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-5:0" + } + }, + { + "business_id": "6JVHcQBnyA1DzK4z65cJSw", + "name": "Falafel Factory", + "address": "32 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952108, + "longitude": -75.170477, + "stars": 4.0, + "review_count": 29, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Middle Eastern, Sandwiches, Restaurants, Mediterranean", + "hours": { + "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": "11:0-20:0" + } + }, + { + "business_id": "9y_0_oMDt9R5n2lDcWQv3A", + "name": "Torch-Wood Cafe", + "address": "303 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955985, + "longitude": -75.1443256, + "stars": 4.5, + "review_count": 103, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Convenience Stores, Sandwiches, Cafes, Restaurants", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "krvkW_BDCdhDi1II9KZcMw", + "name": "Favors", + "address": "2867 N Taylor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9991314, + "longitude": -75.1710343, + "stars": 2.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Food, Desserts, Breakfast & Brunch, American (New), Juice Bars & Smoothies", + "hours": { + "Monday": "6:0-2:0", + "Tuesday": "6:0-2:0", + "Wednesday": "6:0-2:0", + "Thursday": "6:0-2:0", + "Friday": "6:0-2:0", + "Saturday": "6:0-2:0", + "Sunday": "6:0-2:0" + } + }, + { + "business_id": "_Nu9EcQxblQc-HHsTd7C3Q", + "name": "FlynnO'Hara Uniforms", + "address": "10905 Dutton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.088463, + "longitude": -74.9892764, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False" + }, + "categories": "Shopping, Uniforms", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "iGSwgglc8r9MFcDHdaqMJw", + "name": "CNBC Newstand", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.882324, + "longitude": -75.232466, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessParking": "None" + }, + "categories": "Newspapers & Magazines, Convenience Stores, Books, Mags, Music & Video, Food, Shopping", + "hours": null + }, + { + "business_id": "6sEbG7K3l1aCsXPmD34zJQ", + "name": "Cure Dispensary", + "address": "4502 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0030997, + "longitude": -75.2216669, + "stars": 3.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False", + "WheelchairAccessible": "True" + }, + "categories": "Cannabis Clinics, Health & Medical, Cannabis Dispensaries, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "v8KUhfdzvPrL8hD_jVCFAQ", + "name": "Wicked the Musical Tour", + "address": "Broad & Spruce Streets", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9469688, + "longitude": -75.1647098, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Performing Arts, Arts & Entertainment", + "hours": null + }, + { + "business_id": "yIzi6HBBNCD-uX_s7YcOFg", + "name": "Merc Bros Pizzeria", + "address": "8108 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0586176, + "longitude": -75.0460788, + "stars": 3.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0" + } + }, + { + "business_id": "eeYJ8NkyQtSwMc75QWsCTA", + "name": "Golf Science Center", + "address": "211 N 13th St, Ste 302", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.956485, + "longitude": -75.160253, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Golf Lessons, Active Life, Golf", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0" + } + }, + { + "business_id": "Ikqc5tNLqyCafgcOXaZ0Ng", + "name": "Hokka Hokka Japanese Restaurant", + "address": "7830 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.06924, + "longitude": -75.19941, + "stars": 3.5, + "review_count": 144, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "HappyHour": "False", + "RestaurantsTableService": "True", + "BYOB": "False", + "RestaurantsDelivery": "False", + "Corkage": "True" + }, + "categories": "Restaurants, Chinese, Japanese, Sushi Bars", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:30-20:30", + "Wednesday": "16:30-20:30", + "Thursday": "16:30-20:30", + "Friday": "16:30-21:0", + "Saturday": "16:30-21:0" + } + }, + { + "business_id": "6iK1I_1a2_l5IFDUPfj2tQ", + "name": "Philadelphia Art Alliance", + "address": "251 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9482091, + "longitude": -75.1708177, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Art Galleries, Shopping, Landmarks & Historical Buildings, Public Services & Government, Arts & Entertainment, American (New), Museums, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "5KnQiQp1s1TqYUwi108ORA", + "name": "Syriana Hookah Lounge", + "address": "14254 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.13247, + "longitude": -75.011565, + "stars": 3.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False}", + "CoatCheck": "False", + "GoodForDancing": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "Smoking": "u'yes'", + "HasTV": "True", + "HappyHour": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "BikeParking": "True", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Bars, Hookah Bars, Nightlife", + "hours": { + "Monday": "17:0-1:0", + "Tuesday": "17:0-1:0", + "Wednesday": "17:0-1:0", + "Thursday": "17:0-1:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "BO7p6kWPWc9CC3KHukpJhg", + "name": "Le Bec Fin", + "address": "1523 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949919, + "longitude": -75.166996, + "stars": 4.0, + "review_count": 227, + "is_open": 0, + "attributes": { + "Alcohol": "'full_bar'", + "WiFi": "u'free'", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsAttire": "u'dressy'", + "RestaurantsPriceRange2": "4", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "False", + "Corkage": "True", + "BYOBCorkage": "'yes_corkage'", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': True, 'casual': False}", + "HappyHour": "True", + "Caters": "True", + "HasTV": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}" + }, + "categories": "Nightlife, Restaurants, Champagne Bars, French, Event Planning & Services, Bars, Caterers", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "18:0-22:0" + } + }, + { + "business_id": "ABSiUVpGvn4waVJkLktMYg", + "name": "Sharetea", + "address": "600 Washington Ave, Unit 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9343757383, + "longitude": -75.1551179846, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True" + }, + "categories": "Coffee & Tea, Food, Juice Bars & Smoothies, Bubble Tea", + "hours": { + "Monday": "10:30-21:0", + "Tuesday": "10:30-21:0", + "Wednesday": "10:30-21:0", + "Thursday": "10:30-21:0", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "KFHGTl5rhJWaUUrfr5q8_w", + "name": "Bodyrock Bootcamp & Executive Training", + "address": "3858 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9613275, + "longitude": -75.199391, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Boot Camps, Gyms, Fitness & Instruction, Trainers, Active Life", + "hours": { + "Monday": "6:0-20:30", + "Tuesday": "6:0-20:30", + "Wednesday": "6:0-20:30", + "Thursday": "6:0-20:30", + "Friday": "6:0-20:30", + "Saturday": "6:0-20:30" + } + }, + { + "business_id": "tdt-kHYKKigMWGGN6ynV2A", + "name": "NTB - National Tire & Battery", + "address": "216 Franklin Mills Cir", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0815161933, + "longitude": -74.9654459953, + "stars": 2.0, + "review_count": 25, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "False" + }, + "categories": "Automotive, Oil Change Stations, Battery Stores, Tires, Shopping, Auto Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-17:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "s8MTunfjxZslRLcjlTiCJg", + "name": "North Star Bar", + "address": "2639 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9730163, + "longitude": -75.1805979, + "stars": 3.5, + "review_count": 134, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'loud'", + "BikeParking": "True", + "Alcohol": "'full_bar'", + "BYOBCorkage": "'no'", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "True" + }, + "categories": "Food, Arts & Entertainment, Beer, Wine & Spirits, Nightlife, American (Traditional), Restaurants, Music Venues, Bars, American (New)", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "uqc5jOWOiPLTPibyy1yI4g", + "name": "Vernick Coffee Bar", + "address": "1800 Arch St, Fl 2, Comcast Technology Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955061, + "longitude": -75.170196, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "HasTV": "True", + "DogsAllowed": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (New), Food, Coffee & Tea", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-15:0", + "Wednesday": "7:30-15:0", + "Thursday": "7:30-15:0", + "Friday": "7:30-15:0" + } + }, + { + "business_id": "vkPfTX9aja-XTb2PfpA2SQ", + "name": "Petco", + "address": "9717 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0844, + "longitude": -75.0248, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "Caters": "False", + "DogsAllowed": "True", + "HasTV": "False", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "OutdoorSeating": "False" + }, + "categories": "Pets, Pet Training, Pet Stores, Pet Services, Pet Groomers", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-22:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "Vlkl-QcYvjnBN3GpOOs-8A", + "name": "Aamco Transmissions", + "address": "1821 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9392604, + "longitude": -75.1744655, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Transmission Repair, Auto Repair", + "hours": null + }, + { + "business_id": "z6sg3yLchXyZqUmanvECYw", + "name": "Snap Kitchen", + "address": "1901 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9609219, + "longitude": -75.1706494, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "DriveThru": "False", + "GoodForKids": "True", + "BikeParking": "True" + }, + "categories": "Food, Restaurants, Food Delivery Services, Health Markets, Specialty Food, Fast Food, Gluten-Free", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-20:0", + "Saturday": "9:0-20:0", + "Sunday": "9:0-21:0" + } + }, + { + "business_id": "VSWk9Jz35zD7tyzaV0GV1Q", + "name": "Dew Inn", + "address": "501 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.97036, + "longitude": -75.14512, + "stars": 4.5, + "review_count": 76, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'no'", + "NoiseLevel": "'average'", + "BikeParking": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': True, u'lot': False, u'validated': False}", + "ByAppointmentOnly": "False", + "RestaurantsGoodForGroups": "False", + "Caters": "False", + "HasTV": "True", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': None, u'dinner': False, u'latenight': None, u'dessert': None}", + "Ambience": "{u'divey': True, u'hipster': None, u'casual': None, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}" + }, + "categories": "Breakfast & Brunch, Restaurants, Diners", + "hours": { + "Monday": "6:0-14:30", + "Tuesday": "6:0-14:30", + "Wednesday": "6:0-14:30", + "Thursday": "6:0-14:30", + "Friday": "6:0-14:30", + "Saturday": "6:0-14:30", + "Sunday": "6:0-14:30" + } + }, + { + "business_id": "e747H7dlPXtZPo6VdSQelw", + "name": "Nom Nom Bowl", + "address": "3701 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9552474, + "longitude": -75.1969099, + "stars": 4.5, + "review_count": 84, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'free'", + "Caters": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "None", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "'average'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Food, Poke, Noodles, Japanese", + "hours": { + "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:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "IefEo5kZdwR647j8WBUozg", + "name": "Starbucks", + "address": "7400 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0499, + "longitude": -75.058075, + "stars": 2.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "qPwqwuSFxE8mnYXnInyvSA", + "name": "Coastal Cave Trading Co", + "address": "Reading Terminl Mrkt", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9533, + "longitude": -75.159437, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "False", + "BusinessParking": "None", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True" + }, + "categories": "Seafood, Restaurants", + "hours": null + }, + { + "business_id": "r2Q0R0o2ozazmsZb6EiFfg", + "name": "El Azteca Uno", + "address": "714 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9492225, + "longitude": -75.1531472, + "stars": 3.5, + "review_count": 242, + "is_open": 0, + "attributes": { + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Caters": "True", + "GoodForKids": "True", + "BikeParking": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "BYOB": "True" + }, + "categories": "Mexican, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:30", + "Saturday": "12:0-22:30" + } + }, + { + "business_id": "dVuf1zQI5MqPgsn5NoqB1Q", + "name": "The Olde City Day School", + "address": "219 Cuthbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9514833, + "longitude": -75.1444474, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Preschools, Child Care & Day Care, Education, Local Services", + "hours": { + "Monday": "6:0-18:30", + "Tuesday": "6:0-18:30", + "Wednesday": "6:0-18:30", + "Thursday": "6:0-18:30", + "Friday": "6:0-18:30" + } + }, + { + "business_id": "dlq2kRHNaW7sf9oCGiTC1w", + "name": "Dominican Diva's Beauty Salon", + "address": "5601 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19141", + "latitude": 40.0383061, + "longitude": -75.14075, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "9:0-17:30", + "Tuesday": "9:0-17:30", + "Wednesday": "9:0-17:30", + "Thursday": "9:0-17:30", + "Friday": "8:30-18:30", + "Saturday": "8:30-18:30", + "Sunday": "9:0-14:45" + } + }, + { + "business_id": "MFoGbIewzyfA2MJDOLnjuw", + "name": "Garden State Tile", + "address": "2401 Walnut St, Ste 301", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9514211, + "longitude": -75.1798164, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False" + }, + "categories": "Interior Design, Shopping, Kitchen & Bath, Home & Garden, Home Services, Flooring", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "Bk_1vsPtOtO0bojfQZQIOw", + "name": "Wasabi House", + "address": "1218 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.94504, + "longitude": -75.162034, + "stars": 3.5, + "review_count": 40, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "False", + "Alcohol": "'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "False", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "None", + "RestaurantsTableService": "True" + }, + "categories": "Sushi Bars, Restaurants", + "hours": null + }, + { + "business_id": "pnDQc8_jio712w3x1gPkEg", + "name": "Halcyon Floats", + "address": "6068 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0330793, + "longitude": -75.2150308, + "stars": 5.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Active Life, Fitness & Instruction, Meditation Centers, Day Spas, Float Spa, Medical Spas, Health & Medical", + "hours": { + "Tuesday": "9:0-22:0", + "Wednesday": "11:15-20:0", + "Thursday": "11:15-20:0", + "Friday": "11:15-20:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "CY9cIgT7EU0ot-3WyiOAiw", + "name": "Mama Angelina's", + "address": "1337 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481071, + "longitude": -75.1636638, + "stars": 3.5, + "review_count": 73, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': True, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "WiFi": "u'no'", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Pizza, Sandwiches, Cheesesteaks", + "hours": { + "Monday": "7:0-0:30", + "Tuesday": "7:0-0:30", + "Wednesday": "7:0-0:30", + "Thursday": "7:0-0:30", + "Friday": "7:0-2:0", + "Saturday": "9:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "XT3nnINWhVx3I39geCva3w", + "name": "Banfield Pet Hospital", + "address": "1112 Chestnut St, Spc 1120", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9500424049, + "longitude": -75.1593159, + "stars": 4.5, + "review_count": 11, + "is_open": 0, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "D_KGxZF6BM0-37pIyCCoQA", + "name": "Taps and Bourbon on Terrace", + "address": "177 Markle St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0226881, + "longitude": -75.2144381, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "BYOB": "False", + "RestaurantsDelivery": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "CoatCheck": "False", + "Corkage": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "HappyHour": "True", + "OutdoorSeating": "True", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "HasTV": "True", + "Smoking": "u'no'", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "Caters": "False" + }, + "categories": "Restaurants, Bars, Nightlife, Pubs, Breakfast & Brunch, Pizza, Cocktail Bars, Sandwiches", + "hours": { + "Monday": "16:0-1:0", + "Tuesday": "16:0-1:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "10:0-2:0" + } + }, + { + "business_id": "vKb3AI6aBwQ6GGOMSNlxKA", + "name": "Maytag", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0662715, + "longitude": -74.9743251, + "stars": 2.0, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Local Services, Appliances & Repair", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "SvJaD8MlsYz9CAEjBsB1Ug", + "name": "Chuck Wagon", + "address": "1890 Woodhaven Rd, Woodhaven & Evans", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.119565, + "longitude": -75.000629, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food Trucks, Food", + "hours": null + }, + { + "business_id": "hqXEIbAt-4bYKoDbXWFiBw", + "name": "Super Fresh Food Markets", + "address": "10th & South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9427927, + "longitude": -75.158636, + "stars": 2.5, + "review_count": 59, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Grocery", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "k2orlWRsgy0s30pIUBfUbQ", + "name": "Mesh Vintage", + "address": "1820 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.927292411, + "longitude": -75.1666446974, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Thrift Stores, Fashion, Used, Vintage & Consignment, Women's Clothing, Shopping", + "hours": null + }, + { + "business_id": "u48EHQFGHF5FwDTqAFXVwQ", + "name": "Fiore Pizza", + "address": "2608 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9892175, + "longitude": -75.127014, + "stars": 3.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Caters": "False", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Food, Pizza", + "hours": null + }, + { + "business_id": "B1lxejaxLL1lCG-syTBQPQ", + "name": "Yello'bar", + "address": "2425 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9428857, + "longitude": -75.1832223, + "stars": 3.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "OutdoorSeating": "True", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "'casual'", + "Corkage": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "True" + }, + "categories": "Restaurants, Beer, Wine & Spirits, American (New), Pubs, Nightlife, Bars, Food, Irish", + "hours": null + }, + { + "business_id": "xEjTSrrDjbS-3S6AthnuKg", + "name": "Gilkin Plumbing & Heating", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.908085, + "longitude": -75.1953934, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Plumbing, Water Heater Installation/Repair, Home Services", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-15:0" + } + }, + { + "business_id": "fpsVGXS0s8KA9H_9N-p-0w", + "name": "La Calenita Bakery Cafe", + "address": "5034 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0281597, + "longitude": -75.1325853, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True" + }, + "categories": "Specialty Food, Restaurants, Ethnic Food, Bakeries, Breakfast & Brunch, Latin American, Colombian, Food", + "hours": { + "Monday": "5:0-19:0", + "Tuesday": "5:0-19:0", + "Wednesday": "5:0-19:0", + "Thursday": "5:0-19:0", + "Friday": "5:0-19:0", + "Saturday": "5:0-19:0", + "Sunday": "6:0-14:0" + } + }, + { + "business_id": "DJCntfqFto6XCdPxIpzNaw", + "name": "Hahnemann University Primary Care", + "address": "2424 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9774533, + "longitude": -75.1245282, + "stars": 1.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Home Health Care, Hospitals", + "hours": null + }, + { + "business_id": "tSRICEpYkNZyeCyHYMsM7w", + "name": "Gents Barber Lounge", + "address": "1850 Frankford Ave A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.978189, + "longitude": -75.131261, + "stars": 4.5, + "review_count": 139, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Men's Hair Salons, Barbers, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-15:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "qF1NTfE0yfbTc1kb2mX1FA", + "name": "Pier 1", + "address": "2310 S Christopher Columbus", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9157090544, + "longitude": -75.1394091693, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Furniture Stores, Home & Garden, Home Decor, Candle Stores, Shopping, Fashion, Department Stores", + "hours": { + "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", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "59yrjRxP423hzGWGgSpLNg", + "name": "People Prints 3D", + "address": "20 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949638, + "longitude": -75.146051, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "3D Printing, Local Services, Hobby Shops, Shopping", + "hours": { + "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-21:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "EekwCjDqa9VT6Kq_aVE_0Q", + "name": "Pho Palace", + "address": "15501 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1332476903, + "longitude": -75.00988, + "stars": 3.5, + "review_count": 238, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForKids": "True", + "HappyHour": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "BYOB": "True", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "False", + "Corkage": "False", + "RestaurantsTableService": "True", + "WiFi": "u'free'" + }, + "categories": "Vietnamese, Restaurants, Comfort Food, Seafood, Soup, Food, Desserts, Asian Fusion", + "hours": { + "Monday": "11:0-21:30", + "Tuesday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-21:30", + "Saturday": "11:0-21:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "wAVlWqMnVk4A8Vqza5ItSw", + "name": "Take It To the Cleaners", + "address": "2441 Aspen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96902, + "longitude": -75.178156, + "stars": 3.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'no'" + }, + "categories": "Sewing & Alterations, Dry Cleaning & Laundry, Laundry Services, Local Services", + "hours": { + "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": "8:0-17:0" + } + }, + { + "business_id": "zODRL6SF5Re-8ZRHWsTraQ", + "name": "Mister Pโ€™s Pizza & Pasta", + "address": "7138 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.044187, + "longitude": -75.231975, + "stars": 3.5, + "review_count": 58, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "HasTV": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}" + }, + "categories": "Sandwiches, Pizza, Italian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "11:0-22:0", + "Friday": "10:30-11:0", + "Saturday": "10:30-11:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "QjPqXSqb9aiBPeRJ91mgnQ", + "name": "Pure Bliss Wellness Center & Spa", + "address": "1704 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9498377, + "longitude": -75.1694777, + "stars": 3.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Day Spas, Beauty & Spas", + "hours": null + }, + { + "business_id": "v9UAZdHKNCeulbl_ajDgvg", + "name": "Petrovsky Market", + "address": "9808 Bustleton Ave, Unit-L", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0936574, + "longitude": -75.0322866, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Food, Grocery, Specialty Food, Meat Shops, Bakeries", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "OkybC0J0Qojq515LDGVRZQ", + "name": "Gomo's Nails Spa", + "address": "130 S 17th St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505067, + "longitude": -75.1691375, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False", + "WheelchairAccessible": "False", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas, Massage, Waxing, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-18:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "-zCalZY32BXWUckU6AXCPg", + "name": "Philly Screen", + "address": "2301 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9868777, + "longitude": -75.1471045, + "stars": 2.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Screen Printing, Local Services", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "NZbhZ0K3gHXdJgFQZw5wYg", + "name": "12 Steps Down", + "address": "831 Christian St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9390537, + "longitude": -75.1576163, + "stars": 3.5, + "review_count": 134, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "'free'", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': None}", + "OutdoorSeating": "True" + }, + "categories": "Nightlife, Pool Halls, Bars, Dive Bars", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-2:0" + } + }, + { + "business_id": "U_1rtvP7YYk02eKdcuxZMA", + "name": "Bally Total Fitness", + "address": "1435 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949734, + "longitude": -75.165682, + "stars": 2.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "GoodForKids": "False" + }, + "categories": "Gyms, Fitness & Instruction, Active Life", + "hours": { + "Monday": "6:0-23:0", + "Tuesday": "6:0-23:0", + "Wednesday": "6:0-23:0", + "Thursday": "6:0-23:0", + "Friday": "6:0-21:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "tHPlLg-9zWJlDqE-6jcxbw", + "name": "Synergy By Jasmine Yoga Classes", + "address": "3901 Main St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.020266, + "longitude": -75.215234, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Dance Clubs, Nightlife, Bed & Breakfast, Active Life, Dance Studios, Fitness & Instruction, Meditation Centers, Hotels & Travel, Yoga", + "hours": null + }, + { + "business_id": "Vsol2D-xusIEVSvz9aggZA", + "name": "Direct Auto Sales", + "address": "9240 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0471127189, + "longitude": -74.9934118616, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Used Car Dealers, Automotive, Car Dealers", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:30-17:30" + } + }, + { + "business_id": "KLua_5a3AsP-1TnjjjhW3w", + "name": "The Drake", + "address": "1512 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9468698, + "longitude": -75.1671697, + "stars": 2.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "10:0-17:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-17:0", + "Saturday": "10:0-17:0" + } + }, + { + "business_id": "rdTz0qIjmCub1LOUh31-8Q", + "name": "BUY the Dozen", + "address": "123 W. Rockland St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0248837, + "longitude": -75.1245396, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Bakeries, Food", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "7OPFjS9OsPIYX_wm0hbZDg", + "name": "Accu Pizza", + "address": "4802 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19139", + "latitude": 39.953559, + "longitude": -75.2184817, + "stars": 2.5, + "review_count": 60, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'no'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "Caters": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Barbeque, Pizza, Restaurants, Desserts, Food, Seafood", + "hours": { + "Monday": "11:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-0:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "F6SuJfk4bTxVNDbJR-tn-A", + "name": "Apple Walnut Street", + "address": "1607 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9499002, + "longitude": -75.1679128, + "stars": 3.0, + "review_count": 219, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "DogsAllowed": "False", + "BikeParking": "True", + "RestaurantsDelivery": "None", + "BusinessParking": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Mobile Phones, Shopping, Local Services, Computers, IT Services & Computer Repair", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "i6nsOTszsTWJw_vRrBkAJg", + "name": "Remixologists", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 47, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Event Planning & Services, DJs, Party & Event Planning, Wedding Planning", + "hours": { + "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" + } + }, + { + "business_id": "3dxwzBawgWJpU-vQjuQJJA", + "name": "Virginio's Pizza & Grill", + "address": "1626 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9320998, + "longitude": -75.1723076, + "stars": 2.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "False", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Mexican, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "kbXGifEQA_2Cqzg8-31MJg", + "name": "CR Hair Studio", + "address": "1745 S St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446658372, + "longitude": -75.1718347186, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True" + }, + "categories": "Blow Dry/Out Services, Hair Extensions, Hair Stylists, Hair Salons, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-15:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "TIdijYW7GmQjeXAcf0ehBQ", + "name": "Tuck Barre & Yoga West Philadelphia", + "address": "3400 Lancaster Ave, Ste 6", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9570681, + "longitude": -75.1916189, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "BikeParking": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fitness & Instruction, Barre Classes, Yoga, Pilates, Active Life", + "hours": { + "Monday": "7:0-20:45", + "Tuesday": "7:0-20:15", + "Wednesday": "7:0-20:30", + "Thursday": "7:0-20:30", + "Friday": "7:0-17:30", + "Saturday": "9:0-13:45", + "Sunday": "11:0-12:45" + } + }, + { + "business_id": "JXcdTuXGaPQHY2-qWIGndA", + "name": "Wendy's", + "address": "2037 South Broad Street", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9244399576, + "longitude": -75.1692000031, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "DriveThru": "False", + "HasTV": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "'average'", + "Caters": "False", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Fast Food, Burgers, Restaurants", + "hours": { + "Monday": "6:0-1:0", + "Tuesday": "6:0-1:0", + "Wednesday": "6:0-1:0", + "Thursday": "6:0-1:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-1:0" + } + }, + { + "business_id": "RxrgGdjVD5fFY7DnJoj3tg", + "name": "Katsu Guys", + "address": "6775 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0546791, + "longitude": -75.126027, + "stars": 4.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Japanese, Asian Fusion", + "hours": null + }, + { + "business_id": "woAHqun9kl4U6HuJUeRqCw", + "name": "Big Ben Pizza", + "address": "7266 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.061412, + "longitude": -75.084254, + "stars": 2.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsBitcoin": "False", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "nFKATkd_j1iwFK9r6s0duQ", + "name": "Applebee's Grill + Bar", + "address": "7650 City Line", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.977529, + "longitude": -75.272689, + "stars": 2.0, + "review_count": 71, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "'full_bar'", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Caters": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "GoodForDancing": "False", + "CoatCheck": "False", + "BusinessAcceptsCreditCards": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "RestaurantsTableService": "True", + "DriveThru": "False", + "HappyHour": "True", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': None, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Furniture Reupholstery, Nightlife, Restaurants, Steakhouses, Bars, Local Services, Burgers, American (Traditional), Sports Bars, Chicken Wings", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-23:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-0:0", + "Saturday": "11:30-0:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "5dwdD8Vd-yjSUm55HTt6jQ", + "name": "Gordon Victor Enterprises Auctnr", + "address": "31 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.951124, + "longitude": -75.14519, + "stars": 2.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Arts & Entertainment, Shopping, Antiques", + "hours": null + }, + { + "business_id": "N3ZhDBulGhkuJnZ0ue109A", + "name": "Liquid Room Restaurant & Bar", + "address": "1361 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9723048, + "longitude": -75.1389466, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Caters": "False", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'free'", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True" + }, + "categories": "Italian, Bars, Restaurants, Latin American, Mediterranean, Nightlife, Spanish, American (New)", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "Wo4JAP8XQqaNFUauDb2aZg", + "name": "Fishtown Social", + "address": "1525 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9738702, + "longitude": -75.1333653, + "stars": 4.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "HasTV": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "WiFi": "u'no'", + "Caters": "False", + "BikeParking": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "Smoking": "u'no'", + "Alcohol": "u'full_bar'", + "CoatCheck": "False", + "DogsAllowed": "True", + "DriveThru": "False", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "False", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsAttire": "'casual'", + "GoodForDancing": "False", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Wine Bars, Restaurants, Beverage Store, Nightlife, Bars, Cocktail Bars, Food, Beer, Wine & Spirits, Tapas/Small Plates", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "hEfm3KoOos1I5QmfrvOcEw", + "name": "Rhino", + "address": "2950 E Tioga St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9821498129, + "longitude": -75.0931201113, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Office Cleaning, Professional Services, Recycling Center, Local Services", + "hours": { + "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-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "tb_K7FlSDQgDm6znhtcByw", + "name": "Yaymaker", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.0729157, + "longitude": -75.1691305, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Arts & Crafts, Arts & Entertainment, Nightlife, Art Classes, Paint & Sip, Education, Event Planning & Services, Party & Event Planning", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-22:0" + } + }, + { + "business_id": "4XbCxF93ZK2BwhPbiReyLQ", + "name": "Jake's Sandwich Board", + "address": "125 S 40th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9546859, + "longitude": -75.2021119, + "stars": 3.5, + "review_count": 55, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "DogsAllowed": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "HasTV": "False", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Cheesesteaks, American (New), Restaurants, Event Planning & Services, Breakfast & Brunch, Sandwiches, Caterers", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "TalelIeUUkElrDLd_QbJ8g", + "name": "Gretchen J Brewer & Associates", + "address": "2329 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.047981, + "longitude": -75.056033, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BikeParking": "True", + "AcceptsInsurance": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "True" + }, + "categories": "Optometrists, Eyewear & Opticians, Shopping, Health & Medical, Doctors, Ophthalmologists", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "mtcgWB-WYipeGkJtaplEjg", + "name": "Amrita Yoga & Wellness", + "address": "1204 Frankford Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9691622, + "longitude": -75.1346044, + "stars": 4.5, + "review_count": 99, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Massage, Nutritionists, Beauty & Spas, Yoga, Pilates, Active Life, Fitness & Instruction", + "hours": null + }, + { + "business_id": "A2Jizi4-CZufW1ozFB-oWA", + "name": "Falls Flowers", + "address": "3421 Conrad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0119446, + "longitude": -75.1889454, + "stars": 5.0, + "review_count": 53, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Home & Garden, Shopping, Wedding Planning, Event Planning & Services, Florists, Party Supplies, Food, Coffee & Tea, Flowers & Gifts", + "hours": { + "Monday": "7:0-18:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-18:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-17:0" + } + }, + { + "business_id": "LGs4pFZig73PTn-HpsnJoA", + "name": "Advanced Chiropractic of Philadelphia", + "address": "1518 Walnut St, Ste 1206", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9494256, + "longitude": -75.1668961, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "True" + }, + "categories": "Massage Therapy, Health & Medical, Chiropractors", + "hours": { + "Monday": "7:0-15:0", + "Tuesday": "7:0-15:0", + "Wednesday": "7:0-15:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-13:0" + } + }, + { + "business_id": "6HvlBeMH1povoskopmp94Q", + "name": "Du Jour Commerce Square", + "address": "2001 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954126, + "longitude": -75.173553, + "stars": 3.0, + "review_count": 48, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "WiFi": "u'free'" + }, + "categories": "Personal Chefs, Caterers, Salad, Food, Event Planning & Services, Restaurants, Coffee & Tea, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-20:0" + } + }, + { + "business_id": "7xlElnqpIR2NuwUOpZLM6Q", + "name": "Loonstyn Roofing", + "address": "2048 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670944, + "longitude": -75.1718892, + "stars": 4.5, + "review_count": 69, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Contractors, Home Services, Roofing", + "hours": { + "Monday": "7:0-16:0", + "Tuesday": "7:15-16:0", + "Wednesday": "7:0-16:0", + "Thursday": "7:0-16:0", + "Friday": "7:0-16:0", + "Saturday": "8:0-12:0" + } + }, + { + "business_id": "8XjxHeV66F4eoIy06rW0pA", + "name": "Porta", + "address": "1216 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9503880379, + "longitude": -75.160978619, + "stars": 3.0, + "review_count": 286, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "False", + "OutdoorSeating": "True", + "GoodForDancing": "False", + "DogsAllowed": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "'full_bar'", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsDelivery": "False", + "Caters": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "HappyHour": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "'no'", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "HasTV": "False" + }, + "categories": "Italian, Wine Bars, Bars, Restaurants, Pizza, Breakfast & Brunch, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:30-16:0", + "Wednesday": "12:0-23:0", + "Thursday": "12:0-23:0", + "Friday": "12:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "xNNVZ3FHLfzF54eiqN3dYA", + "name": "Four Humours", + "address": "1712 N Hancock St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.976625, + "longitude": -75.137137, + "stars": 5.0, + "review_count": 25, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nightlife, Cocktail Bars, Bars, Whiskey Bars, Food, Distilleries", + "hours": { + "Friday": "16:0-23:45", + "Saturday": "14:0-23:45", + "Sunday": "14:0-20:0" + } + }, + { + "business_id": "cVw5sRTxzHW6vSWW5dK4xA", + "name": "Sarvida", + "address": "300 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9695301, + "longitude": -75.1314628, + "stars": 4.5, + "review_count": 61, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': None, 'casual': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsDelivery": "None", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, American (New), Filipino", + "hours": { + "Thursday": "16:0-21:0", + "Friday": "16:0-21:0", + "Saturday": "16:0-21:0" + } + }, + { + "business_id": "ERPefAXgR35A55UsldpwsA", + "name": "J-1 Hair Salon", + "address": "1307 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9445856, + "longitude": -75.1634765, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "P3vUpcO1EPPmXOZY-Wjdrw", + "name": "Han Chon Restaurant", + "address": "6783 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.0548584, + "longitude": -75.1264526, + "stars": 3.5, + "review_count": 14, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "'beer_and_wine'", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "Caters": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Restaurants, Korean", + "hours": { + "Monday": "9:0-0:0", + "Tuesday": "9:0-0:0", + "Wednesday": "9:0-0:0", + "Thursday": "9:0-0:0", + "Friday": "9:0-0:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-0:0" + } + }, + { + "business_id": "qO6gH-xJlkKK58tnSMs1oQ", + "name": "Starshine Salon", + "address": "4327 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025455, + "longitude": -75.222817, + "stars": 5.0, + "review_count": 46, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Beauty & Spas, Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "9:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-19:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "C5yTz0UXLLRQj4J9T_FFsA", + "name": "Veronica Makeup", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9531865, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Beauty & Spas, Makeup Artists", + "hours": null + }, + { + "business_id": "WKVRRb7Oi8AVj4h7YyAxLw", + "name": "Baby Wordplay Theater", + "address": "2227 Grays Ferry Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.945126536, + "longitude": -75.1797012189, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Performing Arts, Education, Preschools, Active Life, Nightlife, Kids Activities, Arts & Entertainment, Music Venues", + "hours": { + "Monday": "16:0-17:30", + "Tuesday": "9:30-12:30", + "Wednesday": "10:15-12:30", + "Thursday": "9:30-12:30", + "Friday": "10:15-12:30", + "Saturday": "9:45-12:0" + } + }, + { + "business_id": "1qBemRZEO3XMlpyKZavTvg", + "name": "Roy's Restaurant", + "address": "124 S 15th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.950162, + "longitude": -75.166089, + "stars": 4.0, + "review_count": 60, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsPriceRange2": "3", + "RestaurantsDelivery": "False", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'dressy'", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HappyHour": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hawaiian, Restaurants, Asian Fusion", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:30-21:0" + } + }, + { + "business_id": "smsZqRAirDU-c5uMxFaZoA", + "name": "A List Nail Studio", + "address": "2013 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951565, + "longitude": -75.1741235, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "WheelchairAccessible": "False" + }, + "categories": "Nail Salons, Beauty & Spas", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "8:30-15:0" + } + }, + { + "business_id": "Zktgz9q-MGVxzQ-vRHebGg", + "name": "Flat Rate Labor", + "address": "3050 Collins St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9904024, + "longitude": -75.1126994, + "stars": 4.5, + "review_count": 64, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Landscaping, Contractors, Local Services, Movers, Snow Removal, Couriers & Delivery Services, Demolition Services, Handyman, Home Cleaning, Painters, Junk Removal & Hauling", + "hours": { + "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": "8:0-13:0" + } + }, + { + "business_id": "VEivTOTxSwKfFhvbVnJzqg", + "name": "IHOP", + "address": "115 W City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.998682, + "longitude": -75.232883, + "stars": 2.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False" + }, + "categories": "Breakfast & Brunch, Diners, Food, American (Traditional), Restaurants", + "hours": null + }, + { + "business_id": "I-VOMeptMsM3ooF_2zWO0g", + "name": "Beijing Homestyle", + "address": "4358 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256846, + "longitude": -75.2242196, + "stars": 3.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "NoiseLevel": "u'quiet'", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Chinese", + "hours": null + }, + { + "business_id": "JHRlwxxKY0JJcU97rJ-Bug", + "name": "Cuba Libre Restaurant & Rum Bar - Philadelphia", + "address": "10 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.949589, + "longitude": -75.14391, + "stars": 3.5, + "review_count": 1195, + "is_open": 1, + "attributes": { + "Corkage": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "BYOBCorkage": "'no'", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "GoodForDancing": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BYOB": "False", + "CoatCheck": "True", + "Caters": "True", + "RestaurantsTableService": "True", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{u'valet': False, u'garage': True, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "False", + "Smoking": "u'no'", + "HappyHour": "True", + "AgesAllowed": "u'allages'", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True" + }, + "categories": "Nightlife, Cuban, Breakfast & Brunch, Latin American, Restaurants, Dance Clubs, Shopping, Bars, Beer, Wine & Spirits, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-20:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "F4RyWsOr2dcV_j131gqNZg", + "name": "Mr.Wish", + "address": "643 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423163, + "longitude": -75.1537058, + "stars": 5.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bubble Tea, Food", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "wsyVH0sf0ttt6G7JqmP9vg", + "name": "Pho 20", + "address": "234-236 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9565494, + "longitude": -75.1558606, + "stars": 4.0, + "review_count": 215, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "WiFi": "'free'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': False}", + "HappyHour": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Vietnamese, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "0FMOvA2Noq-gieWfnXB7aQ", + "name": "Live! Casino & Hotel Philadelphia", + "address": "900 Packer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9091912, + "longitude": -75.1646617, + "stars": 2.5, + "review_count": 26, + "is_open": 1, + "attributes": null, + "categories": "Event Planning & Services, Arts & Entertainment, Hotels & Travel, Casinos, Hotels", + "hours": { + "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" + } + }, + { + "business_id": "xrDD4x5QHyi2YbiB3Eog-Q", + "name": "Alrayyan Food Market", + "address": "121 S 43rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9554894581, + "longitude": -75.2085419744, + "stars": 4.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "OutdoorSeating": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Middle Eastern, Butcher, Halal, Sandwiches, Delis, International Grocery, Desserts, Restaurants, Food, Grocery", + "hours": { + "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" + } + }, + { + "business_id": "GWu4brzs8SDCsH-pbnPddg", + "name": "South Terminal Market", + "address": "306 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413345, + "longitude": -75.1479464, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Candy Stores, Food, Specialty Food, Fruits & Veggies", + "hours": null + }, + { + "business_id": "zLEzvyIkY_Ue7uCqMoGHMQ", + "name": "Pit Stop Car Wash", + "address": "820 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0628479, + "longitude": -75.0870762, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Detailing, Car Wash, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0" + } + }, + { + "business_id": "QBuUA9LnalBq6WsIZbqaHA", + "name": "Cohen & Co Hardware & Home Goods", + "address": "615 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9413488, + "longitude": -75.1503539, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home & Garden, Shopping, Hardware Stores", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "JK5y33Om4fm9sZ0IEvmRlQ", + "name": "Smith Memorial Playground & Playhouse", + "address": "3500 Reservoir Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.981734, + "longitude": -75.195622, + "stars": 4.5, + "review_count": 108, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Playgrounds, Active Life, Parks", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "10:0-16:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "us5YkOICrQ-KWajDuE0-Zw", + "name": "Epic Church", + "address": "4021 Parkside Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9753336, + "longitude": -75.2031975, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Religious Organizations, Churches", + "hours": { + "Sunday": "9:30-12:30" + } + }, + { + "business_id": "Q58EUoChgJeAnROWcSQkLw", + "name": "Drybar - Center City", + "address": "1701 Market St, Ste 500", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9533293867, + "longitude": -75.1685943592, + "stars": 2.5, + "review_count": 128, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "GoodForKids": "False" + }, + "categories": "Hair Salons, Blow Dry/Out Services, Beauty & Spas, Hair Stylists", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-20:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "OUPpDD9vNQscAQLd9giXvQ", + "name": "The Sable Collective", + "address": "1101 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9521374, + "longitude": -75.1585365, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "None", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Arts & Crafts, Accessories, Beauty & Spas, Jewelry, Fashion, Cosmetics & Beauty Supply", + "hours": { + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-19:0", + "Saturday": "12:0-19:0" + } + }, + { + "business_id": "Gx6VfCz3OTtcQYfsMucMGA", + "name": "Crown Fried Chicken", + "address": "4002 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9569121, + "longitude": -75.2022626, + "stars": 4.0, + "review_count": 41, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BikeParking": "False", + "WiFi": "u'no'", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Alcohol": "u'none'", + "HasTV": "True" + }, + "categories": "American (Traditional), Chicken Wings, Restaurants", + "hours": { + "Monday": "9:0-3:0", + "Tuesday": "9:0-3:0", + "Wednesday": "9:0-3:0", + "Thursday": "9:0-3:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-17:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "9JhgKwhnD5ymVQGTKXFp6g", + "name": "Elvis Dirt Cheap Moving and Storage Company", + "address": "4663 Stenton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.026455, + "longitude": -75.158602, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Local Services, Self Storage, Movers", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-16:0" + } + }, + { + "business_id": "K84AScOvOQfPAebCP2iotg", + "name": "Museum Tower Market", + "address": "1800 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9631853057, + "longitude": -75.1685480451, + "stars": 4.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Food, Grocery", + "hours": null + }, + { + "business_id": "UWqEQcjigs6CJ6mcEDS3Ew", + "name": "Fright Factory", + "address": "2200 S Swanson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9195111, + "longitude": -75.1467765, + "stars": 3.0, + "review_count": 54, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "HasTV": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Nightlife, Performing Arts, Haunted Houses, Arts & Entertainment", + "hours": { + "Friday": "19:30-23:0", + "Saturday": "19:30-23:0", + "Sunday": "19:30-22:0" + } + }, + { + "business_id": "sXR63VUa3M1CV_n2ycorag", + "name": "Philly Athletics", + "address": "2807 N 6th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19133", + "latitude": 39.9940268, + "longitude": -75.141806, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Venues & Event Spaces, Batting Cages, Event Planning & Services, Amateur Sports Teams, Active Life, Sports Clubs, Amusement Parks", + "hours": { + "Saturday": "12:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "2Wmvi5-7LS1iw5UkOuLWlw", + "name": "Comfort & Floyd", + "address": "1301 S 11th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9333293182, + "longitude": -75.1620284468, + "stars": 4.5, + "review_count": 78, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "RestaurantsTableService": "True", + "HappyHour": "False", + "OutdoorSeating": "True", + "HasTV": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': False, u'upscale': False}", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': None, u'latenight': None, u'dessert': None}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": { + "Monday": "8:0-15:0", + "Wednesday": "5:0-21:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "hc11CyeADoC4NhPzStObUQ", + "name": "Lian Hsing's", + "address": "1633 W Reed St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9334789, + "longitude": -75.1721331, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Restaurants, American (Traditional), Seafood, Chinese", + "hours": null + }, + { + "business_id": "UKRTddMvknBHdMwGXzVRPA", + "name": "Technesia", + "address": "1805 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9286595, + "longitude": -75.1751528, + "stars": 5.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Professional Services, IT Services & Computer Repair, Data Recovery, Web Design, Shopping, Computers", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "0:0-0:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "Qy9vRAMvHGApXvzf9rZEyg", + "name": "Jomar", + "address": "2590 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0777393, + "longitude": -75.0245952, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Home & Garden, Department Stores, Shopping, Fashion", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "fMYD5yPQi1R2NqxdRrKgvg", + "name": "Houdini Lock & Safe", + "address": "616 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9431814, + "longitude": -75.1659841, + "stars": 2.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "DogsAllowed": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Safe Stores, Hardware Stores, Security Systems, Keys & Locksmiths, Office Equipment, Shopping, Home Services, Home & Garden", + "hours": { + "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" + } + }, + { + "business_id": "Y2naFlnZH9wk-l5Ro0fReQ", + "name": "Bumblefish Sushi & More", + "address": "12 S 10 St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9509237, + "longitude": -75.1569812, + "stars": 2.5, + "review_count": 15, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'" + }, + "categories": "Sushi Bars, Specialty Food, Asian Fusion, Seafood, Restaurants, Food, Japanese, Ethnic Food", + "hours": null + }, + { + "business_id": "XkJsE4AJJ95vctIkE5kRWg", + "name": "Makhani", + "address": "7 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9505721, + "longitude": -75.1454399, + "stars": 4.0, + "review_count": 62, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "HasTV": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "WiFi": "u'free'", + "Caters": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "False", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Indian, Restaurants, Seafood, Desserts, Vegetarian, Food", + "hours": { + "Monday": "17:0-21:45", + "Tuesday": "17:0-21:45", + "Wednesday": "17:0-21:45", + "Thursday": "17:0-21:45", + "Friday": "17:0-22:45", + "Saturday": "17:0-22:45", + "Sunday": "17:0-21:45" + } + }, + { + "business_id": "-R3PWE4ycIc-xElcPqqetw", + "name": "Supercuts", + "address": "528 S 2Nd St, Abbotts Square", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941364, + "longitude": -75.146503, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Barbers, Cosmetics & Beauty Supply, Shopping, Hair Salons, Men's Hair Salons, Hair Stylists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-17:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "B4YxMSe-mBSpB_DRjbivcw", + "name": "Red Sage Salon & Spa", + "address": "9649 James St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.053935, + "longitude": -74.9838211, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "76HRdyRWAJSJwKdAeNkR7w", + "name": "Trio Delight Cafe", + "address": "5675 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.037605, + "longitude": -75.118084, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsDelivery": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "WiFi": "u'free'", + "BikeParking": "False", + "GoodForKids": "True" + }, + "categories": "Steakhouses, Restaurants, Cafes", + "hours": null + }, + { + "business_id": "_pHMElutAeebkqmYYNeI6w", + "name": "Herban Quality Eats", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9567369, + "longitude": -75.195262, + "stars": 4.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "Alcohol": "'none'", + "BikeParking": "True", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "WiFi": "u'free'", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food Delivery Services, Restaurants, Salad, Breakfast & Brunch, Food, Event Planning & Services, Vegan, Caterers, Gluten-Free, Sandwiches, American (New)", + "hours": { + "Monday": "11:0-15:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "KKWQ-OyBDSEVtPQGt3yxiQ", + "name": "Lily Of The Valley Cupcakery and Cafรฉ", + "address": "322 W Chelten Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.029579, + "longitude": -75.1808485016, + "stars": 4.5, + "review_count": 44, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "WheelchairAccessible": "True", + "Caters": "True", + "HasTV": "True" + }, + "categories": "Bakeries, Restaurants, Coffee & Tea, Cafes, Cupcakes, Food", + "hours": { + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0" + } + }, + { + "business_id": "cZWaIEHgIfh2yFAFMlk7bQ", + "name": "Ichiban", + "address": "6070 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0330941, + "longitude": -75.2151447, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Food Delivery Services, Food, Restaurants, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "6KBU6sk4EcISjTEKIy0Yew", + "name": "Spring Chinese", + "address": "3905 Kensington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0055187929, + "longitude": -75.096229, + "stars": 3.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Alcohol": "'none'" + }, + "categories": "Restaurants, Soup, Chinese, Seafood", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "kuFNrXtzdEf4R7oJel0WuQ", + "name": "South Broad Lukoil", + "address": "1243 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9343387, + "longitude": -75.1672265, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gas Stations, Automotive", + "hours": null + }, + { + "business_id": "hgkl73uxONcCu6wIZUuzgQ", + "name": "Yeureka Home Remodeling", + "address": "645 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0067114, + "longitude": -75.1162253, + "stars": 3.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Home Services, Siding, Roofing, Contractors, Glass & Mirrors, Door Sales/Installation, Windows Installation", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "XZvALUhfZJy0ful-GdxK4A", + "name": "Day N Nite", + "address": "908 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954271, + "longitude": -75.1548581, + "stars": 4.0, + "review_count": 22, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "Smoking": "u'yes'", + "CoatCheck": "False", + "ByAppointmentOnly": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': None, 'video': False, 'karaoke': None}", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}", + "BYOB": "False", + "OutdoorSeating": "False", + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsGoodForGroups": "True", + "GoodForDancing": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "Corkage": "False" + }, + "categories": "Bars, Restaurants, Karaoke, Lounges, Cheesesteaks, Nightlife, Hookah Bars, Cocktail Bars", + "hours": { + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "19:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "19:0-2:0", + "Sunday": "19:0-2:0" + } + }, + { + "business_id": "J8UPVO_FTALzvJ0tlMdr8w", + "name": "I Heart Cambodia", + "address": "2207 S 7th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9213976, + "longitude": -75.1583461, + "stars": 4.0, + "review_count": 99, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "BikeParking": "True", + "WiFi": "'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "DogsAllowed": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Cambodian", + "hours": { + "Tuesday": "9:30-20:0", + "Wednesday": "9:30-20:0", + "Thursday": "9:30-20:0", + "Friday": "9:30-22:0", + "Saturday": "9:30-22:0", + "Sunday": "9:30-21:0" + } + }, + { + "business_id": "Xp07B9mbfgqM8gyaj-bdEQ", + "name": "Select Auto Glass Plus", + "address": "3741 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.000774, + "longitude": -75.0971813, + "stars": 4.5, + "review_count": 47, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Windshield Installation & Repair, Auto Glass Services, Home Window Tinting, Automotive, Home Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "cs5cd-2-gwFBKOgMI-xHHg", + "name": "Jai Hung Hong", + "address": "1702 Ranstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9517448, + "longitude": -75.1688909, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Shoe Shine, Shoe Repair", + "hours": null + }, + { + "business_id": "c6t2p3rodvB9A60PktO3lA", + "name": "JNA Institute of Culinary Arts", + "address": "1212 South Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9351965, + "longitude": -75.1676847, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Specialty Schools, Cooking Schools, Education", + "hours": { + "Monday": "7:0-17:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0" + } + }, + { + "business_id": "gOS6rbrF6E42M4Iv0rEpZw", + "name": "Little Pete's Steaks", + "address": "6701 State Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0218539, + "longitude": -75.0400981, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'quiet'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": { + "Monday": "5:0-14:0", + "Tuesday": "5:0-14:0", + "Wednesday": "5:0-14:0", + "Thursday": "5:0-14:0", + "Friday": "5:0-14:0", + "Saturday": "6:0-12:0" + } + }, + { + "business_id": "Xr08bwIBEsaQr83aJKQbNg", + "name": "CVS Pharmacy", + "address": "6701 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0408951218, + "longitude": -75.2239652995, + "stars": 2.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "DriveThru": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False" + }, + "categories": "Cosmetics & Beauty Supply, Health & Medical, Beauty & Spas, Food, Medical Supplies, Pharmacy, Convenience Stores, Shopping, Drugstores", + "hours": { + "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" + } + }, + { + "business_id": "2zSQu6_cLgWAVbZ2LbSLBA", + "name": "Chick-fil-A", + "address": "2204 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9183356, + "longitude": -75.1405113, + "stars": 4.0, + "review_count": 112, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "DriveThru": "True", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "False", + "Caters": "True", + "DogsAllowed": "False", + "HasTV": "True", + "GoodForMeal": "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': True}", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Restaurants, Event Planning & Services, Fast Food, Caterers, Chicken Shop", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-17:15" + } + }, + { + "business_id": "4hQxm6xckt0EGqfAGzQDyg", + "name": "Copabanana", + "address": "344 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9415037, + "longitude": -75.1489862, + "stars": 2.5, + "review_count": 299, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BYOBCorkage": "'no'", + "Caters": "False", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "Alcohol": "'full_bar'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "WiFi": "u'no'", + "GoodForDancing": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Pubs, Cocktail Bars, Lounges, Sandwiches, Restaurants, Burgers, American (Traditional), Bars, American (New), Nightlife", + "hours": { + "Monday": "11:30-2:0", + "Tuesday": "11:30-2:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "11:30-2:0" + } + }, + { + "business_id": "901hyann7Qs3cHOfe7Pzqw", + "name": "The Pet Mechanic", + "address": "858 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9648229, + "longitude": -75.1425569, + "stars": 4.0, + "review_count": 46, + "is_open": 0, + "attributes": null, + "categories": "Veterinarians, Pets", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "sUSHUBf7jtcG8m716Dk0wg", + "name": "T-Mobile", + "address": "2201 Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9188129035, + "longitude": -75.1849633455, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Local Services, IT Services & Computer Repair, Mobile Phones, Telecommunications, Mobile Phone Accessories, Electronics", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "vIkcC2EmoOLptoKyfh6bGw", + "name": "Bella Angel", + "address": "222B Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9537794, + "longitude": -75.1437427, + "stars": 4.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Stylists, Makeup Artists, Hair Extensions, Hair Salons, Beauty & Spas", + "hours": null + }, + { + "business_id": "soNYYxlzBldoIQ5RP0A4dA", + "name": "Adorn Boutique", + "address": "1314 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.970648, + "longitude": -75.134727, + "stars": 5.0, + "review_count": 20, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Fashion, Women's Clothing, Shopping, Accessories, Jewelry, Leather Goods", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "p6H295aQCbDJ80GcpqFvwA", + "name": "Club Quarters Philadelphia", + "address": "1628 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9512939, + "longitude": -75.1684401, + "stars": 3.0, + "review_count": 402, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Hotels, Event Planning & Services, Hotels & Travel", + "hours": null + }, + { + "business_id": "m0yKzuRvpWUWCD2Mcu29LA", + "name": "Philadelphia Tech Repair", + "address": "1411 Dickinson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9317193, + "longitude": -75.1681576, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Mobile Phone Repair, IT Services & Computer Repair, Electronics Repair", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0" + } + }, + { + "business_id": "05Qh_SDHZEoyw_USlnqeHQ", + "name": "Floradelphia", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9559288, + "longitude": -75.1574567, + "stars": 5.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Florists, Flowers & Gifts", + "hours": null + }, + { + "business_id": "_i8q9EXNcIMyxXynHDs1rQ", + "name": "Shake Seafoods", + "address": "7596A Haverford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9794794, + "longitude": -75.2688757, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Seafood, Restaurants, American (Traditional), Cajun/Creole", + "hours": { + "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" + } + }, + { + "business_id": "kjI7T7cHuf2pbeH-LEAnZQ", + "name": "Nick Lafferty Home Renovations", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0149445, + "longitude": -75.0903154, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Roofing, Home Services, Handyman, Painters", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "0:0-0:0", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "9:0-18:0", + "Saturday": "0:0-0:0" + } + }, + { + "business_id": "XqIZUpO7iIrPqLWWm4JjSg", + "name": "Clementine Montessori School", + "address": "2013 Appletree St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9564251, + "longitude": -75.1730942, + "stars": 4.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Montessori Schools, Education, Preschools", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "GyQFbvE0yteV1P7TBPYnBQ", + "name": "Hibachi Grill & Supreme Buffet", + "address": "1619 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0879495, + "longitude": -75.0386644, + "stars": 3.0, + "review_count": 17, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "BikeParking": "False", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Buffets", + "hours": { + "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" + } + }, + { + "business_id": "z2DS9uS9dvWidJTLjOLK1w", + "name": "Schafer's Auto Center", + "address": "1924 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.922277, + "longitude": -75.142768, + "stars": 4.0, + "review_count": 59, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Wheel & Rim Repair, Oil Change Stations, Smog Check Stations, Auto Repair, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-12:0", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "edWI2px4DnybNaS_N4YkaA", + "name": "Bottom Of The Sea Soul", + "address": "327 S 52nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9537233054, + "longitude": -75.2259334177, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Soul Food, Seafood, Restaurants", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "18:0-23:0", + "Saturday": "18:0-23:0", + "Sunday": "13:0-21:0" + } + }, + { + "business_id": "yqCZg1ejIN0sZPzc15Pmhw", + "name": "Thyme Bandit Personal Chef Service", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9682609, + "longitude": -75.1749671, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "WiFi": "u'no'" + }, + "categories": "Shopping, Caterers, Food, Arts & Crafts, Event Planning & Services, Cooking Classes, Personal Chefs", + "hours": { + "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" + } + }, + { + "business_id": "SRNtE5JoaagLXxR7IoY8FQ", + "name": "Daly's Irish Pub", + "address": "4201 Comly St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0226203032, + "longitude": -75.0634400847, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Cocktail Bars, Dive Bars, Irish Pub, Sports Bars, Beer, Wine & Spirits, Pubs, Food, Nightlife, Bars, Karaoke", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-0:0", + "Wednesday": "11:0-0:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "wq752-80E0Tg2q8donVE7w", + "name": "Pennsylvania Dental Group", + "address": "3700 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9560787, + "longitude": -75.1965788, + "stars": 3.5, + "review_count": 34, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Dentists, Cosmetic Dentists, Health & Medical", + "hours": { + "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" + } + }, + { + "business_id": "Tk9KD_DDpcMeceID_VrutQ", + "name": "Pizza Plus", + "address": "1846 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9264547234, + "longitude": -75.1656306535, + "stars": 4.0, + "review_count": 58, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Sandwiches, Restaurants, Pizza", + "hours": { + "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": "11:0-21:0" + } + }, + { + "business_id": "CHvHjQWozGQiLLuTYj0W_A", + "name": "Andrew's Ties", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951401, + "longitude": -75.1682903, + "stars": 3.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Fashion, Men's Clothing, Shopping", + "hours": null + }, + { + "business_id": "Ym7pNybjFDqlazSdtgQi0A", + "name": "H&R Block", + "address": "1500 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.953501, + "longitude": -75.165893, + "stars": 1.5, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Tax Services, Financial Advising, Accountants, Financial Services, Professional Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-20:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "cDufzrf_48YuTLy3ANXEqw", + "name": "Nineteen Nail & Spa", + "address": "770 S 19 Th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.941908, + "longitude": -75.1742586, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Technicians, Nail Salons, Eyelash Service", + "hours": { + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-18:0", + "Sunday": "10:0-17:0" + } + }, + { + "business_id": "pj8OvpfQP9SA9zlIJT7ITA", + "name": "Stein Your Florist", + "address": "7059 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.034617, + "longitude": -75.044692, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "None" + }, + "categories": "Florists, Event Planning & Services, Flowers & Gifts, Shopping, Balloon Services, Floral Designers", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-13:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-13:0", + "Friday": "8:0-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-13:0" + } + }, + { + "business_id": "5Qz7TJFXhm8Mjc8xzoSV5Q", + "name": "Picanha Brazilian Steakhouse", + "address": "6501 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0406845, + "longitude": -75.0758525, + "stars": 3.5, + "review_count": 236, + "is_open": 1, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsPriceRange2": "2", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "BikeParking": "False", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "BYOBCorkage": "'yes_free'", + "WiFi": "u'no'", + "HasTV": "True", + "DogsAllowed": "False", + "Caters": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "HappyHour": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTableService": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Buffets, Steakhouses, Barbeque, Brazilian, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "VbGGpt-Q5ZeMxSFPDbPeBg", + "name": "Girard Bruncherie", + "address": "300 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9697976, + "longitude": -75.1318089, + "stars": 4.5, + "review_count": 224, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "'average'", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "None", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': False}", + "DogsAllowed": "False" + }, + "categories": "Sandwiches, French, Restaurants, Brasseries, Food, American (New), American (Traditional), Coffee & Tea, Breakfast & Brunch", + "hours": { + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "Ytvg9u3vscS7Cviyu1VVwg", + "name": "Franklin Beverage", + "address": "1830 Callowhill St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.96033, + "longitude": -75.169475, + "stars": 4.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "Caters": "False" + }, + "categories": "Food, Beer, Wine & Spirits", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "blmEheu3d9tjZ5PPDdrFCQ", + "name": "Indy Hall", + "address": "399 Market St, Ste 360", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9503831584, + "longitude": -75.1468072442, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Local Flavor, Event Planning & Services, Shared Office Spaces, Community Centers, Public Services & Government, Venues & Event Spaces, Social Clubs, Home Services, Real Estate, Arts & Entertainment", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "RFWabEPg6tiJ-VdwJ5szfA", + "name": "Ho Le Chan", + "address": "2344 E Clearfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9872648, + "longitude": -75.1090307, + "stars": 3.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "Caters": "False", + "Alcohol": "u'none'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "'very_loud'", + "RestaurantsPriceRange2": "2", + "WiFi": "'no'", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Chinese", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "ujsFpiiGu92nUsjlFc9pew", + "name": "Quest Diagnostics", + "address": "4190 City Ave, Ste 416", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0045815344, + "longitude": -75.2173489076, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Health & Medical, Diagnostic Services, Medical Centers, Laboratory Testing", + "hours": { + "Monday": "13:0-15:0", + "Tuesday": "13:0-15:0", + "Wednesday": "13:0-15:0", + "Thursday": "13:0-15:0", + "Friday": "13:0-15:0" + } + }, + { + "business_id": "cmIQVNic6bUsJza-YkHM_Q", + "name": "Casablanca Food Cart", + "address": "Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509585892, + "longitude": -75.1962972757, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Food, Street Vendors", + "hours": null + }, + { + "business_id": "GHbq2lZcy0uuiZLAleeS3A", + "name": "FreshDirect", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 40.0018403, + "longitude": -75.0669552, + "stars": 3.0, + "review_count": 75, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "None", + "Caters": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Food, Specialty Food, Grocery, Caterers, Personal Shopping, Food Delivery Services, Event Planning & Services, Fruits & Veggies", + "hours": { + "Monday": "6:30-0:30", + "Tuesday": "6:30-0:30", + "Wednesday": "6:30-0:30", + "Thursday": "6:30-0:30", + "Friday": "6:30-0:30", + "Saturday": "6:30-0:30", + "Sunday": "6:30-0:30" + } + }, + { + "business_id": "KViWYFEfaTs1Ihu3Yw5SRA", + "name": "Bambinos Pizzeria and Grill", + "address": "8016 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.041877, + "longitude": -75.02755, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "BikeParking": "False", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "DogsAllowed": "False", + "Caters": "False", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "RIfhqjdIJAHbqdKM0_mHqg", + "name": "Little Hands Art Studio", + "address": "3502 Scotts Ln", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0077014, + "longitude": -75.1851189, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "True" + }, + "categories": "Shopping, Arts & Entertainment, Art Galleries", + "hours": null + }, + { + "business_id": "VTG4ywxqcw-R_bvRGTYKaA", + "name": "Tartareperia 18.64", + "address": "1204 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9692131, + "longitude": -75.1363257, + "stars": 4.5, + "review_count": 91, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "Caters": "True", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "True", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "WiFi": "'free'" + }, + "categories": "Restaurants, Latin American, Venezuelan", + "hours": { + "Tuesday": "17:0-21:0", + "Wednesday": "17:0-21:0", + "Thursday": "17:0-21:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "kjqhiQqdUuiC19ubuw3Qxg", + "name": "No. 1 China", + "address": "3348 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0677653, + "longitude": -75.0058696, + "stars": 3.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsReservations": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "s-3ixnJ-nkFRLKL9gW_-wQ", + "name": "Calumet Photographic", + "address": "1400 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9298601, + "longitude": -75.1444777, + "stars": 3.5, + "review_count": 19, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "4", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Electronics, Photography Stores & Services", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30", + "Saturday": "9:0-17:30" + } + }, + { + "business_id": "oFu61fiwKh6W_zgGjATfyw", + "name": "Jomar - Swanson", + "address": "22 Jackson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9197445, + "longitude": -75.1467853, + "stars": 3.5, + "review_count": 27, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True" + }, + "categories": "Discount Store, Arts & Crafts, Shopping, Home Decor, Fabric Stores, Home & Garden", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-21:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "K7KHmHzxNwzqiijSJeKe_A", + "name": "Cafe La Maude", + "address": "816 N 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.963948, + "longitude": -75.144364, + "stars": 4.5, + "review_count": 1485, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "False", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "Caters": "False", + "BikeParking": "False", + "BYOB": "True", + "DogsAllowed": "True", + "RestaurantsTableService": "True", + "Corkage": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}" + }, + "categories": "Sandwiches, Cafes, Coffee & Tea, Restaurants, Food, Breakfast & Brunch, Mediterranean, American (New)", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "9:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "FBFFCqsidjJA3_Lwmp1tpg", + "name": "Foster's Homeware", + "address": "33 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95121, + "longitude": -75.1453267, + "stars": 4.5, + "review_count": 29, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Home & Garden, Home Decor, Appliances, Furniture Stores, Kitchen & Bath", + "hours": { + "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", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "lkDLa223pl6MnXHNK3ms0A", + "name": "Sweet Pea Homemade Ice Cream", + "address": "20th & Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9535726, + "longitude": -75.1731859, + "stars": 4.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Caters": "False", + "WiFi": "'no'" + }, + "categories": "Food Trucks, Food, Desserts, Ice Cream & Frozen Yogurt", + "hours": null + }, + { + "business_id": "hJDMkcbGi--LaTQCzzD4lQ", + "name": "The Paperia", + "address": "8521 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0765763, + "longitude": -75.2068622, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Flowers & Gifts, Arts & Crafts, Local Services, Cards & Stationery, Shopping, Event Planning & Services, Printing Services", + "hours": { + "Monday": "10:0-17:30", + "Tuesday": "10:0-17:30", + "Wednesday": "10:0-17:30", + "Thursday": "10:0-17:30", + "Friday": "10:0-17:30", + "Saturday": "10:0-17:0", + "Sunday": "12:0-16:0" + } + }, + { + "business_id": "qr7meXBoHjezOYUWMj9O4w", + "name": "Nora's Kitchen", + "address": "248 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412618963, + "longitude": -75.1473250317, + "stars": 4.5, + "review_count": 163, + "is_open": 1, + "attributes": { + "WiFi": "'no'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsDelivery": "True", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "OutdoorSeating": "False", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': None, u'romantic': False, u'classy': False, u'upscale': False}", + "BikeParking": "True" + }, + "categories": "Mexican, Restaurants, Sandwiches, Latin American", + "hours": { + "Monday": "11:30-21:0", + "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" + } + }, + { + "business_id": "U71g2hUbA9uOY41kWRLt7w", + "name": "Sunny's Diner", + "address": "2501 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.9909132, + "longitude": -75.1548003, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "y03BVJQmKIVvIuM0rePobw", + "name": "Jake's Pizza", + "address": "201 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9562851, + "longitude": -75.1625341141, + "stars": 3.0, + "review_count": 84, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'no'", + "OutdoorSeating": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "WiFi": "'no'" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-0:0", + "Saturday": "10:0-0:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "XsMM7tc6V5U8WbIcCY-KVg", + "name": "Leehe Fai", + "address": "133 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9505935, + "longitude": -75.1703331, + "stars": 4.5, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Fashion, Shopping, Accessories, Women's Clothing", + "hours": null + }, + { + "business_id": "qF6rl_oEsUv9hkDkWG6f5A", + "name": "Philly Bread", + "address": "4905 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.02593888, + "longitude": -75.1325742528, + "stars": 5.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Professional Services, Food Delivery Services, Wholesalers, Food, Bakeries, Bagels", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "OymuTxYdT9JGi8Per2vTSw", + "name": "Mamou", + "address": "102 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.950171, + "longitude": -75.16213, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "HappyHour": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "False", + "Caters": "False", + "CoatCheck": "False", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False}", + "NoiseLevel": "u'average'", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "Smoking": "u'no'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}", + "GoodForDancing": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "False" + }, + "categories": "Nightlife, Bars, Restaurants, Cocktail Bars, Southern", + "hours": { + "Monday": "16:0-0:0", + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "Y_ro3_6QWVJM7VfgGTmYnA", + "name": "Hanagan Landscaping", + "address": "8200 Solly Pl", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0741159, + "longitude": -75.071213, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Snow Removal, Home Services, Landscaping, Local Services, Gardeners, Landscape Architects, Home & Garden, Shopping", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "1DjntFLW5hHKYYz4aP4yfQ", + "name": "Citizens Bank", + "address": "1417 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9495637, + "longitude": -75.1650706, + "stars": 1.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Financial Services, Banks & Credit Unions", + "hours": null + }, + { + "business_id": "ZpDEotka4TLUKn4V2LXMew", + "name": "Pep Boys Automotive", + "address": "4101-19 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9579342, + "longitude": -75.2057657, + "stars": 1.5, + "review_count": 20, + "is_open": 0, + "attributes": null, + "categories": "Automotive, Auto Repair, Tires, Auto Parts & Supplies", + "hours": { + "Monday": "8:0-20: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" + } + }, + { + "business_id": "WGqKHHhWvjrWbG3m2qzmeg", + "name": "David's Lock Service", + "address": "1410 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9445678, + "longitude": -75.1658994, + "stars": 3.0, + "review_count": 12, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Keys & Locksmiths, Home Services", + "hours": { + "Monday": "9:0-17: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" + } + }, + { + "business_id": "lLMiIXwWBz0pJMM2_4v_5A", + "name": "Pixel Electronics Repair", + "address": "1226 South St, Ste 1F", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943196, + "longitude": -75.1626387, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Mobile Phone Repair, Shopping, Data Recovery, Electronics Repair, IT Services & Computer Repair, Mobile Phones", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "qU_CC7nJ-rOfCusuapOW8g", + "name": "Lucky Restaurant", + "address": "810 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9704811271, + "longitude": -75.1503968444, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Chinese, Restaurants, American (Traditional)", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "TY2bYLLyoZVCO-ic60Zd3w", + "name": "Easy Pickins", + "address": "1207 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507133, + "longitude": -75.160512, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Women's Clothing, Accessories", + "hours": null + }, + { + "business_id": "6vNOkto7t2nKHQeZ1aYQFw", + "name": "Pete's Pizza", + "address": "1913 N 54th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9863489, + "longitude": -75.2317371, + "stars": 1.5, + "review_count": 38, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'very_loud'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "Caters": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "BikeParking": "False", + "HasTV": "True", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "SStWxXGmE3U25aP48WveVw", + "name": "Golden Dragon", + "address": "3212 N Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0020821, + "longitude": -75.1530093, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "Caters": "False", + "Alcohol": "u'none'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'", + "NoiseLevel": "u'very_loud'", + "BikeParking": "False", + "HasTV": "True" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "11:0-1:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-1:0", + "Friday": "11:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "13:0-1:0" + } + }, + { + "business_id": "ODsT14d1Hv31KUsvh207NQ", + "name": "PhillyWisper", + "address": "1602 Frankford Ave, Ste 3798", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9744173, + "longitude": -75.1334223, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Home Services, Professional Services, Internet Service Providers", + "hours": { + "Monday": "8:0-21:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-21:0" + } + }, + { + "business_id": "7gnMU6LBniKb52hUOJhgKA", + "name": "Police and Fire Federal Credit Union", + "address": "3330 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0674859906, + "longitude": -75.0078562784, + "stars": 5.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": null + }, + { + "business_id": "390CUkTdCxK89Nb9FdNp1g", + "name": "Saxbys", + "address": "1625 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9515705, + "longitude": -75.1680038, + "stars": 4.0, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WiFi": "u'free'", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "9:30-17:0", + "Saturday": "10:0-19:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Bk4I9v2Hk2u4Rqyl9g1GGA", + "name": "Top Notch Cleaners", + "address": "3601 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19020", + "latitude": 39.9566244, + "longitude": -75.194436, + "stars": 3.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, Home Organization, Office Cleaning, Professional Services, Home Services, Home Cleaning, Carpet Cleaning", + "hours": { + "Monday": "8:0-19:0", + "Tuesday": "8:0-19:0", + "Wednesday": "8:0-19:0", + "Thursday": "8:0-19:0", + "Friday": "8:0-19:0", + "Saturday": "8:0-19:0", + "Sunday": "8:0-19:0" + } + }, + { + "business_id": "INzXxeWaJD0dXM5mi6bP3Q", + "name": "El Zarape", + "address": "1648 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928959, + "longitude": -75.1647092, + "stars": 3.5, + "review_count": 87, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsAttire": "'casual'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "HasTV": "True", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "1", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "10:0-23:0" + } + }, + { + "business_id": "N6F0uS3VVUMMWxxSi0Y63w", + "name": "Doggie Style", + "address": "4361 Main St.", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.025805, + "longitude": -75.223965, + "stars": 3.5, + "review_count": 12, + "is_open": 0, + "attributes": null, + "categories": "Pet Services, Pet Stores, Pets", + "hours": null + }, + { + "business_id": "krCemrpZvEOrFDhTnROuXg", + "name": "2nd Time Around", + "address": "1728 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951329, + "longitude": -75.1699729, + "stars": 3.0, + "review_count": 79, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Accessories, Shopping, Used, Vintage & Consignment, Fashion", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "oHiaVt8SG3EgVyyJlzhlwg", + "name": "O'Neals Pub", + "address": "611 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941026, + "longitude": -75.147402, + "stars": 4.0, + "review_count": 134, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "Caters": "True", + "HasTV": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': None, 'brunch': None, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': True, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}", + "RestaurantsDelivery": "True" + }, + "categories": "Sports Bars, Bars, Nightlife, Irish, Food, Restaurants, Beer, Wine & Spirits, Pubs", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "eU2xVsKv3d1cJicQh_q6qg", + "name": "Pasha's Halal Food", + "address": "1652 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9760646, + "longitude": -75.1383708, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Halal, Cheesesteaks, Restaurants, Middle Eastern", + "hours": { + "Monday": "8:0-20:0", + "Tuesday": "8:0-20:0", + "Wednesday": "8:0-20:0", + "Thursday": "8:0-20:0", + "Friday": "8:0-21:0", + "Saturday": "10:0-21:0" + } + }, + { + "business_id": "i0sRilI4UUGa7IS8DAbQqg", + "name": "Fleur De Lis Boutique", + "address": "2107 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9509688, + "longitude": -75.1762158, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Fashion, Jewelry, Women's Clothing", + "hours": { + "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", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "Dw0nQsVS_2-vlhLUG87Gpw", + "name": "Maker artisan pizza", + "address": "5301 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.032491, + "longitude": -75.169194, + "stars": 4.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "BikeParking": "True", + "WiFi": "u'free'", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Pizza", + "hours": { + "Monday": "10:0-21:45", + "Tuesday": "10:0-21:45", + "Wednesday": "10:0-21:45", + "Thursday": "10:0-21:45", + "Friday": "10:0-22:45", + "Saturday": "10:0-22:45", + "Sunday": "11:0-21:45" + } + }, + { + "business_id": "Tbcm5d3KYkRi7V5viic7eA", + "name": "BenTai Cuisine", + "address": "1439 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9584158, + "longitude": -75.1638358, + "stars": 4.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Asian Fusion, Chinese, Restaurants, Thai, Japanese", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "sSECFLujBecuFCbt8c0KyA", + "name": "Caribbean Palm", + "address": "2-32 N 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9582549, + "longitude": -75.1688978, + "stars": 3.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Street Vendors, Soul Food, Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "uL2yhLlraC05TVYMme4W9g", + "name": "The Fire", + "address": "410-12 West Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9697745, + "longitude": -75.1435131, + "stars": 3.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "Smoking": "u'outdoor'", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "GoodForDancing": "True", + "WiFi": "u'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'full_bar'", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "RestaurantsReservations": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Nightlife, Arts & Entertainment, Bars, Dive Bars, Music Venues", + "hours": { + "Monday": "16:0-2:0", + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "v_PY4Lw53nf6Nej9is-3tw", + "name": "The Bourse Garage", + "address": "400 Ranstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9493001, + "longitude": -75.1477762, + "stars": 3.0, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Parking, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "kwH2kRE5va6UneBsjPt34g", + "name": "Vida Airbrush Tanning Studio", + "address": "612 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9614, + "longitude": -75.141604, + "stars": 5.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Beauty & Spas, Tanning, Hair Removal, Spray Tanning, Waxing, Teeth Whitening", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "11:0-14:0" + } + }, + { + "business_id": "U50T86i8wyNWGWxsP7GIRw", + "name": "Chili's", + "address": "2451 W Cheltenham Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.074768681, + "longitude": -75.1579621104, + "stars": 1.5, + "review_count": 86, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsAttire": "'casual'", + "Caters": "True", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "Alcohol": "'full_bar'", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "HappyHour": "True", + "BikeParking": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': None}" + }, + "categories": "Bars, Restaurants, Tex-Mex, American (Traditional), Nightlife", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "JxKgwQUWG-RUNklb-ZJgSQ", + "name": "Tritone", + "address": "1508 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 40.0908977, + "longitude": -74.940729, + "stars": 4.0, + "review_count": 44, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Corkage": "False", + "BYOBCorkage": "'yes_free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "Alcohol": "'full_bar'" + }, + "categories": "American (New), Dive Bars, Bars, Arts & Entertainment, Music Venues, Restaurants, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "irolxiYw4pOCM9gGDOhnsw", + "name": "Boston Market", + "address": "3901 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9556727, + "longitude": -75.2002489, + "stars": 2.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "WiFi": "'no'", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "Ambience": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True" + }, + "categories": "American (Traditional), Restaurants, Comfort Food, Caterers, Event Planning & Services, Chicken Shop, Sandwiches", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "4ZKAGQ2U8M4mtONcAg42cQ", + "name": "Lucky's Last Chance", + "address": "848 S 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9363134, + "longitude": -75.1468993, + "stars": 4.5, + "review_count": 130, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WheelchairAccessible": "False", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "DriveThru": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'average'", + "Smoking": "u'no'", + "CoatCheck": "False", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "BYOB": "False", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': None, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BestNights": "{u'monday': True, u'tuesday': True, u'wednesday': False, u'thursday': False, u'friday': True, u'saturday': False, u'sunday': False}", + "Corkage": "False" + }, + "categories": "Restaurants, Hot Dogs, Bars, Burgers, Beer Bar, Nightlife", + "hours": { + "Monday": "0:0-0: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" + } + }, + { + "business_id": "g8U-njgd5kU_qaxbEqMYPA", + "name": "Du Jour Symphony House", + "address": "2001 Market St, Ste 103", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.953968, + "longitude": -75.173561, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, American (New)", + "hours": null + }, + { + "business_id": "4X_-18QYn1mitVpaeua1CQ", + "name": "MIZU Sushi Bar", + "address": "133 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9508987, + "longitude": -75.1736693, + "stars": 3.5, + "review_count": 112, + "is_open": 0, + "attributes": { + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "OutdoorSeating": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsGoodForGroups": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "BikeParking": "True", + "GoodForKids": "True" + }, + "categories": "Food, Specialty Food, Sushi Bars, Japanese, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "pl6w93RCu8Fgb2o8Vr9sRg", + "name": "Gail Marcus", + "address": "1500 John F Kennedy Blvd, Ste 1020", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534989, + "longitude": -75.1658879, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Professional Services, Real Estate Law, Real Estate, Business Law, Lawyers, Wills, Trusts, & Probates, Estate Planning Law", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0" + } + }, + { + "business_id": "Nj3tEe9UtEa7SyGunl7Y6g", + "name": "Fueling Station", + "address": "224 S Broad St, Fl 8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.948775, + "longitude": -75.1645213, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "Caters": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': True, 'lot': False, 'valet': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Juice Bars & Smoothies, Food, Breakfast & Brunch, Cafes", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-20:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "0Fdn_98lawOYiFPh68HUUg", + "name": "Center City Veterinary Hospital", + "address": "37 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94911, + "longitude": -75.145668, + "stars": 4.5, + "review_count": 237, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Pets, Veterinarians, Health & Medical, Pet Cremation Services, Hospitals, Pet Services, Pet Hospice", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:30-19:30", + "Wednesday": "8:30-19:30", + "Thursday": "8:30-19:30", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "ARO7hDjBvV0ncsJTEdQfTw", + "name": "Holy Family University", + "address": "9801 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0605249398, + "longitude": -74.9886673089, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "WiFi": "u'free'" + }, + "categories": "Education, Colleges & Universities", + "hours": { + "Monday": "7:0-22:0", + "Tuesday": "7:0-22:0", + "Wednesday": "7:0-22:0", + "Thursday": "7:0-22:0", + "Friday": "7:0-22:0", + "Saturday": "7:0-22:0", + "Sunday": "7:0-22:0" + } + }, + { + "business_id": "qQO7ErS_RAN4Vs1uX0L55Q", + "name": "The Franklin Fountain", + "address": "116 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9495617, + "longitude": -75.1428765, + "stars": 4.0, + "review_count": 2062, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "DriveThru": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Coffee & Tea, Food, Desserts", + "hours": { + "Monday": "12:0-0:0", + "Tuesday": "11:0-23:45", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "12:0-0:0" + } + }, + { + "business_id": "w7sn5HKh0p22jKf8k-7vaQ", + "name": "Portside Arts Center", + "address": "2531 E Lehigh Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9803504, + "longitude": -75.11593, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Art Schools, Active Life, Cultural Center, Specialty Schools, Arts & Entertainment, Education, Dance Schools, Summer Camps, Art Classes", + "hours": { + "Monday": "10:0-18:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "FGdxWqLjlTwanru0uWm8-A", + "name": "Great Life Chiropractic", + "address": "7953 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.055515, + "longitude": -75.235517, + "stars": 4.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Health & Medical, Massage Therapy, Chiropractors", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "15:0-19:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0" + } + }, + { + "business_id": "-Bl2AA2Ujp1EBp0hEw6sIA", + "name": "CVS Pharmacy", + "address": "1046 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.951546, + "longitude": -75.158167, + "stars": 2.5, + "review_count": 27, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Shopping, Drugstores, Health & Medical, Food, Pharmacy, Convenience Stores", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "QGYzYUMsQe6k7__LD91E5w", + "name": "QT Vietnamese Sandwich", + "address": "48 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.953229, + "longitude": -75.156582, + "stars": 4.5, + "review_count": 538, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "HasTV": "True", + "Caters": "True", + "DogsAllowed": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTakeOut": "True", + "HappyHour": "False", + "OutdoorSeating": "None", + "ByAppointmentOnly": "False", + "NoiseLevel": "u'quiet'" + }, + "categories": "Vietnamese, Restaurants, Sandwiches, Specialty Food, Ethnic Food, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "MMepfVIoiRQHA8uYTrTeqw", + "name": "Little City Montessori", + "address": "5th & Master St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9726324, + "longitude": -75.1444616, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Montessori Schools, Preschools, Education", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-18:0", + "Sunday": "8:30-18:0" + } + }, + { + "business_id": "3L_w4x5-IxKhnVddNYsZ6g", + "name": "Andorra Laundromat", + "address": "8919 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.069344, + "longitude": -75.240073, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Dry Cleaning & Laundry, Local Services, Laundry Services, Laundromat", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-23:0" + } + }, + { + "business_id": "jZq8xsKyCrRRzJenCKKn-Q", + "name": "The Sweet Spot", + "address": "1040 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673363017, + "longitude": -75.1407416998, + "stars": 4.5, + "review_count": 34, + "is_open": 0, + "attributes": { + "HasTV": "True", + "Caters": "False", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': True, 'upscale': False, 'casual': True}", + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsDelivery": "False", + "NoiseLevel": "u'quiet'", + "Alcohol": "u'none'" + }, + "categories": "Bagels, Food, Restaurants, Coffee & Tea, Desserts, Cafes, American (New)", + "hours": { + "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": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "8gHcxRfNTfhu8BN3alwnQQ", + "name": "Express Driving School", + "address": "6921 Rutland St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.04565, + "longitude": -75.070018, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Driving Schools, Education, Specialty Schools, Tutoring Centers", + "hours": { + "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" + } + }, + { + "business_id": "FtDi1aWrQSLDwSBs6U2D_A", + "name": "Taste of Portugal", + "address": "718 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0324441, + "longitude": -75.1062292, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "HasTV": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "GoodForKids": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Restaurants, Spanish, Seafood, Portuguese", + "hours": { + "Monday": "8:0-2:0", + "Tuesday": "8:0-2:0", + "Wednesday": "8:0-2:0", + "Thursday": "8:0-2:0", + "Friday": "8:0-2:0", + "Saturday": "8:0-2:0", + "Sunday": "8:0-2:0" + } + }, + { + "business_id": "Ea663rIHyKXz2VP2DPH7Cg", + "name": "Tinsel", + "address": "116 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9497760472, + "longitude": -75.1604597172, + "stars": 3.0, + "review_count": 79, + "is_open": 1, + "attributes": { + "GoodForKids": "False", + "HasTV": "True", + "HappyHour": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': True, 'street': None, 'validated': None, 'lot': False, 'valet': False}", + "Music": "{u'dj': None, u'live': False, u'jukebox': None, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': True, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "GoodForMeal": "{u'breakfast': None, u'brunch': None, u'lunch': False, u'dinner': False, u'latenight': None, u'dessert': False}" + }, + "categories": "Pop-Up Restaurants, Nightlife, Bars, Restaurants", + "hours": { + "Tuesday": "16:0-23:0", + "Wednesday": "16:0-23:0", + "Thursday": "16:0-23:0", + "Friday": "16:0-23:0", + "Saturday": "14:0-23:0", + "Sunday": "14:0-23:0" + } + }, + { + "business_id": "U4yrxSpqLaPrGqcqok2vJg", + "name": "Regal UA Riverview Plaza IMAX & RPX", + "address": "1400 South Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9292003913, + "longitude": -75.1448488443, + "stars": 2.0, + "review_count": 232, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Arts & Entertainment, Cinema", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "E-jW9jFfmUasdipfnLPdWw", + "name": "Burke & Payne Barber", + "address": "734 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940691, + "longitude": -75.157623, + "stars": 4.0, + "review_count": 50, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Barbers, Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-19:0", + "Sunday": "9:0-19:0" + } + }, + { + "business_id": "W8JndS-2XMSk-ZGGufKzZg", + "name": "La Copine Brunch Cart", + "address": "Garden Variety, 209 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9643891, + "longitude": -75.1410144, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "Caters": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Street Vendors, Food", + "hours": { + "Saturday": "11:0-16:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "NQn2fIomrrMXXUxZXH99YA", + "name": "Rox Cafe", + "address": "5134 Rochelle Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0177677259, + "longitude": -75.2112064097, + "stars": 2.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "None", + "RestaurantsTakeOut": "None" + }, + "categories": "Food, Restaurants, Breakfast & Brunch, Sandwiches, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "uPnrOJOTmWQ8LPgCkvOf5g", + "name": "Young's Nail Salon", + "address": "125 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9502515, + "longitude": -75.1673156, + "stars": 3.5, + "review_count": 151, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'" + }, + "categories": "Nail Salons, Beauty & Spas, Waxing, Skin Care, Hair Removal", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "BjnDHAsCzklPkzcbgm_zGA", + "name": "Save A Lot", + "address": "1300 Washington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9372079, + "longitude": -75.1653457, + "stars": 3.0, + "review_count": 13, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "False", + "Caters": "False" + }, + "categories": "Discount Store, Food, Shopping, Grocery", + "hours": { + "Monday": "8:0-22:0", + "Tuesday": "8:0-22:0", + "Wednesday": "8:0-22:0", + "Thursday": "8:0-22:0", + "Friday": "8:0-22:0", + "Saturday": "8:0-22:0", + "Sunday": "8:0-22:0" + } + }, + { + "business_id": "L6dgg_oodKJvNQTNdqIZ6Q", + "name": "The Grape Room", + "address": "105 Grape St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.0256961, + "longitude": -75.2230992, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "HasTV": "True", + "BikeParking": "False", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': True, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "NoiseLevel": "u'very_loud'", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}" + }, + "categories": "Bars, Music Venues, Nightlife, Arts & Entertainment", + "hours": { + "Monday": "20:0-2:0", + "Tuesday": "19:0-1:0", + "Wednesday": "19:0-1:0", + "Thursday": "19:0-1:0", + "Friday": "19:0-2:0", + "Saturday": "19:0-2:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "sU2mvdxCe7kTaLsNLIqmbw", + "name": "Pizza Hut", + "address": "4501 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.017104, + "longitude": -75.096448, + "stars": 1.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "GoodForKids": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "'average'", + "RestaurantsDelivery": "True", + "HasTV": "True" + }, + "categories": "Restaurants, Chicken Wings, Pizza, Italian, Fast Food", + "hours": { + "Monday": "10:30-21:45", + "Tuesday": "10:30-21:45", + "Wednesday": "10:30-21:45", + "Thursday": "10:30-21:45", + "Friday": "10:30-22:0", + "Saturday": "10:30-22:0", + "Sunday": "10:30-21:45" + } + }, + { + "business_id": "mBgaPljP3OYkl_vGKTyFNw", + "name": "LaScala's Birra", + "address": "1700 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9286739096, + "longitude": -75.1650932751, + "stars": 4.0, + "review_count": 383, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "WiFi": "u'no'", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "GoodForDancing": "False", + "WheelchairAccessible": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "HappyHour": "True", + "CoatCheck": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "Smoking": "u'no'", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': True, u'upscale': False}", + "Music": "{'dj': None, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': None}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Bars, Nightlife, Restaurants, Pizza, Beer Bar, Italian", + "hours": { + "Monday": "16:0-21:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-21:0", + "Thursday": "16:0-21:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "MnGsvg7OxB0iZ02Ke0_IYw", + "name": "40th Street MFL Station", + "address": "40TH And Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9571507, + "longitude": -75.2019596, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Transportation, Public Transportation, Hotels & Travel", + "hours": null + }, + { + "business_id": "p2LfPp--eXZQzKtMdDL2aA", + "name": "LaScala's Fire", + "address": "615 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9496281, + "longitude": -75.1518931, + "stars": 3.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "OutdoorSeating": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': True}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Event Planning & Services, Venues & Event Spaces, Italian, Restaurants", + "hours": { + "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": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "8OoLxv91ztELwzfvG26xjA", + "name": "Taste Queen Chinese Restaurant", + "address": "9347 Krewstown Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.086753, + "longitude": -75.0444359, + "stars": 3.5, + "review_count": 61, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "NoiseLevel": "u'quiet'", + "BikeParking": "True", + "Caters": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Chinese", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "X5O6zIZZV_7KZjcEF3pWkg", + "name": "Philadelphia Urology Associates", + "address": "1216 Arch St, Ste 3B", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9537636, + "longitude": -75.1604208, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "AcceptsInsurance": "True" + }, + "categories": "Urologists, Doctors, Hospitals, Health & Medical", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "2CDI713ATuxHfnB5b-sBdw", + "name": "Vedge", + "address": "1221 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9479310476, + "longitude": -75.1614279837, + "stars": 4.5, + "review_count": 1447, + "is_open": 1, + "attributes": { + "Caters": "False", + "WiFi": "u'no'", + "GoodForKids": "False", + "RestaurantsReservations": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "False", + "NoiseLevel": "u'average'", + "HappyHour": "True", + "RestaurantsPriceRange2": "3", + "ByAppointmentOnly": "True", + "Alcohol": "u'full_bar'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "DogsAllowed": "False", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': None, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Vegetarian, Beer, Wine & Spirits, Vegan, Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0" + } + }, + { + "business_id": "Nz35wEHaq9gKK5uCFfqrhg", + "name": "Massage by Chand", + "address": "201 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9485577598, + "longitude": -75.1613785433, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Local Services, Massage, Beauty & Spas", + "hours": { + "Monday": "9:0-20:30", + "Tuesday": "9:0-20:30", + "Wednesday": "9:0-20:30", + "Thursday": "9:0-20:30", + "Friday": "9:0-20:30", + "Saturday": "9:0-20:30", + "Sunday": "9:0-20:30" + } + }, + { + "business_id": "rnDidItx4G8a-KWy5w1rrA", + "name": "Monro Auto Service And Tire Centers", + "address": "6402 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0288960342, + "longitude": -75.057874918, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Oil Change Stations, Tires, Auto Repair", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "7:30-18:0" + } + }, + { + "business_id": "8vlMWhINB8_TAsNR4RF75Q", + "name": "Mackintosh Movers", + "address": "3650 Salmon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9888746, + "longitude": -75.0909997, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Piano Services, Musical Instrument Services, Packing Services, Local Services, Movers, Home Services", + "hours": { + "Monday": "9:0-5:30", + "Tuesday": "9:0-5:30", + "Wednesday": "9:0-5:30", + "Thursday": "9:0-5:30", + "Friday": "9:0-5:30" + } + }, + { + "business_id": "DK7ljvTHet2H80iUedvWpg", + "name": "M&T Bank", + "address": "117 S 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510899164, + "longitude": -75.1703740137, + "stars": 3.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Banks & Credit Unions, Financial Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-17:0", + "Wednesday": "9:0-16:0", + "Thursday": "10:0-17:0", + "Friday": "10:0-18:0" + } + }, + { + "business_id": "2c4z-PvJY4RvPCDxaUsfpg", + "name": "Domino's Pizza", + "address": "8914 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19136", + "latitude": 40.05188, + "longitude": -75.010779, + "stars": 1.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Sandwiches, Restaurants, Pizza, Chicken Wings", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-0:0" + } + }, + { + "business_id": "K667iat12Z_J6Sg4MlKBhw", + "name": "Temple Center for Women's Health", + "address": "525 Jamestown Ave, Ste 201", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19126", + "latitude": 40.054198, + "longitude": -75.137267, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Doctors, Health & Medical, Obstetricians & Gynecologists", + "hours": null + }, + { + "business_id": "X7TvrNg6jY1Q0JHJXjlQ2g", + "name": "ArtBar", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9527827, + "longitude": -75.1703617, + "stars": 3.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "NoiseLevel": "'quiet'", + "Caters": "False", + "RestaurantsReservations": "False", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "HasTV": "True", + "WheelchairAccessible": "True", + "Smoking": "u'no'", + "Music": "{'dj': False}", + "Alcohol": "'full_bar'", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "GoodForDancing": "False", + "DogsAllowed": "False", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "CoatCheck": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Hotels & Travel, Coffee & Tea, Event Planning & Services, Nightlife, Lounges, Hotels, Bars", + "hours": { + "Monday": "6:30-2:0", + "Tuesday": "6:30-2:0", + "Wednesday": "6:30-2:0", + "Thursday": "6:30-2:0", + "Friday": "6:30-2:0", + "Saturday": "6:30-2:0", + "Sunday": "6:30-2:0" + } + }, + { + "business_id": "94wTNYCNUYf5eclY8KxCcA", + "name": "Insomnia Cookies", + "address": "3400 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957382, + "longitude": -75.191595, + "stars": 4.0, + "review_count": 52, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Food, Street Vendors, Food Delivery Services, Bakeries, Desserts, Ice Cream & Frozen Yogurt", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-1:0", + "Wednesday": "11:0-1:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-18:0", + "Saturday": "12:0-3:0", + "Sunday": "12:0-1:0" + } + }, + { + "business_id": "uXFt5P6nmFjoeGQqRmLVLQ", + "name": "Old English Pizza", + "address": "2765 Orthodox St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19137", + "latitude": 39.9974914, + "longitude": -75.0734115, + "stars": 2.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "RestaurantsReservations": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "1", + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Pizza, Restaurants", + "hours": null + }, + { + "business_id": "o_6YLXkEWeLZputXJ--QYA", + "name": "Humpty's Dumplings", + "address": "705 East Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9404748, + "longitude": -75.1507774, + "stars": 4.0, + "review_count": 69, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "Caters": "True", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "HappyHour": "False", + "Alcohol": "u'none'", + "RestaurantsDelivery": "True", + "NoiseLevel": "'quiet'", + "RestaurantsTableService": "False", + "BikeParking": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "'casual'" + }, + "categories": "American (New), Restaurants, American (Traditional), Asian Fusion, Noodles, Dim Sum, Fast Food, Chinese", + "hours": { + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "Y_llIPQGEHFQ9Hl-gfPc1g", + "name": "9th Street Family Dentistry", + "address": "821 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9391565, + "longitude": -75.1576277, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Orthodontists, Health & Medical, Oral Surgeons, Dentists, Cosmetic Dentists, General Dentistry", + "hours": { + "Monday": "10:0-18:30", + "Tuesday": "10:0-18:30", + "Wednesday": "10:0-18:30", + "Thursday": "10:0-18:30", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "87lcGuiskjrqBlMwVY0zrg", + "name": "Enliven Planters", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0149824, + "longitude": -75.1866396, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Gardeners, Landscaping, Shopping, Home Services, Home & Garden, Nurseries & Gardening, Nightlife, Home Decor, Beer Gardens", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-18:0" + } + }, + { + "business_id": "LSUa7rauZg6UNErHfuBDKg", + "name": "Slice", + "address": "431 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9707126659, + "longitude": -75.1297071576, + "stars": 3.5, + "review_count": 90, + "is_open": 1, + "attributes": { + "Caters": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "GoodForKids": "True", + "DogsAllowed": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "'casual'", + "WheelchairAccessible": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsReservations": "False", + "HasTV": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Italian, Barbeque, Restaurants, Pizza", + "hours": { + "Monday": "10:30-22:0", + "Tuesday": "10:30-22:0", + "Wednesday": "10:30-22:0", + "Thursday": "10:30-22:0", + "Friday": "10:30-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "MB95qdTuKOtDUkv01Jl1Jw", + "name": "Monro Auto Service and Tire Centers", + "address": "3650 Aramingo Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9941550164, + "longitude": -75.0962653756, + "stars": 2.0, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Tires, Oil Change Stations, Automotive", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-17:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "-K80PQ45I5AeYWSCcEcy6g", + "name": "Vivid Salon", + "address": "6513 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0487546237, + "longitude": -75.1836105064, + "stars": 4.5, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Tuesday": "11:0-15:0", + "Wednesday": "11:30-18:30", + "Friday": "11:0-18:0", + "Saturday": "9:0-15:0" + } + }, + { + "business_id": "x6hqqhsStCIcbtMw6dnt-A", + "name": "The Philadelphia Wedding Chapel", + "address": "3502 Scotts Ln, Bldg 3", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.007881, + "longitude": -75.186083, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Wedding Chapels, Wedding Planning, Officiants, Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "mZe1FiIV33qU9_Xgm34w1w", + "name": "Nice Things Handmade", + "address": "1731 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9278641, + "longitude": -75.1655851, + "stars": 4.5, + "review_count": 40, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Shopping, Fashion, Jewelry, Accessories", + "hours": { + "Wednesday": "13:0-19:0", + "Thursday": "13:0-19:0", + "Friday": "13:0-19:0", + "Saturday": "12:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "TS7arPiiUIf-TH76J_FtEQ", + "name": "China King", + "address": "1301 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0586045, + "longitude": -75.078476, + "stars": 3.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Seafood, Restaurants, Soup, Chinese", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:30", + "Saturday": "11:0-23:30", + "Sunday": "11:30-22:0" + } + }, + { + "business_id": "vXb4OWsjPoiBtmarfexj-g", + "name": "Green Eggs Cafรฉ", + "address": "719 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9623633, + "longitude": -75.1407424, + "stars": 3.5, + "review_count": 852, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "GoodForKids": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "False", + "Caters": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}" + }, + "categories": "Restaurants, American (New), Diners, Breakfast & Brunch", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "ZXXPrUFKtF83nJEc-fJbDw", + "name": "WeWork", + "address": "1430 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.94913, + "longitude": -75.16595, + "stars": 5.0, + "review_count": 7, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Real Estate, Shared Office Spaces, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0" + } + }, + { + "business_id": "c6hhh1Kpr7iau8qMH74w2Q", + "name": "Pub On Passyunk East", + "address": "1501 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9308275, + "longitude": -75.1620441, + "stars": 4.0, + "review_count": 443, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "'full_bar'", + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "WiFi": "'no'", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': True, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "HappyHour": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': True, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "CoatCheck": "False", + "Smoking": "u'outdoor'", + "ByAppointmentOnly": "False", + "GoodForDancing": "False" + }, + "categories": "Nightlife, Pubs, Bars", + "hours": { + "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" + } + }, + { + "business_id": "b2yXT7DmVD-SL9S_LwCuYA", + "name": "Akbar restaurant and Banquet Hall", + "address": "3180 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0693548, + "longitude": -75.0084942, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "Smoking": "u'outdoor'", + "Caters": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Alcohol": "u'none'", + "RestaurantsReservations": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "CoatCheck": "False", + "HappyHour": "True", + "DogsAllowed": "False", + "WheelchairAccessible": "True", + "WiFi": "u'free'", + "OutdoorSeating": "True", + "HasTV": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "True", + "GoodForKids": "True" + }, + "categories": "Bars, Asian Fusion, Venues & Event Spaces, Nightlife, Pakistani, Hookah Bars, Dance Clubs, Event Planning & Services, Indian, Restaurants", + "hours": null + }, + { + "business_id": "fmBO7y4Yqnb8xm6naMS77A", + "name": "VIX Emporium", + "address": "5009 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480157, + "longitude": -75.2238172, + "stars": 4.5, + "review_count": 29, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Shopping, Arts & Crafts, Children's Clothing, Jewelry, Event Planning & Services, Gift Shops, Flowers & Gifts, Fashion, Cards & Stationery, Women's Clothing", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "p4hIzUXyP0ENRIEKcihhDA", + "name": "Crossfit Novem", + "address": "1732 N Howard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9763823, + "longitude": -75.1352466, + "stars": 5.0, + "review_count": 39, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Circuit Training Gyms, Active Life, Gyms, Yoga, Interval Training Gyms, Boot Camps, Fitness & Instruction", + "hours": { + "Monday": "17:0-20:0", + "Tuesday": "17:0-19:0", + "Wednesday": "17:0-19:0", + "Thursday": "17:0-20:0", + "Friday": "17:0-19:0", + "Saturday": "9:0-11:0", + "Sunday": "9:0-12:0" + } + }, + { + "business_id": "6Mo-BCD4nlChbBgA_HkhfA", + "name": "Sole Control", + "address": "1050 N Hancock St, Ste 51", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9663242, + "longitude": -75.1389061, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Sporting Goods, Fashion, Arts & Entertainment, Shopping, Festivals, Personal Shopping, Sports Wear, Shoe Stores", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-19:0" + } + }, + { + "business_id": "99Q1CH0ZUvoz2yMXFFJMyw", + "name": "Thomas Anthonys Hair Studio", + "address": "1213 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.947961, + "longitude": -75.161221, + "stars": 3.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Hair Salons, Beauty & Spas, Barbers", + "hours": { + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "9:0-18:0" + } + }, + { + "business_id": "esVdHIU-lsFWRWaIm7_pug", + "name": "Dress Up Time", + "address": "7240 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0363815, + "longitude": -75.0421427, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "BikeParking": "False" + }, + "categories": "Formal Wear, Shopping, Accessories, Bridal, Fashion, Women's Clothing, Ceremonial Clothing", + "hours": { + "Tuesday": "10:0-16:0", + "Wednesday": "12:0-19:0", + "Thursday": "10:0-16:0", + "Friday": "10:0-16:0", + "Saturday": "10:0-16:0" + } + }, + { + "business_id": "k_mIcCFvXWuN8I4ofCta3g", + "name": "KFC", + "address": "4001 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.0122547754, + "longitude": -75.1354884957, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "DriveThru": "True", + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1" + }, + "categories": "Restaurants, Chicken Wings, Fast Food, Chicken Shop", + "hours": { + "Monday": "10:30-0:0", + "Tuesday": "10:30-0:0", + "Wednesday": "10:30-0:0", + "Thursday": "10:30-0:0", + "Friday": "10:30-1:0", + "Saturday": "10:30-1:0", + "Sunday": "10:30-23:0" + } + }, + { + "business_id": "5M3AWxHBAJn6ET3AtBzmDw", + "name": "Brazilian Pizza Philly", + "address": "7518 Castor Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0550057, + "longitude": -75.0630083, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "WiFi": "u'free'", + "Corkage": "False", + "HasTV": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BikeParking": "False", + "RestaurantsTakeOut": "True", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'none'" + }, + "categories": "Brazilian, Restaurants, Italian, Pizza", + "hours": { + "Monday": "16:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:30-23:0" + } + }, + { + "business_id": "RGzIHIhOIZzsjLRVDvSjRQ", + "name": "Kinme", + "address": "1117 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9477682202, + "longitude": -75.1601715512, + "stars": 4.5, + "review_count": 110, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "None", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "WiFi": "u'no'", + "Ambience": "{u'divey': None, u'hipster': True, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': False}" + }, + "categories": "Tapas/Small Plates, Japanese, Sushi Bars, Restaurants", + "hours": { + "Monday": "17:0-22:0", + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:30", + "Saturday": "15:0-22:30", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "owwOC1bVQt1XAMdiM1TOzw", + "name": "La Tapenade Mediterranean Cafe", + "address": "8000 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.876361, + "longitude": -75.247045, + "stars": 2.0, + "review_count": 36, + "is_open": 1, + "attributes": { + "Caters": "False", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Sandwiches, Mediterranean, Specialty Food, Restaurants, Nightlife, Bars, Meat Shops, Food, American (Traditional)", + "hours": { + "Monday": "9:0-21:0", + "Tuesday": "9:0-21:0", + "Wednesday": "9:0-21:0", + "Thursday": "9:0-21:0", + "Friday": "9:0-21:0", + "Saturday": "9:0-22:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "eWWGKu8f-DR6Kyy-Py2qbg", + "name": "One Franklin Town", + "address": "1 Franklin Town Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9601064, + "longitude": -75.1672153, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WheelchairAccessible": "True" + }, + "categories": "Real Estate, Home Services, Apartments", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "2GLQjV1-_KbWDVqa3sVCjA", + "name": "New Style Pizzeria", + "address": "4060 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9557374, + "longitude": -75.204671, + "stars": 3.5, + "review_count": 65, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "BikeParking": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "DogsAllowed": "True", + "RestaurantsTableService": "False", + "BYOB": "False" + }, + "categories": "Italian, Restaurants, Pizza, Gluten-Free", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "D29nUZF_33wCe5cAirHzZA", + "name": "Hair Cuttery", + "address": "2369 Cottman Ave, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0473081, + "longitude": -75.0556034, + "stars": 3.0, + "review_count": 14, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "HairSpecializesIn": "{u'africanamerican': False, u'asian': False, u'curly': True, u'perms': True, u'extensions': True, u'straightperms': False, u'coloring': True, u'kids': True}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': True, u'validated': False}" + }, + "categories": "Beauty & Spas, Hair Stylists, Barbers, Hair Salons, Men's Hair Salons", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-19:30", + "Saturday": "8:0-19:0", + "Sunday": "9:0-17:0" + } + }, + { + "business_id": "bMLMpa8trpM1cw_3NrkZPQ", + "name": "Empire Beauty School", + "address": "4026 Woodhaven Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.08497482, + "longitude": -74.971125, + "stars": 2.5, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Specialty Schools, Hair Salons, Beauty & Spas, Barbers, Cosmetology Schools, Education", + "hours": { + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-15:0" + } + }, + { + "business_id": "Ub_6YsWqb90lfT6k1kRbwA", + "name": "TKK Fried Chicken", + "address": "4500 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0033420766, + "longitude": -75.2219259822, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Bubble Tea, Taiwanese, Chicken Shop, Chicken Wings, Food, Juice Bars & Smoothies, Asian Fusion, Restaurants, Coffee & Tea", + "hours": null + }, + { + "business_id": "LuAgSJgN7AtScsKxRQlYWA", + "name": "Atrium at the Curtis Center", + "address": "601 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9478895854, + "longitude": -75.1512453104, + "stars": 3.5, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Venues & Event Spaces, Event Planning & Services", + "hours": null + }, + { + "business_id": "MCQJc2X_NE6vbfwJdRZl4w", + "name": "Banfield Pet Hospital", + "address": "2360 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9180079, + "longitude": -75.1889590323, + "stars": 2.0, + "review_count": 41, + "is_open": 1, + "attributes": null, + "categories": "Pets, Veterinarians", + "hours": { + "Monday": "7:15-18:0", + "Tuesday": "7:15-18:0", + "Wednesday": "7:15-18:0", + "Thursday": "7:15-18:0", + "Friday": "7:15-18:0", + "Saturday": "7:15-17:0" + } + }, + { + "business_id": "eTx3kjznjf4PIgRcTvn5nw", + "name": "Xiao Guan Garden", + "address": "917 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9553587, + "longitude": -75.1549928, + "stars": 3.5, + "review_count": 13, + "is_open": 0, + "attributes": { + "HasTV": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}" + }, + "categories": "Chinese, Restaurants", + "hours": { + "Monday": "16:0-3:0", + "Tuesday": "16:0-3:0", + "Wednesday": "16:0-3:0", + "Thursday": "16:0-3:0", + "Friday": "16:0-3:0", + "Saturday": "16:0-4:0", + "Sunday": "16:0-4:0" + } + }, + { + "business_id": "D62EhS3EBXk6WulVteKBLg", + "name": "The Girard Apartments", + "address": "1199 Ludlow St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9512786, + "longitude": -75.1598232, + "stars": 2.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Apartments, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "B6Cn6maWQ6sLhLwYGLhSlg", + "name": "Stockyard Sandwich", + "address": "1541 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630709056, + "longitude": -75.164270103, + "stars": 4.5, + "review_count": 284, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "DogsAllowed": "True", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "WheelchairAccessible": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': None, 'brunch': None, 'breakfast': True}", + "BikeParking": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "Corkage": "False", + "BYOB": "True", + "BusinessAcceptsCreditCards": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "GoodForKids": "True", + "OutdoorSeating": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Sandwiches, Caterers, Gluten-Free, Event Planning & Services, Breakfast & Brunch, Salad", + "hours": { + "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": "9:0-16:0", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "fhO8Tcql9zGIjL6gEXlBQQ", + "name": "Je Suis Jolie", + "address": "114 S 19th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.951361, + "longitude": -75.172214, + "stars": 4.0, + "review_count": 43, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Shopping, Fashion, Lingerie", + "hours": { + "Monday": "11:0-16:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-18:30", + "Thursday": "11:0-18:30", + "Friday": "11:0-18:30", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "EQNQD6KkcKHiDlnek4n6Lw", + "name": "Meatheads Deli", + "address": "3362 Grant Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0677238, + "longitude": -75.0053195, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'no'" + }, + "categories": "Restaurants, Delis, Sandwiches", + "hours": null + }, + { + "business_id": "1fdEPgWt5fs3G1pr6RA-Hg", + "name": "Jmh Realty Concepts", + "address": "2200 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671263, + "longitude": -75.1739279, + "stars": 3.0, + "review_count": 49, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Home Services, Property Management, Real Estate", + "hours": null + }, + { + "business_id": "65MyoJ_rvyIt9bYaBT_riw", + "name": "Mr Tees", + "address": "1607 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9250451, + "longitude": -75.1731986, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "RestaurantsDelivery": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Local Services, Screen Printing/T-Shirt Printing", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-19:0" + } + }, + { + "business_id": "HxMe4b5Z-VcIaM6x1elWwg", + "name": "Cheerleaders", + "address": "2740 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.912496, + "longitude": -75.150774, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'loud'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': True, u'validated': False}", + "WiFi": "'free'" + }, + "categories": "Sports Bars, Bars, Nightlife, Adult Entertainment", + "hours": { + "Monday": "19:0-2:0", + "Tuesday": "12:0-0:0", + "Wednesday": "12:0-0:0", + "Thursday": "12:0-0:0", + "Friday": "12:0-0:0", + "Saturday": "12:0-0:0", + "Sunday": "19:0-2:0" + } + }, + { + "business_id": "CeNiaICi59dWhfzfKnh8lQ", + "name": "Stir", + "address": "1705 Chancellor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9494641599, + "longitude": -75.1696181584, + "stars": 4.0, + "review_count": 105, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "NoiseLevel": "u'average'", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "HappyHour": "True", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "WheelchairAccessible": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsReservations": "False", + "Smoking": "u'outdoor'", + "BYOB": "False" + }, + "categories": "Dance Clubs, Gay Bars, Bars, Lounges, Nightlife", + "hours": { + "Tuesday": "16:0-0:0", + "Wednesday": "16:0-0:0", + "Thursday": "16:0-0:0", + "Friday": "16:0-2:0", + "Saturday": "16:0-2:0", + "Sunday": "16:0-0:0" + } + }, + { + "business_id": "5R3-eCIk4dRBtXo0A5MAzQ", + "name": "Aรฑejo Philadelphia", + "address": "1001 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.966564, + "longitude": -75.139991, + "stars": 4.0, + "review_count": 132, + "is_open": 1, + "attributes": { + "Caters": "True", + "Alcohol": "u'full_bar'", + "WheelchairAccessible": "True", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': None}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "Corkage": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOB": "False", + "HasTV": "False", + "HappyHour": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Restaurants, Mexican, New Mexican Cuisine", + "hours": { + "Tuesday": "13:0-22:0", + "Wednesday": "13:0-22:0", + "Thursday": "13:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "11:30-22:0", + "Sunday": "11:30-21:0" + } + }, + { + "business_id": "8fb73DkaiZyV27mRHw_lSA", + "name": "Rightway Waterproofing", + "address": "3300 Agate St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9906117, + "longitude": -75.1045905, + "stars": 3.5, + "review_count": 18, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Masonry/Concrete, Damage Restoration, Home Services, Contractors, Local Services, Plumbing, Waterproofing, Home Inspectors", + "hours": { + "Monday": "6:30-20:0", + "Tuesday": "6:30-20:0", + "Wednesday": "6:30-20:0", + "Thursday": "6:30-20:0", + "Friday": "6:30-18:0", + "Saturday": "9:0-12:0" + } + }, + { + "business_id": "ZFpJ-BvA1riQgzvW29JyiQ", + "name": "Old Nelson Food Company", + "address": "129 S 30th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9525428831, + "longitude": -75.1836169207, + "stars": 3.5, + "review_count": 37, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "False", + "Caters": "False", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "WiFi": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True" + }, + "categories": "Delis, Restaurants, Sandwiches", + "hours": { + "Monday": "6:0-22:0", + "Tuesday": "6:0-22:0", + "Wednesday": "6:0-22:0", + "Thursday": "6:0-22:0", + "Friday": "6:0-22:0", + "Saturday": "8:0-21:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "bIQSx2fiHMq0IgmUo4C8QQ", + "name": "Larry's Steaks", + "address": "920 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9702412, + "longitude": -75.151779, + "stars": 3.0, + "review_count": 70, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "WiFi": "'no'", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsGoodForGroups": "False", + "HasTV": "True", + "Alcohol": "'none'", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False" + }, + "categories": "Cheesesteaks, Restaurants, Sandwiches, Pizza", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "UILB1vgWi8cI5zhFnY4WUA", + "name": "Worknet Occupational Medicine", + "address": "5800 Ridge Ave, Ste 234, Roxborough Memorial Hospital", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0287088794, + "longitude": -75.2096034586, + "stars": 1.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Medical Centers, Diagnostic Services, Occupational Therapy, Laboratory Testing, Medical Transportation, Health & Medical, Internal Medicine, Doctors", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "EKHJbUCJDaKjz3bScLILLA", + "name": "A Novel Idea", + "address": "1726 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9281917, + "longitude": -75.1656991, + "stars": 4.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "False", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "True", + "BusinessAcceptsBitcoin": "False", + "BikeParking": "True" + }, + "categories": "Used Bookstore, Books, Mags, Music & Video, Bookstores, Shopping", + "hours": { + "Tuesday": "12:0-18:0", + "Wednesday": "12:0-18:0", + "Thursday": "12:0-18:0", + "Friday": "12:0-18:0", + "Saturday": "12:0-18:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "x693RJXO2N3RR9aAhT34_g", + "name": "John's Auto Repair", + "address": "9365 Old Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.0838193, + "longitude": -75.0372704, + "stars": 5.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:0-17:30", + "Tuesday": "8:0-17:30", + "Wednesday": "8:0-17:30", + "Thursday": "8:0-17:30", + "Friday": "8:0-17:30" + } + }, + { + "business_id": "nwYEN669Fk9bH9qceFvnjQ", + "name": "Istanbul Grill & Cafe", + "address": "228 Vine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.955585, + "longitude": -75.143719, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "True", + "Alcohol": "u'full_bar'", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False" + }, + "categories": "Restaurants, Turkish, Mediterranean", + "hours": { + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "10:30-22:0" + } + }, + { + "business_id": "MA1G_tyLFL25tbSi8IPrqg", + "name": "Showroom Shine", + "address": "1616 Chancelor St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9492352, + "longitude": -75.1678897, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Auto Detailing, Automotive", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "TqIPgo46IMThaetgoXruKw", + "name": "Phillyvapes", + "address": "1525 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.929918, + "longitude": -75.161252, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Vape Shops, Shopping, Tobacco Shops", + "hours": { + "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": "11:0-18:0" + } + }, + { + "business_id": "PsNsxahhRUIf6EEI_5n64Q", + "name": "Maxi's Pizza, Subs and Bar", + "address": "1926 Liacouras Walk", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.98221, + "longitude": -75.155986, + "stars": 3.5, + "review_count": 81, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "NoiseLevel": "u'loud'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "1", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "RestaurantsDelivery": "True", + "Caters": "False", + "HappyHour": "True" + }, + "categories": "Restaurants, Local Flavor, Bars, Nightlife, American (Traditional), Pizza, Sandwiches", + "hours": { + "Monday": "10:30-2:0", + "Tuesday": "10:30-2:0", + "Wednesday": "10:30-2:0", + "Thursday": "10:30-2:0", + "Friday": "10:30-2:0", + "Saturday": "10:30-2:0", + "Sunday": "10:30-2:0" + } + }, + { + "business_id": "YzqhsKFVEV1O2IYfcAnIgw", + "name": "Mirage Lounge", + "address": "119 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9412228, + "longitude": -75.1448014, + "stars": 3.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTakeOut": "None", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Lounges, Mediterranean, Hookah Bars, Nightlife, Restaurants, Bars", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "3Mqwdb3z6SVXYOYCon3lug", + "name": "Body Beautiful Collision & Auto Service Center", + "address": "4726 Hellerman St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0217541, + "longitude": -75.0496431, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Towing, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "HszIFq0D6aZKJwW2hVwWLw", + "name": "Jo Jo's Deli", + "address": "2401 S 62nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.926076, + "longitude": -75.2276399, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'no'", + "DriveThru": "False", + "OutdoorSeating": "None", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Alcohol": "u'none'", + "RestaurantsTableService": "False" + }, + "categories": "Food, Delis, Burgers, Restaurants, Sandwiches", + "hours": { + "Monday": "9:0-18:30", + "Tuesday": "9:0-18:30", + "Wednesday": "9:0-18:30", + "Thursday": "9:0-18:30", + "Friday": "9:0-18:30", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "r7Qy5_hyaubznXyzDCR27w", + "name": "Sister Cities Park", + "address": "18th St & the Benjamin Franklin Pkwy", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9579448279, + "longitude": -75.1696747541, + "stars": 4.5, + "review_count": 30, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Parks, Active Life", + "hours": { + "Monday": "6:0-1:0", + "Tuesday": "6:0-1:0", + "Wednesday": "6:0-1:0", + "Thursday": "6:0-1:0", + "Friday": "6:0-1:0", + "Saturday": "6:0-1:0", + "Sunday": "6:0-1:0" + } + }, + { + "business_id": "9ZiARoddTm3anAtWzZo4Bg", + "name": "Chuck E. Cheese", + "address": "9 Snyder Ave, Corner of Front & Snyder", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.92168, + "longitude": -75.144955, + "stars": 2.5, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "RestaurantsReservations": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "WiFi": "'free'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BikeParking": "False", + "NoiseLevel": "u'very_loud'" + }, + "categories": "Restaurants, Pizza, Event Planning & Services, Arts & Entertainment, Party & Event Planning, Arcades, Venues & Event Spaces, Active Life, Indoor Playcentre, Kids Activities", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-21:0", + "Wednesday": "11:0-21:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-21:0", + "Saturday": "11:0-21:0", + "Sunday": "11:0-20:0" + } + }, + { + "business_id": "yoQwmxZkg1-OH5uH9PbeMw", + "name": "Styland Beauty", + "address": "1714 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.928449, + "longitude": -75.165458, + "stars": 4.5, + "review_count": 79, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "1", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "False", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "AcceptsInsurance": "False", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': False, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}" + }, + "categories": "Eyelash Service, Massage, Hair Salons, Nail Salons, Beauty & Spas", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "10:0-19:30", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "7uMwPg2lmF_KscKo9lFCwQ", + "name": "American Express century and lounge", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19132", + "latitude": 39.8761409034, + "longitude": -75.2453287875, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nightlife, Food Court, Restaurants, Airport Lounges, Bars", + "hours": null + }, + { + "business_id": "DWsaDQZjKDcCqFw11uDZiA", + "name": "Mattress Firm Philadelphia Downtown", + "address": "1221-1223 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9507846, + "longitude": -75.1610592, + "stars": 4.0, + "review_count": 30, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Mattresses, Shades & Blinds, Home & Garden, Home Decor, Furniture Stores, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "9:0-18:0", + "Thursday": "10:0-20:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "Px5G2VQFNEVx4j5WRF-Dag", + "name": "Imagicakes Cake Designers", + "address": "1508 W Seybert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.973745, + "longitude": -75.1610369, + "stars": 3.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "BikeParking": "True" + }, + "categories": "Custom Cakes, Desserts, Bakeries, Food", + "hours": { + "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-17:0", + "Sunday": "10:0-15:0" + } + }, + { + "business_id": "jHABRqH3hcPKvaOMt75Rfg", + "name": "Walgreens", + "address": "1617 John F Kennedy Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954237, + "longitude": -75.167977, + "stars": 2.5, + "review_count": 25, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Shopping, Drugstores, Convenience Stores, Food, Cosmetics & Beauty Supply, Beauty & Spas, Photography Stores & Services", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "0ikOz5a37dSa4dBGmEmdrg", + "name": "AMPM Locksmith - Philadelphia", + "address": "621 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.961479, + "longitude": -75.1411445277, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Home Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "ht0SdhGP8qJrRX-yNJ3row", + "name": "Savage Hybrid Shop", + "address": "9101 Ashton Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0631612147, + "longitude": -75.0215603687, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Automotive, Auto Repair, Gas Stations, Hybrid Car Repair, Car Dealers, Oil Change Stations", + "hours": { + "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" + } + }, + { + "business_id": "3GvaJRiDGxzJzqoPX0xUeA", + "name": "Spool", + "address": "1912 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9446646, + "longitude": -75.1740119, + "stars": 4.0, + "review_count": 28, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Arts & Crafts, Shopping", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "Enl56HI77hB3wyjC7RXKeg", + "name": "Slack's Hoagie Shack", + "address": "155 Franklin Mills Blvd, Ste 193", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0907511, + "longitude": -74.9647077, + "stars": 3.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "'none'", + "WiFi": "u'free'", + "HasTV": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Delis, Restaurants, Sandwiches, Burgers", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-21:0" + } + }, + { + "business_id": "s30pUay0opzvriFweACWEA", + "name": "Essen Bakery", + "address": "1437 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9310290651, + "longitude": -75.1618253846, + "stars": 5.0, + "review_count": 108, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "Caters": "True", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False" + }, + "categories": "Coffee & Tea, Bakeries, Food", + "hours": { + "Wednesday": "8:30-15:0", + "Thursday": "8:30-15:0", + "Friday": "8:30-15:0", + "Saturday": "8:30-15:0", + "Sunday": "8:30-15:0" + } + }, + { + "business_id": "Sp9L2JNPzazAsXlYxGMkKQ", + "name": "ACME Markets", + "address": "8600 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0617979, + "longitude": -75.2383, + "stars": 1.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Grocery, Food, Shopping, Drugstores", + "hours": { + "Monday": "7:0-23:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-23:0", + "Saturday": "7:0-23:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "1AaipxJSx0QlzAbjSjKVTA", + "name": "Eagle Nails & Organic Spa", + "address": "2654 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9166205649, + "longitude": -75.1682940027, + "stars": 4.0, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "False", + "RestaurantsPriceRange2": "2" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": { + "Monday": "10:0-19:30", + "Tuesday": "10:0-19:30", + "Wednesday": "10:0-19:30", + "Thursday": "10:0-19:30", + "Friday": "10:0-19:30", + "Saturday": "9:30-19:0" + } + }, + { + "business_id": "vby0d_pi7OL5dl9tSy06eQ", + "name": "Area 919", + "address": "919 5th St N", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.952335, + "longitude": -75.163789, + "stars": 5.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": null + }, + { + "business_id": "MM7E5scQtRe5mkLLNOIXfQ", + "name": "Fairmount Chiropractor", + "address": "2232 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9671452, + "longitude": -75.1749767, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "AcceptsInsurance": "False" + }, + "categories": "Health & Medical, Chiropractors", + "hours": { + "Monday": "15:0-19:0", + "Tuesday": "15:0-18:0", + "Wednesday": "15:0-19:0", + "Thursday": "15:0-18:0", + "Friday": "9:0-12:0" + } + }, + { + "business_id": "gKHxy8chDJCZb-Y12h229w", + "name": "Paradise Diner", + "address": "104 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.968717, + "longitude": -75.1365009, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "Caters": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "OutdoorSeating": "False", + "GoodForKids": "True", + "NoiseLevel": "u'quiet'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HasTV": "True", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Breakfast & Brunch, Sandwiches, American (Traditional), Salad, Greek, Restaurants, Pizza", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "RROICJV1SdNKeua8QOSfhA", + "name": "Katona James A Sr Roofing", + "address": "4384 Manayunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0297438, + "longitude": -75.2190878, + "stars": 2.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Roofing", + "hours": null + }, + { + "business_id": "79QQDvvEj1G668HGLS_10w", + "name": "Haul Zing", + "address": "614 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9419921, + "longitude": -75.1557352, + "stars": 4.5, + "review_count": 62, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True" + }, + "categories": "Movers, Home Services, Couriers & Delivery Services, Local Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-21:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-21:0", + "Friday": "8:0-21:0", + "Saturday": "9:0-21:0" + } + }, + { + "business_id": "rfTMA-0we0qbNp3iBgGWTw", + "name": "Ubiq", + "address": "1509 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949848, + "longitude": -75.1663717, + "stars": 3.0, + "review_count": 103, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Local Services, Fashion, Shoe Stores, Recycling Center, Shopping", + "hours": { + "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": "12:0-18:0" + } + }, + { + "business_id": "_-wIHIzRdvqPQlzTu8oVSQ", + "name": "Charlene Hirsch, DMD", + "address": "738 S 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.940717, + "longitude": -75.1595059, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": null + }, + { + "business_id": "7GX2Xe12_SOuPltFOB6TLw", + "name": "Pete's Pizza", + "address": "4074 Lancaster Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.964422, + "longitude": -75.204713, + "stars": 2.5, + "review_count": 22, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "GoodForKids": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'very_loud'", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "False", + "Alcohol": "u'none'" + }, + "categories": "Restaurants, Pizza, Breakfast & Brunch", + "hours": { + "Monday": "7:0-1:0", + "Tuesday": "7:0-1:0", + "Wednesday": "7:0-1:0", + "Thursday": "7:0-1:0", + "Friday": "7:0-2:0", + "Saturday": "7:0-2:0", + "Sunday": "7:0-0:0" + } + }, + { + "business_id": "noNGTd_YmY4HlUIKt6DGsg", + "name": "Herban Skin Therapy", + "address": "143 W Walnut Ln, Ste 204", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0381449341, + "longitude": -75.1813586075, + "stars": 5.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Hair Removal, Skin Care, Beauty & Spas, Waxing", + "hours": { + "Wednesday": "10:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-18:0" + } + }, + { + "business_id": "N5xoEy9GLtHDvCLa8dMgyA", + "name": "Felly Bistro On Pass", + "address": "769 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.938816, + "longitude": -75.152367, + "stars": 4.5, + "review_count": 52, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "False" + }, + "categories": "Spanish, Puerto Rican, Restaurants, American (New), French, American (Traditional), Caribbean", + "hours": { + "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" + } + }, + { + "business_id": "WeQexfAmmJMhFPQyNiBMzA", + "name": "Nick's Auto Sales", + "address": "2460 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9217483, + "longitude": -75.1885318, + "stars": 1.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Car Dealers, Automotive", + "hours": null + }, + { + "business_id": "fzHU7QRi9PX5UAtTM0jpfQ", + "name": "Latino Buffet The West Wing", + "address": "4638 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19140", + "latitude": 40.022138, + "longitude": -75.133923, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "RestaurantsTableService": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "GoodForKids": "True", + "Caters": "False", + "WheelchairAccessible": "False", + "WiFi": "u'no'", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Latin American, Food Banks, Restaurants, Fast Food, Desserts, Soup, American (New), Chicken Wings, Buffets, Salad, Community Service/Non-Profit, Local Services, Food, Breakfast & Brunch, Spanish", + "hours": null + }, + { + "business_id": "ogSkCWmS_gRz35qq4ypiMQ", + "name": "Keystone Eye Associates", + "address": "9126 Blue Grass Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.0719716, + "longitude": -75.0301287, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Optometrists, Health & Medical, Laser Eye Surgery/Lasik", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:0", + "Wednesday": "8:30-17:0", + "Thursday": "8:30-17:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "65m_3aPnCbDjm8nOd5TrQA", + "name": "Loving Hut", + "address": "742 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9423175, + "longitude": -75.1552622, + "stars": 4.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsReservations": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "RestaurantsDelivery": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Internet Cafes, Vegan, Coffee & Tea, Restaurants, Food", + "hours": { + "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", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "mfZQIrlZ8Jw3kufwuOVWvA", + "name": "Philadelphia Movers", + "address": "600 Red Lion Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19115", + "latitude": 40.107111, + "longitude": -75.039135, + "stars": 3.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Movers, Packing Services, Home Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:30-21:0", + "Sunday": "9:30-21:0" + } + }, + { + "business_id": "3f-acmwXPLnVd2UKfnk1xg", + "name": "For Pete's Sake", + "address": "900 S Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9354888, + "longitude": -75.1454078, + "stars": 4.0, + "review_count": 187, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "HasTV": "True", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': True, 'saturday': False}", + "RestaurantsTableService": "True", + "GoodForKids": "True", + "BikeParking": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "Caters": "False", + "RestaurantsReservations": "True", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'loud'" + }, + "categories": "Restaurants, Bars, Nightlife, Pubs, American (Traditional)", + "hours": { + "Monday": "11:0-2:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "XlzZdJw7ZhRQcSUkRgr1HQ", + "name": "Antique Transport", + "address": "4700 Wissahickon Ave, Ste 11", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.01597, + "longitude": -75.17241, + "stars": 1.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Shopping, Antiques", + "hours": null + }, + { + "business_id": "vD3tpOWXwdQsdqKTuFFR9w", + "name": "Ronald J Nace Plumbing & Heat", + "address": "5124 Hadfield St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9468041, + "longitude": -75.2255757, + "stars": 4.5, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Heating & Air Conditioning/HVAC, Plumbing", + "hours": null + }, + { + "business_id": "EQWt7FQ3fPOwIKrt8s_jrg", + "name": "Tambayan", + "address": "51 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9531593, + "longitude": -75.1590984, + "stars": 3.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessParking": "{u'valet': False, u'garage': False, u'street': False, u'lot': False, u'validated': True}" + }, + "categories": "Restaurants, Filipino, Food Court", + "hours": { + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "9:0-18:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "xZpgV4EKF1DACo__pQi2QQ", + "name": "Castello Pizza", + "address": "6700 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0535314, + "longitude": -75.092024, + "stars": 2.5, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": "Pizza, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "12:0-23:0" + } + }, + { + "business_id": "gxipZ2126wTI7uDNLttHSA", + "name": "Buna Cafe Philly", + "address": "5121 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480324, + "longitude": -75.2262901, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "BYOB": "True", + "WheelchairAccessible": "False", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "BusinessAcceptsBitcoin": "False", + "Caters": "True", + "Alcohol": "u'none'", + "DogsAllowed": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTableService": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HappyHour": "False", + "WiFi": "u'free'" + }, + "categories": "Breakfast & Brunch, Restaurants, Event Planning & Services, Ethiopian, Venues & Event Spaces, Cafes", + "hours": { + "Thursday": "15:0-21:0" + } + }, + { + "business_id": "5lZNaU_zyoVA9tX-yKwA2A", + "name": "Parks On Tap", + "address": "100 N Horticultural Dr", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9834, + "longitude": -75.2102016, + "stars": 3.5, + "review_count": 33, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "RestaurantsTableService": "False", + "Alcohol": "u'beer_and_wine'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WiFi": "u'no'", + "GoodForKids": "True", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForDancing": "False", + "RestaurantsDelivery": "False", + "CoatCheck": "False", + "BusinessParking": "None", + "RestaurantsTakeOut": "False", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "Smoking": "u'no'", + "HappyHour": "False", + "Music": "{'dj': False, 'background_music': True, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "DogsAllowed": "True" + }, + "categories": "Food, Beer Gardens, Food Trucks, Arts & Entertainment, Restaurants, Nightlife, Festivals, Pop-Up Restaurants", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "wMQkdK2aNMvq2xoojC98Mw", + "name": "South Street Diner", + "address": "140 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9410512122, + "longitude": -75.1454045221, + "stars": 3.0, + "review_count": 224, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "GoodForKids": "True", + "BYOBCorkage": "'yes_free'", + "BusinessAcceptsCreditCards": "True", + "Caters": "False", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': True}", + "RestaurantsReservations": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True", + "BikeParking": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Alcohol": "u'none'", + "BYOB": "False", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "DriveThru": "False", + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "WheelchairAccessible": "True" + }, + "categories": "Diners, Restaurants", + "hours": { + "Monday": "7:30-15:0", + "Tuesday": "7:30-20:30", + "Wednesday": "0:0-0:0", + "Thursday": "0:0-0:0", + "Friday": "0:0-0:0", + "Saturday": "0:0-0:0", + "Sunday": "7:30-20:30" + } + }, + { + "business_id": "h9oGTdr9uhNWQvu0iS7oDA", + "name": "Daniel J Lasdon Real Estate", + "address": "700 E Erie Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 40.0057443, + "longitude": -75.1148167, + "stars": 3.0, + "review_count": 9, + "is_open": 1, + "attributes": null, + "categories": "Real Estate, Real Estate Services, Home Services", + "hours": null + }, + { + "business_id": "dn_BCrlJMZF_3UQd61lOVQ", + "name": "Marrakesh Express Food truck", + "address": "40TH St Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9530103549, + "longitude": -75.202960968, + "stars": 4.5, + "review_count": 28, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "GoodForKids": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "HasTV": "False", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Food Stands, Food, Sandwiches, Restaurants, Street Vendors, Moroccan", + "hours": { + "Monday": "11:0-18:0", + "Tuesday": "11:0-18:0", + "Wednesday": "11:0-18:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "11:0-18:0" + } + }, + { + "business_id": "IHWhkrT1BYqTqU1km0UCfw", + "name": "Gamestop", + "address": "2539 E Castor Ave, Ste D, Aramingo Super Center", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9940214206, + "longitude": -75.0914243377, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': False, u'lot': None, u'validated': False}" + }, + "categories": "Shopping, Books, Mags, Music & Video, Videos & Video Game Rental, Toy Stores, Electronics, Video Game Stores", + "hours": { + "Monday": "11:0-20:0", + "Tuesday": "11:0-20:0", + "Wednesday": "11:0-20:0", + "Thursday": "11:0-20:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-18:0" + } + }, + { + "business_id": "lgC1gyLBWD6yEU64ozwZJA", + "name": "Society Hill Dental", + "address": "111 S Independence Mall E, Ste 610", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497622, + "longitude": -75.1480623, + "stars": 4.5, + "review_count": 36, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, General Dentistry, Dentists, Cosmetic Dentists", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "V_8ReSppc0WFB4hZbh94WA", + "name": "Django", + "address": "526 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941934, + "longitude": -75.149329, + "stars": 4.0, + "review_count": 19, + "is_open": 0, + "attributes": { + "Corkage": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "RestaurantsReservations": "True", + "Alcohol": "'none'", + "GoodForKids": "False", + "RestaurantsDelivery": "False" + }, + "categories": "Restaurants, American (New)", + "hours": { + "Monday": "17:30-22:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "17:30-21:0" + } + }, + { + "business_id": "3R3xF1BSo1NvXKMKrQOtxA", + "name": "Wong Acupuncture Center LLC", + "address": "1108 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9428615, + "longitude": -75.1606481, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Acupuncture, Health & Medical", + "hours": { + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "J6bDpaw9QQ3qqncfIK4StQ", + "name": "The Coffee Bar", + "address": "1701 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9489718, + "longitude": -75.1695749, + "stars": 3.0, + "review_count": 78, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Coffee & Tea, Desserts", + "hours": { + "Monday": "6:0-18:0", + "Tuesday": "6:0-18:0", + "Wednesday": "6:0-18:0", + "Thursday": "6:0-18:0", + "Friday": "6:0-18:0", + "Saturday": "6:0-18:0", + "Sunday": "6:0-18:0" + } + }, + { + "business_id": "mK5gu18whrKEG8aojSzpbA", + "name": "Yogorino", + "address": "233 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9495454, + "longitude": -75.1740353, + "stars": 4.0, + "review_count": 356, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'valet': False, 'garage': False, 'street': True, 'lot': False, 'validated': False}", + "Caters": "True" + }, + "categories": "Desserts, Ice Cream & Frozen Yogurt, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "QQGyPctWtd9WOZnMKUChUQ", + "name": "McMenamin's Tavern", + "address": "7170 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.059745, + "longitude": -75.1908537, + "stars": 4.0, + "review_count": 224, + "is_open": 1, + "attributes": { + "HasTV": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "u'full_bar'", + "RestaurantsTakeOut": "True", + "RestaurantsGoodForGroups": "True", + "WiFi": "'no'", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "RestaurantsTableService": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "Smoking": "u'no'", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "GoodForDancing": "False", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "GoodForKids": "True", + "HappyHour": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Restaurants, Pubs, American (New), Bars, Nightlife", + "hours": { + "Tuesday": "9:0-17:0", + "Wednesday": "11:30-2:0", + "Thursday": "11:30-2:0", + "Friday": "11:30-2:0", + "Saturday": "11:30-2:0", + "Sunday": "12:0-21:0" + } + }, + { + "business_id": "eyNbnEMvQ4LpUar27N_2XQ", + "name": "Yonny's", + "address": "1531 Cherry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.955815, + "longitude": -75.165732, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "False", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'quiet'", + "OutdoorSeating": "False", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "False" + }, + "categories": "Diners, Restaurants", + "hours": null + }, + { + "business_id": "xWxn5wmpSNUVKvyTuVdVJg", + "name": "Beefsteak", + "address": "3417 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9509373153, + "longitude": -75.1943031791, + "stars": 4.0, + "review_count": 27, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", + "NoiseLevel": "u'loud'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "DriveThru": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "HasTV": "False", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "2", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTableService": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "Caters": "False", + "Alcohol": "'none'", + "WiFi": "'free'" + }, + "categories": "Restaurants, American (New), Vegetarian, Sandwiches, Fast Food", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-18:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "WJ_YtAWCo7_BZHm2wdxSqQ", + "name": "Lawncrest Family Restaurant", + "address": "6339 Rising Sun Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.049135, + "longitude": -75.0957169, + "stars": 2.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsPriceRange2": "1", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "NoiseLevel": "u'quiet'", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Breakfast & Brunch, Restaurants", + "hours": null + }, + { + "business_id": "-NBNpfXO_WlUJFprqDtcSg", + "name": "Kung Fu Necktie", + "address": "1250 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9702565, + "longitude": -75.1359536, + "stars": 3.5, + "review_count": 171, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "HasTV": "True", + "GoodForKids": "False", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'very_loud'", + "HappyHour": "True", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "CoatCheck": "False", + "OutdoorSeating": "True", + "WiFi": "'no'", + "GoodForDancing": "True" + }, + "categories": "Dive Bars, Bars, Music Venues, Arts & Entertainment, Nightlife", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "97SR7RQPL02t5J41UcZ4SQ", + "name": "Pat's Pizzeria", + "address": "12317 Academy Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.0956114102, + "longitude": -74.9752556973, + "stars": 2.5, + "review_count": 43, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "HasTV": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "BikeParking": "False", + "WheelchairAccessible": "True", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Pizza, Restaurants, Seafood", + "hours": { + "Monday": "11:30-22:30", + "Tuesday": "11:30-22:30", + "Wednesday": "11:30-22:30", + "Thursday": "11:30-22:30", + "Friday": "11:30-22:30", + "Saturday": "11:0-23:30", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "kKzKpNLm74kGC9UP4lVRdg", + "name": "Baby Boss Pizza and Grill", + "address": "4625 Princeton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19135", + "latitude": 40.0287705, + "longitude": -75.0391079, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Italian, Restaurants, Mexican, Pizza", + "hours": { + "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": "12:0-22:0" + } + }, + { + "business_id": "KDKfiyYY7VER5GUZIQoSig", + "name": "Pep Boys", + "address": "1000 S Columbus Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.931503, + "longitude": -75.145004, + "stars": 2.5, + "review_count": 265, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Tires, Auto Repair, Automotive, Oil Change Stations, Auto Parts & Supplies", + "hours": { + "Monday": "7:30-20:0", + "Tuesday": "7:30-20:0", + "Wednesday": "7:30-20:0", + "Thursday": "7:30-20:0", + "Friday": "7:30-20:0", + "Saturday": "7:30-19:0", + "Sunday": "9:0-18:0" + } + }, + { + "business_id": "ex85GwzAdGm0cWiZ7toVGg", + "name": "Wricley Nut Products", + "address": "480 Pattison Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9026297, + "longitude": -75.1577303, + "stars": 5.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Food, Specialty Food, Do-It-Yourself Food", + "hours": { + "Monday": "8:0-16:30", + "Tuesday": "8:0-16:30", + "Wednesday": "8:0-16:30", + "Thursday": "8:0-16:30", + "Friday": "8:0-16:30" + } + }, + { + "business_id": "Rbsea9sbYH-VT2l9bmujvg", + "name": "South Philly Towing", + "address": "1259 S Patton St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9381182, + "longitude": -75.1960089, + "stars": 4.0, + "review_count": 45, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Roadside Assistance, Towing, Automotive", + "hours": { + "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" + } + }, + { + "business_id": "x39G7-aTCVh-972fgogKtA", + "name": "Old City Coffee", + "address": "221 Church St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.95079, + "longitude": -75.144829, + "stars": 4.0, + "review_count": 239, + "is_open": 1, + "attributes": { + "WiFi": "u'free'", + "BikeParking": "True", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "'none'", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsReservations": "False", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True" + }, + "categories": "Food, Coffee & Tea, Cafes, Restaurants, Coffee Roasteries", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-17:0", + "Wednesday": "7:0-17:0", + "Thursday": "7:0-17:0", + "Friday": "7:0-17:0", + "Saturday": "7:0-16:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "pyM8MRVXKDRyhM7tu-3P1A", + "name": "KFC", + "address": "411 W Oregon Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.915112796, + "longitude": -75.1558522595, + "stars": 2.0, + "review_count": 21, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "WiFi": "'free'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "BikeParking": "False", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "u'casual'", + "BusinessParking": "None", + "HasTV": "True", + "RestaurantsDelivery": "True", + "DriveThru": "True" + }, + "categories": "Chicken Shop, Restaurants, Fast Food, Chicken Wings", + "hours": { + "Monday": "10:30-20:0", + "Tuesday": "10:30-20:0", + "Wednesday": "10:30-20:0", + "Thursday": "10:30-20:0", + "Friday": "10:30-20:0", + "Saturday": "10:30-20:0", + "Sunday": "10:30-20:0" + } + }, + { + "business_id": "Db-zoswXyyBz7CjXW12Dtg", + "name": "Jamrock Kitchen", + "address": "502 N 63rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.970522, + "longitude": -75.245419, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Soup, Restaurants, Caribbean", + "hours": null + }, + { + "business_id": "Br37ifeGL9K3Yt2skPiLjw", + "name": "Boot & Saddle", + "address": "1131 S Broad St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9368929656, + "longitude": -75.1667970791, + "stars": 4.0, + "review_count": 102, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "False", + "NoiseLevel": "u'loud'", + "GoodForKids": "False", + "BikeParking": "True", + "GoodForDancing": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsBitcoin": "False", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': True}" + }, + "categories": "Music Venues, Arts & Entertainment, Nightlife, Bars, Restaurants", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "17:0-2:0", + "Sunday": "17:0-2:0" + } + }, + { + "business_id": "9XVS8t8Xh9FIEY1pBAYayA", + "name": "Nasim Auto & Collision", + "address": "615 W Fisher Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0323648505, + "longitude": -75.1339842752, + "stars": 4.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Oil Change Stations, Automotive, Body Shops", + "hours": { + "Monday": "8:0-18:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-14:0" + } + }, + { + "business_id": "Eq1y1tLlpqmp3JpiJy0DTg", + "name": "Philadelphian Pharmacy", + "address": "2401 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.966879, + "longitude": -75.178052, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Shopping, Drugstores", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "9:0-19:0", + "Saturday": "9:0-14:0" + } + }, + { + "business_id": "qDEcJ48kXdWxQGZefgG94w", + "name": "Xun Yu Si Kao", + "address": "140 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954813, + "longitude": -75.156315, + "stars": 4.0, + "review_count": 114, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "False", + "BikeParking": "False", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "RestaurantsAttire": "'casual'", + "RestaurantsTableService": "False", + "WiFi": "'no'", + "Alcohol": "'none'", + "RestaurantsTakeOut": "True", + "BusinessParking": "{u'valet': False, u'garage': False, u'street': None, u'lot': False, u'validated': None}", + "NoiseLevel": "u'average'" + }, + "categories": "Chinese, Seafood, Hot Pot, Restaurants", + "hours": { + "Monday": "11:0-23:0", + "Tuesday": "11:0-23:0", + "Wednesday": "11:0-23:0", + "Thursday": "11:0-23:0", + "Friday": "11:0-0:0", + "Saturday": "11:0-0:0", + "Sunday": "11:0-23:0" + } + }, + { + "business_id": "shVA_Tx1A5Q9M6xLJnV_zw", + "name": "PA RealtyWorks", + "address": "1330 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9444018, + "longitude": -75.1642627, + "stars": 4.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Real Estate, Home Services, Real Estate Services", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ZrOnpyKDPAaV61qZie2RWQ", + "name": "Comcast Service Center", + "address": "1700 N 49th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.97827, + "longitude": -75.217656, + "stars": 2.0, + "review_count": 32, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Security Systems, Professional Services, Television Service Providers, Internet Service Providers, Home Services", + "hours": { + "Monday": "9:0-18:0", + "Tuesday": "9:0-18:0", + "Wednesday": "9:0-18:0", + "Thursday": "9:0-18:0", + "Friday": "9:0-18:0", + "Saturday": "8:30-17:0" + } + }, + { + "business_id": "w-Ru1pGSt9frPdCtcZNHVQ", + "name": "ROC Race", + "address": "Citizens Bank Park, 1 Citizens Bank Way", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9053563, + "longitude": -75.1666157, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "GoodForKids": "True" + }, + "categories": "Active Life, Arts & Entertainment, Challenge Courses", + "hours": null + }, + { + "business_id": "B_nllxux4qLBMzVHG_pq9w", + "name": "National Museum of American Jewish History", + "address": "101 S Independence Mall E", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9502433661, + "longitude": -75.1485609997, + "stars": 4.5, + "review_count": 63, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "ByAppointmentOnly": "False", + "BikeParking": "True", + "WiFi": "u'free'" + }, + "categories": "Museums, Home & Garden, Arts & Entertainment, Jewelry, Landmarks & Historical Buildings, Religious Organizations, Home Decor, Shopping, Books, Mags, Music & Video, Bookstores, Public Services & Government", + "hours": { + "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" + } + }, + { + "business_id": "JQFwOkPF3iXRSA52Zx8rSg", + "name": "Richard Wilson DMD, PC", + "address": "2401 Pennsylvania Ave, Ste 1A8", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670021, + "longitude": -75.1776573, + "stars": 4.0, + "review_count": 24, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "General Dentistry, Cosmetic Dentists, Dentists, Cosmetic Surgeons, Doctors, Health & Medical, Pediatric Dentists", + "hours": { + "Monday": "7:15-17:0", + "Tuesday": "7:0-18:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-14:0" + } + }, + { + "business_id": "apS8vfKEIs_DGXp9FrvvMw", + "name": "Cloud N9NE Vapor", + "address": "1832 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.926867, + "longitude": -75.167267, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": { + "DogsAllowed": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Vape Shops, Shopping", + "hours": { + "Monday": "12:0-20:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "U0nX44nkfS3gy5KGU_BKzA", + "name": "Hudson Beach Glass", + "address": "26 S Strawberry St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9489944, + "longitude": -75.1445906, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Art Galleries, Arts & Entertainment", + "hours": { + "Wednesday": "12:0-19:0", + "Thursday": "12:0-19:0", + "Friday": "12:0-19:0", + "Saturday": "11:0-19:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "ClMlpl1TlIXLMkZYUOfChg", + "name": "Video City Productions", + "address": "329 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9472822, + "longitude": -75.174453, + "stars": 4.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "DogsAllowed": "True", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Arts & Entertainment, Cinema, Videographers, Professional Services, Event Planning & Services, Video/Film Production", + "hours": { + "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" + } + }, + { + "business_id": "B9Z3i-n9y9FfMU3CQxtThA", + "name": "Sketch Burger", + "address": "413 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9705512, + "longitude": -75.1301184, + "stars": 4.0, + "review_count": 534, + "is_open": 0, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True", + "DriveThru": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "HasTV": "True" + }, + "categories": "Restaurants, Burgers", + "hours": { + "Monday": "11:30-21:0", + "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" + } + }, + { + "business_id": "0Z8ps_OfcR9eJaV2JtxigA", + "name": "Square One Coffee", + "address": "249 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9471691145, + "longitude": -75.16239379, + "stars": 4.0, + "review_count": 217, + "is_open": 0, + "attributes": { + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': True}", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Caters": "False", + "BikeParking": "True", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "HasTV": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "NoiseLevel": "'quiet'", + "RestaurantsDelivery": "False", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "False", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True" + }, + "categories": "Coffee & Tea, Food, Cafes, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-16:0", + "Wednesday": "7:30-16:0", + "Thursday": "8:0-16:0", + "Friday": "7:30-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "C0NSUnH2ZtKtWBuD88aEsA", + "name": "Mixxia Hair Lounge", + "address": "1220 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9464803, + "longitude": -75.1620375, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': False, 'perms': False, 'asian': False}", + "WheelchairAccessible": "False", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Beauty & Spas, Hair Salons, Blow Dry/Out Services, Makeup Artists, Hair Stylists, Hair Extensions", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-17:0", + "Wednesday": "10:0-17:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "MCSyG3ndsNFJN-F9MQWM0A", + "name": "The Foodery Chestnut Hill", + "address": "7829 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0694910114, + "longitude": -75.1994167295, + "stars": 4.0, + "review_count": 30, + "is_open": 1, + "attributes": { + "Ambience": "None", + "BusinessParking": "None", + "Music": "None", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': False}", + "HasTV": "True", + "GoodForMeal": "None" + }, + "categories": "Nightlife, Restaurants, Sandwiches, Beer Bar, Bars, Food, Beer, Wine & Spirits", + "hours": { + "Monday": "12:0-22:0", + "Tuesday": "12:0-22:0", + "Wednesday": "12:0-22:0", + "Thursday": "12:0-22:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0" + } + }, + { + "business_id": "69sXOTB3jAMbyGV_aSMfWg", + "name": "The Black Cat", + "address": "3424 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9535464, + "longitude": -75.1930639, + "stars": 4.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Flowers & Gifts", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-23:0", + "Wednesday": "10:0-23:0", + "Thursday": "10:0-23:0", + "Friday": "10:0-23:0", + "Saturday": "10:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "vpfy4_N1PozCkvk2WDE_RQ", + "name": "The Abbaye", + "address": "637 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9622476511, + "longitude": -75.1430036973, + "stars": 4.0, + "review_count": 306, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsAttire": "u'casual'", + "OutdoorSeating": "True", + "Alcohol": "'full_bar'", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': True, 'breakfast': False}", + "CoatCheck": "False", + "GoodForKids": "False", + "GoodForDancing": "False", + "HappyHour": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': None, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "False" + }, + "categories": "Restaurants, Bars, American (Traditional), Nightlife", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "h2JbIxG9gOpbejYF8aAxzg", + "name": "Al Filippone Electrical Contractors", + "address": "6700 Guyer Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19142", + "latitude": 39.9174524, + "longitude": -75.2296175, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Home Services, Local Services, Electricians", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-12:0" + } + }, + { + "business_id": "sdk4w3iYgCVjrUs9PV8XGQ", + "name": "Woodlawn Foreign Car Service", + "address": "454 W Woodlawn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0275872, + "longitude": -75.1819433, + "stars": 4.5, + "review_count": 26, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Auto Repair, Automotive", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "wOp0SwGeUFP3MTKXDwSmjQ", + "name": "Bamboo Bar", + "address": "6238 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0341357, + "longitude": -75.0718146, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'loud'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True" + }, + "categories": "Nightlife, Bars", + "hours": null + }, + { + "business_id": "0NEzfA--v4LqAanLllzIrA", + "name": "The Pleasure Garden Club", + "address": "6039 Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.9195294854, + "longitude": -75.2087817906, + "stars": 2.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "GoodForDancing": "True", + "BusinessAcceptsBitcoin": "False", + "Music": "{'dj': True, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "Ambience": "{u'divey': False, u'hipster': False, u'casual': False, u'touristy': False, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}", + "WheelchairAccessible": "True", + "HappyHour": "False", + "AgesAllowed": "u'21plus'" + }, + "categories": "Adult Entertainment, Nightlife, Dance Clubs", + "hours": { + "Friday": "21:0-2:0", + "Saturday": "21:0-3:0" + } + }, + { + "business_id": "BIfo9AKEpC8oIwB60YAR_A", + "name": "Tsuki Sushi", + "address": "2135 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9510933, + "longitude": -75.177133, + "stars": 3.5, + "review_count": 149, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'", + "BusinessAcceptsCreditCards": "True", + "Caters": "True", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Japanese, Restaurants, Sushi Bars", + "hours": { + "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" + } + }, + { + "business_id": "bevOBvVz0ixr6kf1I-0U-Q", + "name": "Dollar Unique", + "address": "1115 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9504756, + "longitude": -75.1593377, + "stars": 3.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1" + }, + "categories": "Department Stores, Shopping, Fashion", + "hours": null + }, + { + "business_id": "43ZZDlfzgi8Zye2OHFyq5A", + "name": "Bee Burger", + "address": "7133 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0593943, + "longitude": -75.190119, + "stars": 2.5, + "review_count": 7, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "DriveThru": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Alcohol": "u'beer_and_wine'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "True", + "RestaurantsGoodForGroups": "True", + "NoiseLevel": "u'quiet'", + "Caters": "True", + "HasTV": "False" + }, + "categories": "Burgers, Cheesesteaks, Barbeque, Restaurants", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "Y-xCFPYXWd9Ig0R_ZTd9mA", + "name": "Baker Street Bread Co", + "address": "8009 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0711656, + "longitude": -75.2008087, + "stars": 4.0, + "review_count": 78, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsTableService": "False", + "WiFi": "u'no'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "'none'", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "Corkage": "False", + "RestaurantsReservations": "False", + "HasTV": "False", + "WheelchairAccessible": "False", + "BYOB": "False" + }, + "categories": "Bakeries, Coffee & Tea, Breakfast & Brunch, Food, Restaurants", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-14: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" + } + }, + { + "business_id": "IzLOX3tUTqQFBb9kHdu_wA", + "name": "Go Vertical", + "address": "950 N Penn St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9630260136, + "longitude": -75.1349696616, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Climbing, Active Life, Fitness & Instruction, Rock Climbing, Gyms", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "lz2eGtkTzr4hY_9GpgOanA", + "name": "Chestnut Hill Smiles", + "address": "9 E Highland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0766189, + "longitude": -75.2061299, + "stars": 3.5, + "review_count": 16, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "AcceptsInsurance": "True" + }, + "categories": "Oral Surgeons, Cosmetic Dentists, Dentists, Health & Medical, General Dentistry, Endodontists", + "hours": { + "Monday": "8:30-17:30", + "Tuesday": "8:30-17:30", + "Wednesday": "8:30-17:30", + "Thursday": "8:30-17:30", + "Friday": "8:30-17:30" + } + }, + { + "business_id": "t6F5E5a3Eo76wYCOQfiEzA", + "name": "CVS Pharmacy", + "address": "4133 G St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.0115717462, + "longitude": -75.1118696254, + "stars": 2.5, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "False", + "WheelchairAccessible": "True", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Convenience Stores, Shopping, Pharmacy, Health & Medical, Drugstores, Food", + "hours": { + "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" + } + }, + { + "business_id": "2rvRTXkBB_8b0TSQiNmr3w", + "name": "Buna Cafe", + "address": "5121 Baltimore Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9480324, + "longitude": -75.2262901, + "stars": 4.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Cafes, Ethiopian", + "hours": null + }, + { + "business_id": "e-ZyZc24wgkKafM3pguR2w", + "name": "Milkcrate Cafe", + "address": "400 E Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9699745, + "longitude": -75.1302068, + "stars": 4.5, + "review_count": 228, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "BikeParking": "True", + "RestaurantsAttire": "u'casual'", + "Ambience": "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "True", + "Caters": "True", + "HasTV": "False", + "RestaurantsGoodForGroups": "False", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DriveThru": "True", + "RestaurantsDelivery": "True" + }, + "categories": "Books, Mags, Music & Video, Restaurants, Vinyl Records, Food, Shopping, Breakfast & Brunch, Coffee & Tea", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "hUmHwBQtGg0iH-PZakQJDw", + "name": "Wm Mulherin's Sons", + "address": "1355 N Front St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.971709, + "longitude": -75.135062, + "stars": 4.5, + "review_count": 610, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForDancing": "False", + "RestaurantsReservations": "True", + "GoodForKids": "False", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "OutdoorSeating": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsAttire": "'casual'", + "Alcohol": "u'full_bar'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "CoatCheck": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': False}", + "Smoking": "u'no'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "HappyHour": "False", + "RestaurantsTableService": "True", + "Caters": "False", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Restaurants, Tapas/Small Plates, Italian, Szechuan, Cocktail Bars, Pizza, Chinese, Bars, Nightlife", + "hours": { + "Tuesday": "17:0-22:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "17:0-22:0" + } + }, + { + "business_id": "KBWSXXTFE_SgKyns1lVftA", + "name": "Rita's Italian Ice", + "address": "1356 E Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9320494, + "longitude": -75.1608295, + "stars": 4.5, + "review_count": 16, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'no'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Ice Cream & Frozen Yogurt, Food, Shaved Ice, Desserts", + "hours": { + "Monday": "11:0-22:30", + "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" + } + }, + { + "business_id": "HqOdvnCuA5SxRiuf3lNgig", + "name": "Customs Coffee House", + "address": "211 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9485262, + "longitude": -75.1446113, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "Caters": "False" + }, + "categories": "Coffee & Tea, Food", + "hours": { + "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": "9:0-18:30", + "Sunday": "9:0-17:30" + } + }, + { + "business_id": "xwyRa1tu9V3_JGHMiCg8Og", + "name": "Shi Miao Dao Yunnan Rice Noodle", + "address": "901 Race St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9552982, + "longitude": -75.1545039, + "stars": 4.0, + "review_count": 56, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "WheelchairAccessible": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': False, u'validated': None}" + }, + "categories": "Noodles, Restaurants, Chinese", + "hours": { + "Monday": "11:0-21:30", + "Wednesday": "11:0-21:30", + "Thursday": "11:0-21:30", + "Friday": "11:0-22:30", + "Saturday": "11:0-22:30", + "Sunday": "11:0-21:30" + } + }, + { + "business_id": "84oFqFilO7wbs2iVsTy3eA", + "name": "Caffe Valentino", + "address": "1245 S 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9319033, + "longitude": -75.1495444, + "stars": 3.5, + "review_count": 106, + "is_open": 0, + "attributes": { + "BYOBCorkage": "'yes_free'", + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "True", + "RestaurantsReservations": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "BikeParking": "True", + "Corkage": "False", + "OutdoorSeating": "True", + "GoodForKids": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WheelchairAccessible": "True", + "DogsAllowed": "False", + "RestaurantsTableService": "True", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "RestaurantsPriceRange2": "3", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': None, 'trendy': False, 'upscale': False, 'classy': None, 'casual': None}", + "BYOB": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Monday": "15:0-22:0", + "Tuesday": "15:0-22:0", + "Wednesday": "15:0-22:0", + "Thursday": "15:0-22:0", + "Friday": "15:0-22:0", + "Saturday": "15:0-22:0", + "Sunday": "15:0-22:0" + } + }, + { + "business_id": "0cHDa2cXCF4PZzO2krXypg", + "name": "Bo Sing", + "address": "4006 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9569332, + "longitude": -75.2023914, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'loud'", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "RestaurantsReservations": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "GoodForKids": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "RestaurantsAttire": "'casual'", + "WiFi": "u'no'", + "RestaurantsDelivery": "False" + }, + "categories": "Sandwiches, Restaurants, Chinese, Asian Fusion", + "hours": null + }, + { + "business_id": "8xTRu7vcEYcC1wRiXVaZBA", + "name": "Arcadia Boutique", + "address": "819 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9633739, + "longitude": -75.1408723, + "stars": 4.5, + "review_count": 22, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Shopping, Women's Clothing, Fashion, Accessories", + "hours": { + "Monday": "12:0-18:30", + "Tuesday": "12:0-18:30", + "Wednesday": "12:0-18:30", + "Thursday": "12:0-19:30", + "Friday": "12:0-18:30", + "Saturday": "11:0-18:30", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "obUkySQ_XH8eqvypSLDt3Q", + "name": "Jovan's Place", + "address": "2327 E York St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.979338, + "longitude": -75.125414, + "stars": 4.5, + "review_count": 46, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "2", + "WiFi": "u'no'", + "GoodForKids": "True", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "OutdoorSeating": "False", + "HasTV": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "German, Ethnic Food, Food, Restaurants, Specialty Food, Austrian, American (New)", + "hours": { + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-22:0", + "Thursday": "11:30-22:0", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0" + } + }, + { + "business_id": "M6MgV7UZB1e8kOHz1ZJmog", + "name": "China House", + "address": "5810 Greene St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19144", + "latitude": 40.0351703, + "longitude": -75.1787516, + "stars": 3.0, + "review_count": 23, + "is_open": 1, + "attributes": { + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "RestaurantsReservations": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "Caters": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "False", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "1", + "GoodForKids": "True", + "NoiseLevel": "'average'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsTakeOut": "True" + }, + "categories": "Chinese, Restaurants", + "hours": null + }, + { + "business_id": "mffOdYhUmMsFAyXCzVZv3A", + "name": "Hair Cuttery", + "address": "7626 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19151", + "latitude": 39.9779572, + "longitude": -75.2717747, + "stars": 2.0, + "review_count": 11, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "ByAppointmentOnly": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": null + }, + { + "business_id": "Zv-qQ9rNqF515gxzxkVZHQ", + "name": "Souvenir Philadelphia", + "address": "307 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950357, + "longitude": -75.145917, + "stars": 5.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Gift Shops, Shopping, Antiques, Flowers & Gifts", + "hours": null + }, + { + "business_id": "zrQAj03aHI7kpmAiyKcKhA", + "name": "Doc Magrogan's Oyster House - Philadelphia", + "address": "3432 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9536907778, + "longitude": -75.1933384913, + "stars": 3.0, + "review_count": 236, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "WiFi": "u'no'", + "RestaurantsDelivery": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsTakeOut": "True", + "HasTV": "True", + "OutdoorSeating": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'average'", + "Caters": "False", + "GoodForKids": "True", + "Alcohol": "u'full_bar'", + "HappyHour": "True" + }, + "categories": "Nightlife, American (Traditional), Seafood, Restaurants, Bars, Cocktail Bars", + "hours": { + "Monday": "11:30-22:0", + "Tuesday": "11:30-22:0", + "Wednesday": "11:30-1:0", + "Thursday": "11:30-1:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-21:0" + } + }, + { + "business_id": "uM3OgGrIMv26Mye7iWjY9g", + "name": "LALO", + "address": "111 S Independence Mall E, Ste 16A", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9497703714, + "longitude": -75.1482768767, + "stars": 4.0, + "review_count": 57, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "HasTV": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "WiFi": "u'free'", + "WheelchairAccessible": "True", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsTableService": "False", + "Ambience": "{'touristy': None, 'hipster': None, 'romantic': None, 'divey': None, 'intimate': False, 'trendy': None, 'upscale': None, 'classy': False, 'casual': True}", + "BikeParking": "True" + }, + "categories": "Fast Food, Filipino, Restaurants, Comfort Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "11:0-16:0", + "Wednesday": "11:0-16:0", + "Thursday": "11:0-16:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "HlxVm95HBTAzaVzQO0YQvQ", + "name": "Bg Petroleum", + "address": "601 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707436, + "longitude": -75.1470589, + "stars": 1.0, + "review_count": 7, + "is_open": 1, + "attributes": null, + "categories": "Gas Stations, Automotive", + "hours": null + }, + { + "business_id": "ruPaJWpkFnyBxsN_LnnmQw", + "name": "Greek From Greece", + "address": "107 N 33rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9579926, + "longitude": -75.1889787, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'" + }, + "categories": "Greek, Cafes, Food, Mediterranean, Bakeries, Coffee & Tea, Restaurants", + "hours": null + }, + { + "business_id": "y8gjlpJA89qDRCLC0JQaew", + "name": "Giuseppe & Sons", + "address": "1523 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9504997, + "longitude": -75.166696, + "stars": 4.0, + "review_count": 248, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "WiFi": "u'free'", + "HasTV": "False", + "HappyHour": "False", + "GoodForDancing": "False", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "DogsAllowed": "False", + "Music": "{u'dj': False, u'live': False, u'jukebox': False, u'video': False, u'background_music': False, u'karaoke': None, u'no_music': False}", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "None", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "RestaurantsTableService": "True", + "WheelchairAccessible": "True" + }, + "categories": "Nightlife, Italian, Bars, Restaurants", + "hours": { + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "16:0-23:0", + "Sunday": "16:0-22:0" + } + }, + { + "business_id": "0RuvlgTnKFbX3IK0ZOOocA", + "name": "Green Eggs Cafรฉ", + "address": "212 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9481225533, + "longitude": -75.1624631121, + "stars": 4.0, + "review_count": 2679, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "True", + "Alcohol": "u'none'", + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Caters": "True", + "HappyHour": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "ByAppointmentOnly": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': None, 'dinner': False, 'brunch': True, 'breakfast': True}", + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "True", + "OutdoorSeating": "True" + }, + "categories": "Restaurants, American (New), Diners, Breakfast & Brunch", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "K-7yK_HKL0FncU3pxC92tw", + "name": "St. Onerโ€™s", + "address": "2218 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9801329616, + "longitude": -75.1291918382, + "stars": 4.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Breweries, Noodles, Restaurants, Food, Brewpubs", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-20:0", + "Saturday": "12:0-20:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "cuxsbyiHGPFUvbuuE2q02w", + "name": "Harry's Smoke Shop", + "address": "14 N 3rd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.9506471, + "longitude": -75.1457136, + "stars": 5.0, + "review_count": 38, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Tobacco Shops, Shopping", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "11:0-22:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "hcEOG4KamPIS1RfAATYH9w", + "name": "Affordable Dentistry", + "address": "1507 W Passyunk Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9253438, + "longitude": -75.1715688, + "stars": 1.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "ByAppointmentOnly": "False", + "AcceptsInsurance": "True" + }, + "categories": "Dentists, Oral Surgeons, General Dentistry, Cosmetic Dentists, Endodontists, Orthodontists, Health & Medical, Periodontists", + "hours": null + }, + { + "business_id": "zr-b0_ARdeb5eTLHemB5yQ", + "name": "Smith's Black Tie & Tailoring", + "address": "113 S 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9499935, + "longitude": -75.1600906, + "stars": 4.0, + "review_count": 23, + "is_open": 0, + "attributes": { + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Sewing & Alterations, Formal Wear, Local Services, Fashion, Men's Clothing, Women's Clothing, Shopping", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-18:0", + "Wednesday": "10:0-18:0", + "Thursday": "10:0-18:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-17:0", + "Sunday": "11:0-16:0" + } + }, + { + "business_id": "oc7_PjsH22_Rm5Jh635AFQ", + "name": "The Turf Club", + "address": "700 Packer Ave, Ste 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19148", + "latitude": 39.9089296, + "longitude": -75.1626553, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "NoiseLevel": "'loud'", + "Alcohol": "'full_bar'", + "RestaurantsTakeOut": "False", + "OutdoorSeating": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Caters": "False", + "BikeParking": "True", + "RestaurantsDelivery": "False", + "RestaurantsReservations": "False" + }, + "categories": "American (Traditional), Restaurants, Local Flavor", + "hours": null + }, + { + "business_id": "UaNxDs-H5vfSQ732qxNnlw", + "name": "Yoga Habit", + "address": "1640 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9670265, + "longitude": -75.1650234, + "stars": 4.5, + "review_count": 42, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "DogsAllowed": "False", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "WheelchairAccessible": "True" + }, + "categories": "Active Life, Fitness & Instruction, Yoga", + "hours": { + "Monday": "6:0-21:0", + "Tuesday": "6:0-21:0", + "Wednesday": "6:0-21:0", + "Thursday": "6:0-21:0", + "Friday": "6:0-19:0", + "Saturday": "7:30-12:0", + "Sunday": "9:0-20:0" + } + }, + { + "business_id": "7VIcgf9-xlGSLb0e1mk6uQ", + "name": "Bright Parking", + "address": "145 N 10th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9548343, + "longitude": -75.1558378, + "stars": 3.5, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Parking, Automotive", + "hours": null + }, + { + "business_id": "8GclUzCTNI3wyuxLITKTug", + "name": "Verizon", + "address": "1115-41 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9520354, + "longitude": -75.1589635, + "stars": 3.5, + "review_count": 24, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "3", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Internet Service Providers, Home Services, Professional Services, Mobile Phones, Shopping, Electronics", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-18:0", + "Sunday": "11:0-17:0" + } + }, + { + "business_id": "QRSqUgPK7W_6z8yB27KD4g", + "name": "Enzo Custom", + "address": "1528 Walnut St, Ste 1401", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.949488, + "longitude": -75.167356, + "stars": 4.5, + "review_count": 54, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsBitcoin": "False", + "ByAppointmentOnly": "True", + "WheelchairAccessible": "True", + "DogsAllowed": "False" + }, + "categories": "Children's Clothing, Women's Clothing, Bespoke Clothing, Men's Clothing, Fashion, Shopping, Accessories, Formal Wear", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-20:0", + "Thursday": "14:0-20:0", + "Friday": "10:0-20:0", + "Saturday": "10:0-20:0", + "Sunday": "11:0-19:0" + } + }, + { + "business_id": "GQ75XoXnC2-AjdzUdAgioQ", + "name": "Philadelphia Mills Dental Center", + "address": "1318 Franklin Mills Cir, Ste 807", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19154", + "latitude": 40.085732, + "longitude": -74.962607, + "stars": 5.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "AcceptsInsurance": "True", + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Health & Medical, Dentists, General Dentistry", + "hours": { + "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": "10:0-15:0" + } + }, + { + "business_id": "PzAYUWwfZqUOoL863k1gMg", + "name": "John's Place", + "address": "1529 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9630001, + "longitude": -75.1639594, + "stars": 3.5, + "review_count": 87, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsPriceRange2": "1", + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "WiFi": "u'no'", + "RestaurantsTakeOut": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "HasTV": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': None, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'quiet'" + }, + "categories": "Breakfast & Brunch, Restaurants, Pizza, Sandwiches", + "hours": { + "Monday": "7:0-21:50", + "Tuesday": "7:0-21:50", + "Wednesday": "7:0-21:50", + "Thursday": "7:0-21:50", + "Friday": "7:0-21:50", + "Saturday": "7:0-21:50" + } + }, + { + "business_id": "YnnzGperIwASelPawAUh3w", + "name": "Lucas Moving & Home Services", + "address": "", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9915379, + "longitude": -75.2187346, + "stars": 4.5, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "False" + }, + "categories": "Self Storage, Home Services, Home Cleaning, Movers, Handyman, Plumbing, Junk Removal & Hauling, Furniture Assembly, Local Services, Keys & Locksmiths", + "hours": { + "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" + } + }, + { + "business_id": "heXHc548cQA4qzPeQDiD3Q", + "name": "All Around This World", + "address": "4336 Pine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9513988, + "longitude": -75.2106087, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": null, + "categories": "Preschools, Educational Services, Kids Activities, Active Life, Education", + "hours": { + "Wednesday": "9:30-13:0", + "Saturday": "10:30-11:30" + } + }, + { + "business_id": "b2b1-Y2iHUW5vr2j6vAc2g", + "name": "Signature Investment Realty", + "address": "801 S 47th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19143", + "latitude": 39.9483299, + "longitude": -75.2164097, + "stars": 1.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Apartments, Real Estate, Home Services", + "hours": null + }, + { + "business_id": "_3NZVCWeyFZ1_vWqi2avjw", + "name": "Nick's Old Original Roast Beef", + "address": "2149 S 20th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9244658, + "longitude": -75.1793069, + "stars": 4.5, + "review_count": 258, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "1", + "Corkage": "False", + "RestaurantsTakeOut": "True", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "BYOBCorkage": "'yes_free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "False", + "HasTV": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'no'", + "BikeParking": "True", + "HappyHour": "True", + "GoodForKids": "True", + "Smoking": "u'no'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': True, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': None}", + "RestaurantsTableService": "True", + "BestNights": "{'monday': True, 'tuesday': False, 'friday': True, 'wednesday': True, 'thursday': False, 'sunday': False, 'saturday': False}", + "GoodForMeal": "{'dessert': False, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "RestaurantsDelivery": "True" + }, + "categories": "Bars, Sandwiches, Dive Bars, Nightlife, Restaurants", + "hours": { + "Monday": "10:30-1:15", + "Tuesday": "10:30-1:15", + "Wednesday": "10:30-1:15", + "Thursday": "10:30-1:15", + "Friday": "10:30-1:15", + "Saturday": "10:30-1:15" + } + }, + { + "business_id": "PWtFbiNsrO5rn67KWWWGrg", + "name": "The Venture Inn", + "address": "255 S Camac St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9469782, + "longitude": -75.1616547, + "stars": 3.5, + "review_count": 45, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "OutdoorSeating": "False", + "HasTV": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsDelivery": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "False", + "Caters": "False", + "RestaurantsGoodForGroups": "True", + "GoodForKids": "False", + "WiFi": "u'no'", + "RestaurantsAttire": "u'casual'" + }, + "categories": "American (Traditional), American (New), Gay Bars, Nightlife, Restaurants, Bars", + "hours": { + "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": "12:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "QJOC6Uz-RCpzPB6aMjtP9Q", + "name": "The Tasty Toast", + "address": "1320 Point Breeze Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9347543, + "longitude": -75.1795322, + "stars": 4.0, + "review_count": 143, + "is_open": 1, + "attributes": { + "Alcohol": "u'none'", + "DogsAllowed": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "ByAppointmentOnly": "False", + "RestaurantsTableService": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "BikeParking": "True", + "GoodForKids": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': False, u'trendy': False, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "HappyHour": "False", + "Caters": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, American (Traditional), Cheesesteaks, Cafes", + "hours": { + "Monday": "7:30-14:30", + "Tuesday": "7:30-14:30", + "Wednesday": "7:30-14:30", + "Thursday": "7:30-14:30", + "Friday": "7:30-14:30", + "Saturday": "7:30-14:30", + "Sunday": "7:30-14:30" + } + }, + { + "business_id": "oZzN706lKoL4faaTK739xA", + "name": "Restaurant Ambra", + "address": "705 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403236, + "longitude": -75.1492998, + "stars": 5.0, + "review_count": 61, + "is_open": 1, + "attributes": { + "HappyHour": "True", + "NoiseLevel": "u'quiet'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "GoodForKids": "False", + "RestaurantsPriceRange2": "4", + "RestaurantsTableService": "True", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': True, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "Alcohol": "u'full_bar'", + "RestaurantsReservations": "True", + "WiFi": "u'no'", + "RestaurantsGoodForGroups": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Caters": "False", + "RestaurantsAttire": "u'dressy'", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Italian, Restaurants", + "hours": { + "Thursday": "18:0-21:0", + "Friday": "18:0-21:0", + "Saturday": "18:0-21:0", + "Sunday": "18:0-21:0" + } + }, + { + "business_id": "6liIxwAycRwnzefTVqGGEw", + "name": "Panera Bread", + "address": "3900 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 40.0083024, + "longitude": -75.2097637, + "stars": 2.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsAttire": "'casual'", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "'average'", + "RestaurantsTableService": "False", + "HasTV": "True", + "DriveThru": "True", + "Caters": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "Alcohol": "u'none'", + "GoodForMeal": "{u'breakfast': True, u'brunch': True, u'lunch': True, u'dinner': True, u'latenight': None, u'dessert': None}", + "RestaurantsDelivery": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': None, u'intimate': False, u'romantic': False, u'classy': None, u'upscale': False}", + "BikeParking": "False" + }, + "categories": "Salad, Sandwiches, Bakeries, Restaurants, Food, Soup", + "hours": { + "Monday": "7:0-21:0", + "Tuesday": "7:0-21:0", + "Wednesday": "7:0-21:0", + "Thursday": "7:0-21:0", + "Friday": "7:0-21:0", + "Saturday": "7:0-21:0", + "Sunday": "7:0-21:0" + } + }, + { + "business_id": "TeiGh076CLVLrB-9tQguNQ", + "name": "Lyrics Lounge", + "address": "6527 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0349663, + "longitude": -75.0664421, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "Alcohol": "u'full_bar'", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "NoiseLevel": "u'loud'", + "OutdoorSeating": "False", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsReservations": "False", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Bars, Lounges, Nightlife, Dance Clubs", + "hours": { + "Thursday": "21:0-2:0", + "Friday": "19:0-2:0", + "Saturday": "21:0-3:0", + "Sunday": "20:0-2:0" + } + }, + { + "business_id": "sFmGnjy3JrZPBcpNXgOlDA", + "name": "Sailor Jerry Store", + "address": "116-118 S 13th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949671, + "longitude": -75.1622042, + "stars": 4.5, + "review_count": 18, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3" + }, + "categories": "Used, Vintage & Consignment, Shopping, Men's Clothing, Fashion, Women's Clothing", + "hours": { + "Monday": "11:0-19:0", + "Tuesday": "11:0-19:0", + "Wednesday": "11:0-19:0", + "Thursday": "11:0-19:0", + "Friday": "11:0-20:0", + "Saturday": "11:0-20:0", + "Sunday": "12:0-17:0" + } + }, + { + "business_id": "isd_RyJ3mnOmRNb6u7vzkw", + "name": "Honey Truck", + "address": "W Norris St & N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.982554861, + "longitude": -75.1533186831, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': None, u'lot': True, u'validated': None}" + }, + "categories": "Food Trucks, Food", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "fysScO3n0JKcvyNL6Dff_g", + "name": "Color Nails", + "address": "7935 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0577401, + "longitude": -75.0525131, + "stars": 3.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Beauty & Spas, Nail Salons", + "hours": null + }, + { + "business_id": "RJD88-WavTe7f-68Psn5VQ", + "name": "Latimer Delicatessen", + "address": "255 S 15th St, Ste 14L", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9478262281, + "longitude": -75.1662168172, + "stars": 3.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "RestaurantsReservations": "False", + "Caters": "False", + "GoodForKids": "True", + "OutdoorSeating": "False", + "RestaurantsPriceRange2": "2", + "NoiseLevel": "u'quiet'", + "WiFi": "u'no'", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True", + "HasTV": "True" + }, + "categories": "Beer, Wine & Spirits, Restaurants, Nightlife, Bars, Convenience Stores, Delis, Food", + "hours": { + "Monday": "8:0-1:45", + "Tuesday": "8:0-1:45", + "Wednesday": "8:0-1:45", + "Thursday": "8:0-1:45", + "Friday": "8:0-1:45", + "Saturday": "8:0-1:45", + "Sunday": "8:0-1:45" + } + }, + { + "business_id": "eGVg2kbDw4Asgc1iSmXCgA", + "name": "Fashion Hair Mall", + "address": "1023 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.954011, + "longitude": -75.15725, + "stars": 3.5, + "review_count": 49, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': True, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': False, 'kids': True, 'perms': True, 'asian': True}", + "ByAppointmentOnly": "False", + "GoodForKids": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsBitcoin": "False", + "AcceptsInsurance": "False" + }, + "categories": "Massage, Nail Salons, Hair Salons, Beauty & Spas", + "hours": { + "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" + } + }, + { + "business_id": "bh60ZTqnciiH3FlTUJ-6iw", + "name": "Dunkin'", + "address": "9490 Blue Grass Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19114", + "latitude": 40.07879, + "longitude": -75.025854, + "stars": 1.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "RestaurantsTakeOut": "True", + "WiFi": "'free'", + "RestaurantsPriceRange2": "1", + "BusinessParking": "None", + "DriveThru": "None", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Donuts, Bagels, Bakeries, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "NCctsUSSb1WG-7Dm3kM6Kw", + "name": "Bakers Centre Laundry", + "address": "2920 Roberts Ave, Ste 1110", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19129", + "latitude": 40.0126478, + "longitude": -75.1747242, + "stars": 2.5, + "review_count": 15, + "is_open": 1, + "attributes": { + "BikeParking": "False", + "BusinessAcceptsBitcoin": "False", + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'free'" + }, + "categories": "Laundry Services, Dry Cleaning & Laundry, Local Services", + "hours": { + "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" + } + }, + { + "business_id": "uTUTULYSAmHGK7w5DDw5iA", + "name": "A Cup Of Tea", + "address": "115 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.95393, + "longitude": -75.1544914, + "stars": 4.5, + "review_count": 100, + "is_open": 1, + "attributes": { + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "Caters": "False", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "OutdoorSeating": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "RestaurantsDelivery": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Bubble Tea, Food", + "hours": { + "Monday": "11:0-22:30", + "Tuesday": "11:0-22:30", + "Wednesday": "11:0-22:30", + "Thursday": "11:0-22:30", + "Friday": "11:0-23:0", + "Saturday": "11:0-23:0", + "Sunday": "11:0-22:30" + } + }, + { + "business_id": "ttC21tYWje99-twhibbs3g", + "name": "Floyd & Dianns Tire Service", + "address": "2701 Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9729801, + "longitude": -75.1808374, + "stars": 4.5, + "review_count": 56, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False" + }, + "categories": "Automotive, Wheel & Rim Repair, Tires, Auto Parts & Supplies", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0", + "Saturday": "8:30-16:30" + } + }, + { + "business_id": "UrQcudvqxfozaFCwiCE-JQ", + "name": "Brick American Eatery", + "address": "1708 Lombard St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9451614, + "longitude": -75.170498, + "stars": 3.0, + "review_count": 214, + "is_open": 0, + "attributes": { + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "RestaurantsGoodForGroups": "False", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Caters": "False", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "OutdoorSeating": "True", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HappyHour": "True" + }, + "categories": "Food, Restaurants, American (New)", + "hours": { + "Monday": "17:0-2:0", + "Tuesday": "17:0-2:0", + "Wednesday": "17:0-2:0", + "Thursday": "17:0-2:0", + "Friday": "17:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "10:0-0:0" + } + }, + { + "business_id": "elbqy5pmTuhPo6-VZR5g8w", + "name": "Crimson Hair Studio", + "address": "1710 Sansom St, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9505151, + "longitude": -75.1693813, + "stars": 4.5, + "review_count": 141, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False", + "WiFi": "u'free'", + "HairSpecializesIn": "{'straightperms': False, 'coloring': True, 'extensions': True, 'africanamerican': False, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "GoodForKids": "True" + }, + "categories": "Beauty & Spas, Hair Removal, Waxing, Hair Stylists, Hair Salons, Men's Hair Salons, Makeup Artists, Barbers, Hair Extensions, Blow Dry/Out Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-16:0", + "Wednesday": "8:0-20:0", + "Thursday": "9:0-19:0", + "Friday": "8:0-18:0", + "Saturday": "8:0-16:0", + "Sunday": "10:0-16:0" + } + }, + { + "business_id": "6ymcSkX_yN0zOopSJKA82A", + "name": "The Pineville", + "address": "2448 E Huntingdon St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9796168252, + "longitude": -75.1195449382, + "stars": 3.5, + "review_count": 42, + "is_open": 0, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}" + }, + "categories": "Restaurants, Nightlife, Bars, American (Traditional), Pubs", + "hours": null + }, + { + "business_id": "pccqRcJGvCf4Ux1jHNIssg", + "name": "Felix Cleaner", + "address": "335 Spring Garden St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.96143, + "longitude": -75.144474, + "stars": 4.0, + "review_count": 12, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Dry Cleaning & Laundry, Laundry Services", + "hours": { + "Monday": "7:0-19:0", + "Tuesday": "7:0-19:0", + "Wednesday": "7:0-19:0", + "Thursday": "7:0-19:0", + "Friday": "7:0-18:0", + "Saturday": "8:30-17:30" + } + }, + { + "business_id": "p8FRvYD-vYAKzAiZgbJdbg", + "name": "Hikari Japanese Restaurant", + "address": "1040 N American St, Ste 701", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9673847, + "longitude": -75.1411703, + "stars": 3.5, + "review_count": 63, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "True", + "GoodForKids": "False", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "2", + "RestaurantsTakeOut": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "RestaurantsAttire": "'casual'", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'quiet'", + "WiFi": "u'free'", + "BikeParking": "True", + "HasTV": "False" + }, + "categories": "Restaurants, Sushi Bars, Japanese", + "hours": { + "Tuesday": "16:30-22:0", + "Wednesday": "16:30-22:0", + "Thursday": "16:30-22:0", + "Friday": "16:30-23:0", + "Saturday": "16:30-23:0", + "Sunday": "16:0-21:30" + } + }, + { + "business_id": "dLfJhzrUNoL8LLV2rhi_AQ", + "name": "Holistic Veterinary Care Service", + "address": "155 W Durham St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0571912, + "longitude": -75.1927377, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": null, + "categories": "Health & Medical, Holistic Animal Care, Pet Hospice, Pets, Pet Services, Veterinarians", + "hours": { + "Monday": "9:0-17:0", + "Tuesday": "9:0-17:0", + "Wednesday": "9:0-17:0", + "Thursday": "9:0-17:0", + "Friday": "9:0-17:0" + } + }, + { + "business_id": "ZGH8MzJa7Q7iIpmtzBAJAQ", + "name": "Manayunk Brewery", + "address": "4120 Main St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19127", + "latitude": 40.022471, + "longitude": -75.2188, + "stars": 3.5, + "review_count": 692, + "is_open": 1, + "attributes": { + "RestaurantsAttire": "u'casual'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "False", + "BYOBCorkage": "'no'", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "RestaurantsTakeOut": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "NoiseLevel": "u'average'", + "Caters": "True", + "WiFi": "u'free'", + "Alcohol": "'full_bar'", + "BusinessAcceptsBitcoin": "False", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': True}", + "HappyHour": "True", + "GoodForKids": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sushi Bars, American (New), Bars, Pizza, American (Traditional), Restaurants, Nightlife, Breweries, Food", + "hours": { + "Wednesday": "12:0-20:0", + "Thursday": "12:0-20:0", + "Friday": "12:0-22:0", + "Saturday": "12:0-22:0", + "Sunday": "12:0-20:0" + } + }, + { + "business_id": "8QWZV2WAX60eQ6A-a87Z9g", + "name": "Lure Salon", + "address": "3247 E Thompson St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19134", + "latitude": 39.9852959, + "longitude": -75.1015594, + "stars": 5.0, + "review_count": 19, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Hair Salons, Beauty & Spas", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-21:0", + "Friday": "11:30-21:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "0jPp69hbYMOzRYbhLEzCjQ", + "name": "Ti Penso", + "address": "2108 S St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19146", + "latitude": 39.9449658, + "longitude": -75.1773865, + "stars": 4.0, + "review_count": 50, + "is_open": 0, + "attributes": { + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsGoodForGroups": "False", + "DogsAllowed": "True", + "GoodForKids": "False", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True", + "NoiseLevel": "u'average'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "BikeParking": "False", + "HasTV": "False", + "RestaurantsTableService": "True", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsDelivery": "True", + "RestaurantsReservations": "True", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "False", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Restaurants, Breakfast & Brunch, Desserts, American (New)", + "hours": { + "Monday": "0:0-0:0", + "Thursday": "17:0-23:0", + "Friday": "17:0-23:0", + "Saturday": "17:0-23:0", + "Sunday": "11:0-15:0" + } + }, + { + "business_id": "P0LuuY4gbVRWhUQ1wa6BrA", + "name": "Fishtown Brewpub", + "address": "1101 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9677250832, + "longitude": -75.1340245083, + "stars": 3.5, + "review_count": 95, + "is_open": 0, + "attributes": { + "Caters": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "RestaurantsDelivery": "None", + "DogsAllowed": "False", + "RestaurantsPriceRange2": "2", + "BikeParking": "True" + }, + "categories": "Gastropubs, Food, Brewpubs, Breweries, Restaurants", + "hours": { + "Tuesday": "16:0-2:0", + "Wednesday": "16:0-2:0", + "Thursday": "16:0-2:0", + "Friday": "16:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-0:0" + } + }, + { + "business_id": "AG4hoTnZ4bSOGJF58thKBw", + "name": "Backiel & Associates", + "address": "1500 John F Kennedy Blvd, Ste 300", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9534657, + "longitude": -75.1656968, + "stars": 3.5, + "review_count": 77, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Teeth Whitening, Dentists, Endodontists, Beauty & Spas, Cosmetic Dentists, General Dentistry, Health & Medical", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "8:0-18:0", + "Wednesday": "8:0-18:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-14:0" + } + }, + { + "business_id": "lDu-FMWCRVaDa9830-aVbg", + "name": "Liberty Service Center", + "address": "25th & Poplar St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9729835425, + "longitude": -75.1782778554, + "stars": 3.5, + "review_count": 21, + "is_open": 1, + "attributes": null, + "categories": "Automotive, Auto Repair", + "hours": { + "Monday": "8:30-18:0", + "Tuesday": "8:30-18:0", + "Wednesday": "8:30-18:0", + "Thursday": "8:30-18:0", + "Friday": "8:30-18:0" + } + }, + { + "business_id": "0UCrWo2CihjxkZniTcQGpg", + "name": "Ali's Middle Eastern", + "address": "1835 N 12th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9809158, + "longitude": -75.153284, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Middle Eastern, Food, Restaurants, Street Vendors", + "hours": null + }, + { + "business_id": "YwpuLk-02mYO76h_hktm7w", + "name": "El Rinconcito", + "address": "734 Adams Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.031906, + "longitude": -75.107136, + "stars": 3.5, + "review_count": 8, + "is_open": 1, + "attributes": { + "RestaurantsTakeOut": "None", + "RestaurantsDelivery": "None" + }, + "categories": "Restaurants, Caribbean, Spanish, Dominican", + "hours": null + }, + { + "business_id": "C9UylQTOh7uwZo4a7QhLyg", + "name": "Friday Saturday Sunday", + "address": "261 S 21st St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.948937, + "longitude": -75.1759543, + "stars": 4.5, + "review_count": 287, + "is_open": 1, + "attributes": { + "RestaurantsTableService": "True", + "RestaurantsGoodForGroups": "True", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsReservations": "True", + "BikeParking": "False", + "Alcohol": "u'full_bar'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "RestaurantsAttire": "u'dressy'", + "GoodForKids": "False", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "4", + "NoiseLevel": "u'average'", + "Caters": "False", + "OutdoorSeating": "None", + "DogsAllowed": "False", + "HasTV": "True", + "WiFi": "'no'", + "RestaurantsDelivery": "True" + }, + "categories": "American (New), Restaurants, Salad, Seafood", + "hours": { + "Monday": "0:0-0:0", + "Wednesday": "17:0-22:0", + "Thursday": "17:0-22:0", + "Friday": "17:0-22:0", + "Saturday": "17:0-22:0" + } + }, + { + "business_id": "ab0oFAKe7NyoQPQONgcrCQ", + "name": "C 1 NAILS&SPA", + "address": "225 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9698002, + "longitude": -75.1405198, + "stars": 3.0, + "review_count": 44, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Nail Salons, Eyebrow Services, Eyelash Service, Beauty & Spas", + "hours": { + "Monday": "9:30-19:30", + "Tuesday": "9:30-19:30", + "Wednesday": "9:30-19:30", + "Thursday": "9:30-19:30", + "Friday": "9:30-19:30", + "Saturday": "9:0-19:0", + "Sunday": "9:30-17:30" + } + }, + { + "business_id": "mx31XU-QJIxObRGH_qvy3w", + "name": "HAPP'S", + "address": "1862 Frankford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19125", + "latitude": 39.9783479, + "longitude": -75.1308364, + "stars": 4.5, + "review_count": 23, + "is_open": 1, + "attributes": { + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "WiFi": "u'free'", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True" + }, + "categories": "Food, Restaurants, Coffee & Tea, Sandwiches, Breakfast & Brunch", + "hours": { + "Monday": "8:0-15:0", + "Tuesday": "8:0-15:0", + "Wednesday": "8:0-15:0", + "Thursday": "8:0-15:0", + "Friday": "8:0-15:0", + "Saturday": "8:0-15:0", + "Sunday": "8:0-15:0" + } + }, + { + "business_id": "76vbrj2OZhgPJUv46Doe5Q", + "name": "Eyeworks Plus", + "address": "120 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9409118, + "longitude": -75.1447659, + "stars": 3.5, + "review_count": 17, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Shopping, Health & Medical, Eyewear & Opticians, Optometrists", + "hours": null + }, + { + "business_id": "bdoSukcNeN5aD3p0c9qKnA", + "name": "Stratix", + "address": "4700 City Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19131", + "latitude": 39.9579558787, + "longitude": -75.3180066124, + "stars": 3.0, + "review_count": 7, + "is_open": 0, + "attributes": null, + "categories": "Web Design, Marketing, Professional Services", + "hours": null + }, + { + "business_id": "T6S3ANFsbrl_1Q6ow-7XYA", + "name": "The Gold Standard Cafe", + "address": "1318 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.943354, + "longitude": -75.164005, + "stars": 4.5, + "review_count": 26, + "is_open": 0, + "attributes": { + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsTableService": "True", + "RestaurantsTakeOut": "None", + "BusinessParking": "None", + "RestaurantsDelivery": "None", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "GoodForMeal": "None" + }, + "categories": "Breakfast & Brunch, American (New), Vegetarian, Restaurants", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0", + "Saturday": "8:0-16:0", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "PWlShgXsJ8Yj3ucD7n8kdA", + "name": "The Ranstead Room", + "address": "2013 Ranstead St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9526544759, + "longitude": -75.1739307893, + "stars": 4.0, + "review_count": 478, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "True", + "OutdoorSeating": "False", + "RestaurantsReservations": "False", + "Alcohol": "u'full_bar'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "WiFi": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", + "BikeParking": "False", + "HasTV": "True", + "RestaurantsGoodForGroups": "True", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Smoking": "u'no'", + "GoodForDancing": "False", + "RestaurantsAttire": "u'dressy'", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", + "CoatCheck": "False" + }, + "categories": "Bars, Lounges, Nightlife", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "18:0-2:0", + "Wednesday": "18:0-2:0", + "Thursday": "18:0-2:0", + "Friday": "18:0-2:0", + "Saturday": "18:0-2:0", + "Sunday": "18:0-2:0" + } + }, + { + "business_id": "QACv2iqwPaOeC9Pg-PIHgw", + "name": "Jefferson Pharmacy", + "address": "833 Chestnut St, Ste 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.949764, + "longitude": -75.155156, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Shopping, Hospitals, Health & Medical, Drugstores", + "hours": null + }, + { + "business_id": "q0tB0ch5cFQQBSp5nUXRCQ", + "name": "Wawa", + "address": "10901 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.1115707456, + "longitude": -75.023489252, + "stars": 3.5, + "review_count": 12, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "1", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "False", + "ByAppointmentOnly": "False", + "RestaurantsTakeOut": "True", + "Caters": "True", + "Alcohol": "'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "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': False, 'dinner': False, 'brunch': False, 'breakfast': False}", + "HasTV": "True", + "WiFi": "u'free'", + "RestaurantsDelivery": "True" + }, + "categories": "Food, Convenience Stores, Sandwiches, Restaurants, Coffee & Tea", + "hours": { + "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" + } + }, + { + "business_id": "FeLo2fu_ZWue14wt6D9XQw", + "name": "Blue Suede Saloon", + "address": "2739 S 16th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9162967, + "longitude": -75.1746231, + "stars": 4.5, + "review_count": 6, + "is_open": 0, + "attributes": { + "NoiseLevel": "'average'", + "Alcohol": "u'full_bar'", + "HasTV": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True" + }, + "categories": "Pubs, Nightlife, Bars", + "hours": { + "Monday": "10:0-2:0", + "Tuesday": "10:0-2:0", + "Wednesday": "10:0-2:0", + "Thursday": "10:0-2:0", + "Friday": "10:0-2:0", + "Saturday": "10:0-2:0", + "Sunday": "11:0-2:0" + } + }, + { + "business_id": "7zzMf0VwD51K7dJjZMf_pA", + "name": "Southwest Airlines", + "address": "8500 Essington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19153", + "latitude": 39.8785, + "longitude": -75.239554, + "stars": 3.0, + "review_count": 87, + "is_open": 1, + "attributes": { + "WiFi": "u'paid'" + }, + "categories": "Hotels & Travel, Transportation, Airlines", + "hours": null + }, + { + "business_id": "zm9aNqkHHtp1f-VT3ZlOZw", + "name": "Cafe Renata", + "address": "4305 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.954059, + "longitude": -75.209587, + "stars": 3.5, + "review_count": 80, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "Caters": "True", + "BikeParking": "True", + "RestaurantsReservations": "True", + "HasTV": "False", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "False", + "OutdoorSeating": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsTakeOut": "True", + "WiFi": "u'free'", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "2" + }, + "categories": "Restaurants, Cafes, Mediterranean, Breakfast & Brunch", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "8:0-18:0", + "Sunday": "8:0-18:0" + } + }, + { + "business_id": "4sxse2KGIYTKOi9zXRccKQ", + "name": "Ethos Dispensary - Philadelphia", + "address": "807 Locust St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9473742, + "longitude": -75.15529, + "stars": 5.0, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "WiFi": "u'free'", + "AcceptsInsurance": "False" + }, + "categories": "Cannabis Clinics, Medical Cannabis Referrals, Shopping, Cannabis Dispensaries, Health & Medical", + "hours": { + "Monday": "10:0-20:0", + "Tuesday": "10:0-20:0", + "Wednesday": "10:0-20:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-21:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "DZu3Fh9YejCK5YNyxUx4Bg", + "name": "Burlington House", + "address": "1321 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9470462, + "longitude": -75.1637041, + "stars": 2.5, + "review_count": 11, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Apartments, Home Services, Real Estate", + "hours": null + }, + { + "business_id": "2CqL9tup_4lBUgxEq8v8tg", + "name": "Mitchell Custom Concepts", + "address": "1218 Catharine St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9403045, + "longitude": -75.1630429, + "stars": 5.0, + "review_count": 9, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "ByAppointmentOnly": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Handyman, Windows Installation, Contractors, Home & Garden, Shopping, Kitchen & Bath, Home Services, Damage Restoration", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0" + } + }, + { + "business_id": "qFDvyhNAyd31GxgzDqFzDA", + "name": "Prather Computer Services", + "address": "8523 Germantown Ave, Fl 2", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0765197, + "longitude": -75.2069744, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Local Services, IT Services & Computer Repair", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Saturday": "10:0-19:0" + } + }, + { + "business_id": "NoU_2sLsdgUxAf9S7vuCQg", + "name": "Food Bazaar", + "address": "1500 Locust St, Ste 5", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9482528, + "longitude": -75.1666834, + "stars": 2.0, + "review_count": 8, + "is_open": 0, + "attributes": null, + "categories": null, + "hours": null + }, + { + "business_id": "OoLikm3s7psgqwp8KUa4VA", + "name": "Alb Granite", + "address": "2120 Herbert St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19124", + "latitude": 40.011295, + "longitude": -75.076036, + "stars": 2.5, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Home Services, Contractors", + "hours": { + "Monday": "8:0-17:0", + "Tuesday": "8:0-17:0", + "Wednesday": "8:0-17:0", + "Thursday": "8:0-17:0", + "Friday": "8:0-17:0", + "Saturday": "8:0-15:0" + } + }, + { + "business_id": "hzX8Zrsxge4PXXKs_XAeqA", + "name": "Can Tho City", + "address": "3600 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9505059, + "longitude": -75.1951919, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": null, + "categories": "Vietnamese, Restaurants, Breakfast & Brunch, Sandwiches", + "hours": null + }, + { + "business_id": "eLi0bpsDoWQkBhJX1d46tg", + "name": "Fergie's Pub", + "address": "1214 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9495961, + "longitude": -75.1611276, + "stars": 3.5, + "review_count": 286, + "is_open": 1, + "attributes": { + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "HasTV": "False", + "BusinessAcceptsCreditCards": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Alcohol": "'full_bar'", + "RestaurantsGoodForGroups": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "'casual'", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BYOBCorkage": "'no'", + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "HappyHour": "True", + "BusinessAcceptsBitcoin": "False", + "NoiseLevel": "u'loud'", + "CoatCheck": "False", + "Smoking": "u'no'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "BestNights": "{'monday': False, 'tuesday': False, 'friday': True, 'wednesday': False, 'thursday': True, 'sunday': False, 'saturday': True}", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': True}", + "WheelchairAccessible": "True", + "GoodForMeal": "{'dessert': False, 'latenight': True, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}", + "RestaurantsTableService": "True", + "Caters": "False", + "DogsAllowed": "False" + }, + "categories": "Event Planning & Services, Bars, Pubs, Nightlife, Soup, Breakfast & Brunch, Venues & Event Spaces, Restaurants, Irish, Southern, Irish Pub, Arts & Entertainment, Music Venues", + "hours": { + "Monday": "12:0-2:0", + "Tuesday": "12:0-2:0", + "Wednesday": "12:0-2:0", + "Thursday": "12:0-2:0", + "Friday": "12:0-2:0", + "Saturday": "12:0-2:0", + "Sunday": "12:0-2:0" + } + }, + { + "business_id": "NO1pbRWkefeULr1xmDASYg", + "name": "The Mildred", + "address": "824 S 8th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9388772, + "longitude": -75.1563327, + "stars": 4.0, + "review_count": 91, + "is_open": 0, + "attributes": { + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsPriceRange2": "3", + "RestaurantsAttire": "u'casual'", + "GoodForKids": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': True}", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "OutdoorSeating": "False", + "Alcohol": "u'full_bar'", + "HasTV": "False", + "NoiseLevel": "u'average'", + "RestaurantsGoodForGroups": "True", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "HappyHour": "True" + }, + "categories": "American (New), British, French, Restaurants, Breakfast & Brunch", + "hours": { + "Tuesday": "17:30-22:30", + "Wednesday": "17:30-22:30", + "Thursday": "17:30-22:30", + "Friday": "17:30-23:0", + "Saturday": "17:30-23:0", + "Sunday": "10:30-18:0" + } + }, + { + "business_id": "m7cMep_jmu5iifo0CjfOew", + "name": "Loft Cleaners", + "address": "2116 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9507007, + "longitude": -75.1767153, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsBitcoin": "False" + }, + "categories": "Dry Cleaning, Dry Cleaning & Laundry, Local Services, Sewing & Alterations, Laundry Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0", + "Saturday": "9:0-17:0" + } + }, + { + "business_id": "SXKlTcK3dXyoqa5B0VYFew", + "name": "Guaranteed Plumbing & Heating", + "address": "900 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0617816, + "longitude": -75.0847722, + "stars": 2.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "False" + }, + "categories": "Heating & Air Conditioning/HVAC, Water Heater Installation/Repair, Home Services, Plumbing", + "hours": { + "Monday": "8:0-16:0", + "Tuesday": "8:0-16:0", + "Wednesday": "8:0-16:0", + "Thursday": "8:0-16:0", + "Friday": "8:0-16:0" + } + }, + { + "business_id": "VWUmZrvqTPNzZD3p_IJj7A", + "name": "Headhouse Crab & Oyster Co", + "address": "119 South St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.941185, + "longitude": -75.144843, + "stars": 4.0, + "review_count": 58, + "is_open": 0, + "attributes": { + "RestaurantsReservations": "True", + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "u'casual'", + "BikeParking": "True", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "Alcohol": "u'full_bar'", + "HappyHour": "True", + "GoodForKids": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "RestaurantsDelivery": "False", + "HasTV": "True", + "NoiseLevel": "'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "2", + "Caters": "True" + }, + "categories": "Seafood, Live/Raw Food, Restaurants, Gluten-Free", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-23:0", + "Saturday": "12:0-23:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "RdoHJa9v6R47DnIuTPP7QQ", + "name": "Manayunk Pooch Scoochers", + "address": "474 Leverington Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0354032, + "longitude": -75.2180417, + "stars": 4.5, + "review_count": 21, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Pets, Pet Services, Dog Walkers", + "hours": { + "Monday": "6:30-22:0", + "Tuesday": "6:30-22:0", + "Wednesday": "6:30-22:0", + "Thursday": "6:30-22:0", + "Friday": "6:30-22:0", + "Saturday": "6:30-22:0", + "Sunday": "6:30-22:0" + } + }, + { + "business_id": "yDPwHWr9bY88DhoQmMPWmg", + "name": "Moviestop", + "address": "7390 Bustleton Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19152", + "latitude": 40.0497785, + "longitude": -75.0588658, + "stars": 3.0, + "review_count": 6, + "is_open": 0, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Shopping, Books, Mags, Music & Video, Videos & Video Game Rental", + "hours": null + }, + { + "business_id": "BAf7Wu2Xo8HioALaBLRIwA", + "name": "10 Arts Bistro", + "address": "The Ritz-Carlton Philadelphia, Ten Avenue of the Arts", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19102", + "latitude": 39.9510501791, + "longitude": -75.1642758385, + "stars": 3.5, + "review_count": 170, + "is_open": 0, + "attributes": { + "HasTV": "True", + "OutdoorSeating": "False", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': True}", + "GoodForKids": "False", + "RestaurantsDelivery": "False", + "WiFi": "u'free'", + "BusinessAcceptsCreditCards": "True", + "Alcohol": "u'full_bar'", + "RestaurantsPriceRange2": "3", + "NoiseLevel": "u'quiet'", + "RestaurantsAttire": "'dressy'", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsTakeOut": "False", + "Caters": "False", + "HappyHour": "True", + "BikeParking": "True", + "RestaurantsReservations": "True" + }, + "categories": "Nightlife, Bars, American (New), Lounges, Restaurants", + "hours": { + "Monday": "11:30-14:0", + "Tuesday": "17:30-22:0", + "Wednesday": "17:30-22:0", + "Thursday": "17:30-22:0", + "Friday": "17:30-22:0", + "Saturday": "17:30-22:0", + "Sunday": "7:0-12:0" + } + }, + { + "business_id": "USu8K9GKsOfDBBc47o8LiA", + "name": "Busy Bees Learning Center", + "address": "601 Walnut St, Ste LL25", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.948294, + "longitude": -75.1519511, + "stars": 4.5, + "review_count": 10, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Local Services, Specialty Schools, Elementary Schools, Child Care & Day Care, Education, Preschools", + "hours": { + "Monday": "7:30-18:0", + "Tuesday": "7:30-18:0", + "Wednesday": "7:30-18:0", + "Thursday": "7:30-18:0", + "Friday": "7:30-18:0" + } + }, + { + "business_id": "B4YcCewfZMS8GwH7lJOHgA", + "name": "Fairmount Farmers' Market", + "address": "22ND St And Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967314, + "longitude": -75.1737505, + "stars": 3.5, + "review_count": 7, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "False", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BikeParking": "True" + }, + "categories": "Food, Farmers Market", + "hours": null + }, + { + "business_id": "bKaBjDbtwQh_T-3ZpKJxRQ", + "name": "Mr Sushi", + "address": "7324 Oxford Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19111", + "latitude": 40.0623743, + "longitude": -75.0836772, + "stars": 4.0, + "review_count": 184, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "WiFi": "u'no'", + "RestaurantsPriceRange2": "2", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "RestaurantsReservations": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BikeParking": "True", + "HasTV": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}" + }, + "categories": "Food, Sushi Bars, Desserts, Soup, Steakhouses, Restaurants", + "hours": { + "Monday": "11:30-21:30", + "Tuesday": "11:30-21:30", + "Wednesday": "11:30-21:30", + "Thursday": "11:30-21:30", + "Friday": "11:30-22:0", + "Saturday": "11:30-22:0", + "Sunday": "15:0-21:30" + } + }, + { + "business_id": "RRBfknV8ycDFdT5JwTGutA", + "name": "Al-Assist Behavioral Health Care Center", + "address": "1401 S 4th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9306154, + "longitude": -75.1514755, + "stars": 2.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False" + }, + "categories": "Doctors, Health & Medical, Counseling & Mental Health", + "hours": { + "Monday": "8:30-21:0", + "Tuesday": "8:30-21:0", + "Wednesday": "8:30-21:0", + "Thursday": "8:30-21:0", + "Friday": "8:30-17:0" + } + }, + { + "business_id": "GsLg3ZOgxxYoMMK9vlDtzA", + "name": "The Living Room", + "address": "701 South 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9402888, + "longitude": -75.1508783, + "stars": 4.0, + "review_count": 9, + "is_open": 0, + "attributes": null, + "categories": "Asian Fusion, Restaurants", + "hours": null + }, + { + "business_id": "vDVTecHXPkKp9OkVXX_boA", + "name": "Au Bon Pain", + "address": "100 N 18th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.955561, + "longitude": -75.1696566, + "stars": 3.0, + "review_count": 16, + "is_open": 0, + "attributes": { + "WiFi": "u'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsDelivery": "False", + "GoodForKids": "False", + "RestaurantsAttire": "'casual'", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsReservations": "False", + "RestaurantsPriceRange2": "1", + "HasTV": "False" + }, + "categories": "Bakeries, Restaurants, Coffee & Tea, Food, Breakfast & Brunch", + "hours": null + }, + { + "business_id": "ij_dE1TNqe_BHrzEGAWU4w", + "name": "El Greco Pizza & Luncheonette", + "address": "1500 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19122", + "latitude": 39.9737623, + "longitude": -75.1388269, + "stars": 4.0, + "review_count": 31, + "is_open": 1, + "attributes": { + "HasTV": "True", + "GoodForKids": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'", + "RestaurantsGoodForGroups": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "Caters": "False", + "BikeParking": "True", + "RestaurantsDelivery": "True", + "RestaurantsTakeOut": "None" + }, + "categories": "Restaurants, Pizza", + "hours": null + }, + { + "business_id": "JHAfVAOo51rxW0Hh9XGxpw", + "name": "Lovely Bride", + "address": "237 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.950252, + "longitude": -75.1449592, + "stars": 4.5, + "review_count": 150, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "ByAppointmentOnly": "True", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2" + }, + "categories": "Accessories, Bridal, Fashion, Shopping", + "hours": { + "Wednesday": "11:0-20:0", + "Thursday": "11:0-18:0", + "Friday": "11:0-18:0", + "Saturday": "10:0-18:0", + "Sunday": "10:0-18:0" + } + }, + { + "business_id": "174kozBQWghnKum2YbFVGQ", + "name": "BellaLisa Hair Studio", + "address": "3530 Cottman Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19149", + "latitude": 40.0370736, + "longitude": -75.0418917, + "stars": 5.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "WiFi": "u'free'", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "False", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Nail Salons, Waxing, Hair Salons, Beauty & Spas, Hair Stylists, Hair Removal", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "12:0-20:0", + "Wednesday": "12:0-20:0", + "Thursday": "9:0-20:0", + "Friday": "9:0-20:0", + "Saturday": "10:0-15:0" + } + }, + { + "business_id": "bmJgvpuf2GBXd62ELK0Q2w", + "name": "Luigiโ€™s Pizza Fresca", + "address": "2401 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9675505, + "longitude": -75.1771216, + "stars": 4.0, + "review_count": 249, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsDelivery": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsReservations": "False", + "OutdoorSeating": "True", + "Alcohol": "u'none'", + "RestaurantsTakeOut": "True", + "RestaurantsPriceRange2": "1", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "NoiseLevel": "u'average'", + "BikeParking": "True", + "GoodForKids": "True", + "WiFi": "'no'", + "HasTV": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}" + }, + "categories": "Italian, Pizza, Restaurants, Hawaiian", + "hours": { + "Monday": "10:0-22:0", + "Tuesday": "10:0-22:0", + "Wednesday": "10:0-22:0", + "Thursday": "10:0-22:0", + "Friday": "10:0-22:0", + "Saturday": "10:0-22:0", + "Sunday": "10:0-22:0" + } + }, + { + "business_id": "cU-X7l15e-yI2YCsfCGaJQ", + "name": "Success Auto Tags", + "address": "151 N 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9549008, + "longitude": -75.1542417, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": null, + "categories": "Auto Parts & Supplies, Education, Public Services & Government, Specialty Schools, Local Services, Departments of Motor Vehicles, Automotive, Driving Schools", + "hours": null + }, + { + "business_id": "w9_EQB0SuAFYxPMcfY_P_g", + "name": "Mugshots Coffeehouse", + "address": "1925 Fairmount Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.967478, + "longitude": -75.169569, + "stars": 4.0, + "review_count": 203, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsTakeOut": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "HasTV": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "OutdoorSeating": "True", + "NoiseLevel": "u'average'", + "WiFi": "u'free'", + "RestaurantsPriceRange2": "1", + "RestaurantsReservations": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'breakfast': True}", + "RestaurantsDelivery": "False", + "Caters": "True", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'" + }, + "categories": "Restaurants, Music Venues, Arts & Entertainment, Breakfast & Brunch, Nightlife, Food, Coffee & Tea, Gluten-Free", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0", + "Saturday": "7:0-18:0", + "Sunday": "7:0-18:0" + } + }, + { + "business_id": "Dqk-JnN76h5Roah466Z6tQ", + "name": "Joan Shepp Boutique", + "address": "1811 Chestnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.952042, + "longitude": -75.170875, + "stars": 3.5, + "review_count": 13, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "4" + }, + "categories": "Shopping, Fashion, Women's Clothing", + "hours": { + "Tuesday": "11:0-17:0", + "Wednesday": "11:0-17:0", + "Thursday": "11:0-17:0", + "Friday": "11:0-17:0", + "Saturday": "11:0-17:0" + } + }, + { + "business_id": "TKPAyOWcexkpVHPCdYTNmQ", + "name": "Spuntino Wood Fired Pizza", + "address": "701 N 2nd St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9620061691, + "longitude": -75.1409495595, + "stars": 4.5, + "review_count": 209, + "is_open": 1, + "attributes": { + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "BikeParking": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': None, 'divey': False, 'intimate': False, 'trendy': None, 'upscale': False, 'classy': False, 'casual': True}", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessAcceptsBitcoin": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsAttire": "'casual'", + "DogsAllowed": "False", + "GoodForKids": "True", + "HasTV": "False", + "WiFi": "u'no'", + "RestaurantsReservations": "False", + "GoodForMeal": "{u'breakfast': False, u'brunch': False, u'lunch': True, u'dinner': True, u'latenight': False, u'dessert': None}", + "Caters": "False", + "HappyHour": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'beer_and_wine'", + "OutdoorSeating": "True", + "RestaurantsTakeOut": "True" + }, + "categories": "Pizza, Restaurants", + "hours": { + "Tuesday": "12:0-21:0", + "Wednesday": "12:0-21:0", + "Thursday": "12:0-21:0", + "Friday": "12:0-21:0", + "Saturday": "12:0-21:0" + } + }, + { + "business_id": "LreM6Gs1JUh3bY1hVhy7VA", + "name": "Verizon FiOS", + "address": "1800 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19107", + "latitude": 39.9527827, + "longitude": -75.1703617, + "stars": 1.0, + "review_count": 192, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "ByAppointmentOnly": "True" + }, + "categories": "Television Service Providers, Professional Services, Home Services, Utilities, Internet Service Providers", + "hours": { + "Monday": "9:0-1:0", + "Tuesday": "9:0-1:0", + "Wednesday": "9:0-1:0", + "Thursday": "9:0-1:0", + "Friday": "9:0-1:0", + "Saturday": "9:0-0:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "2gFPQCmKKVi1aHgGTLRZvA", + "name": "Green Eggs Cafe", + "address": "33 S 18th St", + "city": "philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.95224, + "longitude": -75.169541, + "stars": 4.0, + "review_count": 119, + "is_open": 1, + "attributes": { + "BusinessAcceptsBitcoin": "False", + "HappyHour": "True", + "HasTV": "True", + "WheelchairAccessible": "True", + "WiFi": "u'no'", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "RestaurantsReservations": "False", + "Caters": "True", + "RestaurantsTakeOut": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': False, u'romantic': False, u'classy': False, u'upscale': False}", + "GoodForKids": "True", + "RestaurantsTableService": "True", + "NoiseLevel": "u'average'", + "BusinessAcceptsCreditCards": "False", + "GoodForMeal": "{u'breakfast': None, u'brunch': True, u'lunch': None, u'dinner': None, u'latenight': None, u'dessert': None}", + "RestaurantsGoodForGroups": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Breakfast & Brunch, Cafes, Burgers", + "hours": { + "Monday": "9:0-15:0", + "Tuesday": "9:0-15:0", + "Wednesday": "9:0-15:0", + "Thursday": "9:0-15:0", + "Friday": "9:0-15:0", + "Saturday": "9:0-15:0", + "Sunday": "9:0-15:0" + } + }, + { + "business_id": "pM1M2A14mNXz48KCcQtz2w", + "name": "Starbucks", + "address": "4140 Woodland Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9468094129, + "longitude": -75.2067225, + "stars": 3.0, + "review_count": 17, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "False", + "BusinessParking": "{'garage': None, 'street': True, 'validated': False, 'lot': None, 'valet': False}", + "OutdoorSeating": "False", + "DriveThru": "True", + "RestaurantsDelivery": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'" + }, + "categories": "Food, Coffee & Tea", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "7:0-23:0", + "Wednesday": "7:0-23:0", + "Thursday": "7:0-23:0", + "Friday": "7:0-21:0", + "Saturday": "9:0-21:0", + "Sunday": "9:0-23:0" + } + }, + { + "business_id": "nHsVsOms41FRXcFQM9mGXw", + "name": "Pamir Grill Kabob", + "address": "719 Sansom St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19106", + "latitude": 39.94888, + "longitude": -75.153243, + "stars": 4.0, + "review_count": 36, + "is_open": 0, + "attributes": { + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "WiFi": "u'free'", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': True}", + "RestaurantsAttire": "u'casual'", + "RestaurantsTableService": "True", + "RestaurantsReservations": "True", + "GoodForKids": "True", + "RestaurantsDelivery": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsGoodForGroups": "True", + "WheelchairAccessible": "False", + "NoiseLevel": "'quiet'", + "OutdoorSeating": "False", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "Alcohol": "'none'", + "HasTV": "False", + "BusinessParking": "{'garage': True, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Halal, Afghan, Restaurants", + "hours": { + "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" + } + }, + { + "business_id": "IYkcmNBwqmVsc5eVbKGq9g", + "name": "Tumble Kids Gymnastics", + "address": "1101 Ivy Hill Rd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19150", + "latitude": 40.080735, + "longitude": -75.180866, + "stars": 4.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "BikeParking": "True", + "BusinessAcceptsCreditCards": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Active Life, Gymnastics, Summer Camps, Party & Event Planning, Event Planning & Services", + "hours": { + "Monday": "16:0-20:0", + "Tuesday": "16:0-20:30", + "Wednesday": "16:0-20:0", + "Thursday": "16:0-20:0", + "Friday": "16:0-20:30", + "Saturday": "9:0-16:0" + } + }, + { + "business_id": "vhE94NRER_4utAtbryLOiQ", + "name": "Mermaid Inn", + "address": "7673 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19118", + "latitude": 40.0679487883, + "longitude": -75.1967977136, + "stars": 3.5, + "review_count": 20, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "1", + "OutdoorSeating": "False", + "BikeParking": "False", + "RestaurantsGoodForGroups": "True", + "BusinessAcceptsCreditCards": "False", + "HasTV": "True", + "Alcohol": "u'full_bar'", + "Music": "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': True, 'video': False, 'karaoke': False}", + "GoodForKids": "False", + "Ambience": "{u'divey': None, u'hipster': None, u'casual': None, u'touristy': None, u'trendy': None, u'intimate': None, u'romantic': False, u'classy': None, u'upscale': None}" + }, + "categories": "Bars, Music Venues, Arts & Entertainment, Nightlife", + "hours": { + "Monday": "16:30-2:0", + "Tuesday": "16:30-2:0", + "Wednesday": "16:30-2:0", + "Thursday": "16:30-2:0", + "Friday": "16:30-2:0", + "Saturday": "18:0-2:0" + } + }, + { + "business_id": "G8oBujUQQ8Zs-7YRQkfaig", + "name": "Lemon Tree Jamaican Restuarant", + "address": "2629 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19121", + "latitude": 39.974327, + "longitude": -75.179928, + "stars": 4.0, + "review_count": 5, + "is_open": 0, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsAttire": "u'casual'", + "Alcohol": "u'none'", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "RestaurantsReservations": "False" + }, + "categories": "Specialty Food, Caribbean, Restaurants, Food", + "hours": null + }, + { + "business_id": "iVZJ_O7oml63XcAucP_xSw", + "name": "Baly African Hair Braiding", + "address": "5705 N 5th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19120", + "latitude": 40.0381999, + "longitude": -75.1298927, + "stars": 4.5, + "review_count": 31, + "is_open": 1, + "attributes": { + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "False", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "HairSpecializesIn": "{'straightperms': False, 'coloring': False, 'extensions': True, 'africanamerican': True, 'curly': True, 'kids': True, 'perms': False, 'asian': True}", + "WheelchairAccessible": "True", + "GoodForKids": "True", + "WiFi": "u'free'", + "ByAppointmentOnly": "False" + }, + "categories": "Hair Stylists, Beauty & Spas, Hair Salons", + "hours": { + "Monday": "8:0-18:30", + "Tuesday": "8:0-18:30", + "Wednesday": "8:0-18:30", + "Thursday": "8:0-18:30", + "Friday": "8:0-18:30", + "Saturday": "8:0-18:30", + "Sunday": "8:0-16:0" + } + }, + { + "business_id": "auwFZzfhe2pvFw43OfsAfw", + "name": "Stina Pizzeria", + "address": "1705 Snyder Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19145", + "latitude": 39.9252048865, + "longitude": -75.1747277007, + "stars": 4.5, + "review_count": 112, + "is_open": 1, + "attributes": { + "DogsAllowed": "False", + "RestaurantsTakeOut": "True", + "RestaurantsReservations": "True", + "RestaurantsDelivery": "True", + "NoiseLevel": "u'average'", + "GoodForMeal": "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "True", + "OutdoorSeating": "True", + "Ambience": "{u'divey': False, u'hipster': None, u'casual': True, u'touristy': None, u'trendy': True, u'intimate': None, u'romantic': None, u'classy': None, u'upscale': False}", + "BusinessParking": "{u'valet': False, u'garage': None, u'street': True, u'lot': False, u'validated': False}", + "RestaurantsPriceRange2": "2", + "HasTV": "True", + "Alcohol": "u'none'" + }, + "categories": "Pizza, Restaurants, Mediterranean", + "hours": { + "Tuesday": "16:0-22:0", + "Wednesday": "16:0-22:0", + "Thursday": "16:0-22:0", + "Friday": "16:0-22:0", + "Saturday": "16:0-22:0", + "Sunday": "12:0-22:0" + } + }, + { + "business_id": "-qn6GdZtOI-EqDbGq8Mq6A", + "name": "Mario Lanza Park", + "address": "200 Queen St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9373010149, + "longitude": -75.147322476, + "stars": 4.0, + "review_count": 10, + "is_open": 1, + "attributes": { + "GoodForKids": "True", + "BikeParking": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Active Life, Parks, Dog Parks", + "hours": null + }, + { + "business_id": "K1SsvIPfFcHniNSPc3IG7g", + "name": "Flip-N-Pizza", + "address": "1308 W Girard Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19123", + "latitude": 39.9707196889, + "longitude": -75.1577516645, + "stars": 4.0, + "review_count": 16, + "is_open": 1, + "attributes": { + "WiFi": "u'no'", + "BYOB": "False", + "RestaurantsTakeOut": "True", + "BikeParking": "True", + "OutdoorSeating": "False", + "Alcohol": "u'none'", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Caters": "True", + "RestaurantsTableService": "False", + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True" + }, + "categories": "Restaurants, American (Traditional), Chicken Wings, Food, Pizza, Food Delivery Services", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "15:0-1:30", + "Wednesday": "12:0-19:0", + "Thursday": "15:0-1:30", + "Friday": "15:0-1:30", + "Saturday": "15:0-1:30", + "Sunday": "11:0-23:30" + } + }, + { + "business_id": "7JbXsIfzdyHagov1ZGtlqA", + "name": "Madelyn & Deborah Dominican Hair Salon", + "address": "7128 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0588601, + "longitude": -75.1901915, + "stars": 4.0, + "review_count": 8, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "False", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "GoodForKids": "True", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}" + }, + "categories": "Beauty & Spas, Hair Salons", + "hours": { + "Monday": "9:0-19:0", + "Tuesday": "9:0-19:0", + "Wednesday": "9:0-19:0", + "Thursday": "9:0-19:0", + "Friday": "8:0-19:30", + "Saturday": "8:0-19:30", + "Sunday": "9:0-16:0" + } + }, + { + "business_id": "662o6Z3l7o0PDi8Y-88oWQ", + "name": "Creative Cafe", + "address": "3711 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9566606959, + "longitude": -75.1970550767, + "stars": 4.0, + "review_count": 14, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "RestaurantsPriceRange2": "1", + "BikeParking": "True", + "WiFi": "'free'", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False" + }, + "categories": "Coffee & Tea, Food, Internet Cafes, Printing Services, Bagels, Local Services", + "hours": { + "Monday": "6:30-18:0", + "Tuesday": "6:30-18:0", + "Wednesday": "6:30-18:0", + "Thursday": "6:30-18:0", + "Friday": "6:30-18:0" + } + }, + { + "business_id": "mzTTdvQGkUHZ8ii7OnZC5w", + "name": "Trader Joe's", + "address": "2121 Market St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.954178, + "longitude": -75.17598, + "stars": 4.0, + "review_count": 494, + "is_open": 1, + "attributes": { + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "Alcohol": "'none'", + "NoiseLevel": "u'average'", + "RestaurantsDelivery": "False", + "RestaurantsTakeOut": "False", + "GoodForKids": "True", + "ByAppointmentOnly": "False", + "Caters": "False", + "DogsAllowed": "False" + }, + "categories": "Beer, Wine & Spirits, Shopping, Grocery, Florists, Food, Flowers & Gifts, Specialty Food", + "hours": { + "Monday": "0:0-0:0", + "Tuesday": "9:0-19:0", + "Wednesday": "8:0-21:0", + "Thursday": "8:0-18:0", + "Friday": "8:0-21:0", + "Saturday": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "OfRbGvHn-nAnQMqNxiIpcA", + "name": "Grilly Cheese", + "address": "3306 Arch St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.957447, + "longitude": -75.189916, + "stars": 3.0, + "review_count": 5, + "is_open": 1, + "attributes": { + "BikeParking": "True", + "WheelchairAccessible": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTakeOut": "True", + "Alcohol": "u'beer_and_wine'", + "Caters": "True" + }, + "categories": "Specialty Food, Event Planning & Services, Restaurants, Sandwiches, Street Vendors, Caterers, Cheese Shops, Food Trucks, Food", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Wednesday": "11:0-22:0", + "Thursday": "11:0-3:0", + "Friday": "11:0-3:0", + "Saturday": "11:0-3:0", + "Sunday": "11:0-22:0" + } + }, + { + "business_id": "VZbkSeZtFynEascotq7ExA", + "name": "Ali Baba Magic Food", + "address": "37TH And Walnut", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9533907, + "longitude": -75.1967651, + "stars": 4.0, + "review_count": 8, + "is_open": 0, + "attributes": { + "GoodForKids": "False", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "Alcohol": "u'none'", + "BusinessAcceptsCreditCards": "False", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "False", + "RestaurantsAttire": "u'casual'" + }, + "categories": "Restaurants, Food Stands", + "hours": null + }, + { + "business_id": "jsTHopAoQFncD0pGoJQFrw", + "name": "St John Neumann Center for Rehabilitation & Healthcare", + "address": "10400 Roosevelt Blvd", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19116", + "latitude": 40.098009, + "longitude": -75.012998, + "stars": 1.5, + "review_count": 6, + "is_open": 1, + "attributes": null, + "categories": "Retirement Homes, Health & Medical, Hospice, Rehabilitation Center", + "hours": null + }, + { + "business_id": "gPr1io7ks0Eo3FDsnDTYfg", + "name": "Tata Cafe", + "address": "7201 Germantown Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19119", + "latitude": 40.0604141, + "longitude": -75.1910841, + "stars": 4.0, + "review_count": 21, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "WiFi": "u'free'", + "RestaurantsAttire": "'casual'", + "Ambience": "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': True, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", + "RestaurantsTableService": "False", + "HasTV": "True", + "RestaurantsTakeOut": "True", + "OutdoorSeating": "True", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsReservations": "False", + "NoiseLevel": "u'quiet'", + "RestaurantsDelivery": "False", + "RestaurantsPriceRange2": "1", + "Alcohol": "u'none'", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Sandwiches, Restaurants, Italian", + "hours": { + "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": "8:0-17:0", + "Sunday": "8:0-17:0" + } + }, + { + "business_id": "wVxXRFf10zTTAs11nr4xeA", + "name": "PrimoHoagies", + "address": "6024 Ridge Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19128", + "latitude": 40.0324827851, + "longitude": -75.2144303178, + "stars": 3.0, + "review_count": 55, + "is_open": 1, + "attributes": { + "NoiseLevel": "u'average'", + "RestaurantsTakeOut": "True", + "Caters": "True", + "RestaurantsAttire": "u'casual'", + "RestaurantsPriceRange2": "2", + "Alcohol": "u'none'", + "OutdoorSeating": "False", + "HasTV": "True", + "GoodForKids": "True", + "RestaurantsReservations": "False", + "RestaurantsGoodForGroups": "False", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", + "WiFi": "'no'", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': True}", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Specialty Food, Food, Sandwiches, Italian", + "hours": { + "Monday": "10:0-21:0", + "Tuesday": "10:0-21:0", + "Wednesday": "10:0-21:0", + "Thursday": "10:0-21:0", + "Friday": "10:0-18:0", + "Saturday": "10:0-16:0", + "Sunday": "10:0-19:0" + } + }, + { + "business_id": "8n93L-ilMAsvwUatarykSg", + "name": "Kitchen Gia", + "address": "3716 Spruce St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19104", + "latitude": 39.9510181, + "longitude": -75.1982404, + "stars": 3.0, + "review_count": 22, + "is_open": 0, + "attributes": { + "RestaurantsGoodForGroups": "True", + "BikeParking": "True", + "RestaurantsPriceRange2": "2", + "RestaurantsAttire": "'casual'", + "NoiseLevel": "u'average'", + "GoodForKids": "True", + "BusinessAcceptsCreditCards": "True", + "RestaurantsTableService": "False", + "RestaurantsReservations": "False", + "RestaurantsTakeOut": "True", + "Ambience": "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': False, 'casual': False}", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "HasTV": "True", + "RestaurantsDelivery": "True", + "Alcohol": "u'none'", + "OutdoorSeating": "True", + "WiFi": "u'free'", + "GoodForMeal": "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}" + }, + "categories": "Coffee & Tea, Food, Sandwiches, American (Traditional), Restaurants", + "hours": { + "Monday": "9:0-19:30", + "Tuesday": "9:0-19:30", + "Wednesday": "9:0-19:30", + "Thursday": "9:0-19:30", + "Friday": "9:0-17:0", + "Saturday": "11:0-17:0", + "Sunday": "11:0-19:30" + } + }, + { + "business_id": "wPAaAbFbq5wfLfW0gnYU7g", + "name": "Intermix", + "address": "1718 Walnut St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9500604, + "longitude": -75.1701288, + "stars": 2.0, + "review_count": 10, + "is_open": 0, + "attributes": { + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}", + "RestaurantsPriceRange2": "3", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "True" + }, + "categories": "Fashion, Shopping, Women's Clothing", + "hours": { + "Monday": "10:0-19:0", + "Tuesday": "10:0-19:0", + "Wednesday": "10:0-19:0", + "Thursday": "10:0-19:0", + "Friday": "10:0-19:0", + "Saturday": "10:0-19:0", + "Sunday": "12:0-18:0" + } + }, + { + "business_id": "JDM7kiCEmeBc_5W-z6eZZw", + "name": "2601 Parkway Apartments", + "address": "2601 Pennsylvania Ave", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19130", + "latitude": 39.9688056, + "longitude": -75.1806079, + "stars": 3.0, + "review_count": 6, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True" + }, + "categories": "Real Estate, Apartments, Home Services", + "hours": null + }, + { + "business_id": "9U1Igcpe954LoWZRmNc-zg", + "name": "Hand & Stone Massage And Facial Spa", + "address": "1100 S Columbus Blvd, Ste 24", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.932756, + "longitude": -75.144504, + "stars": 3.0, + "review_count": 32, + "is_open": 1, + "attributes": { + "BusinessAcceptsCreditCards": "True", + "WheelchairAccessible": "True", + "ByAppointmentOnly": "True", + "RestaurantsPriceRange2": "2", + "BusinessParking": "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", + "AcceptsInsurance": "False", + "BikeParking": "True" + }, + "categories": "Day Spas, Beauty & Spas, Skin Care, Massage", + "hours": { + "Monday": "9:0-22:0", + "Tuesday": "9:0-22:0", + "Wednesday": "9:0-22:0", + "Thursday": "9:0-22:0", + "Friday": "9:0-22:0", + "Saturday": "9:0-20:0", + "Sunday": "10:0-20:0" + } + }, + { + "business_id": "LJ4GjQ1HL6kqvIPpNUNNaQ", + "name": "Shanti Yoga and Ayurveda", + "address": "1638 Pine St, Fl 1", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19103", + "latitude": 39.9459658, + "longitude": -75.1696663, + "stars": 4.5, + "review_count": 39, + "is_open": 1, + "attributes": { + "ByAppointmentOnly": "True", + "GoodForKids": "True", + "AcceptsInsurance": "None", + "BusinessAcceptsCreditCards": "True", + "BikeParking": "None", + "BusinessParking": "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}" + }, + "categories": "Health & Medical, Yoga, Shopping, Naturopathic/Holistic, Active Life, Meditation Centers, Doctors, Fitness & Instruction", + "hours": { + "Monday": "7:0-20:0", + "Tuesday": "7:0-20:0", + "Wednesday": "7:0-20:0", + "Thursday": "7:0-20:0", + "Friday": "7:0-20:0", + "Saturday": "7:0-20:0", + "Sunday": "7:0-20:0" + } + }, + { + "business_id": "WnT9NIzQgLlILjPT0kEcsQ", + "name": "Adelita Taqueria & Restaurant", + "address": "1108 S 9th St", + "city": "Philadelphia", + "state": "PA", + "postal_code": "19147", + "latitude": 39.9359818, + "longitude": -75.158665, + "stars": 4.5, + "review_count": 35, + "is_open": 1, + "attributes": { + "WheelchairAccessible": "False", + "RestaurantsReservations": "False", + "Caters": "True", + "BusinessAcceptsCreditCards": "True", + "HasTV": "True", + "GoodForKids": "True", + "BikeParking": "True", + "WiFi": "u'free'", + "Alcohol": "u'none'", + "RestaurantsAttire": "'casual'", + "RestaurantsTakeOut": "True", + "RestaurantsTableService": "True", + "Ambience": "{'touristy': None, 'hipster': False, 'romantic': None, 'divey': None, 'intimate': None, 'trendy': None, 'upscale': None, 'classy': None, 'casual': True}", + "RestaurantsGoodForGroups": "True", + "BusinessParking": "{'garage': None, 'street': True, 'validated': None, 'lot': False, 'valet': False}", + "GoodForMeal": "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': None, 'breakfast': None}", + "HappyHour": "False", + "RestaurantsPriceRange2": "2", + "OutdoorSeating": "False", + "RestaurantsDelivery": "True" + }, + "categories": "Restaurants, Mexican", + "hours": { + "Monday": "11:0-22:0", + "Tuesday": "11:0-22:0", + "Thursday": "11:0-22:0", + "Friday": "11:0-2:0", + "Saturday": "11:0-2:0", + "Sunday": "11:0-22:0" + } + } +] \ No newline at end of file diff --git a/favorites.html b/favorites.html new file mode 100644 index 0000000..fba47fc --- /dev/null +++ b/favorites.html @@ -0,0 +1,78 @@ + + + + + + Favorites - Philadelphia Business Explorer + + + + + + +
+
๐ŸŽ… Taste of Philly: Delicacy Wonderland
+ +
+ +
+

โค๏ธ My Saved Places

+ +
+

Loading favorites...

+
+
+ + + + \ No newline at end of file diff --git a/image/ChristmasBack.jpg b/image/ChristmasBack.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1aeea34b3d72d65f26bdc499080b5b309bf21da GIT binary patch literal 3640013 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%0Dp8d+v#+5$d>icZCG)HFE{8@O{!WQ<9itOEl~ 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 z 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

?UO2ZaxT)D%a0AeqC3}I{HpXUe&)H8QLjywZ{4( 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%0AIB`Y$7ps(VjoW)G_ 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

    vR>`mda6>o(~9nnxw%%?zV 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%0DtVQY?MLrKA$sq#s=uI;bhWq+FSgjT^a5S~nI{ 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%0DydM}ExQ`VtiWn#xwF=r;WikdyyclPjh0qTJ(` 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
      ZMEOM=WQ#-)sSzQ<0=psp{(01HSXGEP=50RRJj zq;AHzTu%(ZVki86-Az)@@ydbSB+-t7tN|o8l#Fw(z9T*t`qZ_?*MAPP`WI8iN}Evh zyElO;1Wc*aV$Njqq)JCe%r1UegucozT!s&Z;y8F9;@3J@OA#~!o2Vj(OPAEth}gIX zX1Jy&6NZ_Dn}}FU>28mRkdrOOWf~m?MV_&#dG=AKCG!cTX*|a)&qql=csW2QD5rvU0M6GHG1c{0UtRF2N zf|~LI(M6Wa=O!bFGV)QQ#9yau6e=Mu2pd8{a7#U?{{T^+K1ae-#joLn6oBL;7u31Z ztx#W;v0QTnIe1CE!i8l}a2@j3@GjK8n-B1}r)FbyJ}emNDqM_|RmFs+A1P{fNd$UU zlR^s`&|?|Kvf?nZkO<0Fh32x95-+g~Y!5veK5~A$VwXN->?)MOGYC~!_Z$$S%s^+j zt7>V{uZW#sodM8K!X_$_nd-TOi4feJyX9XY!b``a+&NmS$$g9*nHmyt2(1Z|3qX&KsxOV>lK8`O}A^Pv9 zk*|b9I#^IC1)M(ZzVECdEY!Jc+x+*z0!vZVsQ^@HElab!SC)rJNz#UoXZgXQr_>Zv zxgxix`S07l0d8H(8jhTYgZ$!SDblA8u`U2QS>B^hNVsy?5hv$zc?n=lT;Dd!vh)aH z)KxPz3J^dQa;?A@HaD$fl9H@KQVA&%*O{zbzV`!K?RepTt*Txhu)Jkib7nb32n4G$ z3b7Ta=G`Nw-^8n`GH|7OFYxt{L`)p7rkX=4na-tPEGihzX7czYaN?yDD@qH*G-VUc z3k`*qC(OizAOMu7APfSMNp#;SRm)W0aUMYb0FGUVN^v-@F^H4#XX58i!hCtC24uAS zMG%l_-8up&Y)o>kQ3_cj@_;A_W*#V5REM$l#EN;VDkJ@#nhw6*qv-zt2;hmrVKCBi zic8AHBl#MKqrS!W5jQMKrgI5MA{*|CfxT6^xeRF3A52dvKM87>Rx$>!A?D@I+TES8 zeX+odCkMvO%u>9dBPe8oNTFwEsI7bibc>)8@Uxz{bVpAWl_M=o=4PlVB%qmiQ2juf z4WzxEgWnwg0FTK300t`%)R?6wKl>L_#()-aZCGg^G{0SC93}xXl#qir9F!G{kU>zW z-zeCZG;q<;Z;pJyb2(N?Dv-r;=!O6;XruuAgo-APY}X?k*RyDT&|(uumnSk9v#60p zZ9#XdnBtw7m_9BZj!eQ5;B1xD z8HTycVEnAVD2EF$j~*)&LWL(2<|%H#D!`>6xg1j%uF_3R?l*=`Vr0lf#H}|OiECAW zVaonI{{Z!$jw(!?Hw~3FNt-fJT7pz6kfx~ykE@yj#5`{&T=UU8p*6mBE~6e6T_>AG zGX>$HFeW7;#Fj2i3bz83_~#h>SN)w9cR8^>>Y2oJHA}vjpq>`ms$2xd6r%mo7rC$!Rkzo8Z>1@F$ z{{V6(te%rZN8R#-WU*4Ag5(sqAo5N$4$zegnTBE%kwyfKNOD>_m;5-th}MtKGDtrN zpAr)b$oi9$M$9yhn$+3yer`{z*9t6IIJ#>)F+zkK!d*b71X#pEjE%6!`GCJI?YHUV z-pnp{YP&rouYgW$W-?rYOwJoEYfr;6qp2Wf~Zq#RAlB^L=-3G zu39K0sth1fmm5QRM)TNC-=`6QlZE1Qv&u@vw~YLhe&S!lQk1DG z6(=$3$Rx3L4(6R>vA+!;ABmfRE2nzCiFwH+E)={CT_Th&Dip915t+eB+)8TE(l#rz zxyPP6ZTfSF!mU`|8!c1RNh`svDM^%&Dyanw3P2V*1JX2p(spnnT*KT(uuaF0<&)lvCjS73Q-8 zX{iB(cMKH#yhcVgf>6M&TBU;NO4JKcsBKqwJe+bT_z`r*f2Ghn!}!DV3Chl`J>Ui3CMh1J)3i4lnAC-c6CgxE}-IvgVmaT=XqSLnJC( zxkd8|xXeiImc5$1$MpvjE@utJ1xzVi?~0THf^#is?xZyXRf!zPaT^8vUb>MNT6{}o z-80E!s$v2m>FmBdv^blJBgLDBRSFakfB3GXm#Is*ZaJ?4D1Om#xrz#tB?+H~DsYqp zOF7DG-2{Lr;M6w!x3jzwW+Gn+_zC#akfEF}D*}}{0l{?}X=bZN5%`Vjyw^y+BDCzT zosvd%p6DK&WEn)y;>lb!E`KM2i11cjzH9=fOBV_l#LDc@?FS2;K78VwClSRaa1N3| zmVO{m3U29g8`baa4#n_a*bF`>Vdc!8j5$iB%qa*VLC7qULWB1}HelvCnX9#AY}Z_B zT}heBi9FvvDvdM{+A0CrAFHJrqI*X(8$TKLB*ODLV87Y@SmSv2*C6b#d zf=N!)&~2kL<0;vs;+6jZla+@CWRy&lkdreiR+5(rT1RxL{Vlw757I6qIHoHG7NU}b zfjJ_gT7e)XEF6PO%s_2UocZVvR^aH(Z8f7O=hUo+G+Nay7CWRvoGT_7Vt?CMprG1o z$RiiKO~GcX3ojocLJ^3S@Z~5=2nz2k60o3DphjkJ^m>ZNuW&NuaSSrJVw6PHEY3ob z4ssCW%gmwxMF7iU3A;u&_`T@q)tSy?)V&iY3Tk#hh?(pOG!64b45ZH?C=Nja(3H^y*qTk8JxYCdypgEQDqQI4B80 zsHxti%^K!9iTp)A9c4PL)7ieN==`!?K5dapLXVw9kwRDa*$8R*uya%@7?J%ViKvDjJZl^B0bcvl)))eIzSIg zQ#f>R%xP4xOqr;41yd@Cc1sEh+?{MA=%45>ZPkmNE>37tZ z8y#Ye18US1gUcny=6(pL(179S^u}cwR?A6Xpcwd7!GtCgt#D(!tePir#Z9QL|;)MJ-R#e!4*1c`3QL9jVVs2YC zF_uiGZc02!c<2NrNK%Cw&I{kWpEw!8Go=(vmXhQtDk0Vgp<-TyTmS=g5eg(3YIHhl zPz?`PC&8EvqNf^iVtOHsGN8EYJC>r6xSJa=tJJ_ z>4Nxyi8O7^{92HVpb4QMHEZY|uyHKm%ca?q)-n30I~jp=ZrVR8B^Xm)t=pY`dSHCaA}qH*!A+%yhe)$aCT>Q4N=Eq zdzQq~W(5;mqv!1FYXcQ#VFM^NTJ(B#<)^GuVn9*+!h`vNdK;5RrygsI0Ec^zFO*@Y z;jUSzX;WW7ZR4ZGJ|quO0f{xO9-+af0f-+*IGro*)Uy}qa5@7205iN`@fcxHT!L(A zvEP04^@kE&)IX4sSMYq_??>kr5V8p%vum%8)W3@u#!bSrxN5j-9~T_yL-h)vh5&-1 zNopHb#+-(rG_EBR2Fwjh8}rfPlH{ZshBdDJLED|8I-!OsAa=L>k9YQQOd3>K#WxTJ zSiR1a_s$~3g;L2RHTezO_3wLP!WIo#$fej>s=_MG!)Gs)KToZ`(1ry9wvasXK8(fB zH}8Tg%xXo=5`I+qibZANvVd3$)vK)-zrBndC?F)$?nl<1@9*u1rW%2@eO!8ni!w0b z!iry7*3~zE5;Uy^>v;t1T(djLvpIO5CSxz3gEIm$3o07Wpg{@@TvDf(#e7lCgPAY= zm6QXiVk|5-^475~CxOV~l4fD?2?A8fOGyDBxXPwUN}Lz9bhhz8>eT$sd8lWzIkKfq zX1R>9ia{hqi4kc9cKpgobM~$_ei4ld!pvn7nOJfTVN|Iy>O(f#JGv*`EP1XgGO-^OPL#}>ohlW~oYhgWNdk>fZcKQyh%GAOoK1pU%uxdF!0O;R*^O@; zqWG52j-%@CexI0E3o2YWI8cK$6Ac4+PZTsKxHaP)M}`rFz{;A0f$n2=?Jq~f+%;lOF?f|LDpewSPT@r?lT)g`&l~>$>PHS&65)~(i9Z%> zoK6`vp#ZD~YmhZy^gBkTb;dMEopkDCQ5;509Z#9TOjN6SRDm-P0+j;9HP{eb9Aoh+ z&4-qymr+uQCCh@R2bSb%$OzrL3&NFz!%auS2vVduH13eb+N<9PWG+w4w$(u9fy zN?B2;8G^1}wWuPT$uWFPQO$_;06;WvE=y3_;qQsl{z+?c&6qzR33JMgPdANnQixh! zx^n)nNYMWPin)LF4!Hb0>ESM7#?3PcHKqvkrAjlPAxZ_95|Oxz)Y90YCR)A@I$-`X zq&k6fn=vk$8qhsXtsav7Gs7HD1XSRnp7{$2HUV@1Gm;tlMs(}8pUyOfi|R0)%Vgk7 z&g8LW(J=um5}k;kKbvtOi7pS4;}^u$oHqg>WI>lOgdi|ACwtI4no-yY*RkqMp4Cm5 ziH2$Y`A7;jc237qYQm!ChA~gUH_Vp!bnA@jc0&1De=!b08~3InLX*vE-OJI=BjPC^ z0VI?BkkxTj*y<}yd6tdQGM78GTs&96g48CHr2z2G}cZ&d+D1KS! z0U!%K1u?I1oLHOtDR17wpdw;Ppi+`rr&cy*xx9JWMAWOa>RA9EjXNmOn2Wh4gqL8$ zSlN$-C=jx*hYqUFOf4``Hq`<2XMOkvj}X&LyQ%LX?RmDr4P9HvrQ9CB$v7P%;R5Csbw@XNnA%YD?*TcNs8_pfE!)mzZE!+A;VQX$V!&Hgej5?r2v*@127b31a&WC zwq26pJbQ=YF*rFg@dFa0@#Ps(!U0{oq&Uh8>rrE-*<>AjUR{yO!=HgSti-ZTV*@ly z1fw#@psa5>QI;qxoPxC#6BQeRR5-?43&jwL=$K_nQqqGY1%(hoNDfxxyi1S(VD4{U zo?olqqbT9?m5IPAdJsXGFd;G}B{N!xMpTDEqXrJ!yk*(>o|W})rO|cV$~5Mo(n?Xv z^GI357;rTvoz#jcR4Hf){{U`k2vXDlQisY|J%us&?l8PR6;>TMbjc?q#myO=NK+RJ zW+^2=c$Z-wbC)xT_F{76Pcx-WLP?f{6(5M{3hw+c0;!l42NbO$*7%<3wvp1EG3W-0 zkjrIsbiT9JvT>#($?RH2TRI@6S%i3qB{3Hf3M&sz_r}TlWTHg;LQwuN zl9nX3Xy7w5RK|C+U8J4G2NT34KN);FK%MaBXUa;+0A^dcs-G#L4QGsFnS3yHt0dG} zj%m_ec{x3&WMHCoF}PNJeVqIn;m)kdam!mX6)nf7UD} zFB2wKGm1=}f;C}bOT=6_Dnf!3NcoW5DvHG^eVpy+LjM5tNSXZduMNaxOmIJn`-=(zO=2!tBhY>fQkuuRxI4TQ- zl{q953EP{-6af;o&g}AP0O} z+~{bm!Bj8Hz(&BY&}?c^nqCG((J>)Fs%8w9Eq1Rr2hJ%mdQI>JnK+TwQ?d(kQ4UvC z=15KJx8}_-NDR!>;<&vdw7s{K0L0*B5EDYRr9_sgEQ0pEYqVi;KcO5@%melaLQnl> z;a;YcBCoJ;)BtG;XP_SiXn`>^Ez}9<(P6-jsBqV+r=o)tLn?wkT4ql3xG_t4#$yB9 zJ~#0t%f(1cyu<|=XDe!Z*+Hf0ccfJKc5ky-90`*wC`um|X-YmSjfP^BhbaJnMOdDv$x$E`0HrB{ zh`+e*NMZDRVibU;eK|kBtaW6h8k)79)d%HWdVvNZN+!WJzi_~jT77)tBAV9YUs#d^ z5Pd+t_VgMLa1AQe6gR^FGZJbDX7|!3N`dOu_kT~M83_TGaip^!M(N zKoVGZ^oekxuq+>Q?X!}`fc~UYn(|ak00ZaN3aAQaB8(gXV&Z^y<@i1D#ISRuA|1gr zIyIrf1Ehxmh1dt|4V(TehYKo5qcsOM`TqcL23Z6GOPf=F7-51C#MYG}ptXr>8j<#{ z5#>mg64-6cs(oBUXpl(^l!x5lk|-L)8^1rG!37!z${C4g(&KM+iBl+%)%+V*`%`)d zil_z2J4qwb0C7sQ7Uhfh`ry*703-);O=|je=6S;XzR7p~Rj}|LA-rDE9dOD>Nfai` z{%^zF6ZN~`{q*Zkm*OhS!jM&#;-ZDB)bM>btT4-hU7qZgv((k@Im3cQj8j~alIlwu z*5aTKsM-c$06<^^iW-aea`{Qx2dA2AA{%>DDR;b6POC4heD18kDXh zNmG{;@@|{@#zbW)U}{Uddmaz#NHPfJ?ihCW2Zuaz0qpZ3F7+d)LeJFutYl@R22d~E z0h?;nKfO834qRD4hZU+ps}G^8)C+b7YYl5g_I~k@!>QF#cL4Mbeb8H2s6lFO0D?~E zAcsFtY&rh8atLtjT7-M+@{6eixEkNX^Ryg(cLl*dl#2o=^k7(bI1o3f8j)XhjEtc` zb^v+`@`{|WQQV~#Z^%8U!-xC+*hB+y7v-&x>M#ABeb=dqq`Fk1HXZj0+~I&VOFdkl z*Xf1uLlR$716$Vpd_+o_ptwqiwP@Rb@ABz*xiaV*3W~Ok#)%0g#rg3;{RS&f3IQdo z8Js`9kLwJnsg^-mJA-#%_vj2)CXqD^1we#V5ilY)$4pO{5=9|B(x zy2dZTo{yR9%-rN0n=6Sml)}vOD6ouJQW_k(7c+TR8zr zHPp8{>ep8D?w@K5<2B6mLS&|L>B)(ih;ihjB*KbTq6*T44XGfKYzQuGk2G-%SMOIb zf3=pBf}ojTK20RWI3hc#y= znAtGhiB#apmRONYpoe)m(BI#!YhZm`~H167VZchZj&cshfMI|Jl1fb|Zuybe7 zJ++Oyvz@WSap{?4q(Ad01_U1Tsl|WPPBno zhsu{f5Tq;=6sQ7JLUNY`5Y?$31*1XYxODLeWh9a&C6=Nxbrl9IE$@#za8J_CC)!*}rejdN3WAEI zd@P;vPGZi)WvgBFAOjqe7ufti?o{)p&q5V2{R_~O*v zbe2|GsHP>RC1qC|FO3EK8B`m?J><*=!=qf83{vQo0Pyr1!0a=t6lxo!h z#X)vsU^Ef+2mBIxb<@R3W;)JpRt{~d=BA)aiP-SOSQ!+8Hz^RIrEbcO+m^pgnTW@a ze^dVef7%Y(aPAi{E=CIvJxM5+Fyxz@1u1JyQlK)@vEd|IIz*MI zDr(XKrxmD=^bX_!Qb+QA1IG>e+1H3uT}8~aR%xB35whvQA^xE&G^mn77~B;xCQ^2d z#MGt9Cl_#BElDR3l`r9?BqmwPP*y9OFPFBDXJO^wRe_dd;c)YmB_Tp&=^#ugN)!B) z5&$3)8Oias5!CvlOK9BBA(+z|!g6vPc&h&ZUzCWo2xy&Jff1pkAO3omA?Qn&HpW*Q zDHyyEmyijpUm{6kp(fz+1CbFo3_+hda%RYqFtYOe32Fl-bqeKAbO$Ek+z9BGMt&h> zbO%kBJ*B1wcM~$qQ5JJ8hd!BDvhmQ601TwA5m|SLu5L(iio6$yPwdL3&%$FTs(jLu z@ChlFl_ZYqpawUpox0XEUetCQ1KWAnydFORg&((Amn3`%Ye_*FijrofRRB~10HkES zHT+u9r}YFJntP_YuRWWTnuR7~D>apvgAQ#f4=iFuAz})BDngJH3skwsqx&WLmx)IY zmb^eI1NqAMlL`vM5~oTIQloQUDD!t~f8ypIelz0mlR1JiOhP1Kr39LSQcCN3FcxOg zG@tmVd|YW?iw>Z4%T{E$Jb66NNa;A*Yf*kWUK}{doQWL9M5HLtm_1!K>d949ItK=9U!DQSH_dVw|n3y@}=Q!lh6YHo8Ge5EA>?3Rp9r(4P2Wr!Q(W zM5oNcuHP@f+j~I4+~aX2Dqva2L3RhTusxhP;{xRS_q+io%TESwT0zv5se4qC;1U!+ znJh?mU<-eP3L^eTDHJMl4#J>muz{s3i?oC30D_VjI3t$j`_-_ZRvpCy0xQ#hk=Bq# z0U#j!wKu4jAeLit2h>%*_$;Nv(clr7ippVi=M5nKwzNTE*F4*vj{8k_S=+l&}P z7kBXM&I%kuSp`1h@~XtRxTkln8A_>16xV$XJ=c^-fv(5<`TqcL%KFrpfT$J#hN&j4 z&H2C<(c7QmB!Dgu1}Dr)RIRQQ_Iif3yS3?ahWGERO;6$gA)Nhpaysp3j-aH3DjI+c z3ENX|%igS7-KgUaT|WMrv*}R|KsOH(5e-WlfGh%(Xv!3Nu>!>0fIJ*0EC!mt(@@vf zTf8Q-QN6TAP+C}_Y~-m(P^y6L&tu!Sl5k-l5p#FgQ&C&fSY-zWj(S$`WD)=>Nl}PN zB_WiOAFvHi-x68`BXiU@<~+5+O45ZTNm7%!&;I}<7^zNgYL;_MF%Ag#ycr=Qkp7|Y z#8j*ECNh0PYLD{OxT-_2VL{FtFLkZqw!SS9sZY53*H^dZkVK%LR3JfmpaHZF3QLpO zfgj%pfYsAeUT2tp#3F(S1*>Lr=GOM@c#{qSl|=$cF6_*}v)P}pKU(3_6k0*#~s|nMY(83~r~yWB zD(q`QceEa4hPhzYv+vHDbAX7EVHQddkU~OIeMW!-5~7aO<>`XR;lZYluAe;`&|td} z;itc5CMqG=1Vkv6A6~@MLcwB@MI& zPV|ye2Ly)(#jA*kcBO-Rq)(kM*5$o9!hn@-0uqXx4as1{3XnMmw+)71UCx_3@`E+E zB0LLK@152#W?eblv&aPeSJN&MxdfF$m5 z7bGC%HF66Ne4dr-NSc_)K}d*60Dt1;$Oho>ZhqimHMs{UZcg;-eBi=JNo$s;pWl~V z`*`p6>+*?-SyD;bVbnPc>I~!n zF6Yg=;sqeR8J|r)@Gze|Z$ceN0>wp=qHjV;2gm(kl`FldW-osWGi!Zx)e!VCGFe|W z3s%&!2}&5UqAR#8EZvQU8A;3It84GwA_dAMjJ7YO6V&tiYYbXcm5@~6rNeNg3zJH_ zJ5rdHD$F&zGv8MA^N79~1cwwm-iP0?;sI&cPU2F`Y#ycVYzg9|aQKjgFnX{o+FJhk z)*x6;j#W}x&7<=2xTHgg8DP3rR-!;G^)AP|P+h!Wl2l*3LmM-;&iB-B5KNXxa5CMU zjr6N?xYx!En97Ktl9GlDR7+R^VQ@|82=Rgx6)(;yOh#7^Q*Z@pdbM{nVF6S`hV=ri z?BoVv`m?=!`#Z!l2q`)if4DtIh=`MA&vdAUNVWK9zv+745+Q&g&d&B<3Bu>h#LJR|D5*eYmV}=3l0irXtJd9O!-)zZ zh#{qj1&WGNT!X;pG$nKVlasY3{<*E z32<02a9Z_Z{08^zAvu6iHzmVq)R?NdM3dfA8?meToojAf;+s1Ol1j>wR={ZRf(LIQ@5Rm|N{K9L{tf9BmWog{!R4l= zDN&ZCB|*s{27uIpXe)1XUIX6}LNYZy$Avd0M|QB|OwUg(?B(-Gv(rw49_h z_tlMk+rlQ2g5&@X@}Z`OVrW1+e4^Uao2T-)k}%3tx!Ce)QWkv+hKZON5O8x8Ttt>pFQd(oXeq;mws(|R|j8A#0~p~Qz4T3bAiD+(0c0uo670A$1Tq`3g_ z_}}o7+H zOZWS!1eYMPNFw?e(z7a{k_W9RfBqN&C4sP@tr?sT7^qZpsYH_Ma5GR10KWcIX!;i~ zgqa9R5_2+Iq`mp_297N88Z0F~<_u2I8JyCtP10yje-*?EK_@lHsJqjcFKh1>1{rJt z8dj8}{ORKn3=m=z?qnvaOHiLJa_lM3hr@*u6rn(%$u2a%j{9m@F_jXsBxgvi3kwVG z4^hin#CVWG(x4I&0dSyQ>+W8)AcOWektF3oH5H?{BoaCD<>q2=fKu5LV#UIAEzZ^+ zF;9&t5YRi&J1|v2U>byneg$~JB}Lep68kp0@9%n3Fx2k=9MOm^YuWzKQvouuQkDux zNH4UCgJWNy@mKSQDod3Lnl_Km$}6i2l%7d(YTKV9u7UZI6e2-%mvKM?k$aaTy(w!tnpNX0SGF6$yMY z%HgmjL-?>CW94n_O(LxZ8j42XK_oRF%M!-p!v{ExZ*W)*E&coP%wh0303p=ntY}z@ zR9*FAcBE9`K^~%oAx;};1H5n-UUYv*XRgdJD|uCKNI z)Wu2y4&k)~sYa|>{{Z?Yqf(=gF&xHacWMn7?MpL!uXvElA+>u`O4jBl>{xUE0Ky?4 zH*y8V0B*oixUUYBF&dwj-n1TZA^`bd1r6`&18+4h;m00+_yq?HD_!hHkz*-Uzz2PF z=U29k6VOVLxH<_gK}(8UR_=IgMGlZaV%OhC_F?HtToVqi=}|Xu*BUBUdW{-Ph6X(=yI%hV&LL8Zm!pa|-|?oGDq6})imCt= zeLZ~jYQ%=x0%8;pLz0#y>MAexz4*f=fnnY!r~}<#g582#f*qZ{^`^X`(9o57f)3Ko zT!$u~qXI|N*7Jq10j|`AuSW6n+9U``p#V7t`CWjes0;A?;#4iIs16^;(8LOu z>Ld?dO|&S28C%HpCDKnGp+eoL1-Qhim=Z$<4)i`c2#Bw|l{pDX?*UhEK>3Xy<|M(F zLQ+CV5f0WWavaziR_?*OV3jyA2|eW(8Zhz}1H{uq`Fs7U#bU|8Tzx@xqJh&oKG0Jr3sgZoF%ORZ}Cb=LK!1JdW_Bs_{UKClb-bRpxRqY zXngN6j~Z7`7+)()cAgxa9 z>JG;?VgU!|Tet%$(xLuiNvhS_>)wiC9Yur=9<|ENni~aa*aglM_u)A z6rJ}wn{OM3V~Z{JtPmrL+Ot;7#EKZT_ts&x6eZMNB|^k#t=LtwrK+`Os1l=UuT}@8 zw6yrXdH;gvhv#^nbOY+K?O*nD%l^*0~iptW)6trau&AQ&0nwb+ZorC$>#8ga&W0%*V8H zE^%A&IvLY17SBJH7W%8dKmMUsFlIbDiBKzC@5NL5d0e%uxq7vH_C2;!f^k2Ix#{PQh_!e9}R}#R~1mosR z0#)EC;FMT9eO3d3)j8eAfo}$^pk-g1+e`BE3-IP2W}N)k3MMzHe~7v(l<5BlSe=qi zcR>)ifQ_X=D+W*C1u9`M@h#4R`k}QmI7_ZUZeW#`!_8RaC7ElKf72#s>!`key9VzU zJ07+t5qDkP)Y^j#IMsS3f-0U1JK0O!|DE=jU$}7gp{4ULo(>{Cw1~*XWOLiG>(jPW zA~n|z68?C`_2@|CnZjUim6|PhmEc)NyP3-+dph9ZiCZ$wdWp~ zMi&wQH?y}f-bXgI1PPz<_JMW{R7OT7vQC~l@J~4Ja->2L?kPH5J&!m<-BgkPS}^1t zBDYc-Ds~R{+S@x@4snQegV16M8Q=g#__Yf=f6vZnqgWnbNmenMt-8Dp;zQm19cYGq z!sE9mX7hJ(UWjWpD&y%w+LLENfz?IlayVRxAw2&K7crUyJV#d6_nHB!dAddsn=XQ} z;<2{{lRW2S%}UY^XsX3EurN4FHQLN&zavs-@G9{)?&aJ}lLW2LI0F)9e@hDF`b_#` zQIP%$ZNT0&=fCfpqH#*hniKy20W9~+_R}S2FF6#u6!TF?J*Z_Bv7-KZk&EG-^PdKg zx;l20LL}8tmmjSYA;erqAe~rbi$5bqB*XD3@mnFg(uYkh>R{O(lehl?EaEqL#6{KRGw(fD``xySWzNqpUvf2x6xw9kYW4E5bmV< zv+;oZ$uzpUVW-C>g02JkQn9|4Wm&`cXKY!9!$eplj6#Tn-opj)D113!{mV5N<&yu{ z3OHbT1_w<`xMWF7JPn32A=0P|yX9ngoo)9Yi;3xS+iSj?+r7nb*U5SJ^}H%U*-^@r z3w5b?*Q`fjXZy~kpslwgYYvBKfVF;MDv;b`urSF6)|v_0v|VVSH(7Yeb_&#(beW>d zi!{cMGanz%Fy89(7P_VKAE5f!Qw?9^#2u+2#%HRo9~ zQ>Xk_$YOZmCWoT5>X)XGhBqWSEEV1%S#+>k@_k}i@Kl#C0V`1ycW~BN^MNMd^{^v@9zqHG;=W-tJYpCN7k(#&?1N&Rxt8|FY-9QG!-SA!g)T=Ql z2LxM>_(%`+krZGJ)Urza9!Fs#f9&h6{(6QhrC&;_N-GPGMZa>iqi&HKYA-r|5%AAW zBiuGib6S#5y&jZXp8>~OxL&8|3sQ%Z_<6Ecj}DLiRVw4Gcz){sG=p-$FLd@bxOVuf z>e})|5kYaaq7;E&fNZnLdSen*;?`o(1w4w7SBaKUIgXY_%?#!Q>7l`<@t%>69 zE*8GDNhL-!Y78X-LKVasNzA>bJbn)&krAw&F$e)5Wp7N*Yh}qwhcEgk?8%LQJKN4YV}Cg7mFE`HF^% zljla828?YfGQWT2Y^(nV;J|&&AE*Ie}~Cc``<)4ua8&n<2!;c?0JomZYLzD6j= z2*EZ>FK_7y0@79S{B}kGgOeMj9?Y5<`sq{954tO@HrK3ypBMDFRNnF95UNdxh*gPV zyI(F&Je*$Iy1it6TVVMXPLfNFg#d+PI_nV{dh`a!G7CO3%cwXnKaO!@=ltF9&69%& z5i_FS$HGvRS{(ni=_JW2;*dE#@{0|<9G|l+ny&wa`lZ=WBi%Zyh<#4#so+F*BW@Pc_ zmdZFr>xc>0Fagi{09$xep17!pjCvYH3S$O(dh3s_u|n8UDHX_CN#iEmNOVZV3{F`s z@P!m)pQpC}nb(|nS6lJc5x2rS77s~jMDZWMe*lo{u*R(VY&v~(yh16K!D%O)o`AGR z+8mSGHpTmP(1mfbo~xlo4(S0v8wjRS&}x&oNd<5K8*iM?%}U-|rH{(te&!qFls{0vrML*H^_ykoQ@g z?4Mi$WQ}a8YTStuCfK z`{nYHFSK#9D=FOuiBL>|?1miZ)mLUq^-->F?wa4OU(sSuGiA^tmr|vfFr75)u5i!i zuT-<$&OU!J#Mwq0l6S@MdacTt^w@EV}VW|KtKRD0I+euDd;s#C!qEC$o%F| zv;P1LlMDe-FoIQr+rPwFw?2pzE>$L3F`^8IeH_ge6+FyrNvVESW&AqfaoqPy-y@=@ z1SFcKN|$S-#j6WZ4EOa2>g zft0GRnfWU@_yg0%AeyJz;E%$hO6Glg0IR`{HYF~;#^!U7g(+mAI$Lz-3S0)!V2LTX zuPcGIm3g6SsBwD@#BoJ}o{H;Ah^D>T5b;+{{n6(IYqGs?0Mw<1ntYD9E(e@x^*FHLYdD&Wopodfc_wLy*cH7~4Pk8I zlIZ%%>zIL)FC+@QDUf>k`1$p{Xybh)di<>30~u2rwXBK$b^d*5HM07ZM&)3_|euN}t|k!IF*@9qX;femQoTrol>n&e7=0?}6auOgr`cG+#pdwd@8+$$~Il zY^r#vmfaZFaii_p&GVeicJ&7eVfLJeai97k%7BUB2+Eq$KRnx?3Ba$ZCWPpcT2F&# zq*dkf&^>Q)3LA|a9FgAEm!@2km@(i5fK$-KyFO`o6RKXl+2u0cd!Fuqg4-kmZ1YgV z0}i0U5zW#4TjXAB&W+T8hKP|e4N4~jsb7CuFLxtRa0VIN6f(!Vwd7eYyr-MEZb}w)$9Xm)&bnS0NZN zp+|ii+*~gFxR~KxoIK{~Hz7Dg>n!S#atF6AZFfEchPa&PdZ&?g`80((xxD&`L)dj= zniYoD+HZ+;Q0AbgrS%mLf`>I6Y_OQZiQ5J|JJ)J62L?~o?^J`}bnWUlc`lEDjb+nU z@$w%cnXskf{{b3VDqrt={9O9EXjIejH<9_%KUVFZ0kRgR#OopPFP_fWwr+8hkyd%r){FZ`vPN#mlhJTmt#>-^tWF9C57EZClhA(l%Vfx}|ScCRTKe9poR?vuCn1-H{WTG!uZFzHcl zC3Wh)D4A2>qxXXQarvo*!_;VA$}9&jxs5Zy@>K(na-UU=v;+>`-xF@NW8+|^P83>6 zWK=0)i}KoF2+c6|bS@oUTX_|)JM3KH5#{p+l4PbwPL7E{c)m=3vW?yT#5_hLvF6@9W^+cx>a5LERtnf_%Xm11p3WxL{`ni-oo>4OF8r-LbuZ@2TKTNK-+Q{#p1zxA0*n+^^(^Mz34C0g#&o^BUVlsN9`hqHB?&n6gDAF#)haSQ zzzjk)JgFV9vp9AB654#C#(gC7Z}>cbGC?~?@2KK)69OijfUe5FjBgfeCj8#-aKy<@ z`+2b(JUC6K*OTr%4=3Z(<0SzE6`CvST)jw|1V8GpQ{|i?Kib37;VCr$1{%lrD!)d9 za+b0OUuR2yUe_hMD^z9S`bO*4})Y z-y$%}4U6{lTJET|qg|7A!!zb&Zo1Doe3W1ENUDGo@PuvRm%?l2#R{G_(r96dTkFKS z4)nXMRjH%mf}0Y;gWBEx9t-0CcHD6QQbAYRRX4u!m5k)s;mmTW=pcpP)jQ9J195}^ z`j}hmnZ|R8`ACf1%DLmG&z8v~FOY7jsm%4=sP<&`kK6Y8IqA zHy1>Ox#I6t`BT@mi+n*g%4V!4H;zkUXrY!~%zXVn*YEtOzU>g&$ceA_86En~kTxZhJ{sr{u&ssotgpAZR_2EX144Uo3P*du5r80^ru7Ieh8iF$ye! z|H3nr`1A^cbgovbZudjjjSrMn{a$TtF%h4im&pFGMTu!<{*)h|^2Uc4!9Qy zTlPnxq+?4e^_sybb>3wU=JI=aqHfxv)5VKMj2kgfa5PJc7aLFB)}JJglvf?)MfnYB`GZkzL|XhtsPb+Fg1}?Rwu`T;^qslZHS4 z4-o5s2>W`-&#j!V5>0v{uburnE4d)AQ}@bdwQjFz_}yWNA_J@+@|ZwD_iaaGpTAj| zt#Z2Rf%0+hmj_hSio)iE*cp0=N?Q5uim>_)>6dE><(uU3SYqBS!EsJ8=gg;evr%2* zWJZogPvu1DRA=|S>m!zv8;4N4k9ExXQwd?$?KfPuy$a;na(~y`*dFZt2ogXYRd};F z2HW7kMP>Ed25z{_ElbBBAd)GUk@B~8{ikBD<=XVH@vx6EpJpgo6(YY`^S}O#4z38g zg`{u4bxWaIvq9s1^m^Ttm)_h*7s2lF6|9l-umi%hr?8^xiR=#R{96hC-$|l@2uwQT zSrElMwu!_{FC>($r|{+OM3RS=xH!}vezuRPg+f}qifbx6>BH_Q8GoKFf9BLe`(&Bt*F!M-l0AMF(g*JTbrVNx^PXKd zs9f-K7<@j86U2EU`Xh{XW8`1JH12Cu3&Dnk(^P)`m_#{l&Km&Ez)qbTSeKSY986s0 z98G`N-VqIw7$2Z4kiK0ofoki)k*&1He@$|=JpUH-%TEkRAo8_9Un_Ts6o!d<(m?R* zvbv+L;%mmc(e~y>nQh*R?#;@}7!*PJu@{hqy$^8SvxX2VCY4k{@8xR9Hs8W~aMpZ1VPnZai%&)UAskK{ z_&~gl66HGX!K)H$+%u?t1GF8LjtWt~Z|Q_(qtsm`2}r~1sY!{0kx|>vhIB`M2R61p zTq}$KJ$m>uURVZx`#*pqf~LVt3Jp&cb~9GghixOPM^^NjR~LodFAXn^o(M)6C}t^WfK;k)ZKM83?(=+!yOz|*Iuc`-WO9~^|B|NxvQISNE@r^m0&d`B zKb3g1lzyQO4CHMOZ*S+TsV0)@o7Oc-)4Zk(i!u-kNkjHq6sXL+?^Fz5T(qbZz&4?2 z`laQ3fa)YjD~*~)I+wTq&C!r;7faZze5nHcpob3#AAor*uEeV(3p{A4L7J(lD&Typ zGXYeILZl5)|JX)v6j!GL4ndW1B5CQwdZ6+__ci6rP@-NCRhV1z4-*{)hYJx3Fpn6y zs7)oTd-zr+R*4*HTkLtTa_8F{SQE^kxK*WVF{meIO=QYU7D%BllB?ft-(Q-#`)zN@ zZr$CYx8vp;JrrK;EAPMOjodpVI^m9#o|T!r;RJ$}XPO^C$WoZl`9P=O^e8I}UsJ5o z*p8}rR_$;;Bvk&}ek*r)itZPk*XgS-mI_@2O}z=_xPp(FjA|tvcWz2}ic~MPhV8UF zT|C_mHoite>cL0=8Z2`^geQb~|0L+GJZ~ZoUOFhl#{TH9_Jf?NzM6SRiU_mIVu%Xq zL^+G50X!e~xI3YBFR|habjkgt%K5$*u$%$9hV>>bq_i%@=qk5_@#Z>_#4ID!RDWiN zl77+=v&tDUDE%&#FnCN0cjvnzuObl{wAAci+oou|7j4e-;HoDy33KptLw9-Hdtq~^UK~zc_WHR;$%M`fC zda-rjStxiQ);74H6LX9?$itqeiYRA;76unp)JCaXu5#@G#dZL^m0S( z;@=z8!s}dKw#|K{Q14{?ZHEb|zs}7+HoMbEaDS%vCmlu^22#4<@i4l%#NGO(qePgk zP`c)i&ra`VuM<6nzS7^*?Jb6K0Ap}}s%-k&-PgZmw$sxF{Deen&!!lPKU$3^$LTL@nK!u0QQHo*Gc8@Dq5$b z`Re-}{yk|2eUVawJ`MUy(uwUazPi}&x` zT{(=uM}bm<)Qhxh_<8@ssIwk^-*>ezeL#iF)^V2_A+kR27t;BYmdD-` zA6$Bh!WhitO<8t(4WFEMk|R-!@^C5z&KR4r{m(B-83=xjxLRG-)_YWJL>@%1472gq z_TJvI?0drs*Xt9a-R5sp-J3nBPn%En1#$Le$Upy6-ucP$t|8EaCWX4nEYJwStGl;~1tpF|Ry36On< zHMSq_LL=S^yhLLtZ})`lxI_Bak{c{Lg}H=W2bHvyl&%Hw{pXJJ%tlx3+BbA{x{mUH zQImX)*m=4@oftF4cd}GH8lR=r-_j*)PV=K?yBpzw1l^smjX(X3z3#K>FK?tb#J>L| zPLCvlB%mt*ec6{}9a>jT(TTz4p+$gsfve%yB;s4=LZ2`NrKpLtq#8E_Ke%83LAlTG zsSkm{0pdQhPqMG2d;bTB4l|uf8@4D;GRvK?yf4)|=xE`Mdhpf+SnQMRnFm#pkjZ~q z;}zkv2e8Q#$!XT$I@&yX_4M?Q=6`^_dvhPtmSYIr)TWpL8`-qF(DvtQ=pUne{>^RTf$9Tc^X_&C_O)IRlx#L)Wcj9@AV+nRA7K`8 zpDWR`A~DYMK20hE7~sZF(N<-o7ErVc$p?tmqqI+>ga_%}XuNMH_~) zM1laM2yV&H;Gh9T6N~8krT4GZMJws=%Hu#1p>>Komcw322G~>~b~49m)e9@mhU$cx z%mS>HM>HSkm_NNXB-!lU;Kv>DMjZv8XiHW=M27#UGWg-nep7dA5?4T0!bG8t$u$!k zQ3%~arU>y5Umle-jXGROrew~w{iupIyMYUksq3R28%WL*6@0ToR2H9Q=hx)^+I*^6 zy3Qv&<|+R3?t~bJrl+N32AE^9=+DRFY78@+#c5O0`3d#a^WRgvd09p2X^KC0!+!45 zSa#Iy$P~yLi8S>*o|&(bkMI`9PHR5H`PNx&E3QHdj2vuk(%Vq5GS#t7*CiXwBm18Y zx^A6SSGt@)4KEBar6ew!V5f{<60gFyKJFK_RH>L*9kg;t-rZ-2tsE6=*Zw%Z9@&0# zY1h&4d%vj!uY7quCyKikVT<8qW2T@>ky+Z=FCrYVC&S>r$x>)iB$sB7IswWZ66LMN zmhRV${CQ0C{HdH}I(mj#vW_b=D+$%DEXS z?piVt?S?4%^wt2@1O@Df=e!bU7NnCyxd~G7K2rDoiuK^x(pRzikhdVi?+h^9zxz|B zuKEmS@u0lUhB)i~DbHs&?EU!`;??B4+VKmI@P2bXO>z*2xpoDy*s%t$O|3CN>MmOS z(1nLO#DPhgUOW(krnf-od2Mxu`|Fy1JvOg50?jy>@u3Q3WB`N|$iS zyvd6(vj5d`$`Ap|@ZCUrq5Ga#Yw1DU25R|qz)Bk%^9p+0lu1dw#p@>D9NLGX8Xz8| zPPPJ?8iz)u4}%Ibnc=fN!6c}LTWLh6yw9w7c$v2>Kp#i`9EK9Wa%j%Z%-X#h0S?sb z(;9mW5k!BEqV#kL^A-u3RJjQ+ASAI*>*FWq;lZSjOM$^AQQh{D*Vr@@xE9Axql;D# zlOD<9A||U_I$8W#nBKUI$`rr9PfheGABk%FY72>-kFMxTrEQrt6=`@i%6w_H6}+`# z!j2v^zcq|g_xy?4rNSFxKzw57To_=O>5ZnyyOTfp{46;H#YKZ^%FT!B;X(rzM(~CJ z_edFFj_m1recoRji5vyHd44478)owh_0SZRjvznJA(dTzDXBnpi`3ZTJ$L!|`)myK zqnp6syo{JYR(|Tp*1Y*Z?6|>JbrTyipZ3;gW9qagIa_n-L%^^FgnWOPUI>b}2d%>?Gp!xw(O0cchEMRs*sj2sj7*m%Zoj!MvRcGJ@d~Vche|v;LM8hCW5GKSl;4P z|J@q4Ay=F>kJB#Kz?8RV>1jZm+_||Gh`b96(;T~Hje5mB4_li&RKC_0V{%d*T51Rc z2)m!vdz4HXzY{nQfAbicYd>h=xvr)aRObiGz zHzF5-;6c&)4Rurs{>PzjJwo;wIqah6V892m2wK&*r0mpG1d=ug0|Y-V7HVR?KjUmV z^zg2c0>5{3E+_0AetN6_#W?uPzrM=*W8q3E+h|gU}~pfJrrEXT$)RD1Ut-*7sxb~eB)?{ro?vy3-k`V{UEHUv8rRM z(XDvBJ=6P2J*rR2drJp(Puk0+sm9O;ieZ^yKY3J1=!Fc1f4lBQhp>jpiS-g|| zcnVWfE+;{>3;W)Sd0`S_lXu1P8a-aUSv&`8AjMfKnp+4X$Z8}w+l|xo?|AS32e=@Q zU9!}lu7}F_3;&=6nttEo14;Zm&lfj+M&8R5+vaR@|kx%FgUsI!lz+^F-#8mQbY%8n_Jx#bAyC!_mLxf*fquR zg94tAm{*=Q(f7lajeX{NwKDnW6+G&VZgc4y^gZB?yD~az**uF2!{j=U(8Z3QX8X@a zHMWIX%`0J&s;DWa(>vKEHAnci9DEI@JP*Yn0D-yoPVi~W6YgpFX1eF<+pG+p_Z$ko%%}8>HY)oTP3i%-Fut&pnrdd|8@cs1fuCc35;1A&i-;b{C)|cPo0Qa z4q5kvs)mqp`y-~>Q8bh3aMUv34JX=0&i&uu1VXdZVv1fxP zg*b*V&^Y9gd<6L8agRs7w_O?)KUqX+z{868Z~^rC;oRYfFU(4B$)nK%+-j;$T+JlC z|uGGFH8LTHj_o45U>V<^D2X%L$voWhEqSoW@2FHT6)%&3$L9#fzU`s4usaqKH*CNY5h!6_71}Bo*OI)ULycH{sGc5*QwIWY#jUU$yj*Ki! zWT0yA(hf4YLANZyi*8f=_%*)O!dqz1k^g~IYzK${uq`*DyZiZ@K{{5y2YH|NoowuB zTCL0!%nZKpb`= zqhlBs@%GyLWB--Pqyutru-nT2T6qjd`YsU}VtEHJdm6nS?i$D|~hjZt&2bnR_4!TdOL{4(1d2GsxYldG}^#PwySx z&l;0NeNK5e(AwHR&IPIUgJSHMHMW_N1DjNgCLZwD;t3X+i`ekB4<0%)1W+kS1j)?; z{9^h@l_y{jKW*L3&RNdvO3f`Y-`_2Cpq(80dP9MjOQnca3Y$F%wM_0FE$y-DXX})~ zd(KwECyME0q-X*co^z-Eb$JbX1!o6{2s5O$&=fJuzN=B39L{aUQiAj&-)ZKgI_$Ma z#a8?AS^CQ`uE*GY(&tV}aTVvW*=^Hk8t`e`PfsZ;N;fn>V_*|zSANutJX=dkKJOU@ zEQ@j13(?}$3{XSBP`>da{V*C~$qOk zJ+M%ZjU^fjF~AHGbCbxEp8y&FHASaaZ{>063-@nJuiNFb0bhFA8DvOpq;Xs(w-F@0 z@`@a6>`L@R1H{vUH+nlvn``w_*MYbk1jnye@8P1~z7T{TX&jpmEf{ zq6?E_S@(ZKmZGH-f`Kr+{)!foJGk)CC6mvTY{B@1cyLx8t)*2giG%{IrCHWUrUt3M znC;|*GZYpGPS7;IK-{T4B_mzJ3sH`+%}Mm_;gbESwPKs+N?ot#T=za6la5>b>?rjm zk6{J4Ta$@cNGCtUFlv&>!$kkdg7H{J5E~ zIMgXoug4zyHn{klw%Ye6SKWOXpf3eTP(0btOcUlwxpC$3TjWE@TW$&eA1w_cnuRsA zL*GI@giG?LwpDce2e3OSNGP+%W<&qlVe^}9@8fz77GDM0bsP(mvPjFL^eVb?ipR7+ z*7=taX{bVgHKaHn_M`m#&|&8yhK)rc2xXAW9wThdpW{9v?NlrSeCUoB2(qSNz-P0S zm5YKRRrN{WXmX_Z+j# zeT`uVY1%|8>U;PVBGk}=Asi^EM1_l4FI#x9##%xhSD6U+4@ z>K6XJQZOJH(zC}|#$c(Ck|H!n)+siIKmQgwnG<39hJz-+n1$2;7nGwL4@gM?R8#-M z2eU}%y(3`sw9oL4LK!tc*y4J96*`&nW{NUR=I>@{BH#r}V`3Fd)}X!kV43zot-_#J z*pZwdhOrdpe*Mp5HsQl>ZmqS}Bm{{W(@AMz5GC|g6HReL|pGosT>6MPQG)zN17qV>55QNJPE94geZ$&_WI_50QfNxmT$e-80c8(WPZ`e4tKPXBJ~CyFur?sGv+(Y&z>BspfLW}`~9M- zi+s3;87QTSL{wd)y+^^r{ghY(mPIk`fUo;nSViBaLGcDMiSMcQ+H zk)E(?>orHwJABk5k5sKCDdM3_b#pY-HN0{_iT9uKe+T$k)bkbRnCR`~^g{Q%ZMFqH zc{yeF3O6Bb*uF9s*OxbbHGc{a;==@VPkuob8{5f=5AzCtIc79ZOk3SArEkG2E`EPNg{QO=6Dy%_KV|Xg6AHB%2TE!!XZ| zaQN6JKqkn~+_B32uHZ@r5x#BeXQJPVm88@`9OB|JAdXD`C6q;xD48*`CX z;klFW$0Ai~YE1P|w~aa<9w4}se9Y;(=DcJnjOdx>Z=P4{?3G*DF8_IVk{B`dG_jA4 zCg&+#|C4F?g*$ahu?OJdvLg9%q0!ysTvLfY#-GzSLqZEdxk+etyk`S(*~KyWF01sL z2y<4(0x(}3KkV-Jn}fgZyxKP^&`m=TJ5(g^RMzq1>ZFxv*BE=R(RL^ta@_{$rZL^+ z&0vkp4BsUHs`(*dG@bmZf1)Oq)lA`6K*znnx6vM>@?pf+4m8bP%JScAjmQF`$95cg zR7Y8Hl58DNC@idc)n0~G-r(c7YPPq~5L2zir02l0LZnPZ$4w2XO(yZfe!H+;)C*2sJ;v9gVd zKsjv-7jkG1bTW3CcpXW)bj~xF_L|@mQW1M*I#fhd3Rq7}0Qt!{#Bj)Yf9K$UN_$y% zJEu`IB&3%N$vfCt;56n`eLBs+pexY^2ECB2k=H6~m1??ku@R*vfl-24*QFz`Y#4aV z%gs1UhQNjZ7Y(XQd_vgKy49Ao2CMXy;Hu!5oh*$)4OdNtL@3)!*`NfeWLdoyo2CO6 zeVQA_;BG5=+wR_%gVN5}aeD|Gjvji3IF# z<*8>1=i!nO)(IREH}wnKvI~$l4-99Ges$BKgwnv4PU8FF_-F*C+I+B}FyeVT?E|lq zURF`Z?$IgX8S3O|eZVAQ+&$(Jvz1K{TzH-BrBjE~{rfm#hb=vi{j;7m%G_rm>HO}= z4UZ5+F%LWlO81(tXIka2whRA){K^fED$T)76k_=dm|KR*g<*U6{*D3z4jm zIFu{6$+iV(qejSlI{!kQ$z|75-o~DwNp|~a)Qg?X@7vEk@&^CQP3H(2h2FagXy>U@ z+1)t=y*{X7waa=Ago*65wc&4zF$N$CX!&i}2q7pTY7>t3L8Wa{)Jmjf1BOHI$fjyXR8{NmciCRtxzW$>^7sM@a!}iUoqF~ zHH$y9Gf=P@eHpXPXr4!%H!CE)ns0iwRqC5A-=#G85ign}JvzdVq>$-jns#;<`0CUf z^wV?#n;Zm;wk3ReHdWcuAbzkiLxd4 z%kn4+8tawc5wB6){q#ldnQyrKvFW6QsymNNVe0j+dN{hX4^auim{m8GHB-c0gjmjc z*_Rs5gX5_aQ7|r?k~)zWbl`$^n{OPABab8)3qdfeP-@BqEQSJ*;zxmghq&p>M5abt zj{Ov$qXCC-VxM3^_IejX*qKZfJ=!VrpxLNBX_vkN%c5#RF4qw!ixW>sfQy3Y(M#ec zXkMlOUI_I?z(fAA2@}40JB4fWkok<@9mJ4?uIKvzR(dCED-xNarhDz|_gCbB&{RpQBz znL#NI@AAMD^bPUq8kT4(12^q7TjVpRV?%vVCl-_6mFGld^Ph;8#;}SyFJ5Jvp^)wX zJUDEIg2VSe0B2GzEP=!ww3K}}kPl;j^G%2H(9S0?-<=?R1td-(n(N6DuKc%hdwN6gja<{ssxP9rYOHDrT-uiPu9r(i+I({ z)XgFUI~)x~xbxQM)Mt8t${Q&3TGX^2W-5&!BKlB3YWX0Z=o3H$$=Ll2dG?YR$Dz3j zeO^wmj%W@CIg?#XF7yq_{1VRGiZ%*r%q-w$<<|_AA~JS*Xu;AuH&uOR@ptq<4A@gR zVY#~a3BQTX4^@zxyc7}clQ;|}(X-Hp33o`E{&V@V=1uTVb8y6B9D$ck@5*LiM~IAOhvVS60>?s6Gz9Nj>MwY1#v zJ3{~reZ@%6uy}>d-uQiSgbXD!P>YQrlFZKXmhA8Hq+l(1t&hUy;f)XAYC7O-qbkEI zXteH;Zj)vxW5Ywg#)4_~ianNy(qhWAXBUF%mA(qqd`1de1D>z>UqMYnFn!z4yd*6y ziQ_iuF8Cl6ncPeNfPtn?je036LWd)Jz+Lf2WGV zsb(*>^*$+Wg564|A*W^8Dp3T;U5*}`Gt5d>?EZ!Qg>A$i#Ton)i{0J5@Q>!1sPVxm zC1R(9V9m244hF-AwlxBkL4x$zSAPYmA3J-$zpUAA*eb$@5eN(=s*c6gSyOe$=flGR zy9wMn>EA#5`Fco5f;b5+U=2*6UkE_xgH2a=XO&4O)9p_Ue;)*!1zr)1pVXXeSl$k& z9z=Qg9(h(9nsZvzaZ2u1&`2}bl&8ww$k>R2N|(M!7gr>8NZ%S93-hzCY#z1;6oxrF z-HkO!pWbZ4bWCEaTNte!C7~jKaik|wxX-Tdo!Z}T7Zx4ygG0@c*b7~%r>B@WO9?FT zG$P>V_HMT_FWce`l_D5|vqC^2oh-u5WNPCSEPko=%&UhhjUII*r6^B;y7~G@L|I<} z^{i#2Ed5@V({A=Q|B&fEs~=;O4q^W}SB9Ex`-q_cH*K`bQ`Y4DI@D%G-lwwJ`&(BJF(lHGaYs$_*C}<%CQ0oiTqbP&B4uma`Y6CND$Kx#N|3 zpR5lOMv}!+r$@}Cop&T(bLvmr&~xE%Zcp{=xPwDP$Iw!47%IZq*qH_PY|DmZ2PFfT zzskYVLhh{#{>cp0*ET~G!Vi59l@guxNPphkb-9r^iRox?LUH#Y0d9x-7DZ}E?$V!`Eho)zl*O zMOl3cA;gt#chjk3ey1QoU7VO4J}@AUauX_GXozmW7BCM%i=Qs^y01cmT>7YJeZK6d zWk#@aSRptSwEzPNA3ybF|1Cx-E?8Il|DuOU+kj*o0nf@NkYyEmkZZ(B8jFPIfZ_9S z&g#T+3gi+()YBO<_9xs0MY~EQ{ZszgD!p$^L3`n``IQB zSpDYa2=xbShL{0`yNWeEY!hl9+~r~77Ymk^fKinoFh$?%xpHL$V(#yQYG&YY<4hcso@izIgu(Qhn$MUu#O zHwBUTkJ+~aU$kQo?0+P7=4d~X@q zTwL_puNpD7e~{2Pp8&m+9-`Ol^=tBE&rFwAIS*zHW#F`H0AHXD%#tWw2!`nS-j<~| zbqFjvPK-^DrI<0n!}(w+f$aimD_EUZ;idiXwtK+&-*2kz;~w|b8XQ?_qzvCQM=G&O z7TT{D@Pm2i* zm}lHu;|c=^@zO5}zINmwQ{>a3OomBaeF&IX1S;to0z)jv0w}agw;tx(Ny+PpU6Rfl z=9l(sIuv|qz(7aHhXHh>bJ4M|O4fgXDn%*wd07VKM8728!Se~Wk5VFZBD9d|IIq*N z6^`s7D-KSj8?sVTvc0A(%g2IM*V2m*K)gL{K+g7(?)hf9-`V>gmTg4xauZmXvcN3T z{Jg15)VviLiD``({^qF2kzSo>Y^5!{3-HNlhB@fdu!~?a3B73<&f(|TE|3>@zdk!_ z7IduG&gRQSgPh|D%Eh8zU{JitH1X11Rh?%e0&IG2UbPgfkZ#(-J+p@;!7ZM<6tc5i zWe^Z%TgB+!-SQI!>%|s7u&)xn8QIo3U<-9X={wtt4WAUqw^+AcGz%T3w=9Kf1QvG2 zACOyqDu7lIn?C!NB?2A{$+fTCP)Y879Cs_n^Wxqqo#^CW1^k!v0PB>dB7C7+3=7o- zUYW-!DXOk=`$gETw$xzI#l6d{%^=*cua_UBp8lX)B(a9mhQ(^JA}4-1*3pvN3t8Qk zhr6sv;JzT%2fx+*Stz{z z3OR8`4Z95uxER$#8&LL@NozfDk3&7OFM?NGq=33wszo}e^i~MI?Zybdhl+?9}cD;~WHN5X$9Ub6% zeC#k@{ z6{?<|^jw<8kU9~_L|-2{KPHm>C;Q!aJ7n0j5b0}RN{!pX?H*of{8j3wBzTfjf-TIb zWgCMkZ9%r%-cwNpU^A!3=-Qc}yUYCO?-x&7-BIJp%Kjl{`M+N+{`K}Kkw5s&#kBSb zx0YQRJKXf>IO)8^pf2Sg{@vx4MtEBtr5?@X53~8-=iiuTg}tg5Lm&xy@%>je9F06u z5KO>g)%{=hy3&EFbO04M-v8E$%wt@EKa#3YPLIbDXxKM==Zh065B)1GV14vvGX@=x`B)kdV^3T!XPE+ z(NWT7JewqBz}}QWEww z=CI{a`2}M+Z~R_kMiLD1KZ?%7AL_@C<7Yc7AxX-6Vz<#YS_n&8qOB!Mr!?83=AAk@PYZ)kfEC0V66e;J+W1K!FuhH+#S(k98 z6FD?oNa2!BwajG`h?ioxpKHw9tMNCq&AsIxpt}&SUDZ_I$Z6hB7AQS;DC{Od6HwK2 zPqvcU9pX;1EM}B6Ue19&bY~FUABkcJ-xJ|T*<*QT~b?N$ROz^<}&-G z6OJUxngoAB8R+#zBD;jx(qs}eS`Ioy0m1K)8lJMK% zslkIKY&b41$Fhos3L|vP!k?uQw9b&Ro|b?4Oc*BRZy8`}f==dS%ZpC9{$91J4BfJ$ z28r`C`Rv)~S`t5IKn$vdoxWwIW<}oiY$5wc8RX&Bp=s5;5*s$bDv$4Fe@CJhfRT{W z@lech{r$N*LbY2=>Vih*#LX=oMU4#F=}B2IUz?Ko~%J9%dV>@nV-f>an6`a1M)*v_%D&S8mHP)1am&eHaZVoAqcU#y!SHGUO3*M_Zb<$+aML zAC&&Yt1oOC&v&ovzU55`xp%6~NP5cdGg)wm;53nogH6yTvj@QT|9aitF;REIXTtc@wm%K9>32v z9s-Iqpv{D|5Xk!WCiP~QwpAPEcAstLIN)ai|4T_^kwIc}=d*AIGk+Ay{_qh9ZGF9H zx`8u|P>}F?l0Z2o-?xW4UtKPdLz7JVLyq~|Cl|)`9Bm9cNP1&7ExMLeWj|g9Kk6xy zaCaUeLPP^;b8_f0Ca)tb1>gg>(em%3*W7vY?b<#CfCRNOX2VP!zgOD z56raa4oA)%W8NK-tB<41j%0c@B~3QpYun{aZ`^}nI5dm+EI0Gm6f4`3+VD9YgWoMC zOv5f_A|9HfXxn4TOKdjptmZa7x+ulS-3O~9HOhbr{i-8MD zsNxHmB?N|SNeO&cBlbn0u}X2MK{H$bxmN;IOja6x`y>uG`YT^&B-ipDe;2D8H<(bW zg#gO;G0r>&HPpDi_&3#*V`GJSV``J<)om~udS?3R~YaW+W&AjiA5dIWD+ zgG?3^c$>oqxjdX0;aiJU4dzN29U^jRfx6q?;i+><8?2;sdBo!P&6AU2vgsb%4HQ6R z{{j4xe3)p-x=I?fWn)1!N7;=}Q-g8G^Ex|rCLOiJQNn3SubUd)8P-tjOlFiW z&H~=B5{F4H@bE+XTg4yk@le}c85l3Dfn01r4SncTszK~KWER;c_exHzI|^UQ3sk6L zFg6nWK1$Hi8UhdI(Vo!q4_no&)^ATfoA*$O65C7*z_w<_^{jlp=zLgEfuxY0HIZsv>K3VMwOti<_DcmC^u3 zbA*FAGQ%nl-8{aYOMfV?zB*9g=~btbvG5NQ4FYyH$SwZD9K}CQwN^=}?n^^A9^9YJ zb)@qvjD8NB*p&-V4PeL-M-?enOL&(xbg0U!{p@GGd;r# z!W=fm=jd9uHSAuIfA@ob00d@-N#WNM93!okb<~$=r8L|V2WHbb-F!(paL(iqv>jm2 zAU|(*rSr7>%3w&ts-Om!#B?zs)?skfOpgW*X%cPcq1pw6I|;%MHxKM8&J9icfqQk1 zKE)#B2iK=1z8;rXkGIux412M8_*g1$J-V($EwrjZAd{iS4zevU4U23arIwt)9=#82ugyO=-Emf9Q4p0b z<*913DgAj_K8%Oq!qT-mmASLHga&FRC=HiJzI?g4=h3v$S+(Dy5=MhSr%Hx2m0B2qO!i&Jn zyYi=hhnP<3nW-guqJ3kfauEh=tv;eu6C2V93lX1C*HpOs>wYZjSq0r?kLxpGk1(ws)uOxyx-1(Qa zb2|CmI*efoWL)D?zxWWwi3h6i zJ3#i%PdKtoOO-cGO<<;UDG^Eq+vXdHt9N)>cIAALsfB3$l4L5TRJu^=)uANDu(;m7 z;t~d8E&G=)n@8UZpjec3!X}m~TSCBP8@zQei>XLqKYR2shhfAihw2-zguz1hdExn9 zs#?Wp9Ujvu!E$_a;s-;R&E=7w4HRmFeh$u$s-$p5`?2Ifiag>lmel3XoiqSPJ5KJt z2LoSKw1(2$nT6tl&R_m4FFWnqjWpvC6kOyts?LjxOY<)x;Mvzop2#plxMBAJ=3;J) z`ni{~Kv}c9N~(JwF)!R4^VD_0c(Y=VZs_4n{DQjsLa^`0VY7)>;6K2ptA-OX*+j_k zIb|2``SnsxS?keX?D+aL-4GVC4u#Xk>3OFwVTuMrGa(yAQl@?Q_vpeFzdk&*O9zAH zckY`B!=om^<}ydm&#)GcdQ~}*yc?v#bIEPjDx>1E?QH9g+GvoeAHUqaYo#R$@d_P; zB75mVw1*L0ToN_TIVZq*!~1aT$Q$D26R!Xxxv@De)jSfTWH80=?!9eUA@bdjWYx4e zfx)OrXa^MAf>n15^!QMn%Qg0Ttp4$oj=a_O@)nONAGTZLt}kZ_Q)042fD6I{VM3OC z!1*9WF*;Z>eh5;F`6}jqS8yA{*>D}-cfz|1%v@S8L^T%4a`DQAS(m&@!1G2nW$n#0 z@*pl{eLPNzI+_kr@!X!Eh$#cOBWHD|o?(0^3bN2z2O8FQ6?4Sp9#UB4To(6P~-!_Zxi(&+|#&#prX-wgG$5Tp_xzgS+)2%ikE%KLJ;j=t7 z%_6Hcn66s5{^KDj&UEAkyTH<@JfC%fw4M(gSa7)c<|j73)Y;=uehq7D9a?Jzd;$if z3$BM+5cVmpFjzCQrEOC6a1Go7+Ps)zXuXx)|R1bn<&t*0UX> zyg3n04VwZpcimBCNoz$7Aht9EGvxN==(`sapR|T+aP>3L%L6bY7uuZ|NmdnmvXe&= zJjPs_L5ky4LiPRlyN9KMgLx6w=y!^SpD$8uY-?JAoCq-Kag}OI|MQQ?TjB5Je2(%8 zeU#c2!yk!yig`><7}=;O8*197YuW(OxN(&Fqr)fk5T3=7f!bp^X%axjC#((vqt*sb z4wa=v1||qfsBP=iceNMHE~ z_v6)SPU@W6LflT+7=0!)!^$(wAOo&MX%k}2Wfvu@MviOMzQ98D(20DWU$0xSL1Oh! zkz;t;f1XC;KMSijsN24oJ{d5O1(OqQ?gm5;%f%qn{XOiHNVj2Re=9YXV|iOhd{bv8 zWKVfE!58qXI#n_kM4tO~++g7^t5+p%Zj@e+*sNJ(l`hF~$O2M>={euE)rT0sY8bY< zhNkhQE&$8P92;B3)ao3x!I`s4wMZ_OPRh#;uHs9!RzD7T$NRdY0@J?N#-gHIMz9!5 zFHA!`dm{B1-x!{MEesf=s$jp*o?H(Aank9dB${2$qXfPo6Jm?$;#La*d~?|$TQk3& zjrzElPG}~oh{~32bUO=vl}(iwFji(vIg}vcpXgiFZU^4k>NQBMrQuB|N@jvuYqJda z;DA$>)8(FD{02JGxo)Zx81^^EFgN%TJ^4pIqc=a*?Hs->li|{?*;#%k#d$EV24@vX zNUQfp`_;R{;TVJV7Rddza>l1A7KF6?hmh{aAW2S=q8^o*t<|I3ZzP9u#cVnV@Hwq+ zka;JQypxv7(&9SX?&p+b?_wr4pTe!M_Y0JJ);x|e)Tk^Vj3&UwBZ0Rg?!PCC`w~Kx z6_R{aoVk!GD%7d5s+}C?YEu)uvh_v$TG-+tOG|q}&&yGj>J+)ydw2b2cP8KIyy4Hh z-E$Y2C3SiAM%Yi~5&of{z?_4D5r;>fY2IN|ca9WNe}X6+_r^bA;si=jXP(?5MP*e0 zyw^7gU_q5j#N37meT0 zk9*Opvfx&L5x&D9&7Z4V_3ko3c4Hu^klq(;asGr$C9_j(=R6IVSkmH_sNrKFKLP|j zzpmm_X?ay&WJN{R7W1wg{A{s?aMuv$k{!&t^Bf-}S^q5UVL9hc24`(U)I+=4$ujVz zcdT&h%OW_*o)|xo$lBi@kqKxJmJC;xu^2l?eKc-jaliIeB14i>6v%v)@cbVDJfpAm z2>sLSDNP2KCG~{VA|!q~&b4&gW&L*l44ly<0m$aE{W<-e@k>W(WX!&Sf*iAshv%ZN z@2}9zF0cS^jLY8l=JHo}+DyvP_A054LPPhic1lMjvy-KlbAU)0%G+nEPkS4&11FSrt7OY2Qf_Zy%~GZk=gUZCEX)}LIb=rHQ;TKQ{B z7OnAfCZt>~t-l`96qs*j55O47()am+Y>wg?ewrvNg_8Mbu~pygIWVxlGB!*f zOF&CFCI?WSOWfZH?e*#ik&~3?!v>=Jp`vp(f*o44O z)7R#?)7e{co_Vz(A?5DZ*%o)bf=tJb7%2HfT|gWYmcEbG@4WO5eR9PJ;j)wvP35Hb zf#%VXUQ>Tm6lpn)dvNYKtX&#T&$^6oYg}I6_*L!HnA?KvEi!!(!_Wv z5v`ZuKP6wX!p~z;li|=M_TKn7J`UzQzfy%2_K>pD zO4OPoAKKliD_J|oTcv3(mY`$K%DxG_(n^!?ER{-@*cH0{>-@!#O5k!8(fO2gPvk3K z3qC1DL?V;Aj*in=L+#P-`rBM4iOpWKy?=mBi0_ z4>`C)@Ko-XxOQDAHlgjE5$(@|u3x`0BgL88a8jEqeeVih<+8db?xH;FECZt4Kes## z^SsjKm9At z(_tz-_KCrgIOb&w{g60<>{fo8yBPB-R8cb!R$TEoxWm99o)xTFAOJ&|Dkl|4Sy7dq z4w)J$0h28#lo_~5dqvIO^lieCG3 zbKQL{R_E3Sc@w?2J^v{bjQebPVXrmlyK0I}n^P*&dLOImroc!Ir;Dv+mFA*ut*hIo z!y!txWO4)v+}?xo>YRRx{2^5SS7|6Dd3>$6sv@;OLXSoMyiH*ZD+Bb@CyL^Q;7Wk-wFt;-Uh4dVE~g(UP82 ztSQO&{T5xnd%BNVK86GDYeT3{s)N&gd;7Z;5wBv@Vsj~*34o&?z)ckZNa(VX!{0%r z^?R$a2n@7(jguG$nC|4hUfSKf;#zE6^q<$q+sa4X_BO;<9!0Qx#rW!kHR8t_FUFrH z&iWvd?3f&?JL=K5KhIR*VR0y-S>eg!!=RuCUa9NRr8_^l?dTt)V%}16e_u6p*^K{! z`v))%cw{lR)QV@OKRf$;$d^p^ZDwUXfAB5lC2fTzcwbI9YlZyl86(dnE-cSc1IOus z^8&M6jH)02Y0@1Hks?qcOJ#s6{$(TP~!R-e8>2u zS14DJBmxA*vcbn^PJ*i4dprmx7mB=71TN{Mj>dpN((58am1GpdE|PEllyXvUR!Crv zOIGleql*jM`#k^7cx{Q?sKfzB^7osR_CHsKY#%Q+9KOV?7~()nfPygcijO`RKFI6Gfn%^=HuhnKe-WBXkFl}!%o!X6>&aQM}##I3QyU;-yQY(bt-5$IEM57 z=1&YhFunaj)Z^~{5cnVrl8Q31$!eyF;r#Mk!GuFk>H{l~_Io{5_qD4!^2Zb;3VfN7 z=|zFFD}MWZue zFq&2svZ}jAbn&TS6152v=MCW37sc;>3!BqYJAdc*r!!2_TGD=*Quio`Ta=}SW|`@_ zUgP}Con<@j1%teWeT{dUuLcHH`4d^V>sf5=~%)6LfEpDoeO-WcZrX2bK`Zn(vgfL)dRfVD0qE z)%tWd=a_!+xzZ|`6em8@UBU62NJhw|Q~;W!Ta&ZyuSK;LH>*A0r+#f(Tty0ohSnss zIooSp_TD_MS$y)AZ7MS6j>rfagR4xz6K#nEVm&i$qqOkh6)R(vcX*A9M{4ADzO&j} z2p*Zq=!UdT3e?;N1;PDTQp%k=oL5+i_=1B%r~#fts>qnc2hy+OCFjmXk|$QfI8yQW z96+<3mG{by%k4Y2GF)ZM8fb$l5nB}#_v#qDd( zKVI9vi0~~deJhY|ESkV%&EcuMU@1+F5kRjG2P$H4QU*8%agHVr*pw|aku@glrKftc zwgp@NR0Tp;Fr9PzOVf8-)wi8l!*BkWNKb?n72PwoN>+YoIB5uysp2de=TBJ^E>(K5 zPJ=D)y!7B~ga>{$&pvv5HDfLOG(|R?r{)qW&7lgj=cTHrIs#+lb_@+Gij!Feb>uM0 z$`p)27pf9ECO;Yw{*kYSj4Z8bD)M}c3M&3+nV`)31O=610xC1QN14Hu9-T)9xI6u9qWTVE`6_4*CGNvt8^+Ooce=crPJA>BXu&wS?fmB}0`u|$!|n!bqpl~)x7 zIuYZ5$^xwAtAn<9->i#MtDOzA8%+?~Zpl=*T>VFzoH1*<^U-ETDlsC*?-9gzNe&wV zzrS5{P1&C}D{0l=&^Bs-zc<#ggHU@t1v+y*INAvz@DI@5BFs>F_qqJoK*6aWG)N{P zO&7XaFOe=j#Mt%oqu`yiHIB4W49L&s-NlW;imSyo^A#14C(V9({LW97UKFU#-hEz_ z)}pA9<+E@dO00>qF&$KhE5bwWIEto`rEM2_aT_-A0SF0Kf$9|INz5kQa?2HW;8olH zsbF#c)tytRc2O_c`uBlrYcu3tv8;3JKUwhHO@%)m`BU-G>LY&^919ibn*UEAQ`zI1 z?5*$?92Lt@V`hQp0hi>j{D*K9RMEG73l5d*V`<(AK9rO5`!Hg=ceGi*8q(IU(PuME zOJFy+9KzB7UD}8moxwrycu#2cL(vQPT`6}+#JZ80&mVPDk{IZ1&2$3ELoboT%Rduy z`5BWIM_K~7b%X|sT^58gFy-TJYFarKYTu;0vU!^*@q}VixFd+sTWhQN;-mSH4^P^% zGD#v!RRUUpPzd10ug4+24wDZIO12zR!bEMhLe-QCC!5gA4`UbZ4r4IPJviIGJj<)E z6t^59{9y*lZ3V3Qn`6DYa;p>hjfP8P12(QyJdkq^U&8)Hr4MvbwRs*HMB>fch0}m; z&2i0XJTnm%z;jdk8eP-q;=mZdftMB#P27!zd+IX5S6GLwbW&#Wc~ghSN|Gti1WdOz zyH7oNS%V4E6^O~^`t>MdW>xT3>bkeAV!>c2=FmsC@%6z((i3%BPCrJmD!ktx>2JPn zIp^N7YRBu16|lye{cp}UYj-LxxQlK1^ExvoxP7&?RNsEqn}>s z_qt@w4ROSxJdPFAX#g$zG%zOqsrCi5eR7|{RFip;1sn2ZOH=K#()vwLN`RQawNiK* zIa!Rnhyy{_22kkd>;OH!AD2NTyl-NCrFw67i?dlYrD8Z_ZnHqo9%`+~QKS)nll~oK zn?G&?L7q?4U|AaM00~09j&MmsEBS zjVr2@(%@sq@TdY(WLxAtu9gmsQYILs@(@xcnItJ$1B~2VPt@1whHt`81Iq3<_?(p2 zCgLY|mA`U2On&kt+lNehXu-Leq{~x*a6|7Ku;|K^)w5D-8VQ?je?vT>$VUUjOrR~J zk|f2HTiKe^e1YDeJ=dtztwU&F%yMIi0RgI+b%(M~!-T7E%=cuA&pJrtFIxFPzg%8= z2Xn+1?1BsmQt|{;-RvKweFE8bq+0(;C_Bvh($1w4O=gxp#neqAPm?qO)^rkya#dLF z=1ZBjm?^&2zR+PJxgLff)7C3!{S49#oLQ}23q0))RDR}d zLBjB-I4Bn44ssQR;F)*{87O>?7>I4{@+Uiw9WnW$^YyWKkgY)+D&R@CFSIZW!K0Qs zR-U{;mH$N+T1)-teP4)bEyZCycxJ%DKwBx|S^GN?wstNT)o-fV9BToe9-G}TzlEDI zM&ATYZE)4YGvuWU0i+3PUOMT20RO>E{c>nF`pti180$nwsvIJ&XahjWAtB@##qd#c zDn(sS+^B7^d`Z$A$;CGhY?UURpGp1$-1RA>ukQ7ew%_D@!soIL7_Md6K{AA*Xko#Ei5X+gSTb{dxGxw`D|1{QNn;$o&Od!Mi;!lC zFdd6=mOs)Z@(#07ID67ZY*qlsMuDNf z2WY5=w0oOvoOzF(vjr8H#}{v&MNE$V19*z%vKuOFJoNA(vmVWV%v5ZRKG#fx<=aq! z&sBWD)O<>aTb(9|=vP=iA6hg09fcgr&Iu_LgYNNzKf8x_0)M2GaTgAnM-_}sPoSm& zWYZb6_+Jz0qGdHvRN|F;ahLKU!Q}_iiC)PRcD5QqIpPAYbl;teJ)j zW-+mJu3E+0ZorsYJQ>-}PgJseXJV)tk5JKX!fsC+tL1;{s>i2SOBYoFc=f*+GfIF# zFoOk^JDFQog_6sQ!X-%Vpr}_@If_3Jm;^MA-!{}j!98}7$^e1w-`vYTUb?@WGeJyL z^C`7i&*kFQ#3aBYx=iRaYginP&LmyHa~5t{Ya8-D-Gq8dU$05ibyAGdP30gVs>=j# zuT#tIJz;%<*=)Z(BVTBGkADXnU2kurQmZ&;oYT}-qfV@QCi%BkIHE0C6rys!p6$20 zRAl9SR!2oltCSvCK=NgRBJRsTSwckV%k;NW1|;6&!;0?~lMC#q=_F7GA63Ps88M60YOQP;;^dJp7oWm|Gt_tnyum zMt0-Hgp}J!GDdJ(%?!_b_T`8~30LV~r<3Y-Kj}REk=#;p#4nvD8ACrVjOxfdys0N)Z~caL=VrrDq*~!1$ufPWe}I56>oEOUiyAUB73z}s zqUPfjYH3wpSTnxMq$@@Sr>C?=YL+n2Jc-mEjWmj)(^c<87isV)+LiGmHCw)R-{CC= zR_VSbWu*qt2OPO}4ddGxSk~QRPu_hOV(%KI(`AWxUDA5+=TndP_3YZ8Sp$Gq`nsf0A7;aR}xZTe=m3-nz3I_3OiBlGqY2QI0W1txX!eOZutC`}nG!oUk5t7r0n zYD5ky6}d~!=%~jZCS<;CZW57u?bgL64g7G;RS2jAH6Jo7OhIo6W>^73@GT@WUEfWf zOK-!ioAkYJ6&-l&I2c6dTB>ym(4fen;S^ zSzsan1q7u$&JR^a_Y|>os7xP_*B>0G1Mtjg%u9EJ!%CG^k1unVM$CuI?I}n-6S%GR z*!a(jfj5-@q|Q#Fz;o&m zQQo+2ZnQSo8}5en$h@jzWbpDZ7{DOvIp<94ay+9&&3aA@X=G%Ly5Z zsiqvs%3AN2_TOw@%uLvFu_2WBGIdQU^}_r5Yc<(i_A3`@J82JOPYrED>UHE1(;XYY z(+cGv3}ws|ldMjsD_R78qvnx`o*5bPtTXX3<=Ue5<@E$!<>`f+Rgbxmoo%Cdzdx2R zTm(<#9p)rLHuo!yd!itzDxm5cq(ho|FXXw{x9`YKMlOMBnK99El1xQDFXKR3nmgdS zzf`9~7hg%rxYXJyoI+i#Xm9r)RnAHpO8CQ4GJt%qz%MrqvtbBc1DxbRMa`>;{!{V5jkdWqQOOFf4p`=0m5sW=GUJj*7 zzVk4~*y#_0xG?X)!?GeqXZeE0y7e@|U4s-Zdw($!ohiv`N{F1roaM=0${@f5gsjiy z;uEUIz$FFr%~FoPvpFv6i57p22ny7+&BC0hR{utsJC3t9YFfds5B{5iaJ*%;CWRNG zvk50O=Dx)b{L>4PLFN;N$y_lv&%bkpR0p#y&D|HG_>8Udy;qvHnd*bX0u&cjAPnx* zPI^xfe77UzS55kWh9dD<1=kIkX`Pj}skDU=Q?B_IzOR9=DWB1LSgwQFh#z)F#@tpI zk3Lts(kjEa?VniJ9NoiV@7iECerZANS>$rL+E?}3HQ^j zESFU56ZfY3*LCjqAB^Se&kuQ<j-ZV4u1rXxaDzO6Uy*il%#^6}_^T_GlUK+;D zB8e^yHG4(I5YYw};O*&12)wjk@w*|^x<0*DPZ$?<{ZPka%j7%5U%tsfv5XHy@?kEH|asL~*JM~0tMc&#KJvc0-; zp%CF~2CY}joPiPM{~Bh=N^^ZRxnc7J1}m5pA7qFi+rZK|#Hb5HN0~&2uYK#&;#AKT zT3abyi|+iwo#LwK%YrH6GvH0ldfoa6k8|=SHhuB z4!MSxQGa{F!z96v&a0?sy7koMv}w!}we=qK%Ai3~ly1f_y`EFEQMLl@bjUCB$NDIo zU(CgXkk#w-KrX>KVxPTyK2jD~aNU4IdJSY!B4be@=S|eA;E?M#WFq*;@fpqc)uGE@ zC#E?R;OUaNp2Er)Tv`>shH{?FP@)pvz6iwmcEu9M$19W6jZ=L;zG25RS;*GRM1zp6iP(mj1l;a3yoDP5jrpuKGcWX>Z`|xL-By5+D zlqDCG-GvShDw`z&AnMB0GaYt+qz|(idZbG)hn{aQD=-_-)$yre+}T`XeirSX>4%yv zb}n{ku`=RD9NMHbz=iZzra#nMn)m(A5%0Ag%1iWY4Xl2F8w%+Pqbw>{I~9k18W3KpL4|o3oV?5Zl}$ z-F&8y#-%%Uz60kTDf!Rry}5XwsBN_bv4zZ9ZL4O^);!zuS!yP1Z(7xd-Z5A&L|i}J6gpUp2Bx;Lc-KWl zhjQXTIbS;ChiiSN%t12V(y&4s3Q7{a)H@^V~G6Aym!3daoAh6c7xGY z@@kq9BjK5;65aWYSiO~&dTW6!+Pm*@M!XEE7+ZnccrzW&TMv#jERKW?6M}pnH$P&0 z7@wV7k;M1s2WH|Suk(qpwc@VaJ(-#`F(;@-%;O6Dq-_TYsX*c^oJc}?aiBi{nNU(+^oc?h1zFRf{tJo4qr?Y|7aJjz5 zXVcy2#~RBLS|>ka_0BCz$ZT;6(=j~%M_>Cc`6s+ym*1Y_h%n^pA}7W=nv(V{o(-f} zB{clTcG%;Fy6dQWwC9rNX&Y@3R(VF&0dHpC%T=iz+ImqIVsn}1(lJ77WCJ~`SHKAq zq^t&jHb>oc{awmuOi$4Qt4le$ise)F)Ow>FhR3qo-;cvo1Lk48fGI@k0@@s>yt+KP z97C=t(MX{4jYO`8GZz-|ffwtXaWDsjgh;V@jV0j0cs)wbsVB zKC%_nEtxzvTZTnCqpD3e96dcz{8dq z*msWnRF<5ZuRMn`{1_kJ{Zx8!p{(IC+H+QOm&XlNSaf^C53$H1i+E_rO|mpeF{w1I zTI{CPhU}?AeWQd5)E{N6tq#^G#sf9%IsK4i(bOlwZp6}?81>_1`BfYt=khJd!w3hz zhzsm$@vUQ(T$8p$4$d5{o;vSiG`DyPl`-QkH_{pskVGUCb?>z1rS}47gWW;l$Txv# z*Jm1OazsC8wcPAj4@j(GH7|Ui--_P^uwSjqa3r83T66n{;h#L&avyZTq`tMbKExNg zZU{^vCq%}K_pdN1UWVqas(b^UP>a6xEs_i;Rup5~AhTRU_9+9eBp1Fk7=j483R&0s z=r9s|j4Z1FjR`<2vA0dw0C$lzxy+|^{Ht$c+>LBeWs`EAkXLhD;)N6)MddCV1+Js# zux4tq`5y3NG%u(mBk!OUjq{D8cSq^JJ|l1{!CVsK9aXv?>#$^^5p;|YIKP8C3)z#e z2T6CPwLc>?birF8(6(atrd3-chM*#=(%4p7tL>I+IJJI-&~V&CTBN@N$Noei+JTG# zu$1d)47Dd966be#O?~yWIvsuUz?Z=PMDVLBFi<_PY$y8XKR}R{>;Zc-G?{rk&akia zeY}Iv7wBcr1ueX2G-h@fdmb6VbBpL=R#Gv46pm0fZ#AVXB)KPem>4XROi?#5)*UzS zm|t0aa3tVY-&02HOSRujmKs}7Kd5dK!CR`Cjp#7g34ir4|5y1fnzHy(n_4c&SSb$Z zYJ7VLs<%CD7Wb^Ws5`TP*3&&_{Oa6qOY3@=Iz2IkqygbL`J+rwYd^06QW4xnirtY((FV~)iu|;0l1j(B0b8gS4KE%?U@R>g@y->m1CxT z*PMTN6!kJ_+|rt7d+o)~-%ai)IU$FvF#Xpz)9(*z& zWkstqcJaqm!Z4F!8P1~pP{3f3b`QlC=qdHKOFPJjro^K(BaoL1OdlnSq3aIs{f6<- zb^`YTZ@I%=e~X{&e+5oS>mJ|w{i9TKF2|lZ{U0DIEfh?RGf7~jHe2Z}bpHJPHj)Pg z=zMU##%+S4joYOft<(K2k-EpC>rB(v`MIL{^Td4?#{z|PfxnNgoxDXXVX15Y*CSSb zxCr!67;_lI>=Of>55N2a%>T?t6Rog)p0{}X7XKDQ^~TZ+%LNOj((0&IHh;Ey+r&{N8vkLTQZPQ)^&cSo4?m`g zQQ-c?NBa@8|J&gcEks%l+?Ur734$#ThbyWV9(`goRUv8q_XwH!h07>Pt?6az`Zjl; z<(1CQ1%YZRB9*@>X~h@^%~bhc3(tED(E|XstV%Yw#<{*nz5?~P`%6`JjQ0J1*L5C> z+59L
      M8@4pB&^5v^x+c|pBp)KqCmcz2Vb}~sCXSC+5OM!fKBc{s9#ckzCD-$w|9uucF_zDsB$HZ6C-X;vb;g%<#=dBS zT)Lnc?1K6S2=-DLpKX~onbb$)VLA$RyP-L&N|q4M3Iz$nS%Y~5t?zXs{O(Zo$m^$V z{{Xi#D5jv(F6s{acGZ=mJH8{x@1CSLc{{g1z>&$axjRYITpUgw*?AJlU@F5dcZ)mf z6fcE7_k(n#2xmY#-@dwF!)o5T3~0B2t^X`DKt2%I1&@(a4mDum5OAGnTr93~%zwVQ}5 z>M?pYFd1-rGyBlg#f0cmh08H;b@AyA+z)J#pRy z!l49|&BplNTmawF6-hQEgS!**&lwYBX87IUGkw+l3257U60M9(MTtUJ&1@M-ENM3V z_mDrz_(EE^qb5%oq}8K$FAm{;$Ag@0eNj5@%FsIhmCU4%Em45`gD>+%!st~Y#~uNr zH|PGu#=4kVcZyt*mrRGoNA@V__MMOg?%QrQr7zXunfWn1Ap35K@8lOdy@7&GteIt5 z-$QM^@ej`@RU~_uXFXkvU zPpLcEHPM$ zW}LFEYNV!BNwlrJ%gZfRj>!5x7%M~D7BELJp(-$%70?p6Ti2mu`iO!+gYDS5Z}n`| zK6N_c{%Xzl(a^g!+`OwW#C<5e$f2-(`~wKB>uA@jS6?8Ct^0h{g0+wk!lH>1*~;lQ zH`Boiq;~smMsI$uXI5vqBji%7|GvKxW55%|LmOBfZ@=^-%|S(Pl;wjON$IRGxee@- zOU=$4Fv}esEEQTC(oqy^zyUX(+rkwqgygf`1^B($3TD9CN@oJ|+Q>*|M@DYioNLZp z=k+C=hO=;cox751%G#W zDW|m50gpA;&!JA=8Xu?0Sqr$~Zx?JDp&3?S(r@!N3YNq=VRH_vm*TaXK@Wd;GuHlY zT1mYV=pKihu1IZVV=HO>{J`tUTJFIitgy<+aNH7D|Bf)x*R6f$Z@i1d>!#NMk|ux>dz{tbKRma8uw!s#TFJW1+4U z)qmR}6E9cGhk8yvjYf834icFU=6pTJ=mRzZmg7Kv+p3)y`+J`hjVa}JT2-3&=N2Z+ zn#I~R__*G9!s>yE^qlPc5ULKzznwuFJh6U)%&COXSK`u~rK66%{16Ax0Oha~6U>Vp zp@Ni2n@`;76mU<9n4<(_%hpp*s1HconEua5?=)t&wA{F{19~a|Mbe>;XG?-myD~s&L6=^&h!^YbN>KS zV1T)&6#Y!qL-Ma6C53u4q{+V`fiGc?h%I7N7^{w!OE7ZZ58{^8aM1 z);eeFNkq^E=I19~zg7e5Pbz%$eMs?Rnj?UYiB^Ec6Pg@dTJPV zpU6X`wP6*%xi`|USC#-X?aph5{HA7aYj;bVw3$YRjRc7+Y|E#+rEG2sAsA1*yXicOa{*Gp^fqvIFf5DJdIIsDiQGf$H`j3g5|C9wa z%xJW&sG}#p6UN%aNI}mb_j6oRsyRY$uJ)bMqb8ewhuLeUt5X%9i2m?JR8Id@`pzco zP^8Qa7D#IFJlbPqX;hFIS~z;XkqZe| zO>$efv0gUYMaP94Kb=#2u<<-Ro`s?8pgs1EAwA>~PT-{z;Qo!|Vs0ps0)^gdmvFtQ z=^EFDry|h>h5UH&>wdhKf;9)i$FM85!J)p%KCFpPAw4qa4O?2^PWV;J<9Eng2a$M6 zac*t_A~99=h!GxfM3WFLn^G`Rkcz2um$V=#v;7z1FLyGO!sY zt%WbQ7@!}CVdWLv%)x>{9MD+bokea8dfTyo@&mEB#Y)5CfAUEQC`yUL%L#G+0O=-8 zU>{bccLFt&RdfSf^!6&?YOOCh4iXBs&&k77)SN`U3S+?vOLE1FRJCzpM``dF;7pm5 zQm{xVnxBTE)oQf>6sa9Vdn>WrZ?c`D!=ZRQP8fwHD+YAzC|GdpT4?~0eO$8xYhG6; zmxNQYQ|0X`-MK1Cfi@>|dbut=`(dYX5its8IkPh;sYN4VI@ma+xVZ#u>+K`0V*d^V-c5qEy-|dWUbj&UYqZ*sgf+`1j$e`!6 zbc`aUsz6MsvtC7W8)+5dM!4mC8Vdu^=Ne%;6l=AWV z!v|7x zc%~sCi4H!#Bm0RHDT_Ca{JnmLWLtW@;S3bnw4k`iPNEwoX2?3db1<#Kwc|l4^0HjgNo_S$g2B_}b zR}TP`Q05ghXQkf$TSLEPQm zA%wb;j6-ZGegpl86_NN~8`(jv=AO`f? z^S6WnNM<78m|cl1M;~H5*8~(mAYALWgFyfT()wxdM)^S0nwChr5=93b_-3y+=L<5o z`9S0h-0MoV&_9+GRkS3KZR47b{P9!tG_BYX;{3Mq^4gJ06)o8zE(p7N03O@iKSybT z4Sz2T1;2W|Fa5C~EJ4~aDnl{5dV0f*5QPQ+n*v1()PO5i4DN4k&z#p|wa3cdt=0}n zWmP$oKzADv(k4QJ7gaUEVhgaVQ2W#SU{0+A6Lv01{{W9{5kN1Y-`zf2 z#K{@~OIh2Woz3~hMF}Hq6zMK2f1vI9z91l$V%`A1oL`g(@vF6+y6oODP(ftXAQcw@ z-h<6Z@4>_6CZfRB)%Nj`l#d9AQW{zKk|FUcmpJ{I@l z@ir2apICjw1e#EjM;EAeBE$>63S|OAYHPJVr`LGNN=Yk7Y73tat$boq6|uja{YtG* zU~5Wqe>~tzs3?!*0Ab<*Zk4?&SjZ)qnt}tnj|v}J{Nij733Uc0!NUi3JDtb)=K?Gq z`o+03DghKJCEr&RZd>gYC@WAxR6?bu>KkP-eesTw68rP@6%ZxWvDYuzbDEh&awq& z(phGj)2YoM&1PAI`c{dPAt@9UCIq^GQTfS92qhsTnvwuG*HVOHRImX_&QeORlnq?XK=FdV~0${&NDFcQHLv(g`_N`gk~t4{Bs(YHS>?4exiR4?F*^? z9~aSlo;G2XM3~CVgsy)nGPJ~#&yx(Q4CKrNkdrE@qCRo}a|n={k&5`v%SiYMnpZMn zmZHfkQjn8h8Duo_2g@SVho#5KJ7QDvZTf^rRVbL&_oj%XbAc8d;gx~Jgsn2q?gZsamHtA`l!Gvm zL8Zv~MYFAR+BH0^8CU{aGfYjOm@yCvR;ql!x3X?N6WhP)JC<0h2538k!FH0JL>|;d7%ALgXs$9j(Vp8f_MQGLC^ak#y!jVJXxv%E)+ zaLM!KAgIceSu(<$(dd+dLx4kRc;CNIdrK#WVx-}569PokW)l+6oLSaMHS?%oW3C-} z>J~w%^aP~NPc;uP%p<}|=8Q6u6AmgjAR!5Ggo8mtFojIX<%O<3=k-XbR9k%=o45>uEmvob)r0MklWcaCSv_0KxWB28t`%vcD6zFTJ1 zCK^gqz$v{X5aI1}k3h}r1``;R;wBed&=pgdoYiI_sB6-t+{T%V?J6cEQU`S)GKmRG zg5W8`5J$2ESelQklR2cM(jw1nK}yu2xPiC_dZ_;ZFrc7zB;#V?y^EEDnI%%B62vp0 z8=Bb%rq?0Oxz`)*6p4Qm{Ky#+)LLAWhhiSDb86^ZMybqeNu1X;iz^;F)DopHdbfJg zl6J9nwE*lLuHA-T1DAurCTbFpr6d9aP^bf7k!O32%yF!5Ym+*B#35n+BCgsR)yswz zZRwzl_tNbsonIba8e%O=TtvW^h6}1Bb*Lo>Q`l9>tBRUbbKcf*Py8&o>X=dlxngRR zz|a6x1(?zGt=mnffT(dlhPi6YR-lts45kir^!1OaZkB4UpMMSyf+46UvzTM5om9&v zz#4yRn%X}6EZj~iH>_pXoQi_IB5KE{qs#?Xz&(Qdr_=M`-uFaRE zruE*e&2y>wg+`Xk(LWXxbcm`^TyMhygf`|#Q!otWhCLf2^xJ`8uu_IDYK-A2D^$w1l(+Ov}JJps~AjD=9vNq^M~=9NakK*EMfmbCKlpCWB+rp66FCV=6j?z^ zFHp%T0U(kuTIlZ`FNS`w_Ig4kU~yj&3kl3KVbB0lu9Bq`=69g=q*@x|AnFt>fiZKP zE16_@^n}uX5Q&&E;75*#U^r4%6S-(mXGkO3xYoFIj0PWw%)>g)8DjGgQbU$3RGK(0 z6-KMQBX3V@u-r~esr)#ktS#81B3J?(<-39#a_(qio6`QT^&2S6zC;X`7Goq*xoO1B zL|h>WaRG*uECrAEiEV^{K_in}d|R@-3Q`xu6Ebp2PIRD6N|3Ned$?0pa!I8?3<;&o zCl%sY$)L6w2n2$o>i}MI4IZC63c-x4s-Dm`D)d<5fd<=k-R?W zt0hSZ1=IzA6vn=u&~W)dI6N{Yq!qDR&=4~-6H*HX3_!8c@w)Kt7c&~UYf+SY&RIzb zDQc2b6etC}Nr=5?)7s}uO5_=)tkF64o{`kh&R~qgF_v5`wr*}Ot)ylMQcA#3SIa8i z0TkPgi`jfpLd?0SP?a?yQsxvKt9m*ne-#%kLPhHB9*q4h{{X|Q7e5Vx#o*`SWhE({ zD-DT}Hf+09a?rf#2C1rUC}Rskn{*OtI}>sku%Nx4*wNb^8A%}&1H8^2z>vptUY4mA zk4H$5luLCIGLS$byp7ER)+M4Pq5!C5vW0ynjc*>*s60JYrRp>u+tw81f{;UyMch-$ z`cu~MQtt0{mf$@Yw3JCxpjjn@0qIflP%YABa zDFCI~rw3LnC4dNR zesEJTNdExglFrK%E!zCO0sjDu17DTm34z<`;jg=x@Q8$<4XP?8whdZ>Sh(h%_)#4- z4l7UU1eFl8xdn=VP0J4MU8qOb1Qc97hLjwk3IH~VMGU|#Thv2vC<}_DfKMcQbBSHU ziuQ9)OwOWZ+n zSkj=LKU$m>N<)wVqc^>|HF-fpBPk|<$=uZ}L2B4klTmi_fhYm1s}kLGiBWHL_4){o z0(USBDyMT+91&4)NWZ;C5Dae5{B_&H#ku)85KW7Fwvi>(^2${d1d`we3N9Uqqu3g^ zYhj5=C9V%w>NNh|w1Uc6+MXK1C<2gQX|UW2mp%X@?pXG&8OSfGwLV`hc7~5{2^HQ- z5Pu?B&B<^-!UiR~5NP%H?uHacArTkq0G*&EN}`A?;EKN_ae{>sL@<&D;uHYd1CT%= zh_=$+J8ft{8{f?#8c1@bc#osX1yMv^=Zt z>R^#(Ql+6Wf}x~^GNIH33vX(N^Y&wiic}wCQqJC7xzn65D!ZC{)&~tRijKp%H7O^% z^8L^Kc2s?t?^@RM@U%)Cfw}kQ-mxYi+X*R35F9Z{{%0;lEbZL#?9GS@i3K;QW75_f zqRgcR1ks#Ufq*;vp@_(Y6x%>T5X6+54toMcJfCXe(wcXG1^0Uv*i&6y;&l)##IR=6 z8tm;7p#UQK;uWANA_x=!D*L;&+!Eikj1B#L`_k}DKtbvVVm*GJSSo!ASowuvF$*b; ziLh|&k;C1p3t}P&G@v8^*7`vtrI_5EM@@F7u`!}7DM&leNJs&ROMY(U{{ZH_qnL`& z)B$@$u^|hHNkISv4@f4o??)~}wE(^%2rpW5q58r)FzZqBZ@u8cBbQ42w$ds^csDok z_Q0Ax+rzoAC7_=(dW1G$2~YshP2>vmRLl$9k#!3a?W(4>ZP zM}b=r`eILpGG-)Sf8*-Jn{wv~oYzW&uTQ>>O7c3!kCVw1wPOmDS@c$EXKaxFqktMh6BnJ87oMJ7?Mp%v1_-v0R6Dp6SvRr z3KRsD6_pYKSt(Eixp3CGqn7<}IXU`%VM2+M4Lb@{l@G`fMkdbWiyQv{YyyK8yL<43 zO==<0CJNXys8woJ5)cS?uq3(u)oeOjFsIh7$VEjUsGjj+T>Ga>3POmeTGW1Wf>g{b zl9b$m+sjyeFzQ=^8`qpMmL7(ikzbzuFX0iDw{coaE9L-Ae^B5D78QG(I!LosuX0;U zdlbA3z{yQ*$!_L3TW2WEx`c8 zSwAqPQ2YK;9)x$L9FBgty+Bkb*+U)8&c3d6YeXy@v7irkf0yFXPM8h2grpTj+<&W5 zjeAyu0|O9dO4Pw%B@Nqga4186YIb(QgvnwW<^BBrO%zz^^r-DALlESXem3~6IIHq; z8o^SjR=$@vtt<4>E2>h8i3BrHT>Qt&$9hCip$&UR@}~s$YCBvHHp4JVg>8CTo-tK& z*pg{-&F@jlE$GNnRISd125qI>TCM|f)W0~GF%IKeYs;-odPQXyb_Wtl8D^nGI0QLn@EVZ%j=gp6JBF8y!zxPB6ch-nQiKA;c$a^yP$nRVpYFtU zEQEzGaSBlk9YO2h7o+>*IGN2rqG~By^QTM4FqhffE*5vhmmvw92_-=i)A1`uDVCa2 zf$mzd3M{HZf1M};Zq(GV7bU74_~#R()Dl_u=fA#sMX9(pP|T180;yUKuI_cCQtcF} z$VniidJ0HoR1?FIQh0W2ae^x(uq+KNp`rJ*W2WJP6_p}~KrSBdz1o)y1H>@^gqjBo zr?^q!*bCjLe_S<&N`Nh?6w=P(mGQJhyf7t^K-C7f>(l8J=*d>+T74p{D4oWI05enof4M#dQg030)ctR=>P$5B8N=VvEz3;)b{=DK)#1i%_+TOi9 zkCaxMAxdLrH4f&bn2!@`^kEG72-=mYz$ChEKouO^P`fpJU`ZK@MYJSeTLZT^6Djip zVbiAi7V89s1&sn~;1j?<)L2snf&~Z!Yd{J9&hTVk!?aX6fW2wJ!%^T!v6Cl!mQXxuvUML-UB1KuIpv>wh@ACj;IzBmf94 zvs^tkuB4sfp$Y*BC29d~3jzrVJ((VoFBs97vpwu;X-L-$F z)fjNW+5%6cuy7r_y-i<-VNUpuysc@gmL6Y-%3{>uVgvK?e-44(CO|*|?#^9B$#Gg-aZF?xQd6QtZ|LG%yq-C}Tn_wezF@X=zGn1r53wR`iT{GW_!100-f;*Acbn|P1`|#SJoxSO$ng4 z^z{C`CnWDIqOVicPE$npBBQmd-r^M&1cBiH09YW9Eq&sr2mpW*5=dZ@eAM0hkml6H zE=7xUf?`MlzAX|073!k{YJx$z00u4P{qWGCj-tT1DHQJ2B+}&n0D_|kTy=v91UvNt z_ilY{2S{K&B~IXyMIERdztlJN!>NmsMeN4B_3P&bWt_d%ZAtLg!oW4+WH@92@_|eG ze>Wojnue*p3Ad&C#bE#_g(V|# z3=pDrsjf(%9wfG)yaAi zEdB8wbno=}{{Ux51C+BUlI>Gx@QJYC5wsHFsv49IX>zXbVdnr;6b%^Bwbr^)9V`UE zU8o6a8usStTcVQ#w^f6%56TIRroTd;l#`31W!$>!z(9`D{o^R6r!8 z0vX(Wd~)`^%SFN>Y^nxZ3F!rHJQAu?vL732x_7?l__?f_|u)IX2k_cvhAGav0LxQpL{UJkQ zRk_CRa1H&cS^HwTlmRBdlfJ)rsWlnGlB0G7iyt6#>#?k5?wR#3KIvrMbD8NGX(Z~L z-zu2N<+JJ7VR3SaNzY7Zk|;lxU?diZ3xX`}*i2OUWK5MbD=tz&00t$z7~8~Y95eL~ z^!|Tq*DDTYfrXVYO_-mGwC7L^Ga;C>(a8?Pn6*rJk>{qfEWWr{b39VePU`4{Nbx}zQ4wTe~xOM?eLfi+XPdJenOr#rSE+~;(2kwKd z+*&&Z3jr?-giDl=0tL0`2(YEAyTnL@s5l#nXu_n0Sto!2K2M8dDJD`;eL-ghh3+-^ zjm1Q4_<0@IAUc2paK_bZ>Fvc197xd$V5ihm>Y*t@Y6(*?e$L!+cbPFVP*hnXT2$?* z)B$ngX%o+woHV5^LWoIV*DXhF9Upp-$>iAUcU8 zmv$BHj3QZTDoIj`)KpyFuR#2{?pi$AiIp~DmbX%j#VCTJMq+Bj6%lgo&sy`NM$AMQ z&=a+xl@YWJ%URq>DNRnxSMGVnTMH>u2}n%BLS6EZ8Hnd=J!?^F;n%|_O;pB8$(EN; z0G$CKGlJDOHWU^XCc4)-7C|7q<5A}_c@|9s#4%z`MocM~kf8&;64Lv=WN7hErV>zs zON?&(7qhceWn(cp(;>oxDL{mP;IT+Z2b=USPKo+?`c1~WX^xR6hw%Jd#ZD;_%-Ivf zwGyD6B(9h5HnekC=GRqzF7r&x&*dE~M14DwOr=mF=UK2H>e1n(kRwRLR^>}APE?gB zyOBU`y#Dr94qBvP&=i#rw5@0hAwqy=1X7%~GC`Vs#C-ujk-hvVI&DF+eorm8|Q zfQ0U!gEt7tAeyAUpwLEvXL*Fg{PfmmF+Vw(=MxK3=JQO-W-RR7!i()Hiy2B%0Adn^ z?Lq?tfEZ#gkBY^mGH0ntlvGyIl&NHcLJ3KBA;TJLTSwF`$bOP`Z?SwW95(^N@FHB4 zQA@#Kz9Aq0T4FHr$<23Rc(A9TM4pK-xWy2bQWgH#+QFGXsmWzET)%4!Wn|#x$V8xw z*+2w2@inWE?@@aY<%f%K3<_RxmV{?pWlB<%B#Hu9SZLaT(k(fhv`3qhl$C=TZhbp~ z;K78rza|J9;Z0307-%pdE7YaLDN0ff;xV4X7MC(+Y@xfLjI&e^bTjJr8IN`PM*{7B zI}O0sh&ZLoks*H(LTtsNOtlodWm?Kz^=lRyh_Ava;l!O1$={6fEpT%T3+pZ@?-_rk7UJJWxLT{|)ICU-%HlWLBt z%*gGAbB#q7KtK|@c~KGbGTej_3LGz%sQZ>cPT$yG#p5tof!Z$9&KRC2Jt1=N^5!aT z7Y0;WKub|u;zNXzCKdbbRD4b5nSW1y6uMRNbq;x(YCrZTdWjN9h|sjgl#q+ICTkjMGEpvw zP|~lSOM1{r#>3if+2QzX$vg*!%fwFN+)YMWQ-_pSFAfR#YBLs+0%k7xs1gZwA~KvO zh0o$R*?$oef=Y9#N~s zA?fr~iD-E?pUWYt1f<;TgdMWq>JyM*qBKT^3^b@AK3jzFMD|mM&%`XJ5yUZbUl%#V zZIOh6K=Hzfti>JUg-UGER{h}es09fJXlju&={gBREnqqKq?~|&+06xitI-bO!X(?$V922 zo3L6?QcKmz(e!;I&Ap+-5y7#U^JkPnK~7|-6*5#_jZh1{2P<`x_|EjxG0WG|Z1xse z8fs@R(ix^-m(D?iW5_~=78WJc$tDEKOhFlYi1e%$)R2anR%}!lCEjh7Cnv(wj z+!%2IN%_!KwQ!b-9gEte7r5ZQGOCbgO(du(GYUp$00*F{ajv@2_Q*`aBNZ-evU`gK zG}4!H2po=^ZQbAD%kfheqjhZh0`9i%|-tJLz^)|Wi;lghBil%j8vkS2#p*4 zy`U%5wBGpQU90T&ej~)VjuKfDIC{!vp+IMvf>JY}Augt_r%w+#_V2ROgq(7Ov;iQc za>_tXc}0EYPz=Q^#a+`<2#=<0$1IT5d1{d~5S6M|{{U?<1wnA5L5mCk4a$(DvY*Si zdg$1BV-$r?0kSDcWdIcD1lWe(p&ndCW@ZIqNX!(Rs~L+Rcc>lM*0l4FmT%%I@b5X& z&Zg#ivn!Ka2@KXeX|3|GN@YI zMawkGb3GcA3>?RB?57nBGcPjX__+(y+ z)G=k}wZ>1AOzHf_BGi>mCoz#iqGXwzL>5v$XhbL?IIF2)N_WNCa^>)TBxOiRLQK#7 zH2_9c7s?1rP`Y^ota{V4{6bbY3BzX~q)eQV``oljR5SxI%FN;J+C4Zqsq!q-OX?i& zOlMM)5*emLm`&yLlG6xMBO!9}mkrbu9he0I0R#|1AdGcvI)afdd%k2L(&B`q^>PTP z+U7c*6eV+|$`;C04Fjc)TG%*y6SrFqWGF`w;gD2?I7)}+4jkQyr3YuZd}JiKLXx)^ zV&REvY%lWOBjP+XElDzi_ngoxu7uq6rRW4^tqZBtLLhGlC<)qKmWYW^AxR>jB!KPV z?Tt6IJTVFjm}Qcgi6MyY*7^}quR5AXD(#PEjMOg{gaa~MvPe!)Xf_FY9f*H8?svl{ zR3$o()9L*upG1Q&fgp7Dem1KX{7d01CdBmkh=lGP4uMx-5KP=tl7H9XR<-LCCi3H~I~j#!$zSDR3Kc*aYb zQ95Z=voNh2n+|&U!jPn^Sna8EJ9P@uRg~0k>&8 zY-&|P;>C@_R+u)nuWf}|x}Q%NNkdgy(v)Vc>&m_Y2!IDAxfKAPB8}qpZZIO5gA3em zLT}Z%^bkt`id6F!`Q8~G8H^NwLRzh3x{StyzxZ%qln{A6x21jG&M^4?87~@J?++PBjBIxyho3DC3L{Kforf){my0-CVxQC9m=jfN_z zVcDE(UPSpgzVwX784kdgYXeKr3;4xC5=kM0g%Hia=k=?fIIS|{r_{!K3n+yJ5X7@S zm#sNppD33NRoGYnugrS_F2drUO5(iBr<0zp;iG23$|_!JQK&=x^sH6ozuYdTaKV_5 zPjUOd^r@_*o0`76-%Tl}^&3_WOB%2j`8ev-z3wbxwJwx`0~a8quwzb1EIrSU6t6G? zM`jf-uy8Bxv9V!L9A$SJ`jNkgrQVc^^r9bb+7J_37d(zQ{k!8CF-1Tu9*3rIdy=NC20;ecFeD_r*0RC=|6fsQHeuvB*mXY7i-{YoXM$ z?A+qvlV?gxvV()Wxq1sV{{X{`OwmOI)TEF-=}N}Kg_V^kA;H+}ENyT%eq8RESY#-A zoyuCpnywA|^Yz9$V!~2v_HK4NTh=!W3UZ+Y0zqO!Z)fLCsiVc)B9porO^Y7(BEWv% zUNMbV@;>@T+k{JwX)GF#Lhq%m84D>Fr=#dB8J0cQvs0*UB>Tr3C`% z6&H764?PPvD9pNk3$7SqECu^;JT>e3VijD)Nz%_n?eF6NN>p5% zXazJIZ@0=cE+|S$>0+RF3`u=lxB@eFpN0WJYJkS912s>6!rxnA6;ab#`=`_C9NUX1 z_ng|zu_4;D6~6mMY1835L;hltd^3XJJJHzpY*<2ym@o!}fk!kNed*^M&x<>fPKUw% z;pp1`~N&*YG8&n;exoQ*aEpbdmjGz7)fg}c&qf%PM z-jt<9F8jujh?=0h!iO*{*RPLTGv4u`84QeQy;Ymb(w(x@aZd3%Ce`sDa~En zdYVue>2FDTPbZg4K+JPVbeQpyh~^rS5wMU5NfaeVfJN>LW6=Kqq`#$z!r&zF4kIia zW+5VSk{E;`L5Fp6$q$*>J*dIVcx&}H^%{Q_;#2T)CNK7q61+U4nMhe$3n^iy2Sba8 z3`i9%8#65)45CCScu5IDLQs??zyQ*fas|uV-SO&P2ib`d6(`|J2uNTRl>q?kvXlTV zb70*gfMPg=*}2rUDM~Gw)^jUT!DPLfhWi`g&a`|%^xvXdZevkv%=!!%s)rC|nto0y zBWIbc+CdQD%E%!`GK53vDpFGn0!^{GaemQo-pX+4*o;K!OT;A~;gum$W`eL%k?|6R z1!XQ>h~6`umFzbj?WR6f7lmPhWiDbyB5o{Ak_5FM6Tg_HXpl1%$-nr;Jw+n=V@BsL#UUmWi23$tmRp z31LE~`5kXuozqT<18F`op5jh-fKbNGg4-03wVJ z1YCjirYxl(B}JX+UcBFKmhmwVoLBr*XhEqbz|eig%hD)QC`!Xs_OmFt2fJRacg1oD zBr^>v^sHngtg%1Dkj;1Ax@#7c`bq&DkZ4_!1JHRid{vr2a1BnD)}!aADwxh-k)0t# z8d2T;VV&B7uNF3E6fG=vmUOcQdpHc@-+SW^IY%iJBokcR-u6E2SlT#p6oZ>F76C7# zhakS*dvA#K3Idd%&Qy|E660^z#lEH67#vE1O+^mGFx=Yvv!5vGJPk$CK@oD1&J&P;C{or5 zw$NR2AtX7T3-C@8Bi)BR77 za?~2O`qmv+Dk6>D7i!Y9@$0Q(lMx$Ti0AwPxVay#@qDSmXv{joE~LI%{D$MKLX6?V z(xqMx5B=%q5+tU;*IoVciqlh>2XRs1r&FX;W))DKrRpArhsWRg;>@tZrGY<>UvC(h z&vtDadT-(D6vb4Lxx-hryIQ1T!%$@`KKg^o{P&D((CKSeYehb87$g+ESQ-!5ewF^% zvxiYl32+*=->voP@rJ}9$xza!+TH!wbBlgv8y7SoL8-yuT8Hh7nhi$AzK;HaHT-yI zpsO`EXFesv^@<$I8A_owu{>M{rMYwchDJdd1zkXg3;^rm-#VMdtBaO1s+1+)>8tGi z5k{Fx!c?Gvdc6x$q3L@4NWL;M&BXky(t^%4?D0`E&Tn!Vc3?TN(2C=f`g z1(?`vUoD$rV*@@@I)Lu#{Xn4Ww_Tt~gjqlWDE+D6_#bQ;DPg{^ufJlkj#>dyxr=S@ zZW4P>A^ZX48dB3Fg1}#En?H>`X?USMAxX*xlwdb{d3eHnphKnI+^`MU z{dw9sYT`hr46ASQpb|rGY~4x&#|kLd`c9gGE~k>S?j$#FRL(xFdzUgKA*I$;5p0xz3z7plY)*kOYGftIa77Cd z)q??3(1BKs2ef=c4}gleiI)NLiErj&`TC)16aGwoieOt=foVF!yRmQ3vlT2vCau+3O1xc)1|8WKO_PbAI!wtpwPG1Si8Ce6 zlkp`0M|mYh^fruv)UL5=eyQbIHki}$*?ySOSpr0^MWVFyqGdAqIS6SmP?HJ(35dOb zDj`$vSy5BIIZqSgv$1O@i2~_%T0uf{I1c4SWRXLdo>B5gw_Ufz;?%SIxwDf#bk#EF zOq#Kn<|SF?DO!*TQDoAlkZnEEh$APL8h}PbdAWV^xqi@?ib~m*vdn-g;DAji8yx!` z$EHig8IlVO+{tI%=-1RUo}8=y03kmZoR%mAg}F&f*k-A7V&1y!he!HprL^p>bE%=K{t!y@dj99Hf+`iN+qpp?~p13wF}#k zix@Sm;w0fvm9A{XWGcy?_0O0&XQR-KBb0w09~*hcRdcD{p6Fc0B!-L2LNc_$%7UOv z%)^yZkhRRIBz`6&Pgdm;Lk3L&$E!a_e@d5tl`pjXd6hp9^Dy{jttt|U0Z37mI2@#l zFbz#((OrS;B>YHB>9W?f%qc<=fVC1-NX$Z|sDO|GxD4&Ia}6?vQ3?483Nb4YYI3zH zMcqdHkZw9KmZf4AfC^GU zK>?T$scBFkS4UQ2fe@PTo*n`8kC5;-c_{JP@%&-#aQE*G;An0ptujFam zu)G#jktrxc007W|q5eRQ-ha?NQRP;y;o5sN~vN=pa9dJ+}9Nsi(2zINU3gQ zJ9KJQjcXRi4wEM^LRghhFrmBDZ2M`nTv9S>LK6;J30%ZzkmaBuPE`^#b%=1%k^JA8 z=|So)_{C1d351m?nIw}&$^qTAru8iq@z}I*{4CkC7)wG`-T^Kdw++2qQp7ZL3*j#= zlj*SPPgr#ZQoPz9PISI?3RYfOga}#0)Qm|q#9U9$zFsV1cO;UPidz_DVU@&Z$u&%* zO$*9YYMj(`e;ld|OOZm?5#X=ZKhzmV5yUW(uk^+gjWrJrUS87@`pQo@= z6RGuV!jdEBGr5j!H!(1vsEaY9#g7aKs&x{Qw1NPuIjM2JBM~lo#ujQyWynaEEeS_- z1fe??ATy}t4L_f1>69Ox zpUo~_Q9(9`4NerF=28@Y@pOai4mp2oID$q$;eyiAk(S9(@6b}rYgc;c9qc78h=s= za=5vS)C{XGim|o;l7|@!o|;mWx@D-6 z09IBY8n;I{ta8KkZHAS4!`Nn_v&+1IKNP0~v(`=by9(k@HLrK_n#*)b4 zB>`y(NeYJwI|L*!EDHiL&Hn&O`#&?Z-KU$y@u(`oaA~N-;ufdNI}I~9HCCcUh01=ty z^AP1FU?i11NXiH+ic@5v%9f(wBoc3rRN}ERaI$9N@iP-I4~0N0Q7p(ygrzx{6&7G9 z`c^sCMX5lblQL+ljMXeuHMu{^{ET-8M94^dH~ciuM}%MrxKf5gESQ4Gi9M;aWCUgt z=|O0M9Jx`41}z+>-YauIIyGaZ`k_K@M5NDyRPdoeoWW2z}!_!*GklEhM0qa6^jd1Ba^W z7}M*%9}GVZ>FPY*ThtwBnVi3;(zAf&@~TOJ6IkXlrPBfehy@u`HJ}-(unHE&8V=$} zLcF&0P$P?EpboQ4mXA3oJS3a!S+u9 zK3v(rtyo-MB7PoXR8WM>mbA^1pa@W91q%wibk-cqc*15^Er$y)l1ib#gDWVVlF(pE zg9#9zFa*McfCHA^T}0I5%6wlJGZ%@(V{s}{=g*jCOeIB07Ve}HNGCL;Hx!d9mR zL4{JKlR#1nHAttvxC+eVs2UX-fYc_Gf(-Do@(SmeJ4fhm zo*^sc5Cal+gL7K9AltcbCpm(_=Q);>U`BE6#Uii(*kP?<>I+mb)01eLn04U}--ae_56r!RH zfh4ePUojPDvs4bVBI#r)K9m4JHY`K20abSK?&py6FvQg$H~=vKg53|h4UIWGZ02RH zz@Q+PrLLeF@A3c$qD0cGQConmt^gs!hj7NO4Ty8bDk}`IMJwcY1D{V8jHIqUlq3`_ zO__#g1bBj2bc;VZ(#hCI%M45HbLlj4z;MU7KdFGqQWgO$O*}c1bNvRe+IUAF1wiL| zhXj%HQwmhL0lZ@eYMm^wxPZfO?g#~&!5r~X$RhzVNOBn^!`h_j&{ISB?Hmh^q^4Ua zHcm z4;M<(f~5wd5Ng^I=I$@jgIsSvloZ5O3t5PuV%?pbRO2402o6Bfl{6KNH)a* z`*aU4JL5eD$ao0Tqh0#@r9#ePK(p%MS-j;K?-fMioz34jd7UXiK zggqK9h9n0YeEn!3*PF)gZ9(%dJx0iVZZpS+0%TNR=8gM)7C-URxcX{>gIWkX595T$73Yvi(LIxH+aCzZq0;Vlh{Me;0ikXax_xk_Tor{=;+7m5Wv$IT~+ zD{~ks22voO*K4O5H!CFnz*5%f-5QaXk4~&z|>_7IC=2wCY zDfn3!qEM+lw8U+VPah5r9~c`>Y$F{VWTA{)NEEuVQXpv$Rr<8uzln1vMPL)`AjR7( zL*@nS_wm=4X-;=|9y{OQ_XmhnwN^ch`9=3#7~#j&X%?Avo`s6+=1l|hp2_fAXr5`` zz14geAt_~lZlankYJK^vE^*fha84sIBbzTE4;JH$cTL>sq%%{Bq~sM|7)+SZgTX9l zWf3N@Jm8Ag*KWEIxhaAfy1iaagU}VTCpRlvTWT{TI5E>HGD6Br3vqn-p?oYytLat6 z19P+77l+YyaflvUZZCakT_rZzO5xuE!Ts-0zJ$O8PA9hV7`MQmd)=I9}L2G0^&nr#@Y?j}1 z`snPzwuQ6F6a(j4wmjF~&VK-#QII$Q54z&;E+N2{pNompEc7~*{szjCp+7S1>Z5lS zA6F6yfA6TeAb>geS8&U;YcTB0j~J0e6=ZNWDou9ghBlr3)2Y8Fu`QDMmM+CZM`6>7 z_fSc1MEtg=&gTnAYMwQ!^VSX^aRcM&%c@y7!DuXTlI#bS9(E`H=n1}W?lm~Y?OSc4 z*519E@u4sBT8*wdnS;Wq&G)reN*?siop`r;!S^rlyl4i+X8__y1@ zV)PBPgqboRpplsd&1?YMygv$B2F8wVfL72(^mIl}RnPQaY^^bm#q`?$2N-GekfKY?26dvjD`_%pY>6&2IC2{g}7< zS11%ygV&Dk^*{aN791qdtjQbM%IXFx$#P??#XkNNrXffoBOu=d4?G;TZrhBclU-7W3 z8cH5#ssY+r+zJIbT&m&T3MvxNIFtTJ7GY=la1eqw@{p8-dp2L)DYNb3?>$viC!5##Ao#v*D$V0U;MvN)=H+T0+xr_4tNBv?YG{L8{tp8fF+ zL}M{;)tfZSPqo}R!(dqgu~%(3exEkD7B6@Be0w`x`ODt~&ClL`Pf)L_^1 zOzC=GWlp&$-l%$|&0D&+eDdd#Okl9vUZ=Nu#3)hW2Bzh~ncC}ln>gSSWY{;J4RQO) zAdo+Iz)R(AlPPw?`v`vV)+ioe*JF^=05%ml2;PeVBLV2-Eg|jOIm3@B*Ly-9)lCH{ zT=x-aH`{*IByl12B=LEccc<-Solu?TZ53~sMYoD9Qs}&LGF0>o)4;4Gg_+ZuySIvL1yj=#J` zhCVVryBiKB^v%9)*(kv2LS)Xv)zZzhU&!e3ih7d)>`DZi@rv0{XHpa8#X!cVo3DqJ zxK?_vbqL9^k?a5hWX|;!7+r;Hap0ehxsuQqAryT%NgYM<3HO602(BcV1@>6JdrWzw znjWnSOu-mxkVm7>8wwSWv3LS6L^RCMQ|_=l{^$qo$>b18`ZaQX??1o>eYf;jbOT>b z;Re4rW?Z-PY2;MVE%jbEX!&T8G|=-uz#DcUBofuOC<~x<=G&Dmiwf_NEjE4Ih^~^aJ-v43*|wvR3#6tdS+z@uhg^>ebyS zxA%QZ`N#QEpg9zJ<~i(?q2fP)o$$Meyi9%$VfyD5;y?~m@S{8L%2iBZNUYInHlrlv z8rPXb{bOx^KW#0ID`S=Q&0My}I*mVY=e?l4hBO=SF`rA4CSnIOPQufN{S zZP(>T1wHKgm%Bubc(iJxlF%L81ien1(>n^nOEPx2TjDHNNochj@7fcOql3?2`f3h6c-H5=4ES(|V_!8DQ zU(MOLUstnlp-KYmRUme6f70DC7Bl}OHMXAcQ+-}%>vex=X7h`iLCM4=85D?P+DO_v zB{}(w{>Jf6{*tYvSQbrNa^w!pYT<+Q2TR147H3SpTNemb<_V6$VmtLQ21~n@6grYi zek5iha-~7L;H$X2jRdeLE6O69UPZPYb1=}d(KW{o4MBl0*zrS<;&4C1o{{i(Q4Ik> zBp(WEEV4HxkduVFNe-4<7y9#5HlGZ zb9_L{GzciTl8P;#^g3?$D=hC)JxToP5n!HcwaW7>lLaE9=_ycm%JJ5?bK{ymSia;w zd9HdOMM>ENVTVM&Qc+&)x-?}X^N0ON`8Sa@!O~C-S?)Qddni|x`cj#m3F<-%~3Ub zf=Fg%Vwk=h{rgowuHnA&`kz|*=nz~DHN)un3ojF%GxFNEn!q|+E&Qtm2g7`$9}VTK#k zAx{NStom1e&%O<4bN{HhAUJck_Abw9^H=k)Ry^A-TNYai;r?LGRG5moA?!nHGXN!! z?cltrEgNOm?3#Iw#Y`(um9Rr(BKt`SdXbtTMmm9MkxZj@@Oh*WjkXj^Z`@>^({EXVBs>IHRyJ~?M4eF;90AKZqH)kh2vC931yv%y*OSz7$f0zPgSqGjp zh$^3v9fEzU9rUATzD49c$I7)k93yhva_jLDhDL*JJLy*2R%n0vxLGh-Uz+_SMqvGear?#@8Z@wf7#|Mu#=N7i8P1T9{LhXKCmj z&+NuI8|eD$;yR~{2(CC2czYMzpyVTub^`l|ck6Pf>(-Q%^LZdGdSO-iUk_2H$KCPp zrQt0lhO_||2ONe+jW$hExt(L%QYWSbdp;5)$ugvp#cV~IB$S9ZD59b`GLtd8 z;VkUGBdJBR`uupw>yB5wbTCyI%e<0-^k21Q73a9F0tqwt;!l1)^&7kOeG>c{-v4981Xe>F1hBN7OkC_-9{F?HE?Y`)Z=>&B(XLbk4On&~*xM{=00RP%|;HKeMap zJGFupRh*8O!K-u{&nLeC?2>{*h7`}QWO<_^B5l8 zJ&EHn1V%E0JF3D`LKaH${n0X1))OeM#lft1H26SdWZd_GpPFi9lPiWizn6eb>GWgY zmKQ5y-(GcN<&b}`8`_sFaN9DZQ(sanvs|PBqH29Bk?DQx&$IaNBvskFeK~KC*gxaU zKmaYuY@xrQmcc0_iW=6Ga9vJpUIMlSxjIuF0K+yqnc}Pb!Px~*U!H#DzgjuT_B6Z- zf(HA|Y4sEA#SU6v;lXsE`|Vxyy{f32lwME%`W(#k7&URG!iKC`qe-9|1a}Rk} z3nep40)f+>WS*`(wpSQpCDKZnl_Zs3Swv)0?+$?pCQcZ(Dt-`i8?+uGCeEFIBs>RGh2!!*cjel?kU;7WoPpR>w3wv|jlxGi3oKc<=ex*;n9UWl~tr2)7;jQM| z3`-c$x*=0kxESwwz`)=dx~vjyAas^nb$}YJ$TZ`Y?%BXM!GlJD z!Ji$Wmh% zdE4+zap2>EGbJJWD#=$=a$c~gy5b458tRxEhv?6Y9j#1G0SVZxPIUs@IStiYe&^E- z_-{%hiot-dC;T8$0faW zcfY%wF=@VQcOSUR`F5#Z!mOk~GFqJbTRJg$i)Zk|5R+K!;i_Ju=ktUss;MJ1FsK#0 zj-HYXDsv^Sx@re-ZwkDI?^xQ4u^{Cp45ua(udr0d-EmveIPlipTnvUOiX2%|5?8|$ ztU~)`ZI9Um7-z#iS^Ky;TgP5LTW3oHNx(|^Am?Id$(fnqGpiR~+4j(7(9I82=6%_{ zfsAxYqA}gz`?FuiX~65Vmm+?QF1Ue7CwY4f>WH@sFY;x>1fhp!?V%~-^{ba;AJWF9 z$dFYyq=wR*YUai_CCRFM7 zU6w4#*DUk^O7)vhyH|Ps+5QkaP|+?yIm$hGD)^~1_3vME<5SB0p!+Up5>reco)c?K zyxG@-?iT56J)JxqTGx&dW0i-w(xO0d6STPu@@_kG>obe%tzG3NXA0cRFnfe-wQzPL z@f+Z)Q)pT7Fek+a?4?Hm4JotV{14#I^j2fEN!vhhuq4uufQ5%Rd4+G<;2Un&VmFB1 zenseps;U?M^2T|B-6~#-HODE}(g4Xft&LI4v>WTs&i=B6Hg2G#9`CRym>e1c>elqn zZf`IV&~e%Ryx=!~9$A8Jxz z@1OdxNT5$}zJ60Rh#NFYaG^5$Cm%=N1V8QGJy(`SvShsgjYDW!lgr7)Y#fS$X;)gQ zYy^tfqRrLtozRyt!D!5_v|lZ^^vrz{Y>(s3xurr&e2I{Xi*7*s=i)R?gB1PL z>1)B7BMAlIp9p%1qDYhli+|*1qQzm(s+6Zuv1)Wyx@!sCN0k}eA7!Rh+X^tR3SXWP zsA)h9Tb%D6C^`+>cs`f=)I<7|s1a!uyejz62kQqbEjB@v_>H*ofYKUdGchP~FoY3h z7|!h99Uu0sFu5`d(%LlYTj+}@?xbbWtArQ9-aoT|e@QW9sd%nDqDhOZ zoh>KLflJPr+*k(|c=}H}eAxlJ;eUW{8KmB4c|Cl*62VvVMMvHRT<&fQEZWSlKSXQ$a@w2r+#NTx=WU%C0_jKMd&OG; zUA8|#OSErZM{7vfo{K=zwkL9^oL(N@ovHO*V#I;ukTkaj#f2ep`i8K!JY&_#SMz~L z7pa72ukz|oV@!Cp%J)7Yigqs=fj9?_;}znmtagNVF%74 zG{P&ffsjRY_j4fm->m4%ZNyl!wGXu9eshzcprfuJ%X2v_=#T$2AfdnzLZ9+^Hk&Y< zFc{{ezw}RP@3Cw9w!h1hy7GmUm+SRv%uQv4yz_ezRu;!KL#SMtRvs%OUehJm57YZ) zX9h`Dg&(@LS=5NqOsRz213n_T88Rj7;+VRq1b2)1b!WGjd;Pq3#_L`d+|TE$rOu*? z&xR~G^`)Vu^sB*}Hb36|Flbc2tbJcH^)OZq6gUyU?ci{Oncij%1@oV=Ze4}fCsQj&k%0~M~?hKC19>D7tB&yA}NQ|D1ULdb+#su zFRR9*_RhuSkaJC_HC)Sb#!FM}(a`iXyir{p^)lmuDvhk0M3 zu^&+wqd1@8H%%LaX7sUS#(Ld5)J~#9hGA*V6(EjoR@C%X>nFAFeRdkTQQLwHW_zU7 zc8Qmb2pEjrBI?s{-1|#D*Z7uyd;V6X^>_F0ij(aRt;@C}xQlDlAtPltbQ7*0jna~m zH^g8q!v~fR#E2IUq%o05?F0sQc7&^r;^-R8k-OJFGkC)9P z6SPh(hKB!mY_t~P!GJ(-FuNN0L1@c__+||@j>o#bTq##R4?&$!Edcnaf;XG&;6JDcyDPvqE}qc^Cv+!7fhJ3Oc7a%i}1*zN!3BovH@d=gGBtZ4)$K2Wf@^fwo6oKzXCd z76BD+=h62}12%7W{{xs_3i@`wh=W$_zMfF5Axu7aSS`I%V>11dT-b`MEgQ^GCh=HI z(eiaZM}iswtim@dH?`yWS&RRdmGT>VvSs6&JI=Okq4Zf-i1OA3`nRy(|2SWVDx_q5 zZIT8JF3T~56)N2CX%Lqk7w7&DFyM@};6hDwzO&PPN7298{P&H%3jQ?3+}A)_Y7WZ) zn+~Xx;NsqyQSgaKVepg-W=2??md+mEd^;SV3Z1M_0n~3OdJND50y7kuT7-^WJ^Y@( zmSoK8idXFwS0$C)Q7+%gT>uIABcQ8^BTs)XAK=d%>i?*hl+CLuL%&A(W+j}-l3|Z8 z%OEz>V=$)ekr;YlVX#PmcEIf;HC%}Y3##~-_KEM1w!IKz%oJ;Bb}1iM?&iO;4Z;*P zsrm$TQ?)>5hozbU>AB^$U3>7^bV<7;{U(0vzM`oPAvmauT$n-_F-!wdx5u zi3*HE)qUtWJ%qCVA((EKGLn&Pk954wWg8z44u@t_dWx<%e%9D*e#`nvV6TW!vLI?W zr{mu-fB&Y2!DM*{+y&pu9j@9EqP%0^4C$jFJEw^+VqC=kD+07^ZQUtnPdi zU+*r{9~xBXzEHFAcd`$zUAct1xe2Q;MdOn9uTH;lZ3ZZbX)9mnwLMz66o13G=&Gck z>sI{+MS(5Yd6}1FX(_Sa(UEd>bVWThwFGUz=Isc3kaR8Hlf&-;v|(aHDgq5r0UKSR zM4#tTSc~%@i=g2!w4O%osTdx=fr)>$d&oA>iIi zK@2E*A|t-p7o$M@V6dTkEM6YNEc9GT_b}vWeB_sZJPs@6rMy=PaxWt6+F9DuDL+_N zZgSXUwfnYZURE+iQf086Gz3RsQ4yf5E=-Lir8^o6e@`z%t}2G0eZIYA87asxdA)0- ze-!!KvY3Vv!{Z+{(YpRwDcxhVoQGHq4ppNTlU6_UWdE=`&N#bctrlP8YOG_TU3j1U zHao;caCi_UIe{zeMc$RS63p~Y)st7T%%Pelx4+7;A_HD{V~u$h-r#!w3Ds%fX3nE5 zki%#=4s%1nQ)g2NqPsE?njLGD41 zZ<}4){(^&~%XU^enbFn-(MMqj_f|$5R9qvp_Q}?!F)A7{cJ7Q#5eUq>1saBedV+)*qS<;mDV%d;%ya73t2u%Sj4^6GTHqU7EUFBKxBiggF5}bihsL4MOuE2(@ z!KZdCMc68%*6BM67c|*3AxCGk4_z2FeHN}hABR&JN+0lrlv%0B?f(4g-3%4Zs%jaz zKyS5+H&e)`l_ zP8rkTM;w;=ioKPbTyH*W!fIg;1W|sng41|z_3Z_R3aEQse2SVU*#$&)m-ou^5?I}b zc#RxSwW&}^*k_&t0gS1$h~Lr4by(D7rDDh&>38O*u`3~OQkK}wIIZkprHNP;mPhB} z7}FG*hTG|_AalKG)!`cX@+nFyEDGf4EzcXqZVVH`!dskx)N5-N?;!DA^t4q^PIk6q zcGuE}LdP6#ZTE&gL9(EkJJCS=YSAOl6k${98_9k0>~uFA>UYLAa=&O`Ic-~)6rtAK zJb<{JRa}9NCUW*YkJQr$zt>Bnz!-#U{=%t=7D_xU#s{y}Ej5W;)l2lkk>b^Vr{VUb zDD?h5rz=T$@8|Vn&qKc>xs)geMc>>rv@1)}*b`L7B3Jf1?Q6|52_c!aa=gl(hcHM3 zl>*h2Vs}^Gj8!!8Ns5B$mCp!hh=r2vFEF7j<4mQ&wm*VR@H|teO@_pRWS+nTItyoX z13qouc%=45##6Bb2tJ)sy zpHc?ikNT-OkR#wSrq`wg2TgmV3r8q|m1`#!^n{N!ayy&^RSYLfo|>AVH9OmD$g3I? z*JKoE&+gTQB%n-mIln7QH5E(a8nx70qlnFiXmw#bf zVv+>{=4!8$mo74>ctaLZt=yg7SJ%HeOGctBRfa5!D=fL0?xI;Vs}qE|>xn*&DcOc4 zs;(rw3TW|SUh%p_wEz6Y=|uO{)`gWVBI1fER_cy!ZWn`Kx$aPjiSl({*?Q=Psc~{I zGcY0-y}}J?+7O@9v|u91xt-`;^J;YtI^jJgO(9WwIrdGys_gz0pUMLbM&Oijv#_Gpj zTQ+^IDGkCfYV&sK_*b*QfgbQPO_E4-u9FU{-a>m;2Eo$CZy~%gVA{k2Mz040Ei*9k z$l9+J1iU@kvNfWya1GoIw}@Qhg0sK;Drk@-@gQLY)o~(@ah|ijc(7EnlryQg=jiS2 zH{u`ZWdVKX|q>+1)*~CplXG6>Kw(FO_HMazEw6Rw$*B!>>J|v_jiHj zG15Yn10$BG0*x{DNP68wrt@w^OU;fC8ZPH9nWz&YhG$7B%1nN#TmIL*`mI0LYsc#h z7K#2ows3qlXGs>E+}1=rI+09M{$c^@40ua#c1bB42@Cv@6<+2)0Pmcwxq>Ha54E2+ z?7fwoj*4u#!9YlU?^Au-LibQu{=uX{!I-Z~yR0D2uU&=bZSfT^^JB0qGIyT4+XH;7 zf_x)M!*lee6C-q<2T%W;Mf|JQi~iru)Z0Y{jyYT;d8@Qbyzw29#w}P<_1pEAeo+y; zxJHrCLCDl2@2^|9$3rlbyqysm>*Aq!b$-IoH<9J4^7#S3BJvT0B64`C!N6%6I)rgU zIUgu-#os5Os<4K3kYx4R_Ux`B{swBo&LE?_(y9M(>8`-6UpwzWj+U%~sDaYXpm=lt z87FY@CbcLpaV9VxlaO!IKYb2F_Ht|9`ey3{0os2w-xcO(*Z>w)5yjGPpcrsh#;a&k z=UW=`-S%?pwdPBP?u$&=T=&qS2{tk@w6huJIk0wT5L(p^Q4#n~5X82&ads$h)3EP) zzk_3q+wVN>6d$$d-(Uo@h$r`Hy3q=hecu@(NI5mt8j8yXBMB*7FmP5Cy`BvEt&*G9 z&RQXXT(8^&a5GyNM6R}*v>%b5;FIZ^9G}7OECf#c(R^ltmSBVXa}sGu23zt*ke)=N zsO^1$iUjT?XV+{)n`VLRrSN8%CE{r5lFVbD{&008G<%DDf#oo&4(V2b zv;YDb-PH{w>s#k5;e^C08eT8_bck8Vq2p~Dq94>dvI=Bbi0ibbbMuJ_zL7M)l*Qg? z?at>pFw)udHr^NOlKK8oM8F1U;LX~vtE=k9Xw_hlbEJ&5(B|RR0*Dk>`tRRKu*r!( zeQA**voyYmXo-802kC%`m?o}q!ho^ddm^BOI*AG}chXd%#U*sPyZRdWQa`BeC|@UQ z-8prp2w@@K04{HR>g35n|1xhpx1i{2o7(e2pc*{Wn3orDh5XQFv#Wl#S7XYCHo6m= zJH(CD(|-8JsqdTHn{f8`;h(8m^eE_fdGp)N3QbqErAx(_769O3(Kv)P8PX8&gF-ad z^qtl&ojTvfJF%)dW9ot4%<2yu%x>?l3rk6-ueV~=NP%}@sl1%~2ZHj>nk`6SeF;s3 zaBj#<@S_g!R6U;c{E9ZzoyGn`heG%TZ(3`hGis(t5$qm7ydN$qNTq*n?lP z33mE8aapStKBvSoBn$9|Bbc5r1@P2MatpQzD_h()LIrKmy$=?6|6V#1VW%bn2!!*- z&JErfUmr`-=q@7B6R}2`VFEwbA4kNi56V^mKw%6qwIQ})LaG9$8`;@)GOfDFzrwd5 zAesIDor@~hG2iZp5zb-#lK5`3?}cP^_I&QfaD(+oK?%H`3)8I*HdpqtF|9=X{ZqL$ z!XGAvc~lkgZZ~NL8?4oJ@lRr&c2ak6K6TI7<2%S}(gXq!p@!8mq`uhxj~GlySEn(#q9pR-6dgUk2j*o1mFH#Ob`?{;K!Y&dT*CR5x|0xzeQi z3zw5i)Qk%aOGOz?g@anoe}IRF##H<*+`pwm~kB0s3lEM3-Zw#G|5 zV)tEy1?RRgpBvFhH15(8_mI!tcraM)v`P?r*AN^X8T?I-L)`#CMECgMR=A9k_fV+& z`S-JYnxQz;oFQ7YH9~a1<(6j`MU?ea1?g@okF}nxyndk}zx*7R7igNEceXUwWHmHJ zs6m{>Ko1{0qQ8=*Rqtu=>{qD8M+f2!RF*?<$XxIK`*c}w;>Rwh{=>Mq>mm+6nMtso zl%CzOJDc0}FF=-*_CFF)U(`qc10Z&ebi zBm`xu)RY~!3lcj{CyBn(%Z~ao0_nr&2qdOzLswrVJ<~cmSkCwDOGMa#6OSlKUqk+A zu$j!6`m?=*)AZQwp5NY73T$C0-6=#BEL?$ob`|3OlV`YE^BE(ydIZ~~8#>2ztM;*1 zyHD`(bp^D%U_1<5xc6HKpI(SXwNIhSx}tcxUzM4~&K(M8V7`5Oz-Kp9f=g}~KXj!F6{1(l<~88GC1W23PdBvxh{+QP?&X9XA=> zHF!aRwR;RLS1^9QZ3JN0S#MsXwa-l_ko;W+g;1fSB$j{%iRPOhD&52WQ58e#>~{ko z#n+PJ9Cd9u`s!Q(z8JlM-+S>byY?HEMIca>5j*o%>D7bli`SL=4U6rny<)t!H*f#W zJ$+e}Ty;CVPnq71>y2Cs&5|fb1YMdw$UANPdqR6YFEcjXJuQpc+avU+>+DaXvSu#UXZw6$Ut z@kE3t;`uTA9Vby^yI}-sFNufYZ#JE-aSHtR5AWam+NmnY%qpq;+x|+2hR08e#VuXv zK@MZt%lc=_d9DzN<{IqbfsqLCp5pYsH5YIj`2oLh_CHBkSwJc;9ibgy5t1La`Ecbo zW*r8$8W$%D>D2#>VaF8<%9ap1MIHCZl*FbDI$#zm9)*HG4Z6(J;9775ic$+19;N=%Tx@IW*S1L;P|1gkM3m z;3a-G0rZ;cGkTBR*IqYH%F3zQE0`AJKvdPY#CFNP z&#(viwf#Nf#to@}^CVYi{wX+O%c!clYpJ#S)#NSTitA%vqvEIS=Dj8}LD+FSdv{-B zUoZg8*{IFO$3McKcGU118Dobn@no7QbTE!(7bZm$?|)@T8aj>-4xdlDpBf-X_19r; z=Co_?UF+teJoGC4o@Y(?T2daEgPuZ>Ime-#RXv00m_1M2Z20<^!2X36lN?kSdJezKK#i5cC$WD)>XU9ohlVoG?#D2c){#WmdV ze*DjDAzI1$nF7~O7qSZ5L7bu=DGP}ugJ_KGCG>QyP>hq>;SrBVy>BSNKxU}GDMQJK z7atvybuz*tPIjI;Ug5?-NjlR;K>IFwH6g$vWzWawr)ggS-b5Q=q9McC%AVsm+t<*1 zBhq@Zz{>L{UKR;!Dx59w)cJeQT)kLEk~7^7Y$C%X3N&mw@lVjMx0tS%oor`06K%*~ ziJ+iakO(8_w8+B2rBS*!Pea@L{{W7_V7-FhvHo>aK3;*ZF=ph-MGg;HVyBZ z?1#QHn5wUpA3{%2EE=><55eG-ABLHb#$j{#G@!!7h;7Onl_N+c1P*^V_%Z(b4kYG%rbqzid3CV+P;#QXAKc^IueRH#WHa0! z&ml7z5P(ihwH$DP0(eP!=o;D_+N((yw3JazlhyMU_MludydC=)L&Zn@lY-_oVxvD; zux+kqh`RajHl22$AF+82685BCd{+#i6|t%{-&U)${Yun+!nx7NnOZZBT!m7tc@@X_ zjrmKS64mX>6W%r~2q7zxo_1iW<+Bh{Tp&=Qx-^MD24M^05>GY0-ikB7dMTrJ6Y>5_ zCd2L@+V18}^d7eoi(J-!fX?DPJ#`{;0S;kdB@?{bsp6Z>cK3jmiFvIpf{=kLOt)Ih zs`~2j4=zFnrz_@(jmfWFDM@&7O9=#wOiQ)EqdK4LvRLOiqg_e0)B-%`wG7y~%X!?l zX9JD}Q&o)#nz%HIBH3!9D67oBb?NQtv2xv?bb4`eC73}E$Sf{mxx7NiR~tIM2m$fo zEK5|aQmri5dHQ&YYf$O*jFDkibv@YJH#519#g#5#%q*TI$QwvjWqU>{zVL(gA?`oG zTf#V^A>qepX$n=s)i37?&#axBnH7lJtl5A{N_>?~M}&wMMZztenG`>G1dcyim9Z`* z7M}+@`m0O49U1s|u$0^KEI?vxM=Wh(f@6)ey$+55@pjs+zZgiPWp=ehJGM9=MO5#M z;H0g9$p3XZ{B~}~s8bg%{eNamOkgn~? z3|g!ac~OP0m^vwMQ;`B~AWc-en{_OL9gLBb?=pZ#KJe2crHhvRz2|T0`hRsH9K4c! ztxMzqETt2;HcFHuM9nU-Z*<<^{O72D#I3;%ZIeIgG1BSYkoBYdgt2mQxaIbPx(*Fb z!3~3vdSta-6M2^0&GU{Yj5C{=h9z^CEtF9| zj09u|0H?7?f3yRY(=FN0f{$8xya{t|<25DK( zXbwAhp?yi+T~W)~&$ScNejlRDN?6WJbLfXl{@6q6tElh&xN6v&n3mFYrGJd(mIi)e zL%@4^rC*Ji6?B4=DY$H8tjaSD{dccdk8Y^T9~RJ0Fcb1_mxn^q8J5X-&bz&oTnB;@ z`a)~Z<&%zHUEAxQX2IW()2fKj&+fKKd(oBE2!1yzuA@zl`2z1(A+YU2q1|pGxpUs8uZ%ndH(YeD1eP;xRwXS?7%-pr(wybV80PV*Qlm;|IuAAKe^)CeCebG z;we2eQ}BWB&!7foJ9~C@W(N!^P3nOVjq-*$6ecT-VE?V$zExsFn=bvDr+JtX#?0QA z@t|9zM#Mm9bbUMbI%5!CO@-0BKp~Q{J^0F4rEVa9F7NAgp7OuR5w8DTABsM!q!rH+1PSZ3njvJnj-)@t;KhVTZSobP5xGL4Pq= z?eFZANwfX<0xHngRuqR{3b43S>gQK{xpo9Cj*&U`fD`1sNqi#%HqybV~&yY;2nh^*YH2%tW(dcNT7XZy}aq0 zhsMJ3PpP8B1GYaw_DzBf$eCxjB)eea%HG$u(LHv1T`st#h}wX*X(Q~N6n#1M6*OWz zFVmm(HdOLv@?K8LZKfc&g5c@bEV9*QenQSY;e-!ESN75&y%Js51L}H(thyTV`O`D zZKuY;8esuO{ckHaMJ2fX4ePA=T)l&?%hB88e!R^N3wF|L&-o-XPx497rmQ5{&xx1D zTVlf)Y34@@DzUT*@8s!SOpf)jTNg2hrIJ!)GJvoe3)}wyEM&)un0s^e8!95=RhBU5 zppuNNMH4aE<-=Bm;j%fO?*ERI7O!X3g+)SSZ$4bu4N8;#4`A;*>#d|ZZdc==z^zk= zd=%X~!Q7gNrmcEt^;K8}J={EvOH17jM;9Y3lpG9s%q5W{0W722)9&3(74kBP*yIi( zw*LdMTfAuQn`o_d&EU)_dj74T!cWMKcs$Wxnd_&o^!CPIJP?Lmdn#lp`njVt$4gU~ zS3#VoCS1|ZHvYLrK+NKWkmi)4j1620`6N{qdcp@2uMj@(qV%Njzew8q+%Wg^qk2r$ zbeoq7uUwW?R_C;zedb;I5p1qE9BIr61mWq6q;t_D;jgc4K^-{PX^CXgpXa@KYiEHU zj|5gKSy1(Kny!PgvR4d^YBCv9X>Lb%e`KqCCS>bC^{O;{>k2A$jt+jKnas_o8bdZM zErKU8AocLim0Of@EebOSunqJu3mzN|?6zvl%6N;pE=m)3(0X+Ne=)LN zj-Ddi4)cn;PYFSnwSKU&S)oeny^Sv4CYv3*0)}lW~`q> z!84*y-PEYp4HY#wwunc@`@OUpEmP)aO5TGR^$jQ%$bIrCpvr_7$yac(mi%tzLx=Vg ztCci>HN(nS2U0orB;^5Y1(=!SCE*}Sx9josHM-;;Slj{S$XxWTAI^zB}v zduLeS{T4PyaUxHbU>3uHhpjZ^?8B3keQ)KiFDG_WOs~&c>6NiON{>GjQX&Ic$OxN zJHS0CY z!T}202x2PWI}g46yJA$A0gGtY-^WMuzLi%ltjrD0o&(CohR_gzNe)!tRF<<`3%B{? zqBKio7X`eV@8RdW_7Ihjme^gz2_4(q(uTM|fLe~mo*$UF0m-2Pq-xJyN4?%M*Fff# zC)C+o-+VOx0HNvp{{S>fqJ-`FvhpiJ1CUuntb~xo&m$1y6sdS3pmHe9lmd-eB|s5Y zH571eYiQ9sZ!To+93&(arBmb(fIGxz4yM=>PC~q~y!_-$$1u!iHDOm7KAPynSIzsP*OVcL&`IUeQO7;lFXh@u*6&kAhEmztjTWEYDK();dxAJu<}4{6cjbK8!wB z`bJL@N(4lY$@7p2W}_Otp7*|!+ssG9!tmK25EU&cp5aVch)K)O)5bnd{{YC0O0xdY z63F5OU^M|5=pNv`4-kr9ZvYQ%u%8GL({IB$;V8*?qeY<3uHPE!N5c~ z5YRxY#M()IUX;c+0Wlx>Uxq>Pb}AdoL#%Dgk0;rC|_O67E&=6aZmh$F?*40#wCz zhFrC%B1uRg3IW_K7ZvLKnmYIB{svn6TP}KlRIl5vQBXEom;6ebPg>Z=&-`dfh_$F1 zmuCbKO5ejdvGII%zvD0^Dxy@!S4{_o-lIbv)IvfM5>%XtO$VPkuorDe074)LaAMs+ zf|A5IaaJ{ANHrWkAYs)kCSnP26rcb$b9WR3e2<({#uSt%DQ7hoU_%qV1$TDVgSdS? z$z$o?gpQHJR3xT6`OK%IA#J?FnTfx0fw?FtVBC1e8snI$b3gJ+N|FfT6D5R-hD5{O zXJ;1nv6iIn`5+gMsm2P2+UG`1}hIbSXztc6H=rTW~qJHwx9#*Ptr_u%q|lHhX`61!n^7u zxg|;~NUg6!T^O;Z?|&CWycDg`=IU@r)%5seAGYG~iK4#pzH-Zc>oysYMiGYtwZczZfcY=PX$dZ{{H?&x3 zn2DsKUMCQbgD3>35uH-rpzm-!H4e`9$Sf-d$8t_u785ddX>tfiGz35MOHfhG^^SXH zdjA083*qi|CW-3)N2p|^)gR|To{tJD6D=_TOeXTo#Q?&O0b~V4LLw9wC8|z0$vhvk zoPJ#FM`!VPQ#Bb%rKWab9NB0}=)|=wXy!X-XZu$p5Q8rTjhBtW$N?zAA#%**jdN7H z2j=t}Mn%fH?bEKKKum{GvdoWBCT0>wa_1p(jaHPXC2Y(=3T1*EfJUYCjq4AM!()-~*Dv8APOpbDigG9@mjoK=ttkx3 z{vH=QKMPs>CiMe4$aBaMglJhR^F=|Lfj0$TF)-5_5l^9HG`W~T+!+fbDw!NtXfT+Z zA;ETwhyLb7=a#cEDU|6@DIgG1Qby@m*80+)!ot*{hh(56m+vVmBA_Kkjt=$u?6*&T zH@dT<^$thV--*2;JtLUI&E#^0>&Vj65=)I5W^NP+appt>iAkj?fmCDwNZg{Dk&ac` zFVdb5h{5A={gar5%l)*;)3|@cT-oUf8OmjqDL^D8*bf3sYdFpmg~U(IiAqG(GDO8V z0;~yPVOpNN$6)h~O{es9EoaqjMKqZCe@|vpsik5p!&sP#jI}DtN^!^-smL?ehLeE9RUu|{#C$pPKp+#9)JbY6iqu9ww4732 z9|kiLnSm%u0Z;|NX9GZX6y{l@>JP6Px;9JDJ$EOT$AtwFx^8DEgD)(vkq!*Jl!B$9 z!`lp{;UWqWm5V4}wmg$2bj0KMWQi;IkHoOkl#~EYQ;15`NvYJZG-0#H8pThUjmM^J z;I)}*mb8ihk`ywnf!pCEHVXI}V~L(i-Y$ zX?Z-Ve=UbPGR)#X;iuxD#ET~aIDLSRP^e%{1NJn$jvp*z)FsZ9B{Oi&QtIza4xGRW z8k(g1-Y`6AX~j!cEK5+EDq3ZgkPme~>p~b+_wgjh*kABk)j4)|@X@AaGLV^dK-HPL zCZUCbqOh=5r8Q86fw>^^dp0msKkwOEOy z=0w#cD5ECLOTO$iq+yTaai-&$%_*qlVL>w)ES%g$!if#c#I)o%u%fX6-5WxIuXzq>wHcBPT_=!m&H%W2; zcF^DHNcwHrJeckrQzR8mLR8D5lR(6%7PvYCVp{E0kX3Mww#3s))w*< znDFcpsA^?BIp&zDjh8El;R#)F05^KCECykfh;lW1+K|}1EZi~{aS~=_nVBid$?q2~ z#Lxri<5=H~J3o{4Ge*VHneyRHN#?Q!47}V>@gdJcg}P30F$<{?Q)2W`1?p?73`(#+ z0}n1l!n``q!%}DvqCm{oF6~jTmo($jaX1O`jIr@iiX}4=l!8is>OlS`w*b_2j($eV z^@l|Ik1Lwwd6dpYo#}khGr2}_BNJ>?#+Qk@40vj0R5+nKV?$8e5eiaNHj|C_4~Un> zFzJ%AoXAKM(4Ywm00KdMZFUEcjBYc6%Uq<1vW`i}Dh8t>jaZhecpVIV4D_$5`ak%Q zd_Lz|2Rv3+mGy@t$)iME1bnD*hIuP3wp%%o-b&RinG|iDf|n51plAX}ufuTimo;1} zZdpprGIA!&B`8oyAri$%&TI?#Ryfxb;rPzYacMZLE*^Fx1i64IGEtd9DpM$_Y7O0@ ziwh*~(ev-GbcT1KbvAXR^&E^`yFAmmjNV(Az>JcU5puB=3@#BMB*R!v^ejk z#^HpFY}qQ5v;+i@l?EvU4*5EQ3%;%mHTo6$4aQNAz@rYC$y!8|6y+%(DNIxe1d>1u zp++K(BEt|=Nl_b0sz4^!Kj3R(KZwd=XiEzD9-VwS`j|)zfTlFByY%U_Nren4PCY}p zdKWdfj(_Y-)nzGGP%XRj9zNPGNtOi?1u4^FPMYbx%v81lkOD#Wp{@A(a^n>VE@?}@ z(Z8>~v`8vafj4FZH;rGOp0*+(6cAar7Ghrg`6iw|xNN|uo7k z>*&!SASBkLvk_noC@y?Cz>-K)rN6(o%bZx3B9>uJbOp4xrz^yR4|*67YEtEaPp|>p zu@6w!G{j)BeW9ixq=28|ZW-RJ9GiXifT{vqZ6ty~ptIl0eZRTqG^bvE{g{ek2u@-F zsT4M&zdxq8i18r-_8_-?n={GzfSw!IHmBmZ?c^}MCn=3tl5!9=v@NA5!Nr@Vrc=6!a(%X1a^z1a)`xTk9VB9w(m!%s#ippd2+fT<2DqQg-_ zYi=;<%(re|ETxTxBs8sLFe*~WQivv{RW$>>T9_^=j0SSh`HY~sU=Q_TY2o1?RDVjl zJuy5wT-mZ#iE|29B`Qf7rH~W|f8+@)?A}q3A(X>RFqe2>0NsG+g3aH@wyd(Xl>+1v zT8&DzZLvGH^^Z;P*#b<2f}Euxfa`l-VbYNXau}Fi@HXurfIlg24LLW&k`Kd43NA<> zJquQWt)wm?C3Ap5X8^Ha53ixUD-P3g;abB?L0CIt=kg=c?f(G8ONOQEULP9|3Y(WI zi6l%^Cgkj@++ zR6jr6#i^CVtt*(7BoGuk)C}a7JMuf4lfT10*kQoqxU|fn3s~!vyEetDPe{CEAOkl9 zlSM=xl0kY{k86$}79~vo0Mg7*1eB#nWZb$)c53g>q*Lttq#hw93J>17BtE)zA+>1d zGGePze-V7CAgOS4?6Oq}3t5S&cNnZuSBzJx;F-cffpeb$} zbDE-+XC$zsfG*qQ@Yd)RZv+*$uKo$XXsDO|z zT-Cf+wl+Q}l*q$iP$&|GguTXYZ0z-RtuABC{f`2FXi+q}iJO|F)Tu?!Hu_Y!jd18+ z%*(z7y0t!qB`J?8m@8U6@SVi45*Z*bNQU;^&U~=Wk~r2Le(< z1WN$9EOga8rT74*YxLH^o+R$?@wi3RhF~zeh`wA>{ftRG0+3IA1c(>=tU6cIUZ!OkdS#_`25*?@ z?8YMDF@&huWHm!n)K++*GiivpC@R`ZwLt?5!DR&YV-1DH1dK$SMlnlSBqXHHBxOi( zP~q;?A*eoIe!Osx{5Nee7->pMq^3-%=}H2!q)$ju2RC>SUhFQCs6mO(XNoo=}9b$tGY^eBg-eF!0J?FORF-0 z4QZQ^j<<&j5|lS>mrtw&7TR3anB8&s{7Ij|2zhD5aM@E8GK3_yQ=O{ytG$4umrWUQYDl$#7{)r;02*0Fj8*BsV*OqykO=^N<_pEM7+g0fMas{ zGjlF5A=ew`Cgu>9NP!A|5c!bF03{1rl+EXN5R<*-V&Vvcum25jwNhO1ga(`hYge_Qf z=0$(TqcBbY5NH$_kZwUP-g-pd!Enioejg-DN+01BElWz04bq^GCru5+XZ3{Cc6h?#_#QKd%TnZFrx1mdspS)xyJkms__NlOa%f_)7pA$)q*!x0V?E9^ z#6%RI!^NJD3u&;}LWn7Qr9^@Op#_c-X9nSTfDYCK~Wsnt#( z5&$5A19W_>2yv^hFBKH#ooUKcQyVps)H2`!x?w1eRkn$9=}=K-Q7%5G7|Glb61#y( zLV#qcMQH#U)kQ>k?suWepM;e}f|MY+B5hoOMxYJhL8Tb*`k$#_sbf0RkY&q_u_U0W zD)fe0wvEMP(SWVl@r$3sW*|A5g`^VU8dA>n-%gR7!EuBjnR&7$!3xa8fmR*r63qG# z9xJl_LzK-@m@#Ey#7felxoN3X#DcVj9;k5=r#oM8E$!PFtSKs1WGP8BEEMg`xNv$< zf_nB2%YLY0_!d!yT*Q1P%B<3s0=Fh$Q}1RJ){$%HeL3k?u@NF>`3wn2u|Y~FB%m2W znCc#t7*GOGqJvQ2I0QFmMjmz^QicL)mo$PBlC{jsLUQCPpa$Sq!aX0@pZQtZ9tVt) zyhbfkF#W^bk%3NRhjf)G9ojK^xW409HD|+Spp^NsG<5D+oXI9Cl$lW&LCil4?gz?> zQl%_00VyhS3l4C29xpyh(JLE)#mt&n@lw!!0+z%AL!5wy8nMx%=pX6l{GjYlXt3C6 zchdg_BD(fnQ1Kl03?`Pu4R-@NJNEkH!T(vHg-~y zwFX#fgSd`yu>Sz$Qt1mr6;uqtES&=uB;JhR@~HHG5B)>zjyWh+7qpxk6siF$508;H zVJrhO6kIVS^|j)Ns3jFrcYvVctcO2mCHsc^;@U9?n3qAREXAJx09$BlNZv4b`FMnd z$x>96rNIQV9YcWn8feAg;us1ic`30*m;LvDr-G~)7;-J!my;#%R=(2_PO^?#QF<8n$JYZC045`SBWwJ9NwCUTG}5Al>E-7E zi2xB+YOAxGdF(#5!6il5xpUaNEW9CR;Ku%{5qtj5vnwA9WEdl{9+f+?9nm1~ac>P((z!fY6mlbynMieY> zU#vqeLXvx_V&_2gxN3OoeWG#@5)u@^rmx!P?g!l9feS1~lrOKn;`Fdw1v0!CdK+3K zBqc|1C4qVZE^6-1CqqanaH7GPF3(V1n!l%Ugt7||Sf3UkU)|fz zR3w0CWX;C2hssMVQuofRzt^`rH5s;MSDFkIM+wyw0kvD582V)ciM*`O5cMtt= z;F^MHO?CHJ$V(JzTn|7iu>8TnDB4*Bmox^B_B{Rhz7AS*8XH^4_5R}_B>{*EcMsFo zoJmW708y^u)FJrehdwSaMI;)W*-e|z?m9GOq<|1N-MI)l65xk&X_M(m^d<>ZwWvDy0?}bxo9sYh2ZYgr!A^Vpuy4 zw$-1MQ{uSg;UpaX}j{10hNx2Jl0u6olOsdEs?0JtQYwHkom#y2!} z1CQgS1arFXC zzcC@{jjsvYTpHyJ*ttt82>^+bhzBqzO#qUfrUY+#B0)=%>U#!8cU1O(dDT`%!4v(PKu^x|$Rf zss!#@Vk_hr%SuWUFo-}VDqJKeFa#WP%r^kw97R}(IJ6@PI#l9?D9ln3IHuDj>5)wI zEzDXyi^IED#c@0)Rw7;?&q0+eEc_G`DPRoJ)IxiT1hEC^;jUvvbr;32QDG)LwB~J? zI^q1aC*(p33uaY9N98ULE^)T-@6&D?u!T#VB%lyNgz2W5IdTro&LdZCaR~-W#KlYi zlaxzNQOO|=UG}lkv99`?uDYW-l#2p3Z#WXY%Ub|9ESeGkz1#- z)WyrS7_|)?Mz@BU#OLFse%s?Ma*0!=0YxDv{hKofuonc^QMei-UiA>774W24x~Ea5V`i%v2jB6 zY~N_s$eH$HN@34Nj_X>GPT~POxB!Rc=~3iYrj8wlPkKU7QYyhDwJlHuk1D%Io;bH? zF&Kp{6DR630>G6!DA2nDvCx;^@5(Znl|)8h!BE&0Z3NKNgUK!C;~2bT@Fkf_1QKcs z9~*f1S}~YnwPGcbsv8=Id%4@u_a>bc_(9Xs=Q7Q8R$!=7**;4l8f|dqln^6DgqMV1 z60M>p@GQjr!Sna(vL@oCN#Sy(DrDS5z?IEKf5x%=8Jzix7HIS@>FT5_tdo^CZL5Al_0gwfbx!=j#Ruv{5r(hMqHIBiEK&G zSY<9%SLd;gwe%z72jMTFJu=C%&YAo^=n30*CS_jRVjX4=Aj<`W? zw7S>|07wtHNyp8c60B0jA!+WCNpM)vf|xLH#*b~|K(Cebo_V>FwEAvZfKAqqS>IeD0Y1!^orNo1v8 z?gk7Vv?mqiOqz+w#7LB+OU%naOQ@wLr!`0(Bwq9}kH-F=@ElyE&6y(*t|2KIq|g1_ z^DjCBq$*faQlkCmab8hZ_~7`O_$KNfNF;Kp{E7(c1T{*`$!A(ZN(>1(*pbqM79w_s zRIv+qh>K0s6s9%|T#gfp!=o55%UspgXTzGHd%7qFVD)xxK*g@Z&FyDp_?*Lv;wZ-O zTu2BQ10(+cQ-)ep;a?Dd=wfe}k)bh$x>xWm@TViv%&+1PJ?iwPaH+UR&U3DwONnI7 z#9StdiFneG)|r*53kea75l{;ooMGlkz)TY6;-;loNo0eBGZq#SY!s$q9D+%+76Q?= z;(tc9%8+o%YJdn?QOYS$kWF@ubLwqzH!Vu=2cu zM>XH2^4VxHa_Li*nn$*(yV-T$zem zr6`6ZsYOAV;#fv-?v!&ZXR|Y8$8HTGs+(w64EDT1s@RrB%g+$NCKPK6CDot z;naF3s2>7)CVE#mlg_hTqdCeIB?%E>8JQ`OCk_l$ASCZePz5m&O4N=|TI_EU!sGit zf|R^urLPL6MjWXkWRe}h1SLiFt20nEc5nFW!+4Jj{b}P0{fx@Q?pJA zN{JoNq>@7r?9~P1gU|xfQmued3Q|k%1(>CeZzCNPPC}A`E<;=z0YXQu2i3ld%*?Q$ z1GPaKhQGJ)v`_p(RHVDGNnki)=A2Z}KioD9$|M39Uez_RZLL9}(jrP$Llm1ZrNeya z)YZAf#LWc&0|G#8$#GLwr42pUzAF4SaG_9nIN0^otLS10lEDs59?kV9md3oIN{M8; zQmBQtmufJzLqB$KcFhK!= zw>Y41ACtp&((3xdr&=KaT20^WR!}6nw|i10sTLtV8F^gXWrh# zN|cHgW2IjHm57Pnpi)0IN2sw#qXH=W_%%J4RHTr@!kqm*Hrzzv01DLmrP#ybB&lDP zp)GI$P~{jPz|YrR${@cXQ6iu zx7()55UDC(rAmKDAOLI6=Aa#k6=CBMfHNHdYWcS9_4R_x;3mSv^t3&HFo8-rPpO}Z zlI5H`HOa8Vfi)EcoyWd+`opOqI`j<;K#EkIr*d3^)Cukn_}8s4U;$`i+Z2|utN78i z(WwPU1M`HCR-lGHpp=(mUM*q$aPU4Ko^WMF0UN?MGJ+jFg$tK&p!#7oxmpx?04TII zl7so3fp=z2Xlu)}dkihB`Gzk*&JF8t2KVIVgoOuI#fW80H=2+KBD~m-IE<;?AZ|JO za?|N@32?v)XyUcdQk{KZs#nZNN2MO1L#Jsh;h*<4b}rb7>dbnzE$^X+DJEN32TnQBn;JGBFh7vtKhp-R8;jnH233C6Qd{~Gm;Hn#ksrtAibEA0H`De2}x>MLcn%6 zXa0|gV8{f6v^YdNHwBVOAxR<48JODcO(-AR3LX|&aSFl|2rNiqQVFRK-hrFNFe^w= zaZX$HKUO}FL3wX#cxmrQs6yPLo9F0iR`cI#5!^yeNyJDnu3J4&5^G^qxl zlR(t3*9fq7sL<8@_<2H!Mk0xDeJM#z2zNFha^(2;qv92g@Ywkc3=%x{{V)9!i>LJCc=qO z7w)Uw*fFjAVnrkbqy+<&+-qBP=cOS4^n)fc!AM;<155H44#We^o%`Y?7Hvz=d-m-P zw184Trj_Mi3w7O~@Z!{s%LT{@dQj2BKMg}#`(eZC8`s0#Ee#KcG`kX#%GmZH-I>^T z^H%p_2}z?9y>;>Qwe6B9?kE@(NRfq>K35d z))(tfNMeTKg=_&g2`AL=!3Lr1-)tIATHN_RT19oDhph)DaK}TV)*~(=6c#psLLBfx za!IqFYEuT4D7_pX2C=_`c)8vvtu0=5+wl=TU}#`&^$p7@4OgQ(($uTs$_)tH>-|MJ zi8oPZ)rEA^-JeKnbJ4U|E2rc=r9d!PD6M#R=e&8oz4R$IEusBCZ;vLHUUz zU{=(HQNZuPAfKlsaNy<9-+o^!dGm~JB2iEyQtTSUUX6cuid@-zdA)CW*jYmC1fi7-7Qhe5%%K|tf|rfa!;uTk}?h(4qeTT~988o_-Jt!-4*%tCs8M?`m|! zumNRhD=KCru}xcZTD1d?FvVpcok;nR@m*5NU+e9RP$SEPISN=Rp#h61@Yk;=$?t(l zBstv0X{gMTrsbc<>EpCf=HMYrl#-7-ke zlAtK0CYC12Bb$bM?mYblEy)330$e7%%UShe?m2ageB^~CNmz3F+1R&}xD>aP7?OY_ zl*1|n5&m5UHvWT^Nb?!WiDAIiDRMju{EocaMp-XW!*uK%Lz#e zLh9kWp2mW|-xdO@=DSzko_CCF{3tF+H+N=l8`oFsTg5JBRU>Lt6b;k?x>!&ae*XZq zNx|j?fGqsE_1D`*CVm-7E|ii9pl4$G*UMOnxB&iCkP3+PGwtBh^#oh#hEj-8ZJYDg zNTRGesFvE51D$v1{V5R@B#@E0B}sQAa^=$gIDgsS4i*n4-mW=XunLd~beyCc7b9bO zhaRvflB9x_CtwWQe>F`!QlEC?1Qc$Qa__TfMIGyX;w9lifFX*t&>M6u^*u}gN$vFj zNEIPu5Rq-vt9$;~ksy*3eCg65{g4Efsk0JW$US+p_(Yg;pelq00Dvk1CjEmKF64dj zBh(E~<}Av?F#+|nRJWZ!x|_~Su?iFffb1AKS99dh_94B6k{mlf%ji1ZFQW*Y#lsRq zcV4FLT>*MhDv)3e?8MV@nN;-fdEuyh`^K;V1UW27b59OrKAtg>mx4l=6f*%|`yQ|A z*5_ENLxzVt5-j1salsF2TpC{$$RgtYKX|^01tbe3TV9&)61>0GktT z{{Y~{b*Y~*6fX9m)6`zkc0vdxH*z#%UcT)T;lfH3rNaSH7$r*nT7u+Ju6$TE@faa@ z7PWWf@0Fu5Do9E0f=SbAeLnleN)!mH1!XDpr)?gj8-Yss?CjhL1tRn&&Gqn$a?r+x zpg7w~ep|vO2tJTh$8`&q1BRteB!K#I*XijGOa-+P z&ZK}z{!v4?_%^mAY}L#j!%uhE#hG%GN7atH>3;|Gsfw&9X=Ii9>9=UGYf-^GH}%5; z042s?SbciY`gp~Z%LxuET}_|y%CJ-;bCjeCGaCT=ZQMPb&wLhl1?XCYd--VgXtEID z(j0*A`1xzr4w96zVZ>JA$Rs4(SHV16ir8TxAh`|*8k!y2+CP@DW>Qo@aB6A*X1#SL zjBC?qoeSm@w`o!d4Mq=R_x}Kz;ncSNH`MHTTkGQ%(Ii~E=qc6t9!kIe?qYgj1SyILNMNGQ0W~!P#vuiP8?*Qqg9^&@{9mr|Q-o7eX|%E! z1|WwnDqPSPwjxRbD_UU47= zl&BInF)1N~)4y(e-j%|EPEu$XjsF0+Dj^jDlm|OgxkR`s>^ohEX0wbGh zlmG+W#SY&(+#18mNGWG${%SFHHSFNAZ(!|!&TGuL^3hZ1wO-js;eIgEp0=XOAl0&&dYFq=_!|75Vj6|>l5HIEL?P#d5l$4N= z>h>f6(p(L>;0XeDNM6xqJBykF%}4EQOoA8(sq=qgAtgjG zEWiNVxo;B_4cwCFfkF==ro0Oeask1>l?=ohGgrVvd6w{yM&L_iwML-6W7a#|4L1OLALG6H2fvKe~3w!D6VkOB!+_?l; zgJaLz#X%`0Axu=FKyr{;gfp}KKj`7H5{i~;a*$G9^k#oA2cwY{m4>j&O#3NEDX1M5o$JPOf+xWzT$(#SbUHm_Tq`d*v7OfacP%n_AF=g4#v}VTgVLbFfKqrLC)a#jHLYI<+=!M?D*zbfhdPWyGRO6)njikdP>Q zTeoi*3F=Iy%~pC_OE#Xyv5{QlVUp?vSy(VEY~+plRQN_f&{_jK>IQKSCCH)7!pn-% zbByUQ)QB?B5`9q8vH(mzg&La~qir|kFn$l!&`FNQJ87z_AoVgPTbOBRB2)PE4(47&ZH1>eVSCHxavK%;{ zh(hM3;`-*Nrchoid6hGTzvVzIEE@RaJ*MKL7oQ6vT*(4Sbo^tO6S!t1GZrAVTwXsq zpRT{EoOiaJsN&eHUNLyD-mTR&D3+8VF08WI6$g+4oeW-cstSepl@voLBXWv@2z#*I z<*Vhft6-BpWaOp9#T0;YrSlV@54jZ^GF98Hf`SpM!>!sq+CPfy*otO4`+8MYN-QPXpR$}qfJ zJEcw2d$s<`{*Zshe#ZWt@a#Sx1;Udn6@v&wxyKQSSYRBSlgJfN1P}uP(T=907_O+Q zD=J9}4(b6V(n|r^iE~iZEs5pu^(8sLWT@0=1(}H>W-sVWdL0}pP7+y{Dp*K=;vA4e z)Ec#PB9E?=Ifbc7{{U?$^(cc8*dzw3oQCd84sUE<7<3@!Be=k3YCiinC+W_HF$fM- zsxtsWiJ)U)tBMQkA&JQ&Mu#<-81k}NTqGmr&&>joe7;;{lu$@x3kW&A(@QnYsu zK}f%}A49s2*4VRpQ>RkXngc?j92gq=shNZrvNO7pQaf(Taw8ogJVK~tP@&5}A2KOY zO4&Hrcyz2M2~v268_6(8SH#2M)>SD|$a3pShkZfDq!y@W5%ClLLVwD^+x6mmJ%vsu z1;aRG+4yO5u`0qDc!Y(K@nubtr7cNN0H-@WS+wbnQ>4BRKZnmqqUZfXl7Xi3`OLX7 zfAoY{kS4m()m+d+cwdN!RH=-MB$TwOf@PT8LZMQAeniU z!h{5D$2iO)6eUTBy~sj9$3g6eWVkN*#aKa(xd9-ze%lwIDDGQA7l2j^ZTDoK>N>z=Xz#41~;fTyBrLQTWC>OGt6rxoLPp)@U6ECN&}PF^n$ zF-gRtxsfSJER{Q?mtbj9V_JSWelxRgh&@A;=zR|@6GZ$r^!;d)>9{mW&1xXhsv3a#-!r7?lU^ESlq#+nS(O0=t<6y zELKyM%?Eao)%e``JSz)@!(fyFl_@gRgb<>nfWXxxkS=s~tqf^&6~WTE+BH1HIhlzW z2`IlVG&B_ndAZmGLJI%_rGQ9I(@(3NhYl6QWUl}el+825#b=>fWf1Cj89*Qsbzs5B zF{9#Uq!nT_{{WJimEARG$&}ICM=mPlRyx6^x^_Ab{2_Xc)vVor>H5dwf2(;eNs+;s zB@?q+Ur&QSGY%R}Q3XaiBE$pp5}V^g#bXiLKHg#Yd6kXvZVvwOgMJrbktN#E8^D*?dSh_8$;zpKCNq(Z_ z60nyrLROeFix3h$P6`$CHicOwtnG|X>RJ_y?9XU0l9IBiI84B#62@G_t&{;tEXq(1 zXQ46Xj@#fPL(AnLek&-_^Ha(B zkP{o_%`QR`;(U@4LRB6L3Q|B8r(`WOAx2M%K{5MN?X8~^cE3vSBC~zCCenFyONj8)GPoG(?M9ImA|qOK=4J;|`fCyaP@Yodb`0+?lOLUXAtX(dp|+_7S9aBVOEDN8E5h*# zmXzV~(pMuCwdFFDP@oc4)O7}9xMsXzyHmlDKM97IlqV4_30g5yQWQ#)IDo9we4*aO zm@`&BivIwGXUA;6UvwJ!Rn#ezBdWbI%Hd1=)vO4buT4TCU-7F#&heN?k@9CiH6bwr z1yhsuuYyhBIJtO<5B~s(#;wq%q9)Bb)h%l_Dkr&cQVBapnR{c{nTW)G=Lah!qKx!P z%Vl=}zJLbg#^IxK{w(?tl=YXVd6b+6o8a`h%k6gqRr39r3AQR~{2~l^v;%7NeU8W0%*Bu6;c#QBn1!+1&De_ z8)hMkps9#ENpc8s?s@yWaYAvuA#8*w>y@a?`@NXcUE`$Snq<7p7=c0_?NMiHki=dm zWb;dwKZu4@m7zn@o6y{fI!I?~i-Ig`<7Fm#Or^0&1t|w!R~4n}O2!|JaKueS<)J;# zhDw8I&TRbjG&;GB+4y|wq|TMrITY+klLA9H11rstR#Jkc0EjVE)dd8C38g@KW0H2O zge`b%Ow=S9*hBFo1dB^_=M6^yI}+_vSm1n9hpik!N@Rg5TGqF8otra(;bLFLGjGRM zi8la2L8e_wC;%JoIk(T1DGd;aDzBy78=8mj;Qs)Ylr7Mb&g!u?7WtT* zNhJ*Lr~p>`x%2+v7?MdOC|ChncWM^`oc(Z=QiUpxOAtrMXyN=X44r2+_BP zc?!VndjS4L*W1gB4iRgzBS+hkz94l)w(hEyyr`{htMQv5abql&Vdk@5=WqL$)25yB z@nNmZ3)-Sp_E0<9d%3xJF>#6Hf_P79qaV*TzI>sp*x$L0fx-!VN*%M}6yj<^`T1#@ zEaIOd9ZB4yan2jXegWpLTX5Jo4E&QN!s5>ykY1)nW(ryepqBp2lNZt29va!;lq;2(282`saN4igpJPfl61tlTR%E z^YrRX=@3Q|3~SN|pWl41O?AwY!tRhbSiPDp-I;M}17((IP0=cLk`Q#X?;DvK({KF- zFUBWy_|3k(!--*t%)ZYT&gvWPhNwrTnW=Ln_Y z&aha^P<+*aX__mbW&RK;eUI3u88Se~Fy;tPRDShtE?8b4s_SkF;c}GqG&t+{O86F7rh68OOWM1yKc1PzM_&Z2Q-PM z^QTiZ@b{`2Oo-9(MYWPg@x*Cxf(JwHyDim_{{t-7jk)?h=vKO)XK5esB7{I?*6}&( z5quC40~d;=v3=y@pb@Qi{$iU`RnC%~V)XEj)o=N(4Xdmo77}{BRz-RN&mJfH2Wz=a|_9Xk$#V|7FoN(rEef3^*3&ALND~IQDetg?heXmiQIax=x z3vy(vxL%mNwo$!&baU}LBt2w!_PPySen^~UnwDnkxC@0-u}t>@cG-PNKYS_VAf7WU z8mjQbxUSj5^Iz#c!yZg9aH$*>)R*iRPe|p6``A_nF0D4ug$6Dg_R3FDC3i4>hE$;N z=d;SfQze!bJXv3TN6y!+wyP2N1OgQ|b7H#8L+1Rk_Zw!eMmWQ8KYaew4Pqf$mGJu* z!a3sbHkXOX_g!tKX-cTT20JHMCW=BX*#1?7O}mtuVQo4dsKtBiSS+KSAwI!P?t(7E zZvZaN)V%)ix;M2Zvm6VkLNu>=e$-^tr7@;VP$N>B9;x}sSEfI@)2nz42bK>y#AET5 zohrYR?+!lxU_3&aY1~ceg*HqbPWbpM-C($8*Kxq+5dhw6*5=iDaCi7HzY~cKVP(d% zGLVC%x=64%0`{VeH=RqXIekkLVZ*P#k{4gik}d6t##P{=SRIE6(!sY7t$x5PMP_wW zosWd$a21Fq7a0YRXZVdWhriOH?DscrtkZ+OV8_+x(lKqxc_dt0>X<&5P8}?yxS3D-Q0Y z{JptZH4YgP!`lD&i3zn)f5_v2A>q8h?*Dlm@Ufeh8zKHwTcSx?s z%shj$6O(J@nGlc~p?fDwhcAAac>Y>mIVsX+jK>jKkJT*8o~9@uNlZOFtoL_{VRh>E zWs&3B&squJLz?1fFByvLCel*}Lq{BGzcxt{Ig`Ki@K?3r95}vT5XF2~Tf|f#Uz)3Q zT`F5evCcNc=1KUIHlb_;Nrf)j4#YvWI9luXwzmli^)ufZ>ijB+(E9v2fa1?E6JXg(-A`<| zH-sD?&-V6bn(uF?B|s7H?5KP>cP%&Poh`jQN8;CLvTTCk!T$iZ0SC#fdme;3rLcBW zzp%8zMB|Ap2?B^ky1drmIfQFp!2*^H^aPOw?}WPjHPG9pz2kZ#m{Lglu~E7K(?we*J|FNe@G)2?$?(+2k+pN(}^I&v*ZGv#E_W^4u8ukIZqVcud&d}b&?(Ze$=IS=oZ;5@NO}`5U1p*Ykac! zdEwPJOocLb7t`J&{rW#95n``d_hP44_w7pB=P3*mzK*lw`a}9DO~2Pd!~xsrK_dW+ zb!^&*wW$pGF(Lzs8TxeZ^_=)L!V&vWX|AmF?r#GHAt0iGp0KFBx&O99io}914lP;} zmmIGqydZM++W~TlLv2{j|F~=WeMA&Cu17cRXH!%7c1hkYF2UKNpVaKg?reYY6PuCJ1oqmkzk)GvUxHoXriIHPZ#huU`j#+1%z<^8xJfCj3|Sxio3O zET?>?Sklc@<@p2eL>5jU`tHxL#vEP9`4g&6MVq8Em~ z(lFR{+?2ecSMc>%m{DnQiZ{L+I;R*m_;xS=btC#FMRMLh`(XL%!q@7u;hSP|+xSj| zmsG;5|GZio-pMR0WPXK`=JfjBLSl9MUpfv8Jr)HTLBvxnrN}H7nFV0PNP$Ex$o|HpG!(K- zJDt~#Xuy~6x2bM(ot)~7aM8zh^hBeWQJw?q8O+~YGV`hEAG1T29EU7NK#ojLT|%_QA3qYJNiSe6*V=&rYmBe~wP&Dsj9 z+n2lP=4R(gvYzgI>}AHmb>%x)Y?(SOiR9*3RD|Mr;rW*BFmG78F$GJKNs;E46bbZ8 zqJ*wWw4ZsGzvQpXU*VB0FW2z6BZ+;pysAc^N!@fDD=ub-f@!bvfVUPSdA4PM>UY=| zI^S}5}R26674-rYwtVxB@>u%n>ikh~>v0fKrW{cbW zop}s)Hmhe%U$s2g9+yy<(+vSifTHlL)84-8n72Rf+YXtIwf+QoGB7;qJrJk4$z%IE;*8Luq1UZi9s%D(Ul|a%J(yNmtYXWq1z4 zcyhUiKHMAZ->iA6sef>WgHafp-BN!p(Rb^PHNf5=-rLxykQftw5|FTQ$si)}a06G% zsPU${oW^0?%mNE%Fs1lB+nt}D>zs5cG>xA01V%TiS89<;h20xJpZdUcx+3&?;L4ZU zLdm^%{lbLq=(Yg2j2*n7Zd@M+mJmXY-jCObk|JrASr^%P@AC)Q2Oi!xMTlN=+f~;G z1N9oYliwDY)=NkSpH4OEP+DhstlH=w7i6eO3w9EuFoaWt#b`4U)y_eht4vzxFRU{- z;dtION)ug~8g<8I--5z9PBmH8k@U2cGac~K0iK6Tzp#dkQZ^D8OmEqes=q305vqN- zgrCn86z0wvtIAP`!o%_$mGqNazI^ye6BA94I=@e>Qnzyrqg7KEiMLm=YySY~o}rwM zwMJ7(?kbnv&8qwtKpMy+mSaS6kvvGNC(l{P7jBN&BB3f0kQ77KtyAjRo2k!>a?Zpg}>B2_gt zmZhhY8Io1aSaRBR@~DzK#zw9Ra|lB$!N5dSjv_}O8OMXvU`3+??x{!hXMB=5Iv5ri zFKrrfXyQX1kc|40`0Wa6OUpnK`X4Q)eWE3dvBPe*a$=is3A`C9by8u`R+(@0tzBoF zsY9|hHU|Yx#z^@Xg4S9y><(qR(y|{~)n-)=M1kCcC#!j$fbcoD(4O{j4@nf|V88qm z8oxPwLy|3iD1D-Z83}D=PuPTz6-LN$uH7{1)a)kk79Ecqg)g+DSU1T@C?1U zm4al_dFT2OuUE36ONT=B6B4`VR@>cN`dHq$z0ov%tR?nS%nOq_f3gi~7|21q6Wxcx zH12p<(nwm6j$H1)tzWOA-rSGg+%Ky~XDhPfqH1*~^WC%b%py2ab7?mSHn*75Fa0Jl zX~I4<)R6IEI32Inlp}vo;d2S)`*4uEx{UKvlbtRl?NSYDzTqHzRtJv_cBnteE^{Y% zFP8Z?oQRlyEXz5xUk)!3og5r1XAFD>NLzw+aHR1h8To~Jx>l&Xq|a6{{YO> z$elz%yP5*|n%NIh`|>t^a<#~DmV-L*T#s+; zY(yy4H||s!rY%u`#dB`0Z5xF54xVCVy2P?gn^v1)<@FGw6}WAS{IMw?4*p8x;}tOu zX*}kBHrclOHRFm^?M~Hol|rt^G!^GVSd3W*}thAxi; zKNdS4u8S|%4*vk@#HVXeDEMCQ<K!lX|b1eyIfnMinr$U~gpT))!71m)k-7Cl9c<0Q8bURYa>MGbIYNWjR7)Kav*H@ z;h4;UU^R%;_rn6^PmNwl-hY6U&=~voVpP^rdoUi)sy;Y!XSm6L{ff}P$L8ZU(i=oHAOHn@vUCw1 z@WMoAkhJy`Y}^M`mqd{ST4-V;IfCS5iE+5shJSWUV7S%9xnUhoLD3At5pv|id>=T! zG30nUBuI#n_3BkxdcAYu%2`r0Kcb0hWn#mYBmFn-rhmA8`DAO(eeX7v4y?Je@ke`! z@=M5Y9L4}=FsKp!2~h%FO3RyDwFEM~2HArJY4Oc_J$JvExXWDzS4gkd(H)(4Kk`lc ztolV@`w;8`(ZzVMe$e6h5iv4xKo`4P4wSo~GR;%dbT|(&x)ap4ak7#mQ3iBb*HowN zODHp9{Z7RpDJfxTy`00U6Ux3&Aiy$PtnjpeS0P51$Wgc?1j}e%J`ZYhY1#ofs;Q_{ zuklL2>L?*utd#W-f^8neFmeXbRniVSZUDwzD?<68MT zX)ZVU;r)CdjYIkO_3JT?4Gm>;kke?NF)@YD}w)r8-%^Hc3zvMCKwrAcgX27yVk zZ{Ill{j#B{?R>E_M+RNWm95R)p^bzo9M%`hvv5-PyyyF7XJDT~6$D@s_JHiZ-Z8N( zFSk@P8k1@bBBhT{Qm!WXdvGyqKc{0#Mo{Bq^p!u?{I1Ja+q&jb$1>mqqadvIM)}Tu z3x2?*cYB<<%NvQ@Ajp|ot#sq}mWRy{ElmBr=d!^>ypJ7Hy_8`~QV1m8F3_W^yyL&w z{_MU8^S&CdQv47CPUk(?8~Iy+{(|z-2LpLXkl!C=SsSMRPfMgC@J6(SCH0fmMAQX1 zjo?>>?wOFXv{d%Gpdaqy_gCwapZ8F^rGcfo`~6-~fSr^#5Kz<~<@_q*?}PEvjGskq zaj!z`4WtJczI1DUyKk!ychP$xmozBEWSQ&Up&^j9xPK8{NPi%K2%v_fST-l`5cB=ES_K%frsf?9b&8-JEB zhM-mSqsjFlNb$Xdb*=AQw3>0xA0m^xkLi5efk|IoPy)>~L0y)BL2mY@ALEF7`P#6~7@ zN6+QF6(Th8ewMp=-dL)@gG5y&vq0`r@h014*>;Ys4~~H#CdASz>Q>BSe66%w^hJ%2 zkgJ5$-cVbDR&4(9HXA6#JLM~F{K{t|vT?HUr}3L}*nC%Ci%xP+p_et4C1%p$qkQ6rbPq%n zIjjR&mBIO%YJ?yi2Xcd|YI(Dbo0u|~3cKpZC&uq`QemZuMXa|i>69SGs%YO|LQ~YC zO6jM|ec)I#K3)~(1k^$Un~;4=HBH_v`D&dP7B*2SsYVNg`4z+3;whq}CNd+LKyWOB zB{Hz!4$v9n6psmE1N;;8N5)U&U zPox1o5`D$3yQD%DZ2J8!olDST4>X$&2?7Yp_GJA3f$ocsE0@S^$wMXskC50A+A8; znq<(|YEK#=Il1d=Ase`Frk`HYJQn^Ri{ie_-FbxI(|FcVvBOY=}9l#XGHD0*7zf?H?)= zCOqV_DRkGhm1FQ$7P3YR-_LK|qaD2Y#Na8gtA^(#K^(yYq+jvfZOH?>o(TEUpE|f! z^6_e!dOt)jq{=JG_bDXXiyMPTNt%3Z_J1#|oQ>kYhTYr?4LkU&CaiJ=w7^r}NGRV@ zR{zSIsi~|_sMmZE14yHXR>sRQ04ra&e#8qa)Of#%Ygx6f_q9({P2~Rvpb2Vb!G*EG z`SqWKuXTxM+13cB4Z7Qd1UVRZsDmsfy*HQ`zopvWyR^u%mWP24kP;HWx0vUaL!O?0 zZ(McqH;Km~1yt{dC0wNk{pde)1q%l}Dm(-G+sIRL%Mj4Le}E`}-lbN- z#}vj|t9v3g2$~*PN`e7Kbg-9<-+Z-gPwWjqsomFa>-Nc&!RliH&RBF*85G%Mmf98t z-0y9O@RaE|#?+KS43_efAW$_3fxvsr(RH$%j?fuK0GPh!?f$*Bcx4+>6G{&X+7T=_ zJrT36Gt`KUuo|Czfjpq8Pwyw8oA!S9%H{jo)^$G-B2V?=vGR|`^Yp*c;7k-XdDNf# z_XwWy8)@&NGT|`Mep-%Bf4^w}p_jfV{cptZrW6q?o}BGeP`KutVbrV&wK7u$MeSu6 z61mLpxhTZDZilwZ=(s(({N@WaX)ABp1w}EuS$p_ffKvaK;n~8525qG7`9MwaLet0m zoyGmdGy@Zs(Q)UEqv_Sx6CvI#PWoUeiR0@h{En-Aa)j)BvmNY5|A)$dM(#X3!B!lZ za;H#swYE!9W@W2Co=^RB*Hf6qbtpDhZ?*HMB;p;yfX4O372Y|DgYxBvQ6VVbthg{dKS^eH^B zxVV`@3#|8Db8-Ji#iOI+!u}p`CYPA5q?(c_fQiyF#JH)>H8}-ulby#(j4!9&9Nt~r z3^d`8+xdF1X?5S~7eItUF9$esB47U%4kX9J2yAy`4Kcyonrmwd;=(*zbqFBSCK!=a+3oE@ zQeT>B`nZN|g#h&ih^C`%1e?!Zt7mf+dEU{FgIKYNQ-k|q&(%nTb6%x5%ScT$C_Xl{S0OXeHOn8{)>BY8 zQ5Xvkbek4pzzKuKvBEDoX4sjkovS&?KQT|?#jaI^48*m*fz>&M6DK^q8{;-r>*nte zrBhzg4-|r1>V(L<#%phG6ZSpjF=uH)^~#e$MU(8%iHa#q#w0>wLG~XijYDYrEd3e7*b?#kL(u6b>GCHDKCzR zy5_O589Lhn7q7OUbpLN!9&v!=sFa2YT+!X}$lRzhgU%V&HL(X6X4J@TGiK}HFa0h< z)P`X2%>1cff#HT6QI_g-TM41bILmudW!j@e!WzyHc2&{T{ z-hYwaSrP%B;cs-Q%|yr(B`nntQIBR&THJl8tHZ@rBk?(&55m(A(<6nHb5ehZl^{HF z-)Oc46jBO;GHfTpC_ufm1$2*|iVCAo6q&VXSP@0+OxO=b?3F(P^^88;nVlHZW(QT_ zgwZn`wAGKKnr#8Cm#-Z%h7HXXB3cRiH6N*qw(iPKxzsSjAgsuyg~kD8P<{20=~$Ob zko&luwGB=A%>zn|A!?^WvNpAx&YI={$^;+0n)eL%}R0dklMXH*QDS*a^;~E z-YRt@uAr;t)EzK9p&B|2FAvX;@+98V{R)1tl*A7aA9n2F)^-Z@gC7>t zK^0hv1m~VBKLFB(XMJY1TYxgWK2C-Wl~#tGMH+;GA_&jG{VKbl9>r{5VPR&>bmzNCQ4l=Eu0;Inmx zq@RJcw$hRvmSBr@h8Y_O5M3LLoiu%gCOY_nQGI41m zYdhqS_a~kn`-qRVRy!5X%}8C1^(2_Bc&HsnIp9}NZi-D@sd2JK$8BDPY7Sas!s;*2 z;HM-vTOA-mHC(C;W^C7*e04O0Y>s*)VC~t?3QGo zIC2$*rVFZD$mhO0QQ>oDl+X-(B>J4=)9S@{9zEEm;$vixlhetMy|l0Xu5aDg=YXrK z(uY55s3A!r87$(htD1fGkszqJa^WktJdE*lEQ{;2*Z~-qvKoIn=)LV{Y8X$WNpj}C zEy}aW)FffPV`q5_x-hs14OhO8pk+1UeEH{FSM91yoxMdldO-JRD5JSoCDpB=EpFs7 zo+}2RzmUWvf+JAqqm*WSNH@_{S5G>m5Jm1&a6qPkVa$2pEyJIo4J4WQlPE(Zo=3HJ zP42%2Kk|i)vC=d^xwl;61l=KkHXi)Bf&RFarSo^QgFI@gEA)^yIw){e9gPJrDZZ*) zN8Z@NOYUd(9S8C)YU64^3<=!|F_E=!=qm!<4p*KiYOj66mR%CFBy_lKe7n|d;j#I) z{i%RrrHA^X#$d+`t#OZC53pG4Xyl!H3dtBy8MFYNP!_Ftv+Rf@Ycw##aZ#LP-ErKh zLBpM(08o@TJ@wSvMu$#K(Dfajr|op=9~EV+#bpg$q15e?mBDEx*c*+K2iA)6RRPy(dW?faf*nV|=k#e4%*bK>4(eMlqR9M|$8>)YE&D-`3_LUldC(W~;M= zs7AR@7iKxyJ=vXOXFxyjTVul{?IJ8KI+cVHq%HzlqC=)RQ(YI6^JOX`^v7U=nPsG~ z7Zxl>I?23VsVtQ$q~*eJ01!mcNJE0FwbuJdF`Q6q_fYJVtSV zCVOs*{2-sax;zPa?f+;+1sN*13VRK2+y4X9JQZM0HIu3q$L9cJ9Bk!5c%_@W&VPE` z0{=D)k0Dr<5spLE)pc2VXoYC!ZwI~GX1`Rd9)&hfhHzbVJjyfBKiVuz156D=FwDl1 z_Lh=sx}X-AP@SW{oeXeLHP{2g^^n*#0PXu)B(iJ%YNT_M*9>7D;xM_2Qzx(i0)O0K z%;TRo`|U|2Vc4W;*M#+j^mECXZIxw*jTqOql_AtLmJssHG4SUbK*5asH(jpD2&6lE zR(`_H`paY5M5#Z?76vcG*!MRJuE*cygkO+rbza+|HCE_@4FhMOlZclvGR2@*%+LB`(_FhN^m8Fnof|)bpUwgWFN@=J5kd_@f}}7& z9Bu)Z8*FUf=V5g!oK2UJ$!ygg$C;CNN}ilIsXo=edUicdXPo)##bZUJLQF7Z z#k*x@dU(9fS02iIbKqe8RS9^W?V@45whfXyKnJgMFV!8qlD=mcKEz#Z%+0>ehIY=8 z-FkMwX_5fzg3Sv5_$)$z_}D8Mqr?LN*9}hJ9F^+SIPA2%|M;M_>BF1gNPy+I0q!3_ z?`2WNahzZh9K}}qx1FV|jJ9ePZqHy}k5}Sr4$M71vb0OIS<0^y(y7CE)wnc=*rK>n2aYFUuikQzPlPzcgbMZO8u8b5SX`E89SO2vlWbp z4E}0zy$K8+XK=(f^%^I95=-dc3Zh{>sW$_S1*C!n8%>^+zyBTMNP2%A-B{j6`3PqY zA3KC_=NsIYD8@~e4M#;YVdH_y20&c|N|vtGHdj57MN$HY%aI1^l~r*-=q>8C_+N^+ zyn|3F)mQ5f%!!I5q@#Od%KGQ%l%&taB()xH$7(S`17=Qu8bfC$S`@LgY{7(r*~@&w znkm<1QW7Nz(>Bt8x~Qq5xyWb3P2->oKKquer0QwrfB3Z4cm zCocN-`Ua%JgSipH5(TMRCgJo%E$yC!`-f97f&oAxG)4zw|G9S$)&iMeP37cy+g;6hp^4T~oecRRb3?mmaWFWub2dg85)-FXwIFV{ptvnGc#@r~wSdKB zv#-OcZo9mYLpy57tq*EikGQ!To1vz2KZjXbxK}S@8Ol(Jr?LXdkwau#B}Ok-4-tC$ zMk$aAC0vzBy@Qja+_ak-y|4bX8=ufzd!3#;SotH|CT;$$-wp|~%8kD)WkImxB*m#MbOptkMt%h!^Pf&}&4v*=JwhV> z+bwzP=5MZ#SEw%5w~kFc<% zG_ni+gJa-s)?Z#%(4Sln5x8jCoIDKtfhP zSDkXjZU?My|66U*ty8}IE!N3{H8YcKWzRFu|1g35yTp{PvSpByNPQ$-SCHT~Ji3<$qqyb>*o2SD6^VKk3PM475>d_n%Ag6etw2<0` z(o-P)suSX=B@+7XdGf`*wrh182^-};RW<6t98Yp8ASD_o^u>_VOTMQ-Jy({;pG~}J!2n6{ zgV+h8X6q1H>0|wGcNpnLgprHql$B8R$i12@XmGPyKd8HBf%@fK0t;nSbbUuc6&zEYh~R0}8W#kLV<(9|r`>Bbizez-4l zdS%RC*Ue6hH*jbaB=7zKUfEo3AnSYRR_OMGhzFimFds0-w(Jtq5fTBvo6%Av`$j=* z55gLQ;rDAa)i4JxNi&P|@T;%C*ul|gW10oUKejvp4~XlxDoHB&U@xJicro!jaeCk+ zmnvc9Q<0a3#&T+?3a5~${tQzY>N&TdVsev~S*l5JY<)qAzOPz7U0<-X6tGQ#8JEZ{ zi8L{)Ls)k&4*O)3u6JxJUM6x339+(k(M(o;4y4HlUyxt!^#;g{XifZ%T&W7|A+Jlp zlV)b>B2h64iQqg`^r$z#Qf0%cpGM}m_QHgwI6wxo!A1bs}~198+t2K8vEXK z1cvpHf}_rbz?oGohj2K18Cva_JVLUyx9Z*aAk!#nMQ9FH&6FTTT`uhk4QO*C^t#Pi zsq6c!&4VU9D{3r}%@s!aN^Bz#xr=IFM(2&b&GhEv0@X;mL1RNU^Spdm?q@L3MbAkw zja(4%+~qm?ETSI3t2)UqAN+2q-9-QOM83x=Z;kP{_m}oq5!|k52WC;$L zP)i_LS$OA}MEZ$oP6L1}boZ2BB#rxwS=fezagb3imcK0uZ}s-ye5C7YJjI4tMyPT$`}s&P=o3%P71LJnNCnpt$TlQ zHRD}&&(;MN*6xt&r|FxJRgwnu!6*Z@!9mH$n2HJevQ@G~@(bDFydOojjMDa~#D_u< zty$j%0SWCpmNl<1^@tKz!TWZ~rj)rNvjsBO?>E0SXc^?k^%DPc*WOXOaY;A@o_#$` zRbu0W9AZ7_KVamRnO_vOCntxNBoDh9UOy+V$b?OZ z0xC95V>XjOG3LwHFgP0N-yJtpo*iwuyEAi&(Q4vzA+g!RlbHldVZA)aKY+iRtAncn zoK~;6o(51{5a4@ab!un!VVe%4;8{*nP_%2mgdL+9x6d&}~WZyYhGS7pS9GdmABJ+zN$jqKfY2-q-OnjmoDo?5uW}H27 zM^%jHsP4Ofua~KgLm+K21pQbC$(}=$Sc=K>9vb&Vki`aR%90-a1296pYMg~p?c7Na zZhV;|xSv~xOm7;mSvsYT7um}Su@ePBl7^pPZN4EZv?t}+80*{#nU!dIwfB~T7p@9{ zEhp7A2q==KC9cB;I4)_(-%N0O@`xDNm#4NdnE*|&(zMD;ITaj5VxGGjDwY$e1lgGUo$be%U1%bR!JQt|$2x4ROdRYRiU z&46k;RPt)3d{cdKJz@Lhf~<|!CsO6Pf}(u>Edyw~oa591su zi#PUDZ7!9XbQ9a%V7ZE zOg4e__Wky$O9Yh2R>|BQm3C3-bJkAFIH< zMoBySHX$fFgv6!MpS{ywIF>gy)ol-rmsg#HHjQyJMd>=DqG0Hug}Jh(HLmjvk8sAp zfpp%$x}xWxx2FWK^fMA!92JL5zlM=OD}TY>U+Y8u$N4ZXV15dr#>G>SRY(HW;n0=y zBaMEF4UBK61+?206!|S5e@q3H#%Pa8t8kA>yvTuoR0FxOPeX}6+SaqCv#KdFsTmf9 z%nc7V5>!N2B~O6eSO2&J&&;o$=9&AC6U=%8N}&$ylvau4mFj-!%;3j8WW)+f`V~{Kaeq*3 zT2dh+6uV75>a(7IUhTWCCRVK!T8N;$D~ZtqhpF8#-#KUx$L)W8{8Ygr;K>7F3;A5 zD_pt@#$=D23;Ebx6_XGLLkQB(n?RjiAtZN=0Zs*ZCALgM>>%_klqBoGA_%zz2{^M;)Zcy^m8AWT*&T=T5Hh(ish@2mjcna?UNr{tmh{{#vMli+f!&7uq%$`7eaCQF})Mk zvybI**3$cqL?uPLaD=^ot18BVI?`-!^dNzd-KjRs7oOy$0hk@lZhu}HRec(&OraL} zi`Ao3`&ysl0f5R$hZ4f=S)Vt5)fbk%*QHOlZEg-$w0eUM<`ETw>g$X|N+h**l6PHU zV#>;NPgd$$Jx%dJ3VYn)(fQiUYEC||Kx$8_?$GM`Dc;vilpOa*kjbPWL=tAfDZYADo=NK z0A>3emjOhz6x5tm00 z<#P_L#%9DUWCmzbq3en|DN&75^UWOL);Gq-^$2uXyq+CcQXt3ha;+MD(t4J!=+Pif z0ZOERZq(%5YMpCt%1WiCaJ@qx)U{;K@GV9M$|QOR(ze38bBklA*n|5N`0T@YgHYFH&dtGriFky7x~X8Sg7zp_(T` zzIt1pds>hyfcJ!}^FVP7=Z>^)j0)H-qLVy2 zwJOz>XuGNaf}R>k_Ab!9mAz7yJPUe1L?MtwLN zYv}VBGoOMEsn!LvbXrEqZI#>7KylJGy~C-BIiRu_B^e3cZpDxQ+M#bywrWXn_NBP) z$FCiXTJo#BZN<-|8bL~{_5Glv3QK13w0Ao<9nW#yF9tDW4>dk$D=|5jg^+p7^ z|7Yl|qnhgDI6PuB0;9V&*hV)9NXIr}jBXe(${-XFP`W{3jFC!?1_@D6ks2K$r6MAY zl!AhSqVK!^chA{5_uPBG@%)~T6lR4Yb7rlFd_C0ZanTNKr2YquOFeDvD9%k$X^!UW z<`3$mt-d|w*2AnQ^{$uDRWZO`MMkDGiq*TkkQYHlMG9i5zt>(LhQaKGX+M2*^pah3 zXrED$PWhQ?D%8w1<6PvHI}juWu{5L2>PFvlKVQcqZhuysJK63mmYtKYOHuA_lSI@! z*)al3urzBLg{G5?y)galk+oN4i@R&ELY8(7Kvml8Mhz^2lu-Nh)g4*YORSQ(c#s9j z2F8u>;wz*XnsmtIsaJj>DE1%Vt=4U*VrTZj&A`SVTn)Q^+l+UG)n4%=7kNoxL!mxA z%J_m8-Zdo1!mn=;ojbQ-lPj&yMzim^g+Xjx8 zF5t-KAxlvxBZ{iKCTabB)1+6bFht8CSHGVA-uv!@)?@Rb3D8^tcna{#usQdzKTPCK zwYF!+iwkG+t5#HVZuUo6R61uSQcqNz1M%?(WujG7uTS+tAOo1e5}eMPYFFhb+3h}t zG>c+pQn7nkqE}|xtduJyZ{QX4nSl=Yv^P?I;Up$fc`n0(e{bb+AU`3yOrO*WdaRfL zYH+Fi=iUC{mXD*5RmS#gamIvIVHohqjmh4%?TyS#&{M7kM_OUwvu)FfG| zyHVz^=QmtVif=!(tJuQNgK`}OY&Z>7)lio8EsS;sU!Y;*FzI>gP9IjiRPHHc>4u!z zc}m6vRdrA2U!w&fDVdaA8*l+T(7gRvO8${{i-hsT&fSns*;X%;6g8@U*NuU^N?rvZ z_NU)5G>Q6R>PqLY_zfS4BhWD--&2SE;(Me@wRvuY3&w*AWw*cO8isaUD{RhTkIYhA>+y*^a)Wg!)dFyDk zq>d|JEf_(sFeD2!K!a}?uJsPTFugVXyOe0X&##jz6-*qsXtOZq*xs!ETU0MkNFgDx z*D?2GEtOg~qN2B6k&!UE2f1rE8hTA$Njzi6ZsAS6MpCnBv;e&~c1e=VcP49H(r-f1*wjP?QUjvdysGvkUDSzKaS1xsuCmAeK zo%e^zkj zh6}^Zw;MwJarZobr@1B9ciewsKL2N3p*DcmfLus$x;Z)`~be znpwf4D618T5bEfE0$JDmh!J1pZ>`>F;!S>CF;1Zr3Rsb<%e7UOG{>7ipJ<}Ib z*WR%6YG;~4I4>vual7@+Iqt`Mc6~dt6y@EPdHyBxCRR*Ad2(jQ0!-2XEbdu8Roi_K zV#KJM1iOi%=jwC0IC#pp`ChD0hTu^0%)er>KSl*Dte&n!DFQ$>3;`G?F!lcK<4^yp z3dr^Ao#uM%vtKY8*ssWHGKN0fRPCfKddd}~Gtb)>*vOgVDss3n&72~Mk|Mulg%u|ezf zc7yGggdBo49v?tnc$dF%CL4MclN=AqCDO9)owog6QaW#iq(3T}Dj^jxQM=i#B!#=z zt1gMvLqRt%i+^MK9_m>jxyDy=w6sn6{emd75xD^3>O&^+#-~4jn2DcDKI3b~(dtr# zjP8&H-|J`$+QxAMgN+X6x2p%05TT=Aob>K*bcZwwqwpVD%X6C{NN@D6(X)SXHUXB6 zKd(^9IqY`Q^$hK@SPBLF2ME!*MV$VYT7qD|7Gt(RH=`KB-D9F?# zB}0sJ^}zzq)_7V3t@1j0p?eDtyoFWxJ8ZfF5NSZh~J$BhH|!$lR7tFXoy zPnA<5l4l`+x6L!|Uv5KAEPUS)dxFrAwAcd9Em%`f?4}v4^kIo<5Rez$K##UmSc`=T zyj^H*ve*gFld3R7IwbR<+3`%?;A27};3liNb~DeT%m_2&t%LHcm_rtTC%xWVRpt`} z+O~g&eTQq$-wYA%%y1?b!kvA2e2Mo73!jRAc5RdbY4LXakfhxH$18E;yF5|=69+Yk zB!i`-)stsy5N@|f6TPfljZc>vf&&Gt(qVXfKh;ykFq&>Q1JCYXWS}p#8r@~GZ(%A^ zTx#KLYUlOS-b?+=2lfS1Z$?wo6*HedYCxQE3xfL5OofMxu_oyy$q;(YcS@bM`)1qO z6ul;(Jgdb1c)_S!R>y?l(iO zcho3v$O;Hx2kB!4NM9BrR$o;SYrffFE4C*KgBH*K3jYVNL(v!*1YaTQK~v1{Py+yu ze|QeL5MTa?iZ-IRbW#$2pZTY>jXux9ByX(6c^a;BnUn2A1hkT=q64n({YWFi;OH<; zeH5tn`TTy&TAszB5mno+>xZ8$B~Q~zYLSH6gXeE>7sI=is+X-dij2$4Qsd@3octBb z(X!a#R1qsnCi#327H0mQIiY7nW}}@6-w*(2yNb`e=@gmeMnUVM%|woV@w=7D?kPXO zwAI<>4#WdkY7Qc9x{S=;u2U)+-?>9qLy^#4ZzkW}tKYL8zvv7Ef}paPBn9SxYjw05 z-Z{bCNe)_Z0CAWz#?inYEb^TYu=Xj%tn9AL!?AK*nOvTp)Ud($+o`ma3KNePtX<5} zJ#e(I?Rpl<miP^=&u*|x0ED6#e*$MG>Ks`6~q19>>3HUGjyl?|d z8lX&dU;Ap5ndoY%Q4M9b%Nosp{NC($L%6E2DSSK-<{SI!H3kfsF}sB@hsg-OsVM;H zBYLhWS^1Ky)v>!U@qMACgr7HJH))1L8wR`yBpGoR9?%Vk%8SeWw=bP_vKeD%tV|v3 zq-dKd)h9;ZbfJRw`L+lV_2|?!^ZoRjoN|+s|g3> z>$BzRrUzC0O@*=z3zH~78_!#YXB+yYrsp036%=#P> zR5e3GGw-@0;x3@%Z{Hbpm#3W4)x=xi1jTO{0Hj3TIaL#Fd>5_+-N-rzw_<<59I)$`lb@c#4wbQm~uiA57 zpb{}|o&uf$CwF}n;0a#Ml}Bp}w4hUo9HGf)mv#_NfHM-qfRnx3!*VyZzAI38{>x55 zO5JT81_^*+ZO1tZqc27jDFB^e9!*c4Tn`n|)uDhs?#IeM7^P=QU1~-P&uiv2I2Az` z3l5CYylp&PcMoj&K5y{aPj3la_YDhYOwoOOJ%x@-{DofgWgE2-^wDqzSo`Is`#J{S zlg6Rifw99>vD(1}rdX2}Fehc}nihM^V~6oo%-STv_Vi2Am*7|ae?5G!@xNvX8*iS0 z=DtyDF4MH_Q|lAf7QwP@Tp{BNCVup81+AAGo` zM9H&L${m>WkjdblG_X~&1yExy+;f0;_LoPJQxZZ^lfLv8dPu{}=TN|rdtXKVn+;F0Okflt17_sRPw-| zT|TwPXYy_r42*!9MCS4>KHLNirz@uG!R<@GJ0rI?csF=G?ttJ6%^kst9`OZ?`X(GkXTmWSkhgbm4p!JCe>Dr$@46o?vhLA4QI4(%Iklj>KuJxU!f`4}e?v$}q z9?w!upHSPO;_a&7pRBb1_G`y|j3xOhWDsv%U3xNT#4qZAnL{qKqm!kL5Zdx|Wr zR(Aw9`SO-Ph?{cQG|rMaU%~1-K4wXLPAFjvZ5qr8Q9hnWchS%oRQTnXc;n(xd<@37}qGDR6(8q?y1YB|#58R*El%s#u%u~Dmf9rs!Xo+uw5 z3~h2i0%NoD6v4UtjY9haJ!Vf|x(8Y4Zj$~LACAGND44W-&F|+tqp~B{C=~H^yjU$5(l;1i zrK0Exh1w$|+P#8S$|+z4ov!WUw-+^#9cSw)iy3DPEjkI`@a&rA;=pvc7##GoLlQzi z*H$?eqjeq^92FgU?mT9(O|Js!!8p{y{jml*DQ+(9V^L4o22Sn<+hsHu&mzo`F`cl> zj&7cqFY9NNqY+vQmoJ|vyToYDza{yp@emZ}OTJ`$*~9!`MAwkrW-LK4YB<_pCHePq z@-@Z!LF~C&czMl}k%YX$nAQc(bdd6CrY!|u@t zwl1*78aBoAD470yhXR$h<%?Dh;ufo#NtXF)CB_5BbvG zvk2Py_<^yCmAPLLuitinY{Ii2dt3>v>++52xem>Z*b0`=dF!TNK&hXQh~zd#Mw>8( zK7pGOrdlYBVgQw}VY+LsQ0xI4ksdIVV)c2AGbc8zj)Xs(Q?` z|Mp%OLvO34+VjZY0f=1n+dejrI!u;IbaSbb!rR zx4qhybC&}Dif90utGFII!#;^bNXz|@d13Uv_vfk-UEr}~wQqP}i(kd*&V!|PAEQgV z)x4!PoK(K@XqY!*hIETD9B{<(JX(T%J42Jwzn=t#*(93kaU^>g;!s7}11|tOTi3EF zPBX`#P=hclQBgI}4<%wovXnPBOgt-R;Fx;U`iEO*{b#o2)nN35U$4QJWm*bX^c@Pi zh#d*6*%FSa+Wt~10fuZhh*dJm$Xvt(>YH3>?!C{DUY{<=AS101NgIsewax7+T+BcV zx>0zJDsX1DRW5n7PW3~2k+U8LxDZ*!QWNQZc2!tG*zt?TNb2MLE6()b{rj#3Gcu}^ zsqV!=*{xh{#K*?Q456uh5^eg(1h~gmSb)47>c~olN|vIcCIPn4MIB5CF=`|2cQ}Qp zp*QQpQPmo3=@@o?BNjsZ&KfmB9(BWUS^UiG{N@*rTEv_E2U)nQ_ZS|e=l=)zGP`kK zPrTI4tGj*QGL3jL zE^~YF5U{0es=0)MrdO>uL2sIDP9G?o-CB>+-Xq>pV#a*2G?~}@{?=#E0SBqwJ^kv< zd7s?say7T|3Uv|;&IE)>@^1T_WMH;hvE7-r`V2JdUC#Yove6z_d1;SyDisSh^g>c< zs2yTDUO55WUuX-O(s~#)D0~0d7@xBCgZS#t)bL0m%n&#Z_WalUA1@N;_>#gC-4-ml z9v$!GeZn6``twrt21$}aTD6CEW-Q7-Aq%wvWDKdM?C8ZbRx1x8mBBy!#*8g?tcxwi zcR&Zs#{XQoLwq3SVwFmu6fjq!K=o?;27!!ok;2Yls2ENC(N?aqYGr#aVb6Y~j{XPO zdn=78H@>5y4h(MGXxFF=?{q>=}JFb(qPp+598IMu9#%d?{b2z#=mn~{A4-zp}93W znwHDT*SV~5L2pjQ7skGWw!c`n$ZLa1B%N;m$jna~_9jm$=Vcl3JTBy}2wC4djb8E7 z)?T)Vq#e#v;Z&4k8hfQPO#5L4Pi3j#5K*l~FD!2wwpIx6;ZLo&@qUSDqd zscz)K40X5hgT22(u8G0F-P`582_QV9M(bbo-$8FVhUyc!;y)gQuJ3=gN!JHO@B}BJ z+#W{IVlKTV9=Pz@aH-$)xc@7C-L^>CDfpmEec?39ULqy_7u~x*iAy{$y)dKV3!Pb6 ze=d#q>72k$Ou9|T=kAu#!=5P99C5YMDMN<=PU&L8>OSN`O_#&-rYtqqy=-272RF%2#1h38Be%I1 zTD#_z!%KO|!?;G{hT?<@dHh0CPer(}|39I-LQx#Qn;Ku6o~Wr8dv#}EBZitl3plQr zm+yq0pV5GNR%}zp^~Is<$`1NL&=za78;?)G`N@9(@pdNN3J*bb-+w#4Qx%DrT%=I~ zDF^j>YsB&3zW;gbSNU)uE~Ck?yFE@a6~=toT~HtoMFGm3XsWu(SAf-g&Ew*!^Pyv2 zF;#f*>(S0|lJ2L?te@&ZoTEwgpbT++%8vuy@o4K_Sy*}!-^(rNekaR582Y{O@k6|c zg-%Z>=PSdEqN&SjVR^x*ft+o~ou$oHP=mUYqb zz3_LWx2T#F~0 z+s?EsEQg9^r(zFZ~LMKgUP=6D7bV$gyW*)}YSm6DT!xR$6`J?g?fn;A> zY~C`oa_7yOnH4J5B97r!mPo0QhFK7H3{r7o2Cl99ghsO zHE7vd~!sI+^M1kWL9tvAX~(pNf7D$$$1_plRcde%EzwRtbN7GN2$hs4y# zOE>5&x`-J<#_$z-6aN|y)TM{4fR|`EQy(R}>;P1_EUC6h!r1gt*HtJ(1kEG_xsCpnuGbY`(3&YvDcH5X5~DN; z_Qww7v;T`RwsT^zp0E>x_NQ4l2}wWuRJI|+$tj(!KywlzWC=2KpuR6uoIzAUNnCVY zZ(d&+EsXl*ujF<$s6CE$YH)+ACu7);3T_SuP(!(Z3|Nz3+_bM`rDH9G79qynhKxqJ?&DlxtR`6j#$gJr&N94>>$x%M3}Kw8x@WN*uMHw<9AsZM)CZbP6jgYX2U^|r=nc3xkVe^ z5>YSlvCnzUvoXPzLppsNq>scjY{W@1Ns4jH{aciJfHG6Z;)HLW-&t&j{J5)&s!-!1 z*bQZfU}>Y+Yu6#Jh?N>jqbcK$TyOBEq!ObMnx9A55`Jc}NPFYfPdW(5JeahS@vM^) zn0?elQ|CZ9JoRTP4vvxX?oOf zndRdsyq9yc&J(RAP{(ZFyQg2nyr8~XQ#D4Epu*I8+s`o6MW{Lqc}5qx5L%`o*uNdh zV)x2oMW+WtXwCpI)(bC+!C<Td-TLC+o@IYL z8P{$24Lsh?yFK*RT4`qI&a=Rx{;4ya70*&m)v=DfBu==B!JDychz%oLAExIxdiC&@ z|M4ZNYj1NKnyCYzaur6-yx*> zhzvG916)}+cH4X$VS^m``M{Jf#XlE}eW#d6`M)YOezMGvqFmHU=c`~LRdF0nDw1~+>>Z4iUucOp|FEo?aMIJ{wU;m}k|M>J!dzRzg1edkby%1Va<}T5w!B=>zC~a* zR{UCF^xIr4MyAb;X6>=oD6VPaNv36iJkl<|1mjCT#Q>&l8RkE9OM7T^|FO3zXUdda zKZIKxZuzAOA(i-*nRO+=lX(X}r}*N={ACq3kY2r1-GM2+q&pH6-#)-KUjEri9onVX) z1>(z606baQePg=&%=pjad))09&Qz5eYqKFkQuB)oYp}IrXBiYW zTCV}?b|jgS?t5O-bL$Qr485-91kn=+N=&D$lNPwv@YYe9wO{$GW8yMjKz{7G5&d8m zQzbQVSDu1+7%*6F1Mp2+;q`y-YE==%ZBCch}mo5NQJHy4vP z&w*pM96CU*dTN@*Z(~cZZ-|1Aef^ZDc5Syq=Ddn^zTQBipPde+cRV42;_@byofNmO zX%khrRk)J|X2e>UhLGU;Za5nCvd$g)Q`-D@=WkSwW=7Oqgx^$Yirp}kk*%rZ1!oIT z)SKneLq2_D<-`Oo5HsiAW+01ZWh7UhoP+}cztbQ_fkJa>ga_pJg^I4Ym_-(UxQP0| zdeykAjASrW4}E(|Ie{Er_JXaYT0(37N4_T53gT^_lBrgDhZ(+VjR?4{II@ssIOR+*?M&0k%>-cCV1EHX)q9;|?WKZ(a8gl5 ze4}r3m5aUnQ%gexBdd|4Qqt8Mi!HAS6egLKi~saN$)&H+d>ogs#9L9mM+yWYe}$c#+S0TJ*t;_-RQ%#Bn;@4)V09zlbtut)cV9UDzCPw>3g@P3>e{pNk_L(ytL1Ojc3(; z9|hQLz*>z40-1^1KZApoI}=2H4_IoJsTNo2jRDN!#b;V!W*6<^{kDqc!9}kA}urJQ7Sk^$2Qh|IFA!0c_EL3hu~T-yFJ!?7vx-9(+5>FHA%5+`r}d zsK;~PlVB3j3+pM;1_TCEUhCw$_@F6+Xt!_GcgcOUw5hbbSG7(SKOB*!I25@6Op&ng zt`(-omV!e+uPfOH+n|S&E^eI8fh{^dYA8GkxZE7Knj`0uA24p$Z}vjp8*7F71n-6S zs$C^B5w~X9J@Y-vZ`H6v)Zp^&d&sm-bi}P|ib@#Y&Mw0&rl@Dr&8#7CWV~3pIk!~R zS&I&vrq%MZWfQ}sVuSP>avrXZ^*_=l3aM7?KN0v}hROb{>*EvaV)a}-7G_~ zT}c1=pAy_|dG>too)4!s3pr8u)@+Qz0oNb`-UK*B_rAXpVB~PwDTHKR;N?J%iD%Hg z2oPA@c@tLyMB6Vn3#>UN95SDbFhFzeo?fEKOhfU^n)2(TX_Ms9%0Wm#9D|q z^;yuGl>AqrcJ(dS7!_@o9oPnh3t3c^XPn=3TcYrC_++k`(_UalA+ zFMCs18qM6EGx-l9P=4~E-1>zLk!;7wCSNe4l5W1-(sU7E!8KyeC7#1-^dsxlwdl6) zJ8z2Z)&@H!!5!g(srRN`s;Z_%Zu|uuhHU7#o5=^ha+hR-K*VSLWE+qOFtsH!k6dMS z_+RDRZSR42A}ooOeb1mryk*o&TZtt=?Zf$#oU6VItG9=z#1=c%;HrAAW=k_uAyk9s z)>m@bji;{hSTsDyg(oN1=dVWkSF)N$-8kNtRhEY~VG){XE5`b%8 zs7oFA%Zw5CvYykWl{HlRQ14VQ?z+S6RRyg98*kG>=Y#0%_hFl zxB98pWaj@J;Ugzi)0pL&$V?58{QlA|?9KA~_Y;OB#s+Zwc<3#jm|oF6QR+DKc9~w# z35G!;t3sfF{S3SDGo182cZkiAX zfvb>evXf1wFQ-8y{I52$?&L(aQXi*}0Ps#RhLIIn-mKT(i+RhRE!24)6|5B%3d)!w zPZ(21GsdYnA`)4$#*QKXJ5PY~T@zJfs;aXx(8gaFeH!yI=p{!hbd)J@WFGwoVAi9; zAwyp27j%pHngUmQJhW(mVoxY&BH+Tdm?0mqkW8zj^88> zHq(@DRPuKL>MY;nc(i}@q~JSg<760|mLCPQ02%C|p@NR98VBpu){{>>W9?^Tl zIaz-{^;jtGeR5~wv}03=NBb_N2A62NLXLkT~c@~8?A%%CIWWOM?!SI#Ji9v;*49u%!w1l>6=Ab0s78k zJ*2F7ko#oYZd|?4<`)sC?q$5Ufu711(wG66a8_Uh$^Vez*%oWEY~i9fHdOy)z0voy z^38Aj^%>D2mnB^`=`@Q+iRDU|Y;qm5DoNqfZLz|Lm#6&2J*y=eJ3*cqpQs?z>=?12 z*w?(1*7fE2!h}fI{{ZPg)J4q3Pj2(PgyM9Sa80nngdvRi9+q9&TLtcci}UeY#k3`2++Q)+`vOAdZF5u-?OZ04 zcJBmYx28O=jD`ZL3d-!Jn&TcNh_&HjsBDA}PJ_EHRZ_W2`Ckn zorwg~_c=}8!IrkAr}OKD;`4z;rE?eG9HM)48oFnaTf@c2(-YW@Q}!ML;0pDi+@jtC5geK&SAneK{Y++G%U{Dtx zJK+E^ygtf}!imc8eXIYCyMmv5VOH9oJ|E6M=dwvo;%T3ajUhqxRRW5-B6 zn%lkOov&i#&6o=MNr-cODMLT@F4}Ew7KC|q z+7l#EN)+0)GFrk~@Tj-|`NSjcw;t zK7ruYCoK%pS=1({hm50;$N?sE zjL~kh$4^}t@M4YB3$Lol@JZXosssuR-ufG3Vph7h)NG*S_v5dUmXajzE;o?dG>ICl zX#=u15l3LmyLrh&Y=5?<3bIV^g6G^8b`4WdU?_G{8z!^#Nw$E7S&bcw^6v;V+qIY?^PwzkpSp*PhkWdp7P!TI zNaRqVK92isivcBHb?KeuY95d70cRcoWjdWaq#DxJQTXBvXJ#ZaUg0v+p@Oj|$mREl z@2n@!BmSkg*~I8qZ;W?*D}?&giRk$BEUz})ES`v50aYY)O;QKfoLu96FhrXq;d}aG zuAxrMI-+7BajB`~sa@%BN9F4s%{<_lqGY^Ztv>(wKiEIt$frTqEv~zDD6=e4J)ThE zmz|*Q&r#rE39z9XuAzm&SKJ}1bt^1haoC>zD& zM@lg)097ChksW>?&lrB+V0n?K%x^?XF*H~svFwqi7K-{{H76Ck+uQQo#i0$w?j9Ac zgfv&Xm!0u9kK!KJzRkwt#%z!TODgeCWnU2DJw*Qq+F^N|l~9c)6@wDi*vULuyxH!b zYYnxzYG15Ffefg_PO*7#Pwa6`>dsM*T7CA@W-A>399^BJR;(NQ4gc92+)(GM4j*fH zQkv;6yosq2uj)f?(&JvsO1N#~m|w?hb{3>?L}F@ zx+ZWubEkmQmm48DkZS2|Ub*J5UxX|Mh*E9!5OTIabA>4b6Xd4F0u9W5zy_2GBVAsX zK<8F)HIpnDuTs)>CcJYt&$C*_xC3EHTJ`Nisz6L^>+b~j|#2unbdOwQa{dZFd2upsP{rY4gC4@OH(vmRaj3uhC__FwjVJ3sPWJK zYTmYy7u0I^$|>Nl%r~pcXZ$kYco$ONlP*iKc&uBG#@y0ue>S_p=~wM%KmB#=@T)_A zUQBW=HpY(1dD-P!Qc>b&FFww_6`>fsz&SOUF(q2El&DO9azhb7tZa%ZPI~o`+5t6M zU+Tz9ZTFYZE3C$Zxq1bQ5K*e4{5U)VUDMF1Siki9p;PvxjT&O9dD_sZ_X6<7$xgh# zDu7R`;rYuX*XzB(NWD=Lvc=}}Ce|F!z#aaiueGh8%Igh?lNNvgK96|9E9Y^z zDwl=;8VgW0y*yX{8=Yy~pfASzz7xGv{aKf6CoVy}Pv!|0A%7gbrpT;8J`s{o_3oxoL%)^@3nU6 zKwIi9-iV(a>VDeQ1 zQO64FchjYL84Pp zmpZMM;`~b7aw6VhRiYb9$pZ#9Km(-LO|@o=DN|`a#UOoSLc87U1d|D)xON~$BjEe5 zOZ;CKy*l00;n3^i7BeyrN?JLG+BO37Ra7r1=!&9;31s^jE;?5=?EdtfZ)9tOYkar= z*;iNW^r$|*Rp8rk;g(u5QPrO#VruHaflyI3cOoAd9EEC$O7$E89taIHLNw+b!-<&DmjV&ApM>DN``23@2xdryiWM zLOXGUEL598qkml*dIu#5xLW&-n4ppU8A@C_D~720=w4c>3Ldexpw0LcEGntr7sVJKfLBo zG$)qnkihgIiTLd%lRrzc=W*`q@k5E7s}6=8 zck_y;gEns(kKA1P6fyJr!`$Jf_5L1A=a)uq29vx?&xZgGNi%#RQ>_>TiA=v}8)%Qz z2+cxnb|(YO;VyQ75(i8LBlQ!5ou5M0E(1TcfkV4fLlYB<^E}}Qi)uoylPtZY`a}1O zP@#Z#E+5zMJl=YRLGF6edH!?Z9A4Jr3~;6ODRE;{4(fCZMF+NRp>DaH-IVda#^i|t z?Uc2snnT%zl*vbM-|`ft5BS8o7Pq%a0-Uj)yzB0H{nqECC}U z3kke%p*j-Z@(Axz!tSJUz#a15W4r~TT##ID$e}0|WMK1lFsG@-$KU4i+COf!OD)+t z(kFv)HHVfdj9=Iz>4MP&wa5OPe%iUkS`Y%c$Xr(9vaO0H@4DS!MClpxF90cuG>Iwp zf}<(~q~RSsbYB^$p1*!Fvima_KzhQNJS1U}Ul8n4yX{V$nSsjf=V9%-`SIRy&n0U$ zVmtiev%@KEpxcg=AGfoWGaVu>BMq8{=0rdhbFm3e4Z*nxV0Zg+tN6!@&x{PkWWR}X zQ4ULW#8eftrr$!|Jys_Vt=<0s@_%^a$=PPi#X}PddrpLg??WKN#LR@)r{D*c<`bfz zI7-A$O>}s5PwNd`l4Etp4L#+CJAQkUd9YIB^7t>zp5s>Mxjq0scxI?YShjS4wqxQb zDJt7R31#;t`ALQnlh{iY+FXV!Zt-rq@J~i55v9o|fegl#GVH~32`G3Vjqdkuz~ai+ zrKpS7qHN2qSNGkn*H}(%{k|C;8sfF1M8ZmVfDmE~lQ1ua3aRqS(YtvcEpVb~NVrpZ zIx#t=U}{nkny?C^DmN-vO{-Hsq6dOPixT9WEmH7)$<$O~J5Rjdyd82WXD?@Rk*vEL zgzM{Lle@eI1bMqKAAFJxBNO-cJ-}Cf1xp5~w41$Wl*R3!O4To5H(;kS@m`-Z=mlJP_a~)176>cvl7k&EG;B? z)(LYK&Hvto&CTACuPY|vjbC7K-eQe9>LHMYN{7r`Oab+p;M-B54L1djWbzw}wg$}9 zAc4@%)KDLR{g@SG$>yF%(Wnl4=Uv76SvjC5Fv#K$@%3yDxZgU>-+57z2Olm=p^r<6 z^Z2*M4V*TMAh05ynpn_+L?i4?iUhN;vO3Mzvz76rY1e|QWgu!w8JM0b(8aJU%OcHM zlH8z7;)WP(`?*pRziCz0w=Wa3lCJI5S{GaT^;lbPHfc{Sif~2chwl8tdL!7?Cv*1o zWFv5ZU(^M@8%oM5R9Z;mnLRO<3SEOP^AP8*W!VkQTWlV}d`VJnT|DOrVjab&^7^tu z0G(?8r)d_^G5OLmDGOy3Jag;B-%H9!o}X*s_N1S4V!vVKOwI;qUCuu&iyiYPfMH01 zw&8nii&KgOs>c*vQ=dYuqDAZ2w0c6?IG*6N&rh9v94?xKp~hH$w;}_An$o%i@4bk* zlvd+Kf44gb=rx)T7r1{1o{={|L|oc!U?p$Ac&E+s6oyx?0xQ$hf6n$j{+naQF__U2 zIzh;;RwW>q*dl4`J<&!1j5$oV_LU9``S}p<-F~o}-sYdUivV9uA9IIY(WgZ#3XISk zL>`}=r|!)V7fpm^rd5ulwXSgFdzfeoDkTvt{TeT_W^l^KRh8!iHkWm=+4f*;tTc@d zdn}s7zP-TCPNNCI|LQf@I5~^_GJ2VOIKtM&XS^9h(f2hxE(S>fElO0= z{O=X3;vB{)*ypE@Iy}sks8kx?DbB5{n=~5(QVm` za4sfF@aGfk45z!3)@MVOdoFADD%WFgrA>?;H`~3sc?E00Ny5Rt0o*6tpR(Y;{>%hv zR3cr3a;NZA@Q~}@Tm^|ju7Xn;gILbhi8Ym_Lf{!f;2VE+I+5}eiy!iRT}hC0s9%DI zaI%BtLMEuR?|Byy)mYZQ7*u~AVG44>MS|OPp8WU~+3Xw`dGm)-gU;9Amm2}dUyJ5o z$hS#1JTxXWJ32w0mDRJ^zJx&xG>s9odU8}T?kp+?M`K#?h2m-*41=9Mt9zM zy;Qd>DaNy)a^$cZMX}}1fzZr7;_vY$2g5N@+$<1T)A;?Fkr$qyHY8G)N?s?;)K#S2 zL`a6hU1zV&x(>gx>25jZ01ds@({-)w)u}QZbBW~QY7pbfH86+ln`G>k(=bT@KvYW{ z3uCTTrBE{v@5ePQlrOf6fx!)*^F9qZ7Hk;i4%aW#zRJ0yxOn}40JT6$zd`>1 zZ*XE#Qftl4NcZu^8A@;f(x;Y}@xMqg`cVD6Mv)C=Nl{YNl>+n(;a%w5Q~F?O?0$N+ zxt*j+m234j@riKu6tba(QjThVyaHG^G-_d@NQV#tr4=F`-o~ZFuyJPObBRGyIPZEl z-`?<`FwzuMLSlIUHJ#i1ar?0V04VPEzb-@4knKn2-pmn6Ss_V?qv>-EU(7)a>|BuE zd*G9l)B*NB_Ph`!CZLinTXeXGG%&+@pp_-n{{V?sV?aPXoZAHvg_V+Cng+LxzO;tJ z+Ktf=kC;+O0V<$#T33$V#|j%Y$6((6uP5dnLmWMqoVK?@@(lW*`DXJXF9TK}&dU>Pzq}92auk?TAZg#p}#g&9hUT z_J;+F-;^*VL4-x3Fl8wvG+<2}-QCzX*~!3`&^M32AEX!nC|2RX>iX8z`}Q7RhbF?JOuy&8|>20#YsDBQ#X1AsYUb8i97uZM{s#T$}R?8fQw?Q=p47Vm`$ z07Ccg3P}viK?F66g8X4q$KRK)ggq%se#mbxh+8$Q=-=rUVE1kh_ zqv$oYA;mj_%ftmr{zeSN?N4uSEr=8tnsmRv%uJFTlGfF^Tj>W#LUyuLPT{?X_776T zQ}X`+&IEu*$n6q_U_b%=_`wVickEJ?y^5%M%0BA3N$CoFM1eBzd zsVPdB6d&@YFTq#u3Zj08}+y_J5o+fpR?HB_J(G+@y!x7NQ)e zh8{ozvx|1X9JG47+*s(<-21FN9vaX_;<8kcwUTI0bKaDo=9p%wdV{8;r@BOIsBmm= z;v5f3zes8MN>ND#XY-{YKoY93;JvvQ@Ys_u11kasuH60B94@BR1)Em;{I`h-SlPKS zmkhHhB!bmE6L5T1hY^sHTn4M$-Xo!Uwaa+ee?kN%qM#56Qf$!!7hzESsw!}bLGbtQ z=L4Nth)68tIX1a_8vWr!ZqRDk-2NcRwvX`7}hKXLwT(KvR}U6}3NF*S8oruCgix zPJxfQ2pr0yl%*h`B`Qe(lKV#vI6i&3IB*<+yjNHx7QU3%-%g-JWvHmD(7+Au_Z6Y7 zZ^JclJ*lKqnJqvz`kHm$Pj1dAi6tps@={!o1sUiEX5e|FJ|vf~hok#3LVt8I4qdK8 zYW(7uqEw}`r*(l86}|fhdbKemQc`mleH-ThF%Xbp)nx>b4F!XN-N-c+wjDPQxMr)@ zr9EP_$!V(+qWuHE_YmT=MJZ?UDUx>Ev7@^V*qoNkNEV=_2<8JmpOY1YpptpDHt`(2 zh^Mb+?Vtuu<|3t;zgMLXe)xrJY@{~tvxDjz#NGf&V&g|@hUvcd+VKrYf`V4cOVQR| zfLCkZ5S4;z96iZ;Zp{#^6%q?(^J3?U~1GYi4xfX=H8zEoa)U=QUC(F z(|%ul8+fA3iYTLM)IA^oM}zrAYWMcRpoai}YVW9u>X6{5CXISGSG_-~#WpM;uvsY% z!)lFO18*0nert;fETC8sKy;?$jd_@?yf|{s18OX8_YZDc9U|MEfKsL~=%-5n!2RF1 z9joIbB?En1&+l&t#o{Hi7NKxk&HW$ecmP6I4JaTaB_$!5%huuQJ*+V#!o;g;5x#=F zuGNfku;1&re%;631zS%^$r6b-#{r(d`T@}fYdrYb**Vz{P{&$m}K08 zsIxURbL-)>K~%XSi7r3#2~Z4K`2;(&wP<_c)U`cDettlC)+o%7$pwo!(7iVg^U>ao z6!@~pNKjaKiWdc)`SA85{&02CpGUWhQ(he=xj+`EuDtoS-zbh?FKJ3!a;lel1W&8MXhKjDRv3Uz;p!r+-GRMY!xEJT1)Z*Z4J}_tlwpEMAqDj5U!#YK zkYKJUDpPC@fC6e8y()b6dYWJfb9d+L+g}?+luD>7Nd@lKpsVkv(kDTHl1dT?dJ^OZ zrHOleAHD>TFUa{-uTxLB-t4rMC~WoeE$SkuiExn*Y6`a1-rN`AsC}thV!DK0O$VO-zlZA+phMhtDGDHp6<82l7o&paoIf}KjG&fb za!K2)Swy90w{*LTQtfRAD3D;LwIxA-0FWKr*TF1(@FcR6P(p*XydJmd(|EcP127Z~ z@5n*mr)YhQNn!$=3s$^d=e`jn4(J3skOgYm)cNv>f(Qf`s0Y_iy}HDNr0ysUu|bIq zQq(Wt`wRU`XMYZ6FQFg@6mZ^O*Us>0X-d-jR9J+h2ECk?FXYno9p)(sDFEKRX;5qQ zJBE0gT1rTv)~ws!Dv)69W4h+-z!63tM|(SuIEaujar;jflS20QjIR?~YXJqsn!y112J~}4ZUg(^6rjPVQYtjn zxzv}poL5u1e-4pUmi4Rzp+zB`MZ-8he&^~(nrld^t*dEM>FWa(VFU*%DOe$hy;xYc z3B+3AHG%^X=mta6^7CqQL1xn4yqNLGO*IEw( z_0opinZ#9L!(@%Xr_>oha9*Y9cIE15&x+yPhhRx@LfpQTgYKjTP$rM()Vq7UR3+d! z0F^FAoL!o+|; zsciWHVi-7O0K}byX5O0gJ3QBFO!RRRCe!GO3a8@2KQ?6nj6}<%gzi}m#O+A)jb|T; zl|2Sx=L|fAR%Rf&l7(0xrGm2(KrHt<7mp`?w|~ig1Nv<$cMQUuHyGpV!!B^ZD-$~l zh{8Eg%w~KUh|Gcol$oiQ!!ZR&NdZfhK&Gd76rUT?@$mcgoAsBEcKe9pXJfHznz@tbC@E8Z zF_4n1$d{WU22=u4nzb`ABBhBK$gE5#{MeImLE2JYEJd3BQA>)@Sa-&lJ~lfLLCm?T zu7s&X+SGe*w0UnAClQUGG$gAKxs_ExI?>2CG#|#}cNnv&{Y%rGIm`b5AF8Jn48}1d z<@$bDrZ#7qM1~nKQwS2cFchjPEJTC^)Dq2(nZP?UFA62%@lrzO6hFaQN=us@*?~Dp z3ZitYIgZWxN%{raztm1Kfx%#SW-VB3Ou&iQ$ui{35>jgURW?y1)tH?gl#XC^hpsyB zsG=;Cc(b}UL`8^VL(Zh5B~~l`2McO#)&FAu`kh zN+y7U4btyXwT-^eeu{s>9>sPmh2imd{uPGDak;rB;xUu(B2FM>aAlD%6r^`e%NHbW z@vV_zMKM3v23i_M(FO?lX$k&Pt_qo){$gB`ZH&CR37DrT1t~W)0M{w2*GK2&?j8r( zju*gi=)z!dQn2ZikP?|`QgWyOEu7c`MrznFa4K3VP@}hUiS;O@+?HhuP`ynV!5GUT zN$ zSxgVa>K$V;r38ZlT>z?DO)6m)W;lj`nu6>xE&~CK;<%Mzut`+uE&f@lNGZe0G+gC7 zK0xOwp#iN}@^9;3{DJJZ>7ND1Vt9`f!454cEB&7fnLcEx_=SX%EeKL&%p*F0V#IFs zjnnC`!j$|8oSj`(%8{9Bxs^f8G9HBK)kTM7mQ3oYz!I5>*kMVExCs+Q5HKOc zT6EN$#3_vl(YeT|A{ui!sZh8%_N6}7FVcx^ZDhif~i4E~)0xAf5N0)eiW^vp|f8{vTnV38b)eJ3K%sDxdLmYt%ASdDg&g1}C2;2VvjbDgv zgnteVZJTtX;YUkkG5#Pm{#Oe|!P5F^2%Lk_%&$HI249rLpCTmO&UY9^L`d*HZ_G(0 zQFfABNZ`0m)BdE-o5pdtxx6c~TnwCg__Wo0L&TSaQC2ezArn%SARr+~ROTS4ke6a3 zeBhmz!gfOjQN-m5_}S}P=Lx}=CQ|B^sLNX|Bvyd635^8!b|c;E~|C&Hdz#qtjjZL%&#KO1T}B@((t2hiv}`)3JEGnBN^_*Na6fLk8!@)VX!jg zaEWte$>A8)D9jT=!9>}z)S;MUY@~#WlEem$o@Z%rQm}&$!sg1CF9?9ClH_Oq048Q5 zIAB6SC9eJv$mlv|dr@@@O=zsQCXb%#&0U-2xlT=|q!43F#4%!_2!?ikM34wsESPY? zQj0mqZk36d{{WA~aY2eqoE{QV=S{>ZUDi>`gF)Us;1a;8?(~f_iSZmv=}W}snKfC` zl%&w5D*jni6JdIXXBtIY;`1leI$K#~9TiqV2Ttl(lNns5X_RHEXiYizv5L^KUs zsdAY`OpMXgK%Dsyp|4`SXK_mc;~JM@ku_4gLD~f*3A0F(k-%KFu58JQQc2k*HU)@t zcZ^~_0>&zNo|&qfhfvO;K%@eYgqNud&1;P-$o*3*A4_S?1E}&?>xUjbqnC{#7F|kA zDG98qY7vF=5&+m@6a_;jq*~zN_)@>})A-gO7E>^MHOiiqvV%^Rw56JgQx{WM0$PB_ z5bY)&Ow4qpOpuhMNuF0Qj`Gu)B(h8QkgbVyxh%v-+rPu2QSou`aXy(@q|E2}?@H%# zdAz~`lBvmES(RkVRH~wnQAEUe@I*Ab1tCtu^J9sAolL{oyxU?Tz-5iqCXOJ;dw>V{(ZX?G(l4eG(;aqK@Hll$426--p68A+8b1w?mJlz}iZSO7*`wKv$9*Pn{6m4E0R zXDORxQqdEndWQr509It^Oh5Lr*wYOYFv?P*=xJ!>X-?Pw0BoVaYV|xODn>132nkB% zF`5!xV5kZ!KsxHdoV#LO8{E5V@!YXB3GWaUvHFmXq%Y&DEy@Xghz-4^S< ziPmT^j#VR?E<-(*i~{AS@;uolPcfH|47wE!a`9pX1%i;yKw?HKwVW+nQ-Nb7OHfS?dkqFIBQjp@h;-4BUfJFC71 zekwG7T>3RV5>G|-BPz?fr_=d}Dp<=WwB~-j`L3CtQW_jo!ipv(W56WsK!p$jSmRjX zsKfTFv(tD_5C~o;4Vq9=j(Lexw5UnM1Ps087Yy#egIdOciovTGoNgLykc^m&Mjl&L zL?KE_RF-NnG}?}1>c`=0;v-1>PxM0|>Q0N9ff`4d}!cz(<0NG^1Iq&xh!_AI2BK_P6+S*9wO*uC#hrBa+9QSTmB-60p{C z4B{Hp@nWJHkeNxc2`Pr91y!*!c)EBlI$y=a1%$J#wJk3ZS5q-cCw4U_?5;S*@oE>wbbFBxd^W7DxC1c5F zx@$C?%O|CxAfbOUS~N&PAPNJ}u#mK<22xZzgO1mL;xaM#Nf@j;(z#O-k`xFaDuqd< zNlA36G-4yw-I?O3#$l!Z0F^5fQYNL;;G~BE*bpn-0pG!*&Vdu;$3k5xNms1dl3Y1= zqukfMImk_v7KJIvP#KcI)PbXNw}fx1!wJYCfD2Ain$#!_Ky%5i+~W1hr~d#66u^fS zMKN7c%SkT^C+0$vQDOrS#1TUE#u9cIOaW76rG3&Spoa@dA<}F~H9XmyNawwx?17ZI zIHXAnmaN1OkeshqXS>)Eouj9{Bh<2;a_Ek>(RqYV#Aot)c09byv{SkyNcmg?5=Lqp zx|XxB9q9#&u@8-Zv-}xcGmK8dN>fS3&R!u131sBBNAm83e;2qq)uUX*h49I^OnkXy zCkkaEYp4Jgr2s9Nox=*&l@*R~NC=`F#Ej1I8!nEiSdM*Z`70?YiOAYg^!7eB&M|~e z9&E&b#~>+9gRyW3q1R49sUFGwJ>o|jg_ka5#VDpkwU-8&(hC{@7&{jL?{_rBF&GfQ zvPm1Me$?)N<=M5VOUSf6JHn)zczX>UPZ235SjqqyU#&*ZQ_EJnMG-LlWh8>m0k912 zz}!)dEzUCvECG50U5kbV^s9C9jdo%IQAw*GS`yzVCd9ZrQjRFcvs1mk_=`4blKOjX zo#5rjNl|e|2Dc~it$cxph+vg9TD|_3Zx8l&!burHDk<0lO$gX{MWoA0GcsMk01|2A z@}PzoK!RC|^KeU8dGLL(DlQ2o;_bgn#R;j)n3UJ88qdvzZ0E)i2zLw#3U=`S0D8Z- z?}1YVAZMu+dp*sb?Ng;Tczi8E1UaD)K|-2KSy{l z1P}sKUTW?sa2liA5h-Di#efV(&EZcfjcFMKOLx@Jd76%U+*nc^VUVxNLcF^@{C_~z z!zn?C71QTlab*%Rf^Acw*{j>aV;>M zP!8OHeT8rZKrp$nV%>acYmMUKB?T}8>sIimrmYS{6GBC(!OM<9iw^y`6~ZcN3exWF ze!rNMVa>p|Ci$8V0t6WliV)y!NF+Bs>2H6(IE<3-S2cS@l*uj_xCsTkuX=Ccyh=g| z6=2LB_o%0~BT|SXYPjF+6D1wcXdL%^4QS(EuY`o8Brq;$9^$3n%X#M!lH`_Wi?UEa za!pi72jn?7*3l&hak;lO6yOFO#n?R^jSaiPqM}&PdB2-lj2?#KvR%U^!>2`pam?z*R8$v5n%}-n@#QYyi5VW4O&r}$H%kV5ff6QOVC$ZZCd_g zAt}g74Mzs9%sdT!+OnZSB(Y~Tdek$s{{T-uFbZG&PrsyImVn{v_4I#c@Nx*C6|iB& zoxQ7pOA_R`0s8vt{ys5gT(BL#>}w;E`i)&0B--^u!eVbBv6+VvV?P)HUnRZ@f%|mk;S>CsyZ|6LyX&c8OV@E5HUI>qJ1CI% zZvxK6`FUO|P?8c0R^6%yX7->ss)l(9yhqF>*;I$m9m>0AR+Q%}so1BMr+6-C>UUk#m6GSfc-qz5Uf?nHL%%--|HI36H9`iN#2wUK|d?AZfzN- zB8cjQR2-Cn*ti30x#7U4d_8q&f+=zC2l051JW{jFE6oIvhs9)>;e%xVZR{nrT zH{!DM8lU0{n|2J^ZQ;$Um$FHnp&){NNqhGI`+;Eo4=sX0CEUMQ=R8(ZElMm>OY;uR zy;$r8_7Rox*^lzY_Lkr$aCptsA31NSiN%f?g=D^ z1Tu(W-^!rZ88O;9x zSLAs_yd)^ZROIXgu|V~HW$p*Za03hD7mMw03*qwwkKf_ervUfDNH=VujVo92j#-K9 zk7>BRDKa=`2FGINsX&CvlBIt-0N?<57izt47_O28j^xO>24cUAYt{H($iOP_K zCUHnIl`?d?XIer)3vlGrHtg}_-Y3EMw{CczFBin7%)&{i5jBy*O8T52yX;M`SMCEap3n@|o3rNgkLsBD7ua%`r5U9l_xT(ZA zpA+p8vQM2cIDF^=NeNm)6GjA~Bv3J9%B~}&_E)m}3$gOjczzQPHyM>GIM60ZSebCJ zfU@Pou<`D=iGSWkdX-qLO|N#06DXjIi+!v!0@adA1ujI zCCOa@S`t!K{{YP#+VY^g?XzOImNOKkE`B0zAyqFmMNCcD8UedD_ln#yA)iV?DybsX zqt(T)=GQpbr4*phJJ146IfDA^e2J`J<`u0(txF&ip!xxRy)=Rysvr1}SU7S3p`}26 zF)1!d-`IvpBEjkHyx~;1X}R23267ltfus4SelX)B7jkr`_79KtvdknJwMnH38oh%v z^N4Yxg(!MJa6lo8ZgErR^zY6IOAJ7J0ZI)bd2+~Np{+)(<-gL66v*mANhE;5sq6{t z-_`9wit9EWKK=aTBOy7m(^eJpKIzv>UTP~SslzCc9=CdqM>nN$PI7`lAlFf^zIs{g z*=aa%ur4a>)gTeM@q5xN+|nUV<-0f`sl$-2<;kx#`ePL~U=CkW{yJFKr%sy=3^J1} z2YNr{i$A(WgPF}MYQP0lqmf6uc{C%jGOwc~HW;qt0kDI+U$ z)30A6y)mw7GqoxX0zu~Nrz~h(y$5@T#v*LyG&TPKW6ss5%I_P-3l5pA1sIDDN|DaH z+VP9CsKBBk)JQ5-9N1Nvo0^()=NQGzGZd`KU;%1A&MV{1>c%&|6(nXzZ~Bi)UvSsg zO0;0zPD0_tEKPkX2gzrkH(^8A^N2xim2mf_qw)Ca+yNi^XDCm5t1#c40}Uep>P3&0 z5s7dW&*oxD1>Ly>c*BYmfB+(!-iP0;c8&ysRvwfb{p%X_s7i{I34c}ohu;4G0M`Wn z0LTCU0KYb&(`VmE?0g(HMhw7mp(#=OMlPR-Jw;SC0r_VR_GWe-KF}?)iV#6& zyTE3OFKKU@l)J6#EAf!_y%|1(lV|Jl1HsK_4(Q?{K5;x zCMpVdD3`G;D94BG{cv9jUS}u@a^}IVUB@=(&N4V@sz@M`Kq8jcmBnm#y~(#GKy?pD zpnbQmzqj4H;xd4hmY_a>{k==ZQ3Sh+g3KDj-;`1o!Gn^?1oi};Pj;s@?TJDK-QrRO zNflymc8GBp9?lA!07*To-}+)?r!aTd?G>gF5?^0`Hi~N0RcbIctFg1a2(<-qAOHs2 z+4t;Y=Ts6b$K=D?KS-v>Np&^5J&70ncpttjrKt8{^6`vh!a`Y@wcV-m(cZlxpAZz5 zQc_$7P;f`J{NDcnd|8yF<`!XhdoheoBo${O&8C+3;aH?iIs%#bXYKwFY2O(sX5=v& z{l2|9Mgn;65^PhZ!Tz4HL61@hAc{Ch@NR#w{V{f0U9Lq7T8BY;nAY(mmjZ++*Q`?_ zrIwHd6>|Ir4_2xA+L+18N>iA-Q&Z2|dd3oAB};Nxc)4)TZ>_b`6l9Q+l&~psSb|Lf zwJ%pZHM>lfaQ5i&kD8pzSvoG+^HRXlWRX zOp#Mdl-87k0$!I?Ak+O z!&*oK)T)x*#rd%M*io@%0WMvG3Ik)y?d_=+6*@aNiw_-q^ns=vMbXk|93M2hR;~Ns z&=Qp~QyOXY`+03k5i}%|m;|+5g+o#F(dcz*-gK0NSn5O#--R(^CJJVhq=5r^z%vEI zZG;I?+((A7d_?rgmL>&0RSd{t#UY7u+P8orq|oX-f3%z{gJEZ4xRx?hi87_Bf8@`U zsVOP~fSM2s()9+SIs=yVhfws_LFN4+_+B}#TD?VUqPl^JVNf6#^vn(t>Vc=;Xw03*L!cz;)=}Gd{E;eNd$pX`Y{y`^)X}h3tVaG zDNNHXOhiRoDM9$@u(TyI3jnQgHxd|xf&90J=+;=h6M1{WHK}=cf~m64Jingr&=J2m#U#ey2h_ zqu4*Dzn}$J#7xETaXNW2%Kjv4CyHWgNGJsH=|eG{fzxC;r*YGCMyh?OFlfH$u+rMpp#!2RMzQv8e9dfxT48nA+@04M=k zGj;W|j~lrX`#^@4NLU1`lEiah$L=e}BAYk(lB+v226pN1tUS3Og5jv{&c*4ddhckg z$x3cmgAE@xG-2{!!%OZ`*F@}KT#|bNU4s_JFB3oEB~w(Rl?lwH8UO`JIx}mvV@2(r zIUF+sK5C6ZN?r1@id5Iwk?3P`^w&${MUT^dlt`?qcuNg=tzi7K^NOZo0U?*pL`9H< zgt}r`B!;*ecMZn>0OoO6?lP4WcbCI((^5?gr7^fiNKkNShZ1HD{&A?B@ zDGOYXM3pNuA%DSVDnI~(-AFn)c*&m@Q>vEAa*ZOTOG`=VjWhys`En8wnM73q0Fc2f zQOF{mHjW)4e2i`uY}KiACC*I6W+O6zpmkR;W4PwvSIRsq44iKepDjSBP6dj9IgQSs zR?IxZi098rawxj%t$H6KB+fv~RsO9!g(XH55iElcM2IR1#@(qZByKJNBD>dX@uP94Lx~1QJX9kP;N`^o6)h-ASP_}BhBv7o0Ktupk%Pc4beRfLQf6mfMAQa# zfEnB|vlbpSJV*Gr>a^cj{vo=P)EM&ta+A7-W=ks@%Aw0;nQDxbsvx^D~Nz&6t|$FT`5-L2YhRs7Xdf3cms== z6@%h9)0$BPW>ksURFL6c!HXo4lWH|%qv7~|8yo^~P;|aeD=RClGZ|6``j%}k4{S+DQ6af9u%e{zOZv;ZjCEea_D|z+ z1KPeThAPAqOBhKrf>si_VZU&dB(PM(k(3ZhUGE(ZPwnvd96t`jNtT(`n>8v>Qi0V; z{yovn$-QGiG$xUo*BYZG($Whk6O%B+>{NnNEh7y;%tlfER)z=!k?Lx=Cmkn@@p(Ke z0gU2P&>B>g83~1d_RWUe> zM8%b;<}%9W0+cl<1qDSpTWjKYk;8a@z?Oi7N|LETl%SFl86-31asVyVTD;gPB9^B<2bp>X@yyUn5r(Se6)80fykp*c)~CtGIua8-<$Ozyz;~Ad~U>_E&z5Ld5HCt#jaF@qDl&tLcu{KC4(hE z17>jhjh-^B7!fBS#xlv>4gy@n+DTGC{ODj9+U3fNGXsrzb7#z-@MR#YI)VXk6q2&S zhhkh81E`AJPl%(3aMj~ygrG{2xswvN2`NGyK#*L!5c|C}j{gAsHGc~IE7hNatoK`M z6lRFj`m0Vv&houWmV*v+PanaqB&uM`sH8^_(h|9qEP$jE)o1mmWd8t0a2Wo?E`B~? zlf^L-6EQOa?Q)E~SqLK+o>fZ`KTmJy&w`%(%`u8IT!Q`L(784sXRO}$) zpAQc`6DEmP5_2Gcb0iX{AZQvmJ@EC?{KrMjbqguXqbo6slWHcYEo5|If8SPiV{evc-!o=BMVYgl)A~KDE!yQ_}IouC@SvJ zoxxQ_!V@Lz)ZG+5ETm&f##h zWQVAAGin{`LHlg+#CZPz7OMXM$Vt{t@w8y@ z>}_DegzokY^bNUqAt14z4Nr9xZsk}g`U*~e=?^=xEPg#l6I+S-@d z=<%pxF$Gz>*XQY_01oXHF)O@S8oiGnPTUF)ICC#EcXZVKnEA#Ubk%N=3ZX7mwWD!NU9`^Ng4h=jWh$es0=n9fz}cr3{Ws5ESl1JqL|VPu4J2b(g~>YS;qOq6-j8ncCLm zR)wm2;->%=l!yNSsjwq=BTiMlqp@(zQKKq~01g&T_*OaY|SRBmf1? z`L%d9?~E=YQO-aON&*Sc3+e~fItL8K<;$6Fphi*+!+l#$Lc~TY&N8$hMIOwbd1p0%KQkJ1$ z-2VV;P*HTL!P0}BTi=1wo3ox$w%7H@ku z-mJhu?+R(R%g5wt8L4Ert;V=4Mul*Qlh?b&v@kA*{H!;pO9cEzz%w| z2*jEC56s%&lBV*_$rW-qZ?-nB7_7-lqe}GE`QX!T#uL<9V3x(2?WeJoV$m+554?`j}~h?`BqfL^`(3Hq8Jsp?pjv@|a@MWdwg8T7BTnMjAh1GGY6yOJcie&2f~^?eJ%nOO z#Dxt&v$7R!q39|&ZV4dNcH4M7#VT_skQug#@UzMOc%2 zzvi)J%c3Nv)m1B@7Q0Z^-*bPaGZU1VuFRx`RB{`({I+QkPpC;jqg|1r3&Ixpo0}?JsVSY~) z4yNjK=^ZOSn5E3*#5j^Nq1d7%RO|`@l>(&Oznb_NCl!lCih`0Bx>+xyk#NjG1o9M& z_hzu4y~d!e9ob7tiwAZr+7>zTI zbGtAmqL{{Ub^JLYBAJp40aH;%HG8|WjjTak!n*`^5sJtTCwvM zRk`=5#4G`><^{`9g#ZDusD-%-Q-r%D^S`rm){(?1i8*!npKG`OZncHiY93@ z3oet)XV#IjN>VgXs(@6465x~E00kZVm%oRX@h3_}%G3s3!TVpEHjo@S3ZIU{$^ewj zm=X=ZCC1{M#r|3an9oJbCbJB|Q53k-a}k!cDO;E+Wwzaz0Q`YVJ8vjJmWguM0F3WhE0N7wCKN|FM-1wNOI+JRySuHP+wv6Z@C znr)fP@|dx9Ld_)NLWY$yDlkdf8qP}sJ5+OpJQ9Z&4te+w??}aCaN=aNDVcIglvjEX zJZYg1(k-llEL^`@<>^zP!OcV^gGSu7BD8R6#h5w1BT53L1s13z)2`J%-Z8vW4rlN@ zV*sM58GxY*UdyI@6lM8D?9S2#GUGnll9nDI~%|0=F8L8;JljlUy=oq|8jv z0!n3+ikdkA?M?dC>|<2yHw&33ip<3=3kXc5pc7!Fu?!n$t*=PefRzEcex2T-!#ffi zkWD*wdx27gfy~cW@;;^PNfnOSDoRYSRA}^i^Av7$T%KbjPCEzOno^Z9NVwhEAyHN>>&V)A*DH0!j%EP)GAnc<(5bsljRo_#~28Jv>?6 z?0i9C9H+J)s2Dy5rQu~1;&Dnq6q%FZDPgL~QFM~zUD&w*h}-1INoe4VyCp(D2>^&` zN>G%n#tGU~r3N%ENg&>yaZ69`R0T>?m=~=>()+QazR|&PIP6arp1HFWW-Vl?PORP4 zDZnJu-JE5nnni=EHHJ-*LyWx2Z|6@HZGj~TZ@FbI%i3HdAIwe78IB=d6w6a3E(xh6 zvij6|51xB~_D>m)npTWC2n8xDNJ#_|HzMxEfxjwh&aBp%rlOA*@e#}!Bs!tVL8K%A zNJuGg6vP5a;-dJtC8Q9hN{&zf&>At@!^Q0#(}8wZ4Z~$5i2)N&d1WceqE7wd9`8>U zq+=zodX%H;0ZyIQEMNZsAl!e07XW4!CgW`em2hmqp7FY-N>BkE(1tVs3x|FDE3?O; zr{`^l2@xYjj+J=P8!i&muA2G>ZB5i}($m`EuBf{QV4 zrhv8djeyY~4qEp;%Z{VXV8PLPQ4oy8Z2M5fhaw`&00~r#v~?z8ZX(O38eu~rN01zh zeEuVb2Ps-+OlnKa&%J@5y*b9Mi|qt}u_{8paXCRi$(F335&VLbXc>hn<}y^A&X&<~ zaU{BXlN|FhL1~?9o**qSiURc5Q~e_tPh~r z?HXP(Wc+3${{UGx_VURJ{klSOl#@i#q?ZJeMZt)$(u~hBkcpgT6B@HOT>Px=VGbfb zY@{5z97LGVN|8Vo2nzoI!4z&WUV7OxGNhq{=PWZTr`4+Nl4oc6foaDAx`2+ zAiZ%W8B;`@h&7l(lH^cam)6v$E^u5Mi(|yK;pPWI)ty+Cue^{GS}?g5tG_VC)4e{; zWishJ?^j2Sr!?FRhc1wd6vLRFjSzzoGLpqYCc?w!N7=O00{EyV%$8OZl`5q{K#&kv z(6P0izi5qk^h}wT4%n&L$SFx8#fhk6N)q9VS8SB6L8T=nH0D{Qav6NnF`McJmj^h^ zApGc3aU##lponR!!~pCL_=y5o zN(x9*Inb8mZqL%xj}dXiDtE>y4x@6_Cay`?-M{T)KnC}GV(IB9dhbTfWwNM&3qR@h zLq858Nn8~~5-?L8DJnGe2MkLR1~Cdqmzinqj`#tbl3cs!XhV53Mvuc#4jy7umQbBA zwLghbAh3O##;ng8trir-k56+|C1^p9G$0Tw5g{uskOBU76+D1ixVyuU7NIbJ%;1qy zPV`}VSCv@Bsb~mM8G&N#+t>RXsi_)}s3K=MmV#5f#GjUiVTW>69RQ??eqwfz_BXq3 z@|Bkir+?t1{{Y;uYKPOUV|v0XCKV*LCAwU&a_{2A=v{`S2+6+_QZO>!uIExx(x{Y& zFC&vfFd>ghRsNSMr52&7H73R1wlB$0GEk;rkRD})@9)wt@bj8RXMD<0r&4Rv#@CEd zp3AOQ4ptOF`O*-h1p)s6m@Ww%kMh`QL@1I)1;*~}_1@NtDIrq}Q!UQtUY_h>nJSWq z^6?f5keJZQfUfGf-Et^Tf-i`t5aa~ZP*tkp-tT6BoT3z+n%n)f`#|$paE50x5CS1C zF;WuNN|gSW?0Y-=*9ix>^>8)mOMARBl&qkEOuOHGsY^XJXqA{KLRwN!<(5bn1cHWU zdJ|kkkW@L7@+PlQM%ubW62Fp5T~1iku`~zWA5$Mw{{X}DRAf4<;m@a8glxu6dVfyH z#LF`rr{}{&#Hp82N(4w{MP+J-wPSJsAb=d5hd=c5u2ptYDSKSob?uRHFRqnYMr3CvDt-6_scA3{V`B!Ds1%A5E$WcOtzA{PKIYQ*F0x2GE>9RKgTtLsQnJp^vti6MoPuj9fN+*-Iv3RZ$KvY2X0Njs-+#QXaMibSbLkUT zhP2tOahWRj(*rKG!ks$?T0Up1wiDNXgUvu<-8V; z-iaB77j{u%5g@Po0gWSfMf(R6(Ul3eS1XsoO};Zf7Q)TvkfXPtxA744fv=A28>yVp zF*>d$@35}J=m+MuBGUGr^s+htYVci@Y}9E) zoqv(A1O+w3X9Rww%=`GU2YgWenSbsjC1fmF)1~?z>MN^7n`-T+PaQyomK6#gv7SP! z3y8{ZH{^)9|E2R$)=iz>nu1&!K1doJ>^S&+<+i0wg_*lxfOCn*(({}lm@bsfeTmJn z7o%e#Zj4!=2Ir92K;I?MRv_kE#qi9|rqWl)md|6%F@N z#g?eWg{3a1e*g1lW?(UhBk>XI8_Z8XZ%%irN+3xo5 zKY%jv{CU{-78+V|Evu@Z?YGKFC%u`|4TGQWdV$^5s~Hr*xMV|_D>By$xt+~nCeRF^ zFGE5ioJ`zbo4q14-GSzqMni(WN4tL9lYxfgXkT{5s;>whT^g zu+-kW(|&6t&*PY>S5s-4Wxv+X4JaP^Ar=hn)`rWi^bF(^eYU>@(j{U@(KYE#YvsyZ zx@I1-La#t}+_|226cbC5Wt2FYFr*)}YH_!a5_T92j&`m^s@Y}?g=UlYO0%h#)jd#n z4`h3$|1k_eGvOqZp2knQqP6-V!GY?W?iFmsm-#<8MoMbD7& z8&f=0=fQ_hH!via1uXM=uPcBkuV7v$%*VUY3- z5KsOzLIKMSCisH4aYL#mP;V&IGO;5 zyaU-UeC{;}jjd5ZUL>H>HookJaJWOuY}ppq+LLuBY8cOAyG+4rSf^T9RsdK-a z@c{a7ub!uZ9AILrn8$?m<_i(hjDyvb#x;}1uUsE$Y9_w0XR*t?y*i8WOQ*&0GFO@p zvrj0?=cJRYZ$sK>Uxfx9i1y!B;qe>p6%Qz231sifmDK|Yg(ozyYse>toD0U1D6Sh5 zDEe7GQyM^|N%)39Ude|(Is_x3xaNcOF%tj6-G*BBYy*^$ zp@i@p{;{#y&!J7++<__qAzR?=+~;}D;<8N6dZYuyr7wSp`=y78ef~10Ei52{O;D@d z{Hv!^HvG_@X>y?4`@;=Hx*B_Cxev@k8EQ*zW5?9AT+L@wdi$<<43Um)t-4v6Vr8GU z(e~^~eqM*tdV@Fy190vJ^ekqHH=jKUgf(rMflVx+x=m8VI-iS$bJg0yDo_2Hvewkc zvoU*gwi6HlD|7YF*f%GAT&z6lcl!n3gw!|XWjiFKD-T55MwCWj$3y02{+tn%hS>}YN+-2)V zSwk5#ZrXc42v8-ZX(W;kr<&uJtgq#|le+U^cdTp3&-N0b)fT?ix@&fW$3hMVLBZLK zd+abG2H5sOIbo}tA?H=kir3UX^AyHq#^)qS2)QVJfCbW4z)NxN>p}nz2 ziP_n3bd~VM)NW6tm>egOa(wOUeAY#Trc(k%xd<7Er2b7-rZN4awQI9+Vt(x=ZYt9Z ztrt&IUK?BYWU2Y_eEo~Le}M0nAAUrwPGj8~-^Avo4Y%;mKi7D(ked^k69b0!=ska6 zlgaP%Su1Qq74(d!Iia6LMqs4?__qo#g^{H$PKkv5=Ww!(;LW*8gVE*>&#u)}#)xY*uV_28F7=C(zD>=XHz z7kAq*61=u<;h0`NJ-e0p;4X8$Lr|Lg2&)M>oU9IxqTL@%wtv-G=JtGEjyr)x>HGYn zDjNn{^01wLQzWYn=eYZ)F}J5ohse4=PuP2hRPO#{Rv@M|pKEwUmd5%Y&D?&~CdM&t z5nQd7@GAw|U2{bm7@d|KYC6*@_U5}7;10EHS;a@~kHP|{RGPwdNhac*O~v|QOCM}T*iHubu5=`FNfwPsR1h=ERZlFvBQq)5g_nu-993{;Idyf4R&sEbvv&L7 ztvmc9HKuD>t`259Oogsi>3>uf2s+vaoUlcpn4MA^z4({*2kmJURFTOEZ0ro}0&3>!^H zEXD=?_p4E;N`Kx7AKdo8H-oFvrCE+Q0%^*aVB>{+|vczMN7&8EFe`atqb>(D9 zjVqI2IN^ziC z+N^9_{Yd%@yWrw!%qI}|Z?l>j=EpF=Sm_gFVmp_=CB4J9I`@Ossf|;)1eq}+v-6{y zV@vBD-;+SmZ;qs>Fu@EQqc@Lkhq|AJ5d-mEcII29FK}!>UuJiFc~E&r;doo;Ey>G& zzV~|Z$coWNj-@Sn0IqINDQeTe?nuL~>D1DFE_z+WBR8#CQLS07FFm}uX1Zm&KN$mK zc*VzDwa^x$qXJ2r>AJQu;^%GJhES5Y08P_yzVh?bx#sE}IN+a4^qaRghvWKR-@IZs zhZOHS6^_s~?5pPtUJ4#v6*#%!RqLXZ>E3BV6vXF_Zo9dbuwE{^^%gY^f`gb@fUu^A zKd#U)i9Bp9OkNXq6XhX56(?IDNr?vCKo;BxfY?7--i>{m(ed!ltDe@!v;WEHeNd2s zxyBXo9TLa72#|JyY1{y*ruJZF|xMz|V zc1?5f&^7~}D!pOAWv1ZwUxd@nrR?sM3OX5TM&$N`j{LH-O-B%h9_TGeN!LC*ZdwqP z+neUXqyr$@tdoMN>W(6*tbL`}7C8@uX)X+9bcgfX;pMbaWlq=1V5S6rIca6~ySqPh z5ExR6>?2DOP;1rfLeF5bXA>&w)(Op-%j^5gCXFf4oe1R9&9+C48F0IjN_nN61uCd_ znZ$&wFKhmXDH7~8k_!?26RPeMBvsPuK(ZHbF_RWCdzzh|e3BDWhXXNN0632VS>sq_ zu6$PC`#r#*f`k&63`puJNoB@8S6W5Etqd8c#G{$IUq)l_nIAC@nU0by8XyXUR8xv_0Pwc( zDdxX?)ikG3QF_k#W8q5ngG5I&w{*N@bBdV?ANQ7Xf3j?LqrgQWgk76*0qfHAUQGD< zGM2dZeAtrLPt18(RNQ#{)s;yIgMN2ZIX$TcfRS?;y=*_2p0s~<&K6lzU{BC)GidvP z8Q>AoKoR#HBYUXA&&GbJC-ShIz84?l=FK^zfhsU#sD>}~!@#<@R0e^FVm}W!&~M`udKBMu(O1$>^Bin{KhRlDrZ+*L4WSJaYlYZo zhUwd_qt{>GR;1KyqtHqcu~jbh_}ZL>p_H}-&SBF6x4OHHNHhc{9_}TjtJa~~G5G!G zk8)$h=Naj6tj2?$PyAlOYFgbvkw}g`=cR~Wt4qGkjhkn;`DpbLDYsmWU7t1oOhtTm zd{;&TgCk((Xe0}#&O=_4uHJ7AsTcbmE9qy771=eCOKpmQt^7FUL)5@Dc?jm)ZfL7c@BlCpMzE37w^!D(tGj-lIY|ai)nu<{J3@&QnGD#M{6ex8)O&Ay!gRr?-F-o1FMWKY0%*H zT{E~{usG*Dq%3$oL5$WWp-bb1kGo3IS_AQNW_eo1yH;>K zn8y#LXDuyf>xsdRSai9wk0Ee(oUaL6ovfWpKl*IjE}i`|;TbB-%sm}{boN#&H;&IF z*I@?YTTP>ooD+mx}%%9`{jslc!6zW@+Bs?Fu=`Rb- zy8GDD+}*`C2_~AIzvY>NlMwcNiOw=W*B0v|VQ8exSEH+!xmfl;^yUzL0CF;UsRV|; zC_kd^l1QG)^=lxjtG}V(H~rnjPb=>Xfin%bvlo|AZI7KGgyNraNkUoto&vXq383R+K7K8{TR{G_09R;FU`u&PI0c<>Qxg!s4aSLFuOtLBeY4 z6>2PMYqiV>(0rwaCKF!Pp&+)}&~xhUSwQn#0zW5!5|eW;Oe^kvu9QZ_3RpKzK?7vv z!h<3D(*P-IkEaVDIy#%os^6#8% zIhzQ)w?Jo^w_9MrM+9&$Z344)@I>;6ajh7df01-36CZZ?dx@He~0;H1@V{Tyw zDBcow!#JKwmB(>@i-B_Yg@U!|3$DkQ8X?P_ELkD#d0gbIdX?58YyStaZEv6cR{nDUhpc^q=IU*q)*4(xU+(+D)R zt+a&ubL&u6S&8?qu$t0`QZCrgOsNpsA@rog% z;uIzh#iu8Aax{1~3bhid7tGFRKLBR4GKeu{7G;;a+aJzfESw1ve(>VSdh5b<%eY^6 zl1jXcBsn6)ar!_ah2p~g?W{>a#>?JQ^!eMthZkyY*rD!+x?H(C_Z(DaWDe*BJ%%yt zEHZ<^kfmlDktr8ry^^m#zlZ)V8mC_iks%~lnCVIBr^7bMH5?9NT03ip+bPRKiYE!> ze0=PtWrXwFY_<}4DYa|TLZ>n{P1ZvNsTi}XX70Iq^b>hAUboJdAM+}L?n>J5Nl88P zV+&^u7ta~1^61WxmwA`2pv@V;j~qhMX`pmrle9D!W2Co&Z;K`D@F3JoJ+lfcee1{j<;Y;Z?7IzDEANWw!`^gsqSh)`*Z0C@{ckw)fu@JAiq`KcuMsE5u&su z`K{oqhTN+ZaOOquzMI=x#V0Oq&~(tHe*x|`Ev}c~md3zVIr)C*el@ke#sxD4g$)|B zT3-CdgUgqrEiO)ST3w@R^MBEZqc%%^ ziCMyYLTt3YFV?V-e34U9emcYHCmEk>=p+cBbdcFwp2)vY6WDeUKeP--V}KZ4H$3g! zr(xI8l9qwXrGiN{QVpwKPgQP`^c7sra&sd5(=yKDF(9O{25u%)S1D;#4nq!yn_XJm zNXK+DKAw}G?^23MBbU1mAVb&ndWC)n{uG$BQ5q&*GHMRM(dR?>&3G1aMg9GVIxmUle#!g zk=OVl4vFy+y0ZzosKD+20X7rp5>N*HsJuq23=*}@q*Xi_JzFU;!M1XE(m!gOMU5Gz z3Zis7nJv@pK(l=JHLcH-+$2;g^vgvHhtB9FPfOh20(-@vH+OqE+ZepR8;jU@n0Lw8y!I}DwdvPgFL z{pyNxR`#r*F(!~jJ%BalvN=BR=us|#1qPDN&LuE-$H!AY{s8J?<&D;g*Splp2x&Et z7{1Ew6B83q75ccd=f3XtOnpeM5%wj7ikVjGbUe^m5m>qrRBIKSBKNdmt4+h5qe+L z=WnEE@Ds{n`wzga=OeV&WNrPT2FKSY3Kv`a5{oLlnWm$HZ@-l|S$SxOl9XUjAKg5yn+Om7eX4E70WKC|phGya1zOk@2&w|~8QS7RH0 zZTLmlF6QFG$omx+zwoqvPpBJx&OQ??GI%MD-j@{)5`2ANE3l0m#41*t#xH%Jiv(cA z^{pwMx9x!rJBIQjL_*;j0LH6&HRq;qUavToOl=0wfBE&@C$k2Xh0Su!gIdfLw6i}Q zv0F(skP6qtf@~u*FJjm;UdoU%(Qwn)fx`UlUkuvj!=fP1rC z`y*CK$nm|NREz=gX#?w>2co}wN?_Hj=*AdbwZ~ugKHes#J=r8cc6~d3EOJm(Y^SHc zZ{fO?FwyjeSr%GWG!N+#0k%u({g-Os?v!vqe!l2{=9_5DzzTFtrx+EJs8RNFGE2qB zI%y_p`PS_L12YvBkd=qdXHl_ao=w@iObUuene+o??KEuc-Iv$-{xcZm;Zej=AX4EJ z0P<=+U2qs?CW-!>TTVy9OD}Sqg~m>S|G%BJ7raA_@?||a&q?FuEAK{qOpzfYc31V2 zxn`PQ%yvp7$=L|yuaOoMCrjX=ghy7wX$3RNejAZ*d(PHcdyrW-FJ(n$N@b7GRDvrR z==SVh)?g~yM_;_p;Lr?Ij~`v-&G~=EdvU9s)e9$Tu6gMS@GZamYaTjTLr(xG7&4!VVA#;LjLiM;72nK_kT6~zKztDC>ZBFx1acy%gTxap-AB% z-#szbC;We`K_(gB-~F&_q4FK^UH%a%@)giP(fo03l}rQdu?1uy{Qdy~aUyT5Uqaw_ zBMo>p(+*i{{<+&QD+N;53Nb@<4rc@W7XMCiigd zo8-s|ugmY=J@wdt=cq|O11&155vS#aEv0^&!{1tHxe{E>lI|KO^C>F_0jL&5P|)ECpHB&*A|BB%k+>ofyJc0 z6Fbv@$*QJ8~>mTkne_U%AE?`-&slXQ; znOU8aAW=A6TZIT)`VsCt7`-|B&2mGfqNse$eF9BChW7J8?!NipPlrTYuZ%o?10lZs z>UEPj;}fpCZ3n>E^>IYpbgHz!61eS$tn1tIZWe@q`p>;0i@!bz-gio(&B+G*(007F zI(2CrZQ16$lKhPVR*fvDPd!KF-<#-9f%OPG8!~GdRAMsiR0osSME}H+ey`^}3Vae_ zT>WdCk&U|l*UYx}S*GtG+Q96P(p96pW_psMOESw?e{N;_O1}Mt{`L0y+*MFrqY4K*28wy+pHjG?v zeM@>eb!ieGh3sDRQ91!Q73XEfU!7d4(aJv~yd7THonFz>S~VyEFmVQ{xjZ#``M#E= zWr@=p_iYqYn)>Ycr7*wP9(b%oUdUSCF5hzWV@{wv3@sV%P!Q(G(sUTBBG>o%Hz%aj z0-Bfx2rH@f4r`4h*PG7)COe~oz2+YUANiH4K&ZLYHf`T;B>Q$>8SMT(2*Zqu?Y0Lv z#u(($JdQ$3?fdHsy(VUoK!_2YhZQ&OF+2)!ZY^cWR$vZ5;22bWcTNY#5PL`t7^5wm zz+utr;KuL?Y4)1+A>R{M)7-uaSNB+YGA%PS*`(7rVs3TuBE8Pj+i-~xB{pWpVj-7j z75zXf@~2uN9p-_w;#j|peCkM6JOyT2ZdZ^^Q;nxM)er276lO}5drk4y)5W-<>AB7C z<5iQsG3_@(0n|2Pqb{1=a-3>$sz$32^k^DLHOIjW=a2ymA=PxlkDWfd7(_=Fl)*8A z8M=7yC^MCmxTsak1_>hBL6zCc=foGK)39)_X#w}Q&f1ELZ~pS;CM=QJ#{keX-IA$) z0K{UwjU)!456RoHVSIXH8Sdd+_zH&+W}Pdqcop@B{dSHG(Ssx3$D+}M1f)f$$w&!p zXSW9=)WkYcDe}C*L6lEJ0G?xSyD_#k@@5*sU*~wYDbVjxh|&9Ab(bPNJo(|E`v{-T zR^5#IhXYk@@X*mGfeiM&0AUzmmw#R>-CEofoXua!ejYRbE(rXRJEypH(J+}{wz}qi0#*q*xa+>8BkXzuv+9*n9vSC zxijkZ_ZmMhnKvm(=icn)&PRnQhb9Exc738=?5C1p+hTylyDxn>zl%O}fapdQh+#bW z5(o2!*I~?B>&7a1yUy{r@asrL@Z|?jDHo!f$-f#yM-Ot~GeSi&H}tP(U4X6VFQrWt zbYYACM9yh1!6c#&n$}q)?$%gIJOj@diJ&rIa5|Vi5CNIY4)EfVKiukCa+O?DPmrJu z^WjG0rD#j5K*CEFDaRpwi!Um@M- zmZOH5n)MsfpuoN!(b%Y^`GR|mAJk2Ah}`L7ZelZcP9{}qH;s}foH+YNGh_`aso`iy zK(*5Q&rdbdQEpobK?ZsNoURIAG2iybd_NWwIVFXMoF2>8hZTh^0rcdgV%|hzPi)>3 zEyM9Fq+vmx0W&k)79F>PgrcC~-qc}dIwgA?OOpi*A~Y3l|Ge(kw1d38HE%9^OC=O6 zLA?)W@U$p99sKU`6@20K3Se(XBfpJbC2eU$4&nXVLA*U9XktG+`un#eyc9*OQfeC} zGUcVj#BOgfszl>(H7+h{>am5#GG@3oA-SJtz!m#dWW3I!$X%v}v{6cM6=H4G#;?;>ub(w=? zRdyOVEOOt+Q0iGOix&?s04Im4`gOg1kKML=1QnsvD&EfHYxH4YQRP4q`3I6LI-dG(BDwcB{m zqm}uyb7vn%($lg315^z2j!hUayegJ0=?;7_Xv;!d{@d#&JhTl>|eo(RBzpet4=e z7)bDEu@Qz0RQ{eHMVSe2%K4&|-ygqzaHm{TeKXAsUuGgFNH_wI=$NVjfyHU0uK>-3 zC?%VzoK5>c0R=aNg&Q13!{Fv zG-UErIplkvExSP6L=JH2(69O;H)h z(B@Ao3AY}=R5oXdu4RK~WOZ~nj6J^mja~H~lnr@pXJkuXf>1GcV=A_AZ%Q-awoYN{ z*Za^8rdoV%GaTtn45xhvJXU`3?Bt902!JLM-J{`9x$=JS7d>FyX1DdO35fzsC&5YV z-JLRwc}LAbZ&#JdN2b~ZG(IRDy|*s(YV$Zc4T6+S!$>-@O+P-giA7wIH=(8M?fTNc<<#n-Y~&UivSceM zMpT;L2Hwsow8`&CySm-69!E*nd^q#%+(S^=&qAor` zP`sjoC96M;0WSrTEyn21OT|w%`~GPhS3B(dPN6)Ib5)^rrM6#%$y3UpNP=q8x=bt> zuVLlSE?NL-vO#AESt-6N7k>pwE9IP(yU6ZKsCQkXlX2^r$l-&k&?wIHhR^U>a1?*= z6+e9RW%ad10CBj_6pn2aJhE4(m-p)-sL?ZTbooy?Afeg{+9iYD(s^#_DEFfQxJ>ge zr|U6N1~Kq@VC5th^Sw%MvTruI)ai1MX-|Jq5=u+ABh8I?tR9-lx};bW{ZKO5JdHd}MZ?_W)rA~+9O&Ri4`OArS8 zdUqyw^1Z<){G!-EGX9YjdFV&zk(CYQv9X15_DIuGr><5hi_IZ6KJaMx{^XiYLMaP- z+PkE?N%AOnWD!U&eB|{Dd4SA@e83`bhSQ|*fjxt|{~>=H0TXvHeeQUc9qD59V_WW=nC%-}K`4p!otBc*RO9vN z$7*o4NYoUFLT?{wmU@qUK{1U;sLTSTozC<91N^u}t-d_iq7@^oJaCOe6*r-`n^PQJ z?cyw$mw6eJ-t_08ofi^jtNmAlN})Z+Wh!Nxjq9E1>Dfn{eA6lw3m*ikSOV`{qO2H! z5%yWwW*K=$Y*8ksZxe@?)KrQTL=vtS&R}NW!qnb(dc!HV7@DG!zBeYT&-hS$?$lJ~ zqoid|K}^00GZDo!)x^phBo&>;438x@Wj%wx>mBbCUZEeG*kQJQfP^qQS_RN7%%kTA zz3H)Oc$0kj+W&?vMue@EVj)ehvcA2r`?B)Ic&|_N&e?VE2Ob4~u8pPs1C)yoU`SSD>#E% zV#w0SahNfS;D!F&^JgTU{O_}a;snqFBTi^i}gii)yu2J z;kq*Z^ao7eN4CEg+&vZy7YuncIuuP^+SDRypO`uM3$i1!`=>I%StDZzxXZM2y)|jAi84nmu#NWAH)rnyZ!pn;prgA74_3+Exxdbe^z?13EXmN5H z3lDxLR~d6>$np@(Z=0~?=V*Z_;krISTfOob_1BGA@n*g6@&e*U+V*t(>yd8!<#}`R z?`+=0avA=q47_16$yuDtq@diIk@j<}Q9!LiVhj5`hjcFD{Ygw*h!?yXZUa$rRf${s z;qRsdxsa#VGkD*v)ri58n%*S;1YF9d`55ZNRTPmTZn~gTZod#FXmWBN%`yfL)p#qQ zdHg+M?jYK1+<1>aI+ad5_RTMqt~94VStcqRf29j!=z?qwVUbz!^^+LK)`?-e0JZ*; zCKAnwr41=ROU}rue%H9>!TGyqlv2OGT%~`2fa2zIoIfp&)jsYb2vra1cm*G z=StC|&1km8C zT1mmriVe(q)rPzbK$F%7cxC0Mb<7@16r}wu%Dyduv!A~DlwaA!YR4quveDh4uB*q8 z0_I1zESi7m&)h4eIYlJq4Ud*7D%SAu(>7g_e=m=_$HfVATq%F{Ry#5e0;KX}wcK=# z%_;c~x^zRUZgsco*l*3A)lt&|v+->C5rkz58Vz@oYvB%NDBl8)^+=^G7{8qu=&!J=ns*&-H+80@(w5I(S#8J{7Cot12- z26+5=IAbHg8QKyu<=-kd6^y}!r0@kwx=a;Y%UW(#Zg8TasX8Cbd>&m(oH ziDH+y{x;jW>Q$%ij?=e+-G`o+cAfa`yKBaD0q++x%l4iIMMY=PGnr_bI35>oclwUv z6dixc(Cl5srRio7Iim}`i~oe^r;);qK0rIIRbJtJd`H(*sFh2feV_EeAn7kJ{ID;! zxfTW6c%L~Q<3)@A*7w{K&eml7b@@j~CQAS#Nz{XLvfOW=P)EJ;$?1>2kBqqql>pVc zhu_Z(SD_aW)sOb~yuRJ)bm3zMB7~=2Cq#su^qd*GvB)+ZpY7qGLp1X$ALnnz^>+uS z0iZf@Y7Z;lES{xalGmm8pwo^^orA$K#In4JTW^A6sbYDP4gUZ)pKr=Xz+}RbBZ}*P zNpsiPfCpj_FW%tmXAJEj{jrg~u*H{NsS@Fg?tkqI5H$%Sx2^cfirS+(P6l|uY>?=< z&ij6<5!o!ti+QB^@9VFcLV75}{wSKV-BGK#cXV=yECjf^7`nVTn;eR4s3w-`*^Vj^ zwbGXEEOu*i#iDPIrm0Te@SOIw83MCs%Y9(%SM5nn-xgSoO`(SF3G0zEj@Efv(^#a$ zd}O*cS~)K`_ECAYn}e$Ehh)>jiI+R#G!%XCYp!^@eNES1uYyo(Pxk^L{)EfI_Fi6%hn~$tQWmyPP~RgH(6L=r+$_ zDoTf4SV`rVFtzzvVX!Y(U+dkLT1&ngHksxRk+(uRk2>y+Kd~=lm=mYhV15+DyN|62 zsb6>aT@L1>6h+p|;F&ISG6t0Mnn4O)w%zNJad=*9=-R%D6@d0!><;AtyKNSmHFu;D z)KKkRsMkTmj!eBt70&KTAZze_mdpPD3mGBgx)?A_iectc!!^D^-c`vmMaR(B@%Od& z54tTD2u*uebDmWnzVGRP4)*dsPu1dr8iy^I`F^BY4>b--Znme+&^|@>(CMErs2r&?mlBBP1F$ zm%27czLrr8XJc{~yB*JIDAcfXJ(LD=I=nm1iHj6z(9=OU%T2xSoynjg=Yk8?6V zIQZ`**}@9m!uNigRy11DSYUHQ0^dX?GWRAj7*NpbhBk=Ar~CT~eQ&T0ZyNgjx*##U z+=q8J0ns((Uc8y6BWA=u4&jBE6vu<~vY;{0FhOSIi5ushW6*42#I}fKw95~K{YEMFR6R*%%YKGT zD&vv4@CTVYlNop(`q!sqp6Pm|#Ca5T1-)B8Ql9hDbegqc8+}|Y3W=0(YrOwZLn;R8 z9?1^O>`u#*!;8znwBy;t+J}0~260bZ7B0|3tPm4NN%oepG>Vjjvwg8%T3}NQRzj z%x-0xqP7I@{$$DN;Mz1DYviw-dSB9tnrx=!MXVkUtH;szf6uJuNXTjn+@z(|m*P1~ zwn4KAJjwbzUSJZl9uf=-Xi(HcaRmHc_-T&D*jUAWpp`vYNZK!$7$Vrq)38O8voPp8 zGZ|>awYDfW%S)f5G-#Bf+HE3vHz1$hr1@a4QIHAoMIcOC+6M5{=B!d*TM|dFH?!!i zdu$0wt@smDu9$3@31?j`x0cV01K|b6bdAS}W5Kxusrn@nOnN>u4t={JZ}oyfC45c1 zzG-_Hb34CH(HS+GAj{$9%d8y5!Aj-ve1N2@6ZiTEy0!06G$nze=-e5Bp zya_pHQt{O(-_-m#89EYXu`3*PGkx5>ks>xQ5tOuFGleI=SK!@Q%~V8gZlLRE!ueze&Bi|#}8D2YN21Ef{(X`!vu z4yF!013GT><6S7_j!+L0IaHpUhN>E2Sb#l!Es`4ATo9d=H#vFKCK!UT4c5;j2*1Q| ze`M5`&WHy0>geA`>BO~JQK>TiYv(G;YXS-VINsYzJjvMJm%P~1fkNHX{}lY~R8xEX zZ3sDp$g;IcF(A@4|8yqfadt#%RQDMW0Xh1w#6QEsRASW(j!|~ zY9@o5c_a%$a@Gaa!1JLIc$(Dlki}Sk_53Yg=Jr5 z`v*`*r=dydMt&^rZ>u{*lJe>IL8=eL31^@x##X?N|omD+#QzI>QC6~kD zlSg_r&0K%NjUt99U&xQNj^8z{^L1-K&J}x?sp;Jaheqh_G5C&UeS9AD`0uQSPeo9v zg(YyVW?E*nT++%!)+;tgj-O|~QV1KXqJF{LVo}6Pvy&(=X4?rv?FG14-c$WQr)rI% zH$tAN#aJAiJ)p2WcC&1K%;?9veTzRe_vT5`UqEoWo)rvElleq=+Ht( zWCjjDmrfbVrS>`3?_i*$QqwFsF>&6o^nCUOf@F?QPNIkp#N0d`_TE<)PNU%XT%|S$mhm)?~b*@(@ z=76!j=6-;leRVtXJwfHB*>HS(qu}dh;~br_jnY~kjK2lH=mXxW(pgseNGb1cgrv5R zTsFP`#tQ0smb{R~_kBCd?APt#NNH9bH9%SxL}SW-dID=ARS6HlVD*|A6i8j6c4?XKsR}3TY3HU zof-0K7?VVXlfx!fB<0ym4Y*n5+34?wcxh)M#Y=PvxJLr_m^kwMqD{t%LHf6wX!MB8 zmF~y>g3FV^`dn&U|3#0Q0P@1KYo%6qasTBT1)P|EftaW7`IPKD)n&$uXzwkjKA#qx zsd1C_Gjcs5y{=Z&WBJI6chus_31@zsuey^0iC!(QvdL;OCAmqNB7&fX5y*~2E$q$o zx2+#s6ogIUzdvflw6S*k3*VHIv+pmlk;z; z-gGt=^=OUi`p4>gzYes!=x;V_4o*v0aOtC(E*CQ8YMb=$crw6#eiDCSiLVe|1$7rj z4g8EXW0L$%^>KAji~0(V{pc`kc@c@18=Fr8Og#AcX8dIwGwXNJ=(p3O%wgkO2Z zHU8!fIxzbwW9o3RbxesWhb#5*@8?gZ5nfYw{P>V6R~MfDcO!)bE;pjAxp1*7wGEJu zP9TfuFbsdd{joR`*G$8*%-^`MUvb<@Wc~Q_cbY)ujq4w?JB6f$FR@yT%(DMtdU)FQ zEGXVY5A@V?rGqW%^KeDPH_r&aOKoLus{h`sNA)S7FLOLAl3m{v^o!EG1WhC!Q^9Ya zAAa|=Ftd*`v6&luVP0fGOQvOu75}*FR4HmVaKleWBHUtVrE;M&@oCquw65L9g>oue ze;&Pd#jg(CSi$^~JwDxC2U^8K03SGuRtKKeEnUdE^F7`<++13}tck%Qz(aHWUQ%*F zhs}m|Al?51&pPhv6ZlmP)i)UXFyUYGT6kc=RZlxckGQqz%y+jj9jGCEC}e+*9;;l(l9O z$9pnpX|Zt3O#`{s(TvBZG=(KPr9z>!>U=z-ZGH$e^n$vl)GnpxDuyy{nP~W#qM}4$ z2~&y+TsRxlz%4-}F!gZ4_}Tbege!&4Qq)j#PMCw4iC7Gf0S!}Qc=?b203vYMt~c6T zFAR~G<;O@1VlyQRRzgJ%ig4h)UsD?M)eUc%^-HMQi>R5rLb$n<Qmb;6wuP5%JrXhAf&YUpX>9kfg(2tj}X6hjR_ z`bjEck{E)-RQMFFw!Ritt_MD9*_S?9O0Gs=8J?sY+P+cw?EPj)!uI`J~`l=n|+hGYd)Ft5qPEF3(WI60T4Fnpkk^#7k3y z{;mmbY#8ZQylXrS*N(wZg)bS0LnVnBrlBFp05g*Nc*hEQEvwg+^|LnDIiwGpFEyQJ zpNfeI!ePUon_52-R4StjbATO%MX{ITGL%t-M1>I3lKF^8DIjWgH?U{fquiLz1~FV0 z7lxQdNj3t(qo;qwdpCiXd@JZ^(lMY+Lex>Dlp?}eS@|l3y(ECA z3RgBR32U}hcw$k23S*Qifk1%H#971a0~Q+?^JnRY0K_M@Tx={XOTbP^8Hfm0V5Uf5 z0UD34xU)8aE0uo^i9`5t3M|~NOhkRGVx-4W1xg?iRP1Y8GZ)62#IdGsK2{ASM5cHO z76FMMyN~R0G3(yQaI|5&MTJ_x3SJu&q^Kl26pX>a)cnKJG$-LgNY3>>1U;WHAuyH! zuca#rAiawR=ZaPFi|w*ftR4j}-}<>(gFkth$Q58sNM^3Jj_bmg@T5-?*(o{y0EuVI zQtT??q!CJQ9T)gBkvXSPekJ9jPQ;RypO9QQYEP&{jwhnSLL%}|$*I2s5z53ST;3NU zAcYBl5Pyzf3s~5SkoKkOJc;_}#eyU)Nv1-zHAw~b1QsoF^meVWr^gOPyqijN-zom{hT+SUkRD|8&zK#QT`ousRwqhodH3$aVa_LtrxXTLCR*f@7y?!UxHKls zcjy6)Hs~~jIVpU{FpUhMK~WkrI{shbR-ll7@l!dkj?c^cZHY6n+&W$zP7#TdnJTto zKrSrB?P&Fv50QgUWM-mbRr`{RNhK)*EWE72R3wldz@DzvkAu9g{deLr9Qy%X;4X-zRHGku_JwHn^HXl@U^t($eIqM3#WG!*Z}m1R*3; z01Jxa3&o~>$FiYI4z(&=!<2ut!jPah1l;->wi|=v=Z*=85~eK*2$rcOD=1JkBxWw4 z3tVn2BV_t25t~nIojov^D21A9iKsCQcxhZU7}<1ra+tul`9?3xE_nd8*b#)8Fi4U@ zN7?Vl5qGF}wor%WHXLe^J4aUqrphw=^zK^*>gTj8rz zYMzyRNM;94{uMJac~+*9%(D6D0ybTkNk~MDfi4oas@BSeumXVEQ^>_GIfY6%e2IuF zIWalHin5g!B!w`1w4fUkymy`*g_qh)EZJs89(N>SvqtuGk+SO5JW+pS!Hz6rE6-GlWg%WMk11*$FgeXwTND5LwQkZUL#xZ4DlKfv~X3&Q>e9!j&Is$-%+$}>3$%79CN^|gp= zY`vG|-+oIVjDYMn6>r4_6s zDQZy-(oK^#a@X7L&66Jhf1tmZcMFBZz zBo=CbK|NW}{v|qRE~KUwPpT%+;1l>*a^x`%LL*RQ1=bb=IuARn0H`FQ*!3C6|tvkR!$XBqK2%6h&@W zF%pML`z&dUn`+mRI9Om?SXIVJyY4=_`%t}7@1;p%uM2Cp)*9p z;U)~>tfMHqTHty$k0+?+WWo%FW1Hm&BX8ld>FKCY5(AKsl&l1Vmu6~vHZ|$E`Qzdg zNRph&AdneV=u$5FRL11L_~+P($WfibczpE&1JB{yI%?Nu%%#auBy!T6;{M9IudedN z10}BYBo|0Xg&t}o+yx*tREWiB+!>sW-q^$$*taC13Jg*+5=ebt$C=p1zmNX_iC?Gu zMJfk{;IR40Q8<1X!jPc)2E&2{=nEHqw>rAt)d}B}BWsDJm}D4AM2xCdl8PV_5FLkb z3*7OBmpW{M>60Z!>U(k8Br(lo7KTL-A3bsJsI zl^LynsMM&0{J{n)Wq~SZ+NeMjxGWi%Jx&t1z9kuga9An|1p-OXzl~nCZel18_)pl$ zGgUH1Cx|HBDO8>tka!F^cD1W|QYaG{rfW34^V+ji&lG}D0&h2+jSXrvP};bp1P5Wj zH5i2P99atg00tgjVgCTo!h<`wZic^z-}^KF01|r}fW%9mG)dbhJ3 zkKp~7!pp<(+#VkanP>?Kk%p5b76BxYEh46*o#3V#SRYbQ;(&u!rxbdht}TGYNp9%? zKan2m8>E?GPFji3Y54hHqgg6orv|L#)R!c1DjCNwgrt(d3u&*O-uhX|khmYnSCtEo zkgZ}|C|6*RkyjNSTD*1uViH&rv;Y?b5*^(0s|NA6)*bTwL{_Az7qG2+e%?XDC0T$i z?Y-013?MNfFYEJn@Pmk8goJ`r52%xIzyrN88j`2qoo(vPx3e&mK}!dF2LAk^-zbyn zNnuN~9^I=!fZvzDc8QXKvk+<;g})ldj5nch5K>(NJ4$d`tZxxj* zxZxxRF4_&i8!+W}C82&(vO=Am!!UR5ZF661J|yobsX~Q-I=Fr4+In(`1e7@-65E=2 zTcGlTA_F_HAexr3r5qQ)q=4@J{=DG{LzgN6^@FAvATcU5@G5BMXyT^0U^5mPzLnn4 zNs^}zV14@+=@OyC4z0nHXGnMO3kJIzk9-)I02xb>chHJdbFQ&&T&C|5`+KiT0}@gY zR9z*Rl2q(1-J9EtGE_>OvCYYw-^`$RyW&a> zgO{n+E=oxyh}HD|nA6q{m`ueWda6tJHLE>6uqsgnsk`6N$IsR-g^CKhY)Gdu(j)|w z0+(>6BE`92KptP;-x8%_lnrOr?bpIC%XOqE7Uz17UpVlF?3D84hOGmD27+(fJn3!6i<`uN)x#$a1~cj;i*!5kA4j-OzeR~DO7SzLk6#*spf8CmNjKk z)|YPLoVS*n*xzC=9ZmRm_@$osKKOK=%KBLvQV&@=(>FaEQ)=bI5o2l1K7@R!ISDAw z{{Y4)QCLUihN9pC2070f;!|hNUKM)xly$P?%+hZt!1B2{{ZeLreZ~kp#K2;MG}{@hZQz| z*BG(GWJ)0jmXH~!0#i$zpm`6(XVb%_ARr+kSOS3{2kVp$T`PTJOX>{GQC4HjDJfXn zwMr}>x3C^9SK`8WdUBMdjcUnD7N~pp)QAPkT#_A#(7QOdGxfYu^Bndp8MH@*AJ&4G zQ?URLNqPr9Pk#8fhT+9Yn4Ez3SWq2}si&h7X%RcQ-QBwV;`+#Xp*CVehPa_fhQLHC zWd#ctdV^z8d*X!t46x-WMq+HmEGf7iTUVmBOShGt)bqS&eI3^oc{1CNn4Ntl%UHH_c_L!b3>Xh?8loH|cH zW;vd321g{CfFs9O6j&?%j_ zF3(pH!{y>JX;S3N#H|xRP?nU=Pyuyg{F9WHEY3kKsVC^C_zC1@VPX3+(1LY?WaQl?^byPd08lvp01)AL3|0>jh?zGNiAX>To>o#+LzMTOzy^u{ zvx_m0&{}UW$}&umaV90v4Qp5XC`>UDW;9l3NFb?Oms87Dl{njRJ)M`1keNuq;mUF) zIldYax(bTz$)2H!H1oy=W+8LP{mkXMmZFtRPzk9eG&HB7rh++L@eQEl`iUP@$mdYg zKltT-Dpw_jkf@OaH2OYdu?J~bEDqY%;j!iK)sD$Z!_GvW9+amX>QvOFDL_aDiUk7a zo%|j>JNiY8$H~C{?-w#^aEP3+m3&!+V=W3&l~95hq&TsTZt4$#zLQC5x%}>SXC{T4 zDG_HzmWe3}9BFbLUnl~Qwa2jt01{q+7d%f9*v>nL!5nI_v%V^lT1mzb5NlMh1Ug(1 zS{=j3c#+y!IQ(jGhCrEzmP!S~>8j3(v2;h`Z4XR1nKmo|bz6Zm*Rf?9Q!*SDP&%^%!jZ)4iB_xF1 z)mFVbyonKj<2|F7z<7YeaULHgZw;Q4GFB%bnzbZ?0|c5B>XJk27^7VO006IsY`zv@ zoocOlnM&k2RHS+A{!&$Pu;(SAAqFSROmMA;*pOGWq?IuOt&OHnY5xFFyE>_VyqSVg zLV!p!%>3XMb%25b$bCzjlQ<<86Oyb}}T9Q&oEfZ?NPUMQSieuFO0H>Xx#c{q4 zCvn^)lwxL%;gXY+L7A2uDXKuFT!vv9*J?OH;FzE=Ycobfty$IyN{v*U!mKGnPZ~y* zD^cc>lWCcYH4x09TY`RL086`>A+x#O(NG06<)%OLA^A9K6j1My@FxCxL#Y;$%zsb8;;im=zVMh8qPFQ%10N zp^WjRekA_@*0U_rFwdZwSkqGE{NP0moC_6#T#DG2ag76sew!x^BubGsbkzb%b7f_J z@X#;~a!qz)9donas5op$66X;tl_aTeoc`7}8k=vD61F%jQ!wH0(n$HV7 zGFirDO=8B0DGC7dcQt+E3B~(AfZ}=AKLLVKQVwa~0#U>YGX<39XE&_{qq=_#e;V3T zsrgP>l;%0yl&-0mgqSlre>|E=Ojz3rSNKIQ(=!21N6S&&x6)JJcs~1-IE2YiN(h($DN0BooB$ta zv;Hdo0EVYU{w=bZ-A9sTS#F2wTnKTOFQ|0f7)g`NRK3JQ&$9Ss2%DA>2zZddj)3G9 z05Q_Ir)SZR!%O1aIT(3GNDE3)@a0QVNdyHYCBlP?+|h%$+&@A;<)?4IO}K&K{9_x6 z;yg74GS!2|V)&LST$LqEOrh~|Rof}<{I3NTJk zLojjq43IF)q~%2g7;v=hW`LBfmx$9_1Xnz zPF3^#LBuuCq!I-}ix(HUW~Dj6B!Fr^9uXWUiV&Tol>=uC2>V!9>FOXZ>xlwD z2KB#{ylc+8!DLq7FT6%5vPY~qQCT%>*l;Q10HBs}t*@o;5~Uz8v$N`b`)a~N3i*pD zR^|X2x?jzi{{Ty118N`NzbHJeNZI^a6b;HzOCca`D!ZuMR1cwUZXU8EfCXL6Yi|o( z_AOSW1?ttPdwciPL%wQ|ke5|W!dz5R&OX#WNf;I-M|$3t_ivOt(Yb@<@YL*5RIT2o zBYKj`<=7MCH|QS{BryEH+vFisxw~KAz05Sj1f;N9A|x`(i;@jqw03Slzl<0U*FnDZ z(V>urR$vBQNjCK9_lJC?p(I0OJ!s8tO;6l{I2>W}kO?$xFV+}fV7rJGmuhj7f* z-`~Aq1Y{v#01^US(OQAuxNsZw!>KOY4?y44N&x{iv$*$ztU=WZ2Cvhy`FmmC^uF0aQZ`DO0FipB@Fr-MPeNB<7%cF&fso-<$~) zFIrNT=>$J6B0|!lq?K-E6UQXoy90k~FbND5{E6Pew52|XL?)3I=axl(>=a0OgB`}^W@LjW#a&pOl4`a}~b=^}-}BiO%D zNNhN;)eMdPpj{y~0Gkil*bw+^*%*qsVlDT7e8gk12pLFfP`%4?*OlpbhEL2}s5Zbw z!w?PZ7@lwAj7|t4#A65!Ly_R^>g}~U#7M5Cf42?NSd|w6&6u?=OLJTxpayGzez6%( zdfI~Tw=REIh@}ZgNJ*$&c9Nz%xFwW5*bg|7Y6^2w7?J>O^}gSCh?bC6NdltZKX;@- zi4Ec}dcp!jqiY2hdJ$vb@!GhA{{Ri?M-}DdHSvg4kUVS~>k#I4vlNoSEEEA_a9nq< zy;{s+C4>9CM6ejCtG$MT!jVpxF$!KHS{Y)5gRnTJ)^;IPARD)~1k3=`IBUM*{v7GM zMMELMA&m{_ZJ@6z?s~)(LxfPGl_l5$fXz-El5W+e2`W}m-aFZwm%3{djJkrL+lzwU zRUc@gMu3o|E7F3%Ai4aOwur5BJa_h8Hmk94p^o3oN2n=i3 zeg6Qc#kp>zv$c-ru9t3cQeps03lRL+(^6a3(MX+@AcMH8eNq5ElgS^Y`}jD$Dr!cZ z;KZf$_sd?7kDD)W;L^?ue2>_%q*4A_0c7qfu@2s#Soa@t^zt!bec<#1$nVy=k~fTe z$vH_OG}e`_{a&x~h_Mg=Q3(oS+irU?El$`&PLykDugWSaSi3l_4uizjDccAvqG5ta zQb@gSPt*nu2fG|GB(Z1eTjvzjBB&vj{+!9*Bi0p7-N_QffH~VR}mptuws=PY@ zKnymivpCn8=yZsRlW2-4N>6YD2L{ENfIbcCMREoH!U+s^qadU#F$(&sbwCD+U`jft|Y1&Aj4DAf;*~BoY$f z9#pHlT)A%IwZp!SN_Ial4=1b=WffG5bbmOMiDaOp5&%F2Y$^)7QlH$bAiOdVIM= z=xDF|V3L(s5LqunQe1bYARvqQbN5fQTS@{$Fh5T}Sd^0$AwW@T01^d9B(b;_Z}77} zw&(PT(I}`;<tOjVKj)ICXNpaF*4-mO|-CMAd^h$BKC=j8nLi}Iwa zDnaiyuU?u_kA*g9lprUA>!n(tngK$yopa!7)xzm(RlnZjHZy$aTZ zZoMz$Oi4^KQk4P;3`k%J7Gp}i$YIO4!6YiBn1=uw`0dk5yV4~{U;!RS>!*i-f}sjP zD%w&ADhwQtrAQp#-qm74KuTPd7Eyb2pr!R@*hPe-9HbRJ7(0Q_Q*D6UM6kFkN&-d!CH2JlfI?U3$s?Wpr`bF zKu8WngO-QN954@Ir(Z{j@S-UCNeOb0!H=fqwQmK_9q9osNpD{dba*o)h9C_p^!Yc1 z_tq+q1UQehg>6s{ZGRup{M!+&=rlC(e}1tbNF2`p0BxYkZN(d1JSb7G*s=PI2qgrI zzq)PgM9EI4QEwv>A)|0YT-1;pmn>X{qk`wz`NCV4BsY(ap6|RCQtm?p(0Ds*anI5w zB3aZD`<|6>UafDX@C1M=HFxxHtR;sJv&6*1`Dxp><&;CZICeaJ{;fo^?o(P*%f>6I znzr9=aCmT1NdU0W3>3eDHAwUa)bxl`vAG(l2G0PO_s3;=WV6bvcvP#j>tD4u~mZ-B6g)H zh9Q9ELH9dSj4Ej5=sUg*Aw-f*4U*Orzl&+D;RRtY_O)7G0tjT(g;B*%b8ZVz{n#8S zfr5kBKF-54SCHNYWc-O`7B&FdhsE38k#%J`G+F3~K!&)H;=~DqFANf;(7wPNsb-B| z7}xQfN>qc~Ak1;yP@~?tK_Y6Z?c+Ujvto5d0%^^6?hmOJGkQgOOmaw^CC^2Otcc_h_pAwRC z>4hN*Qd&Y@3R5j7Dulv^4G9}|B`I%Oi|!@KAPbX@S;lzQBZ#dDlvaWg0%apQC6ub` zT1RxO{{Y)TA1wQA+uk$U9Cz-qnCw_`NMY!43XzAuO+6Ny$(pk^p7DGXfE+}^f2#+k!- zMmvqoOrLN z35XDNdzd60DfBUU$md4 zKcc;u{XgL8z~Ojy5i`L;lZpMV5KkZ^cfKr{XfFQ%$h#T=tYfUkOh$r!Y%sJE5S0G_ zI7o1Smv9=yioJ-&+b0es6sgo)2M;Mh zp`XlF<^(d;#95bx4kSpcQi4E9Aw)0%MfRjspNrEDtWspjB}8`tUqn&Ye~b;mx{?PN(DXHvQSVIkmjo98afZso|ftUlFH{gj!9V* zOz$m}iT?nqy3eao4qjJG%Bd|m7cGx82!xm+#Ei73t!og{5~5!l6#mfRdozNSgffB` zIQ%&al__&4;;{<>GUZJ&fdX2TMrAAjky0pQ;jil7>Ms}V?`iRPoK`;_jKpGp!mKRW z*ol~2GE|e5Sai)%$Ws0Ub&VM7ug3myoKI$56!<>Mvy9s@&XpENQ1xdyTw$(tWJu~T z=VtPVz!8z;5dxNBt#K1Hs0kZ>T|l8Pvr{;P#rBW3v&RpTse=)R;dmLypMy|JK+85t z#$ptfR#ecJainNGEA;YIoS3|1>|Q4punfFB%$S)g1eQw3Nnl;n6blMDi(}!B;7=-x zuQdMv{-l+M)o!V38S$9RPsLeON!ZDZqPf`fC4V(TYbcQV?`pqS zLU6OVUkQ;X2ZWM@Vdc(}iP(9{N+=kmNlHPcS!n?+bF6f}5&B_`}IW$?^2-`#PHe3`Q( z&q8F(N%#nyr#Yv9Po+`d8#IV7pQu*)h$;tsZ6g^%t*&8n1PpN z(^DdFM~IZeg9Z{x000B(F4^LjkKs5U(|*QHm4(4zREfNQ87D3sGPrc4WS@tTI1ncU z{{Sh5pBieYNCd|a;=EEwMBIN6DmZm5a-=K|i8gH9q$Dh6Bq6BIz#VHC-{NaX#LyYe zbE^8Gsa2_Zx2`9mXIiR8L?Kafspzi}IeO+4rK(#kl0uU$2_U5fFv5aBIGeK)u*#7q zv-~DemBYAvw8_e*N%&^VHcZKrR7#XcBob{J6s{#B<0zqB{7S}jtvONwER;|O0B&g+ zoA_Y-Hco5pW14(PW)i5&l45 zp+qpF9d)E(4vTcHe;gmh*HveETHw$0*QUCfK6#&J@me&je78(RTGY6a6!7B5j=5;D zP?VBMPU6_zCSng{KT2>igqdl^@w{M~xnLChIXJSSRV@tQ6cqmeAjJ7b){J9 zo1aN}*@&uz5Y0=(17t`i`AQkm!r0Zj3Yo@dX>p4SRJG!z%0ht!C?y2t$U=%#Qe0-x zk_pp76Tr_@`z$ogj+P0{woMe}K zqQ4VblP=1o7QGMFys9@)bh=|gP=g~LZah<-$Vf*>35Odlo6_^$R81!4>0JY;y(+mI%$^1)IB}V%@v->q6AYjl1;-5^AVE>AvFO@*jpQ4 z4dc^faT%D5NRci=P?A$A{w8FxAz+dUNDdml7xWKdJ4hs9r}0&k8JMJm&IuW1Au@@| zQVjt%Ah;*fjM>&lHMZvAH(qv-g z;-sQT~%>EcTB#exjCc2~Wt*9q5^+SXVOvZOZz)#MN1t@hyAi{`=g(W9zLWp^6bDTP4 z_FuK94KYek;&RoAkipR{7=q5Wwn>?RaC@LTHFs6;95y2eo;xU!gHk_jiBZVoA2A_B ziD$e+vo5aoq-rPd_V~=zp9vj9ho~guP39U?HJXQ)>fJD?(LV>8WPdOTsIaAqzEGZ# z^+bUiX;ET=pcKN_>IY_##v}>S2$heNf>6wa%p`YFHDNBGx@88SvEDhCYr7JzCBdcv zEN4>GQgbDeKl@@1RWg)6m5BpEA72uBw?cKdr#S|`(3ym$ccQh%T#3x8X$nL{EmH|1 zZbD@>FlJ>}^B_fo5Cx%VE*ktx4!QUYK;hV#c`=d~@a6!O1qq1`Msfp&EGQg2c;mL6 zlEq-j!c9n)pcW)emO)zTUpjzE3;}vw+{YpHu7k|J7QP{&^=m`RO^pkl%p)t+@~HH| zlU&?kzAof4AtoBgh?ObQJBnh*X%@Md6d6+GOvcIvY?Cp|ntW7}l=n)zxmdPfKkQ>C z*d9EN9fU^##?M-bQj;xe3R>JyB}K!4rW=bndg_nySLl44T<1&tN$Ch5h{`p5895DG zGbogp?@X!d96r)aS$m4@LMwYDx?LuT2Xo}jojE$Zd%9@pR@7~B-OiU>JEYEtepu`J}*SFt;T z66N8YicJ?xJN`>rn_pg(W1U)De1UMub)_Zm8+l zI%BK)mQG9&m*>J3eISuoec|~rIdGQJhx@R2 z&3=x|n<`YnGHTQjh?^m%D7ZotLRgZ_8JOCH5Yc1Bg|$kC&FUaCFaxy#9$w$BG=QK; zCiEu6-~$Xb z#x%)ESW^ZSA)VR$zq8gd(8h=fXRFY=f*23&iBh%=sSZ3^CQP5?K(i4>-v0oftUekV zyI7I>y@2EXJm6HUw|CgTj4?q|8nAsnz7SG`hX4|#Dz9;BjxG0ZIAWqw;;o@R{pqAc zsR>Xn9rbECzW0WSbemIYuP)qN9^O1*{vur@rN|AfDbl+$Hm^YgFALup7!q^_+flup zsRR&GNu#sY%)+hX&n3lah?O)1l!S_?pFM_+zl2{#6-rPH0WJy9Q1j)mCa^@Jzm-G= zAlQfRclKw$6)=^!A)1|i(k#oumn7v3bR?5@*|+CtmY6}Dj?C=UHF^SRYTm~YH5-r~ z{rHQ;=|}*I2fam@SnJ9CH#f)xIjNxooAP|$>3~XraP)T{X3{NXYJb|h-k(cBK1xX> z+pyxFw7+eko2IaFsJ?|pI7ipdF@k%D%D1Vm(r17Ntc)e z*nb{HuUpVHN1%x*h7+`~aPDdzzq60&h<+d-v$!qo{{S&*2}n?+NQRIN_SCqq-LBQA z?|@Q^Ijeo*#1ujgx~0q4w{Rcy743)>FcFn34##`nmzm`jrOR*`!8&SNo3{S|Z6ZoR zB{pP`z_p9p=~wOaz_$AJ6!VL6rLm!G!qs6%^WO0}JAy%XYY}1M-+$K;5;IcVw`+@7 z{GKkLWhe&ZFxZygPZ*Gp3#({w08>5a=7yvP?Ll#fiO3idb}exF_ z{&8HdEx>fx-wZrYVW5NZ%7Z@P-0%a~R=yA05X>qdsD=&)S3CH- zUi_meheH>4cLt5-YCpbFIv6e}?LzdgdiNv#uZqjer4SU%C{5m+{BK6qv6Ys98JKVK zKYKIjc&kB&R05C^rzvxDN{4&)x3(*&6+UBaL)gDR%`dEM*a={if)WcbA)iL4Lhc;= zqN@ozSSreA;FdJz;h(?lii^q#BQb4B`g^OMak9!m2_Yh>q42AL=RkD0iqxt>Jb_xL{a!YE;&qdB@IGPdj+j`WB6s3<`^+ z5Y#y*U#bE)Wp3FxV>Y8NKY@ zF>=ZhcDM4g8@L`zRCs!LzCL0}1d6(kCaL>0ZP*m%RYQ#2^bda;bUdQ$lk_bNNi0J< zurw8KCY~#bi%ke3qTe{%aH$FBKz6$WudU+z%T+`UXk79t;EvvJLx>F?&r8$K=^1%r zF$^zPI#}tipGrne$s-hma0uYt!8`(3zx2QmNiF~yo9($BG%WXmnJAE_6gLCs^|WSf zJsrYGKa`{pNh-KE1^jqnb6{Fh8S25@+g(2~fXCtT*C-)C-=W>P^Ez5HE=4k+$SPtP zNhZWUe$@fX8aEiNMGy!36Kgk4Reug~qVXIt0aSMIH6x{f4@$e;qcLQYWzgg|q} z+LU3(hs0`@pi2h;v+{o%ddENFk`hX-P)!3DO=(-`(V8^;;361s?m)3F3pM$rd9DIv zxrq;8F2=R@;MLMOuNcCII#7VxxFyBz{c0%p%-I~l+Ji^F(!#gl*a8Ld3MLd9)ID79 z?%T&Q;*uz#s3bnsqK=ohUD>jJSvW{SK~EGcKzotd+n)Sl+_}V(kOdgK-TV%nZ5lQ* zNvfWkd6==bMGL4Y-~+F;CQuhFU3QE^)?jw`{^2{E38MQfv- z90t>@YaB!`3=HXLLX5XiOwRIDK@?RU+OaNZ%@nMs;j^NVqnX_2Cd~B&%t)p(#&4QU zP0E;sTZ_xCB9IYQ*w&$X;-TQYIYcY=*m(0|D|i0@u}M)QL(cJ_ai7#)*GekG z;jq{o9HfJmb{x(`Zp7vVM5#mtC=%kO$#CVte>LrcP!ndAs5w~$MBI^Dm#(bu z6>!`sICO;~TN2a*Dp9!rG3#HfO@%rXz^E`3a(7jM`yX~-9082Z3;=tnNB{<4)^4}( zZDLuNR!})XI^4MGUu$Z1a}s|Lz$pv#k_o$>FGuh^U9p*$IHWNymm~n+o!?8^um=v1 ze~6{W_C4(fOyX8*e=pHq-dNZAT;gBc0QVe$sT8Y=-@5&*}O$8*oGuQgJcfhV-1Ps+7>fTj8Hh)-=64HeR3|tPHa`(aR%LE9L~^FUF|O9E?udi1NtcM66KKqaVkFUro{OKoXJ#}h?!m?H`ry)+=HQ3e`_-<^ z9eaRbGbULHv2t%x)in?0tJW}He;h1C0f{^A1uhgrdHcPvvb9~=kBf#r-Rn^udxOa+ zC?qf>QJROC1Ae!R6{rwMdjzPzl8{>B)o$N>AY7UN^e${D`(Mx2I;RI91hrj@HmWX1 zq4N=lvtze)Ne)UhJ^f-md)O9C8`%Xc_7aPq&Nrz6ll~we~$C8N@d2&vF{o z=M?CQDRMT^F2E39*!J(wj7pXzhA5rg@p@`I2AhLUt*!dNHJYrGZX4Bq{71UG@b(LG1eEGs9I}>0CaQ^^y zVBGfY;}RuGCc~dkJtCCmQdATMXC=UHh#DKjsc6j`0j<3GDLZjt?y}WTOxUFAs>BF(jqcEks`L zm5o3RQ!6X+!%C)5vF-nQem=u(kVpxJr-qm)EBO>t=6)+Vk z1eaSns7TDFyU=>*@vQw|>b_B-@;RkuS*jt<#B(nKRlad43S^}3x#y zCMzF_!p&M1aPt6lIzyMKSRuv80o>L*N9ot;wl}o6i4Q4h!Yx1rg&`$C>QbbD&R7Ec zo!oMlshwcddd(9OkYg_loryowe;mg*_vVPX?_tB-bA(jPxdSoFxpI_i%2`4x_f0c1 z_idOfXOWaUcXEX&x9C(Ux_-a?3446^{e0h#&-?XyK2=7y%vCc%s!m%v!mX$DC4(J@ z0Ve43I{B_6S>GO=!7l3#I3(wgzx?5trm_Qo05&m9f7N)$;IGnO&i>$1N%=rU>rMov zrBjKon}K0($kFMs14oX4@)D6odMu`{%r(eQ0nZvKF_SpDk)fs?E>EBBcgd(Y97n2K z?t3PW%R~hYMVSHn3~qsQzif}ue3&NC%4l)FOC0r}yH3*bf2Y6B?@Z9f@&r`V;XGEQ zURVLG^8FYBYoLi<(`yO`;zco}k}3g)aFd%7o3^GkY1R}+n|9!AIa25(!1+;C!!9l5 zefj|pCtdx-k9TFbE(GB6skyedIm<2oKtf9=#Kd-#GCe7sLt1=VD)27U6M^w^N#`^E zsz|T<@QL{XJ*kgMtCpO9y)!m^W_Z~_=yvVjSkc+XF@6i}jx9lhgDMrFxb{m>a3Oh> z2KY9Dm~^xoiVp_qhGEZtnm(Ja>&&H$3SLIR+Fc)A4{sQWe8-m=Uw6~eyVw@asXS{K zZM|qfj|UcEkDWhy^^?a?KopuOgw^!oJt)=f}$U&DZ_7~VKiMf&W^~Q zqn@mZf#9RD<3#zZ1vwx#zON8BQa2#4mKykcK=G1()6w1D0}emb{laO?_HyWq(?g+Z zM1^p$XJZ^8KX?NUHR4p`s!{CU*jW#r4W5OJabf5C;Jc0N>XGa~#e`#n?&F=;|I|~r z&IX9;2$@0aiHv%CS84(c4L7HWNYx?iW6m3g71x+Cex(``E}CWP7mRtg?oh+ctg9O- zLXHVbDr&*ybSP33))N$citmYge}0QL-DH>jd1yRxXYtVY``h>j!fA!Ra%?yRLXFs6 z&d1%--Qrm;kKF5bEHg(wh|0+yu!f=1xfRAY2eH&n%M6gK0RP*$4u0|baZ63V5;JI8 z$7kj8E0_O4(UYwF_9l}zb{dLq@~vFRP3XgrvkoYU?A2OOfb(lJ({p~$Z_2B)*oG!a zlwG_E)f|I|k*g zGV%FFmUUAH4qtY@Fn9X_-oXC=Q=;|$gsdVLs49Y-`OU%bY&P@CUVu$67A)t1Eg8I0 z|K+KmPDcqNJK?goM~n8_)p_qhWwyjPZI&9ZynnFv{jv|Pwla6MqvtC^eZ|MHG?1%L zUBlxfAO%!$hh4%@@|=;59uldiCmbfIgRGpiwn}NETc!(;@U%)I!@{bI9`ep74*}W1 zVg)o@Q9!vw4!bcCU_L-0GH37~m-Ug7_Iu>~HR)kpx`ck&hLHs-dsOFoP$7=#O)oSj z*0@%3Y>!RccfrWb$`8qx&qIIK0{*&gjbAoq?Q3Z-0CD)Jv4kep-2wunH9$NHS3mp^ zz>g@&>KP_1TE{$eB-V%JD#q9$MFYJb{%|t1uF0J*q`iJzBip$Fr614!62EBPDaRCS+)-!cCaH-;C$N>LqjTk!aX!-5DKU= zZ{<1sY4%U&UxBAFim5oL`7x3DWlXGe`3J>TP#AV$uqJvH3Q)8Z2GEb4+g+0gqsFO|y!nE|Z z|5o$|e-hRgR!EpC(_vMKqGN_O`4cV>TPlY=K_GS$qiP`T+|#nV`CDCiei6QW!-p_j z?r9&$WyNTQ1{G8GNwhCZ?P-=r?syG zd9$8#oS%-}Xb2@^H{o*QXlC8xmT#!Z$F!wXNXtHUY>d`mH<5qb;&s+li+C%M*}sVJ zG3G6CX*F<}rAzg(A+9LPz2o(-%AVH$4}iHRpqZ&ITV4}&p|bOAsYB&1jL%HdNXFj2 z9YK8Rsd$M_IW;cnq0Bt1Db@E+@BcAAx}D+~EOu8|mA`rd!XXR*H8N0YAV)8L7iL}l zl+|t7k~yI?I@i5xV>iC6>VWTk?@~M4s8-zwFrmb%@l)GShO&>v&cDq0N~B3FQd`l%dqIjB z-|PMZ6rD$Q5e*454Z;#imJ2JTcf9h1HUmttX~k@XhEk2};leyYB;Pe86W79@in`HW z>Y67bHPdNxGO`ylz*C_np5^1K*n56b;eL30R%5h<&yAnWbk?ApzkRbhKdf>F(I^iH zfW*N=iqLD9ywlp|5uC!3%AVfc+TGrHrlibaB;t`6aZqcQL{>r9EoL^vS=`EKrJ@HV z#f`$N&&5B}3kt(i68QI0(i^@6lpHkmzc0 z3vjk43}5}-x3+h(#Hf`1GSh2+PG+fRP*}H^2ITB_q>s;4Giy8m zAEU3fSllpbAN#bXXi5O>FFs2i#;6k$V@J-DFX9YWHh3!z^f* zZ?kV+>+_KwY_V%-Gai6yPbUVr-{rf)SXXMnD8|Op2W8AZ+^7o62+AL2$>nXjeKA#S zQDHFbp20{Xed=v~FVXP!OGfX$WGT0Z8PBxUBgVW=eDm7Ua8!vbU}{4Q|O;)29%jRLYna(Qlyh<-yK!M&J{r)Z8g+>Ll78%JZHJ{ptyw z9|8%a1As;&y(9u|2%EvMcQIY0s?U_OeuS$+6VGu$^LS9OE%&@EcJq2yicBJYk+RP1 zgXX9w~BQd6*d8{1*lT<|!|q z=i@Bw)ckn+Yihhp6{sKlwk31`rb2J%D=sRn8@-}e8PvxtxoR*P^LsvD-ec6OZD5!t=zM>B zh3~peq<%?N(IH(b?M!RK_pl(GJN_`alkFmV?nf2{iqNNR$kcGp>z0w77$AikPzmfL zzS%7Aym4nMA)FGTYKN%_uL#z^8~rQ7rTuV2!!ag$%j}BDaQy2r>AK^|ag6nvv$C^b zkLVLWou&AELoZo(RIjqD8hlVCr4sKp&!x)-Kxvq8E+>B<8BZGL5(N}~=WOzSq}=EA zR6N+MraY@7DC(8ph(wA-vZNOTPn5LFT)b`Ifezc;-Xg8Pr$Pu1gDJp;arAB0c8POp zD1pJ-0meV(sN^`i?#vclU(Im#kF(15piEw%-N*s#7X5EwZ~U=XujUCN_XY*{DLEK@ zt76Y7z_K#|U7`*|pxn9vME(Fv#iJJbSVa9*myUmhQ=zM$RqjLFw8nQUrY43=9|{e{ zm6z|F>+_N#Qe0Y6i%t`V(#GN)e+Z~#UVHfw;ssM4STb83{}4f`dno^j@xZXS1zTdRQEX+g zq0N)i3tM}}A_E#h!b9@tP{;Cx$F6;Zq=sMqV%*JzHNN^2UvCB}C+1(UvBsK#R|Ql- zw>|3nr1u+&WYE!W>-hvF(R3Fc?{Qnx1$*G^SauKC0+U8vk(0l~DHO z{I$}mi2l$C4wlNsoK{IHS`BT(3-}oIbHvj`I5}$V$>RvC3pBDejFTkc@7ojBvT~Za z3KS!cmOsZ!1n8L*Wwh)*F8wQcHf zXkYE%cTiK->BPHPbww5Wz23Pv$bX+Er<6Xs`3YgV_dY|nGq=qKlFLnCxmE5nAEwtB zTF^e`MgigD(=y5pdM}mz&M;b>e0OyPWq3_E*09v_B#;aH&lEST_K8TA(&`P$tc_<* zTV*L#7;z`tqkhS`Cems~(7B9_{h=$C@C*Og;TRkXkb#Mkh<~KgGg4@k{FOpw!C#PT zUeHx{JrzDOPZ1*AJ8*U{Ej9ArTiuSsnz}s^v?T2?7JnM)I{@-ys0nIXJW`idIc`P0 z8lLbZw_)o8tx{GhlY??BUaF(KH9h`SmPFxSV6EsI@XO_8qvbXj4(5dX6S%Tkm_mgZl&o;I$r{~n#Mz4DD|7A4gxEYbEpxQonU zy(?f{fQ#L->iVyXZ^%sN{Jz1u#)FuYxIDf3z0sAF044~5V0PV7y*(5SCTgcI-x4or zwbRS-D`I4p;Svi2+`3cGoq5jl z%oduBkz!OZfdZVS#2pE_0Nv*6Z7uhVEg1`R~G7$~PJ z>9EAtpKly(!WgzDb2xfy-D>*9`ry+0d+Y<%9y4HmGS-ZTLE;GQ|Jd-Je}K^19jIdJ zaMusfC;I5a071Zn9ko*xbuw2Hnvz?hOmgh=k2(g9hQ9pHR_iC%2kYu$kc=bImV;tu8tUU$?=X1wP6vn;? zIHDuJ?RvAzm6#-?m&rWlHyrWW&$DhnXWm|7VUEZTeW$~(y+$Wxf(4i(T$0kxAb_=F z!J`FtUah(S1=r5eGE#07=C24TmsvjAx%A+phG_Ce&8YcuS+{Fj45YgHOnULq{Y_wx zyJPbXF5sBr!t>Oz0OPM5Iy25DW;aX8g|fA|Kx4!YSo!?XiW@bXKH15x${W@>ktEqu$+_8qBGV?aADn3#?j_BKi$?IJi_r*&!z+(#pl7h@^S7{f z#5+ADJ{lGIL{<;f_+AmV#1|{)X;c!{U-g_zj<&mOii0f7bQaw@l+aV?{PKxcl^dZ< zi79TfqrzyX)qv1>@X4ZpwqF*t88$M2pZHqKws6uguNN#URP~t3P67%?wR3Fi*Y#Kq z1-}DvkH1)xFXw1|S=SelpNK>#a8*hvXV=JEq~!ZqYZ2%SUlKFafltdb0eBIC*Kq1# zjuvq-V0c0EKD=&VZx-pCSc790V=1Ug9Kq;@mp=VU0KM~W$vee@(dw%=d>rzREPX5$ zy^RX?$etIZ4H(}OF^WQ!lrBtRBFJ6;8lj{?A($RuO>6YI(d@M&$EhNWh_oIzoFr1X zq5@GNesjL#C0RokiVhVgXmoo>ZZ5DO1{1uDX0o%)j!9JsleRD0Ehwf|U)9i! zXr-na00X|8?G?jJ{tRLfHU z%3TSb1!$@#8e?zIhou7KJK_7+U3Em7O47;in$A&nwC!>vjr`h?;blXLLL4lTcRjxe zzrVbJ4@tC@aovl)$nd|BvsM>8&ua3Ez?WU)DN=mnWMT-BqXrpMlTx1HfC54ViLu5C?*M$C<=c;j=uDY?-dNU-Ohv4T`G%~;>>JEp>%J!u84@!^>7>u#gqKf{|3 zek(R}DPf->(fuKfsIqg~R}J$tb{TT%5MGR$AG)E$>wR(V*sm-4dPc=IW0NHRgny@f zFi5#c5Z6o2$ygOCLBU^P_fvU`=&(z>^~tRFxQeM*q7a2?Hw3WzZMW;_kVuMz)eD2! z%9Ci?zUy3p2DfPVXUSHLsF5=SbzGBg`9X4kD9JabG9%_j5C9WCqrX1$<>rSEuM-BrU~Z5Uxg=c|Fjf85kHF7 zzIu@6kUw$bmCdAv_{w-(alH$yURu@<%@+wjto*^@A$5%kR}q9?bzzKOdVbr<>r(RA z-)Acb&pSn%CJ7Z*Toe{wAuwruzNd%d5lU92eO*br5Rn4*9CF6uozLnCJI4(PcUp3J-#l1+jVUq6a&1Ryn ze%z4(v$Qx01L6^GNco?sAUP#6T_2Zu5>Lx#Ct)-`P^3i0<=B zmG>HMK5((cnc<-gI_A~N=AtaFQij2hjpd3Y5%%80prp;P4YE+JqmvL6&>!>4J?FA! z@L5-%4M=VsyO!NrO5NJ?nofaqy$FD}9T}yieXK<*`sf2wE$J(h`ItV-#iytAwltec zzC9Eu{q|+=os|1E>n8cJ`S~veLHL&Q(NG&NHG`F+R?%;6z?4H69WCFT!aE~-{fP{W zgJyA$>_~;Se|C*H-)d_|n2+?b`km+x*1#C0FgTaTcx;k5wE&rYVT+&V=0>E92Qa`T z*TUXt8JI6aOEHdk1|M&^s?44$_ssFUR;VdqJx#*k5T0_>a{z_atXH?^boTe2A<4A1 zx%1u=bbVIQoi{pxzE62^Veq~&py?j6AM}P?X@bSGCTW~Y(!2Ze$1UDrJ9?A34OW{@ zi2^%;d`Tf^!BI2RiGrk3NK&DQDacL*j~ALo%{lE$AH8#WE<;_&@prtE zf3I?wAjXxFJB>2dgCmST4mi$I&2`n3{UVOj7H- z75$hqAlR9qZQ`s07Wb$whe+oO+a;Xbx23Kq02yJMV`0P-wDOBuYw@ztxS0ay_Ygdcq}tnwsL;;%8dn-Tgc=CPKvO1C1ch@t*=1Q^%VZ&1106BJleE06Lec z54%X${d0W%DVcD7v}ye5XGJpF83x&qxCx*t0~;&k;}wX!F6N(VmT(KeP+JfD32$=y zmO+~AtV<1~H|`j|m#Ef+;@_)Olv*9qb^@!Q<*rqiRH_hI z;sT``pNj~}VJ(cye$lOg0gu!5q#02r*aB_yVVs&68+n5gxE*izf>^bv<#?w?driX& zdmz4z9-W-LE2*3=I#V!oT~P|%Ght}=dS7$2*P|fO*$Y2ZUYGr+d&Vdev$T?=lry4r zkPjEW73(V(Pk+>KjX)NgSVfUEEc%0(gM z!{w5m%L7-m;rK;@VW%468-bnbs2t}ke!rF z-L5GCl?F2#f+jl(X zgbAAJer?~cNExFNED{8HpFvg5S0~Xwzh(waZ4N0J4UWDST@c_KFWp^6@mjqnw_A&b4=&RGx)lYHkxuo2y**On_TjNu-5Pg`zja-H|uU z={iR3!o04}9r03Y+{8dqOkK-N0=0s`EhrPKaNP9@_C@mRUc2_u<$U8&|zwK!T)v7UpD!{k)WUDbdEN!OHv$ZqYhV zeI7mGQv;W?D#|hU^UBq@V4d1{Y*aK=yd z)igASEpY@CZ$1D^8Ztx#yvJs`>Rq!HxVHn=umSP_niGHQyFT$vIPk|brO~(&st4bA zri_}bB+Rt8VPoJLLqFDcp520bXs6r}A3UnCn6A!sVrHwX0<rAHsyz%s6wS*)YX&;8A*5K1@#Ek4jcd$<3yC>F?^%-&F z=Pec(RuTZ*3ccz*d0np_BTxL(BrVNsH*N`Z-^ zcHU`dx?Qr~uYK_wV>A)W4e}5_kYi2vaDgH9@1S=06)wt2ziv3S4n-*oIy1=aw__i+#!ft}>nvbIR zS%g|jhLZ0hXACX_Jn3;A@Ocp5FzTqTrXy-DVvp#arEzTsm-|ORt0vKXSn+dylKPc} zNrzv?I{6a^XWMnNv*XXe*|>7-7J+Y%Z^E%iaM_&cr%xX&weFMy@jhr3R{~wC8x;D3 zjnZe|%&CK3xotEYGulZ%4N^fXW}t5K`(68IKQpDb$a|r_efbWSZqqks2>YWv7OQ-E ztXc8$IXo6`hA_%LF;i-(F)TIafmQvepZ48^;F+n@`Ly|q@m<0-4GGLydFMP`IO}8aKJ@tI3Ui&MUMWZI{{Xg6 zl`H-jeSc+lHSDWB^gwFB7Pd`n197D)=!*j-eLPfJJ;){WVgiIy-0)oS@D=1}K1Mq| z4m+3tu>gjVIxSlhHl^G+Ra{@4_98P(62$$%F#1y0MHQ*+Z&?;cX3d4^4A*$=sa+k= zG7zZ`@si4@o+RK*9FMLMWNGD|6b&H2kT;7la9cgTZ~WMQaIBb+r&@#ny97(inTv`( z{VDML_=SJS6C8hcToiqbO^$`Q9MdM{bWUG&61NBu zsz>6fzf*lR_TJy=0YN=y3Lx|f5HO(w#%%3 zC5b)8gCmYxPhCe zR~NPnOk7I79sMzA(|{uI90q<(3%~91rNSze^s@IqK;Y-kiC}(FJ~P(kvETad6Tx6= zUEJ8MM|VG|ATE6E3jT~czT*$-W0b!;JYqeZn=c;3`HNrIRLbwqnbf&BoOq@#;KC$7 z+K)V_y=G3{?f)1Z-Ts%8sl2=AUwZ|K$I?CQI&omrxV!RJH{@=NiHpXG& zsvc%^kPsSO?#b}|%%M_iaB?(^3?L2=m7B1t_DqlODyz`3jw(BdTfqY)7vITR_-t-} zbOak+?%ha@tNBD`eUs^^{;(G}%mdp|^zh-qV-7{4fTO(#zfVqIy5GNPoH2BK_|i2T zmVm)L=-WM{?`|THRn{y}bMwb$HS+)L*E%n@^M!0ZH~}te{<;70xYE8PbjLamsh|@> zFy#iARsRweojv!G3BxxEQcd>Vn4>zVT)hAHWTnBH5M6MTDC9~rE z|NOmbexlR5v#q#kdGg-$E{Wg(a{rK@kU);)T{_WB_`$zPW8~+KqfshmQx{{~$zq=* zUbx1}tPT9D{8Fq%JFnJZe6vP8(lmayUcEut2(QQM`nC>YI6v(vXhS+wsT;#4SXYK> z6Dkhuy$6C-dxBfqd2U?zhhE?F@ZQ*&9;or4g|^L7e)|`dpw4c2_TR1glDKK=vk7ne zT9X5BaV$J>nJOq%@ojc_;ysvDU_FahQ82f5&{2he@%6FYs@QPyB4wWYAY3Max^Z$7NRB?rdi|QmAgT{#Z!i)lS>#i#(`9JO2D=?LV>m(l% z?t^^9uy-yZ?0b;wI!5R9iruePH{tM{#{+E?A#5@KW_efF%fS+!tM+OATeH;&SRVUD zU{R>dPVtSJ*4AIXoAs`j?X{OXo*0l9I;>1LYLru|EckN`_;w2Jvu!y)566jWQ70e+ zV$66JO~@W<)Ya}@jV~L}Vy^ym+iK+*I_jnv-6oZ3%}_S?NT;D&xUZ`de=p)KiGf&3 ziWZsXqTp|Y{{9KpF8e+sP`3T7D>ls=*3HW#WdAH@Ba{5Xd&Cwa%DDQbQM7U<_#h`g zP($M5kMh*0-&+%>i^glU?-Xv6}838xHt|2{qCh=}-9ZR-{;1 z71HrXFJVSJ3$j>$>rDI7#Ukr-sT*TM;-iCYLzCY`Xc+nR#H-N{R~M?v3~TCAODzkE z%QBBg+mV$`4%{xTOvz7uuB2g9H(J~jFP-WOFrx8&bP|S10ws|fq1h@a z3QQKGVqeS=pBw#Vx|QNf*LL><%pIMY(39>zb6P3+p_I^;T>c?bDoZLBCO6&@(zLofO~UX-`j$`2XHpk3sXmyvob*L1#X3~WSYl{2l9 zu5J07);~!tRnN-R+GIYoc>LdY^8_4?w}lB28HJ6s@&!`1#^9JO}xl9TNs)7sO?V4P)Oso zmTEyY?WEuqvh=Wt{I8D=KKF}GWv+=f{e#I(PuWghz`avTlZqgR7HB^!khmIGl9s@# zp%Sx1F~OS^8f}df-+L&w{Ksmu+LpMXH}F&dFBl#S;$a^<-IM;$i^%VLQPrZ{s$;vajIvFNQmO|XXTLUN_I!&$ z69}zraazoF{EE!EICtJb1lks=^b=Gdhp`^$e=0!%$LT3jUv7DC7CXdycuy8rmZw^E zQ_EX{ZDb~(>5?n zWBQ}DcNgcrk4U(*&ha9G9Vds$OL{KuAcV&jS73O?&m?PH`@SW1e}4ZfQs>JbWxnsj zIcKg>HC#0Sjt+&7ctD({s#22ww95pZostEYf$g6PMM>uGU;E~Aq#`=LP>^IJ;uspB zGTsl){}VkgteiTQ8^xw4iUqYq-zu9c?f0k&nN<70Cn^5rICSR%VY!|-=DysaP3-bd*$9SZ^evdNxW{uN-oMY!-(fyjX`o~qm`dL~z4a!K`hL}8j6m*)? z`r}+il4)oNe~o8BYJNXB5o8kG@#@<-=TgqQ3nQ^Bm*Gad&`D}J6(PQQr=@Q*)?0tKWU3_uv5iUgW6Bo3WeJ4VmADmVV$$n?T zM+aOoz5iB9UwoxlchY<;Y?pz-kqLMf;m18|ChFgi`=2D2H)68YaMtB0FAPTAtPYTE zV_`UZ=J1Qc7lGz8%Vpbh?)%*tZ}KjC(&Ph;%<~c@AYSrnAH>+&HqA`|*5>pdiH5$c zQa#c`hj*$rS%CxFwsJbOg1LlFszB-TOfC>7y4a|oKGgL9v`#bH z#{E+PT(n2}$>(0jaq8Zmd9~qIIVY{YKZ47?Ke*F2tBt30hr228m|26AncN2O6@iYF zBK$-!2AVT=zUadRpL>VJXRs)aTLWm9<1~bZ9)_i=#P7A$i_33+)cg8H>?(=4|Jd~U zCm}+uZX@)^zzuCcjNXa-jx%rTYobsL=-#(%B^?m2g}6(U{6JP^aphTpm>;pvnBpFZ zSp@-2D279;IH6LWf~8z#p@~VM@n8_Nz3ySgNMCzbhAbZ?B5ivEjW|xnRBFe7ynsSN zRXy4G#rt{gn|p_zN(KJH-?wZ@&f+yexzn~&q{H-d&U;4|max_Bb;os9A&X&p)L@+#A4TPq*X;1N# z$j&E)=Uv;QKN~Ep#LEjnaZ_SQ9{;$GAdbuYa3--VkNqsGl|FB}a;^er>~LF}2)}ua zgD|3T&_jc7^5wf_F%Z_^#vdIMYR;Oc7coY9^tKcIO0_Ke%(^Y<*^r7vjbiANXIfb_ z6yz(3Kg~gkMcIxUZqW!h9jLG(rM(vdlY>&H49B31iR!$D?grBC&&)CBm+}2=DeQ`_ zcq$o0BS^;^`tgqrxgbHQt`s9NNHPIVc zUM?N*ig*D54UF?uE2-45*IZ)1qjuC;I}gC+>Ay}$wlON)_Kwd?M2ro0UBo4Qia zC-BXGtnM3{U@`JqLS^$_kAMlIWJ%EOg{}Bu`c|~;DP-uE+3E@y3?@X^1JEW-*vPCD z+rrDIKTZ884b5Q^{_<-bAb8TYK|maP;m6B8w`Z^4F5b(bWG8%&w04thRVfv`qM19H$Ar552Y8sPuFP&kGtpX%n{4C+5A=Ao`b_CTTl~OU~O9?bdD_79m|Y5EUpXHQk;R;g2XPv zn68qTZS7?hZe4rhBXC!f{~e7Lm6rBp?N@4(lK@3m47)Xv!jaJF^2a~D=H|9^&{yq! z>$h6u@o!>Z=5+LV%mr$$Ry2zBRkzDSmHaih^n6DaVz!(UH?!rqU8xRlJhX-4bPPkH zVyqNgEmZx${|>gJmuG zf7h2;n)dJfN|u!Cb>$&$TMsw7O4-lqfXR$FAN=-|=)AXLhQC#LW8_3;@P`|d_}v%Q z^jqU7T3jC(dFwW(LWApRR$E`dO<9%sZUQSb|AgmZ-U~s9gacU1dWgwb6ocgtNPy!^ z$5yz4&KOG%jE`&ucO@#ECr;zh@G;*S>dfcKt1Zrno)M0Ugjp;ln=EX=GY?W^^0TL^ ztcFDozs%N}GF>l$H7Ijset`zvA7=G)vLusyqKiSWNGv~?p^}6F^L!IBW)mtK8`vqCxl?szd z?XEw_E9!!%&~Alq2cj0q$1XRfuT+Ok=_6?q2V>XbRCKQO2FtVgo`gF|Ws6M=a_(Bt zVjd9v{6ly|uco^WToHP5HPLgYz$Bwx7ncrKyeeNml!~_Oc|??`HR_3eV2o%fut_lC_6{Ux>SMNjnrT!Eq5;&OGx0m zmD>}z?8D<25wkh|Xsn$(>7@YG80%a*bNGqlUXT%(v0J5EEV298>hQA>f#vcqVt!vj z2oE?-r~;`Xguv1u#7iB&h8NERqp;ZBP>r_z=v^RFXIB~{Dtgl{chKCK9P!=1Z7=_PoJy{g{o^3ZD^Kft3ux_n-87d#A75*;H0f>+P4_7ML!Vu%azP zsD6mG^k-pj6Y@2!R)J(zO< zIV=hoWWMHFSO>8wTs(X}*&huMhL00}7T3ky=qdG1Id#d}^TW@LTbH~w_4B-gzja4| z!Rg%aLY)SJmjBlcyfQR~2$S-u4zD5Zs9+acS_E@F*s6sAF6|;;!kVtZ^HNJ8)y>42 zYWmn{^Ow3$D@-s*q*#0H*EO43mI~DD3dJJCE=Ay_q()YL$Z3AC<3*lo#IO)4QaxR} z6(Z93z6i!rjwTH4!VY9=e(Rk)?adObWmwE7hZb+sW7SM!=TGlay$&C`1J2=#_MZ*? zuzPY~c}sKrXu7Oqc20XPc!A42RUDyxI4(p@tdTOQ6v@-;IWM84O2uoC6?ML6t1if4@~|FhKJF7>7W7*G98!(}Qrm_yUi z?~T#_3cR)lk1AM=zDnYTh3JaoQ;JT=liFBPe1Z^U@?J%J|%?~-rrR9Lg~I~jVAGB zO`&(b2h5WWyv0pJX56 z3j<;un_tRErdSs;%J~0iC)L*p+380a-0=&N*f&&=V2dD!w_@jWVR2jtwQYXMG~(qa z-r2~(Jg{fjfyVk`o6Q{JCp>pKF!wmA}Zx=AX!Zgd3&BCFb8# zjsN8Y0lm|W`V}D)`+6EC#?TnHwitdi~HE=GRya4&T1va2*N z-j2kigxM*W$I5^onWlqC=H|)-1RTbX^5SANvz1E=IuQH&qa;_7iX{3pTzz27zkT$l z?}{(;zWxo%^O;#6nl1-Lf8v-QDvBdRcV{Rp*cuA$wN6`_oAd`MiY+pt7-*J2>4?vV zgdt$PELkyR6WKMy5=fx#jqHmC zR0YXjC&xepmIBO=>eFjrL$%3!xi>vtseeoh&C|Ab8e+#xy^L?~aR~ht#-WZaITV*$ zlY8^(Rjqb7(iD-(B406rG9BiE)^ybU1n|GQy*ZoaSUg&%=UJ)&P6XuOhd=+Q_`y~@QuA1nugIzFhd2_6fh2eqOVgn8G{ZUg{njjPjalerqH5Qq9nap!cV=W3NL1 zv4rBB#ena=F}s^@?!)t&5F!1q)e{8wL-5+%sCm5j{F03HzT9dq^(vUdkVEf0fssHH)i&*e*YILu zODSeNYx9;fpZh;?lHPRe6&nw&Iw~Gx`QAQPCI91{C^A~&Rd|h`e0%xszrW9jr@c@b zlkQmnUzY=oz^`d&^v^wZE;s)C(O5?OJ%h!D8oj zu_&8a>v{ev{akhMhohgL4#BfkcwqC^D6@%dwFj2#0*i|1e(2L*X*`Zd!CmCG|9J1& zipI5v-l0rGJI*e(Bk^LQO&64~#J4c)QpRgeHzEHzC*@dv4%0Qe?pNbs_w)yT8$wW? zmwVs*;)owpJbN~{n&FlkjDf!!XCG5wn$io?yye)g0_djAth18=cb;dMX9-b@hwd>9 zF%0-?l>NLTVnl^H`S_H**N30$*+2CvLVO)yaR5M0uWXr(r0Gj?cCrcRMm3qFqK3Fk zxF@nAlO`}Rvt)E!yR@DTxFOX&f+x1*8flR({#(=C5tO5rXZr%vEQmih>W2$X4xJN~ zf99_7x%RkCr7td$EQ7$+aS&9fe{S70Y4Ho=y>Pd<=Fl)2PC?rzR>_A5Gc#fkAQ~6jS5Kh3JwAi@% zTH=SMSoN;^FUlC;;6K0_H&;IUryF0C`{Df)tByYZtSV*~79KYIcH9#bv{3_7Q#AR+ zRN;xSz!hrHsgYC3W8BWAq3je;Ffrzo5$~H1zeZRk4b2gJ#N~9sjoU20Es?}0SA|FZ znPB+PPP-4(i0y=9gQ+w|Oep$RCr4q|e$UrIbqDzFWN2pUDluv;(dG@}pny#|ka1d6 z*1=)v)LS;HxBWCX@n3GUXGHmX75cOJF4z< z9{NT5e&(~^A)3lO?l};I+955Q7Xg3awI`OPlO<-YOk?(%4v^j3SnP#6(0grlfM8`3 z@oU7Zh-u@WT#goiRE>-I$!D}AdQ;#JBg!5;j%U?>(RsQtEskNR+*;j+2nVgm37b%@ zwLZuVCXn$139J*Fccll>*~w&X4KIF1TI=L=r>a9Z!wck-B|SoC)_NnC{V&?F&KP*q zghLGvH7v3k8jGjpYvheL6`Jftd;j9>Rp6G1eH%+ZuU+r2R#KO6Q|gbYC5PVBOLr!! zc#okGUVUWl783vT(M0)LY4(LoFiiPFiODhlF-GNV?{ z?LV=$>tK?t^l|>{FrRdcdf7e;FFpm_x;w8 zvU8x^+zSQ%BeWV9K#K(64dt0DsG zz~4L1`;KeXJe>DWX3=m{7rbH9+?8owvkkdi-!q##5_AfVaAwoS={>Bd3TwKN@tJE- zZIT-rgT7IEzO1AHx;eY9nxI86)&ot8pCbmPXBrYMc95bHl-WQOw@QCs3KbN32 z#QA4(dY*ovMvh3_R#=A@00 z^+(edWbf?ssK9a~dpKv_@45NPX7E+~2Y4r~DT_u=nI|F*5uBPde!kH%)t%}QdnTn- z62oq*yjASiTeQI#4q;6#`VY{SF)h+qyD5;*B1C++(?A+7=HPF-$6qZ3(B3T%Uz&3- zvk#5t+KIFp{5<%Ua96IgnBwVkrjl)_CO2K&`1dlk@-hsequxvNv?#<^HdZ#Qe9U;L zXO(&g+n^G(-g%U?!&+`~vZwI2zsaWJr!@sNd6g%0fPlJ1yuEidbMojC<|}z$F*BX% zck=JiO}gM?D#PXKZdg9)?U#lZ?7}_`L_u!WyROJ{s*@}NWX-f zB!pn4q=K}GDkvJMg%siGyPkR-tA^laO`e=2kO)BvK^6wg?N)mc$WRE=Z;rmZudZEl z&vOi>Y4l!`Z6~8L^d%{lmB})OmO`Mz41}sQNNQS?0NhCT$4%_t3`Yy$@(@zfrXea? zfpW^I%xL6Lc)b~;x^PY$a5zLuA(b~O*2gQVw+~x*4;R+{mFX#sZLKn0KME3;4q|c~ zNu`v!A<9EoR6?atC(sCMJ}2Y+MI1kcVkfvn%%w8(0aYx32p1$0{;mVX?k$N<2L!pF z#D<}7_N5M_Qo^qM+r zLf1BiYL--@LQ1tSnSt*T?9>9}M=G0*GbV|diTIO3L%69{&$%AnIJ2#yr8?J8#Gv_^ zoWUss4dg^qa@DXE;olyO?87I4aJ1^2ILzSRe*#53H!;0nQbdFUa$TO5r4E`Aex@l> zQ!@~vq9mMe!c9Vt0%}q!NlKwcmsp7nK~Cu*Ne1KGQyF}GnRtl>6H*r}rASg)(n7&Y zvk^dOH?2%(czpAP#3FWPT3afB*E5C=1u0#28hr|U7c781Uomrunod=Ryl*#di!6kNw1&s&~ijtX=iin{?Xafg2JE4HR z$2IBBviw$Clk0U%>74RjU@Q!;I+lp2aAK|jZHMLsLRkq4DJi2{+5NAPBZ_c|Tx$t2 z3RVVCoPq!!7EI!hK>_oWzF_3o$Irgm;8d&zBQ&$|_<2%N5D8L}O9P{hpz3JN8}%AO zXEoQE-bFVjDFza!W(1z1k0lBjL^x|ELMoOL6E!Nf2`XDHH3Yr*wmXYV!x?zFWoIfx zyonC3`2?sWy*1@hHI5T5elrO>GG?G8oXX4#fJLg{F*e*58)Kbgp*l6Mvxxc|s@i5l zNoyFvP~d#Pq0d>wuV^4IyHBPLQ zfQ8Hqu4PG*&eIJ(p%*VZl`EMfFj5sO7{wvK+fF)OAGRDj6FAAlB4o9s0Hw6Bnt(gN zuP`o4uz14;1c913EIu_q9|Jm2%~F*t7uLX%H0D6kGV9^| zKZ&4E!%vX1C}oMLBmxPb6=hn~2Wm!X(p_}a5@&8nujkP_9HCI8bHt)+E|~!OrDH8g zR9GrfXcnJJor_}~Hv=+QB6cv$(sn4)$8R-ZAt0IfqJf%#yb(ki|uVSTL|B ztG##6ntQLBB`}gYfskfeXE#YyNV%3*m&_|GilrY!WJN*n|2$p|1jha(t#R|mwZ zVvZS7awrBu)&5f8kP?$pNz&%}G;3Ji$xX$qDolbBm4C8|OIP_NiiojxuEYn7?W1*8 zgw-<$p3~ZfMs8tHise@lf91_Wh=3h`AS^o6{(u~nQQh%}UKbIEn3;1Vt-*7WTEc1# z`>gb>nx?jl1pdck@Y58ms3rTQrWCjT01(Q|I$vT0XE5^EqgcRT2(o z9$b_qb}-|uDcnZqNGc>T2L>?eo`ooUG67?lW@AvqTv7CLbZEfhcy!4jX`Ll`fvHMX zk+oO?&MsKR(UWx_A&oUH6HZPqP0gVRRK%QBJe2uhH^WdMLX48c0zF}Y>_-v7R+%bV z6a>Z$0aFy4kK;;hy|s;YW)^&K2~XQqi>k08nzN z49ZGjrQk)(KTmXxTe1tDym0C%Va15gf) zc*}6<_^C37a%xr$b4yZOYyoi22G*l#uYE`O9msQ&6IXO6Q6o=hrAv$cmoJ#UTQslE zU_n|G^6>$1VXlIf!GGixF*6f3Nm?X=2@-%&1;J%CT(N#lT1I~d#wN~uHY!}ef>^wu zhw&oL1xa9B($QsTe~AA8h_8lh;!90+OCiq@mrF$uWwYW{_(_Na=_>h( zO9N02F>`opO8xf^oQYG3tf|u#otAseEEXVUyM{c3NsQrgv1$fdq>=E*Pk9-~bdU=> zc%AQP=|4|CJvvF$?6^s5xH()EDj(sdAZC(~W+bN}lz|a3rQ;<~RG5H}q>)7u&4{FN z3HUYq9Cyc@6vTenB(jZ$X9X>DRGb^nAMWT{}N0RDa)$sbs`di75b>Qwc)QNd~~; zs8X>>GjJ>TQzj_qmx^@dtr>x)frxev0FO}iBe%G0TCmb_D`g<13IL#HA)KTYW+0yj z5vQ4?-dQy8WdQkbhSGwNn29EvR+X^}O+tYH{l+smDOkxYXR@Y@p~I9?u1$y>^#a5f z_D2a{3F2HTQqYidr6iRE0_+K(3Mav+{x*`Ku3A6hWnwA>cwm@uA*i81H3z1kzqRj7 zXOle4N>Mq8)F-+?0<56JO+os=&*0c%Rq#CT&Z7(gPB>JV&ZBhRK zsI+WZp(USW8HdY-pXmA6gK{P2(v!AgO-7KW&_GcPpb2bUSHs3(=1x{bPnHms0s;)x zC_0rb7g7Tn*UI>g%W-})fa2qVaXB*=Bu!Fqn5;e;V8hEw9n(H~j$GBDBn4iEhY(As zM1q12?@C#V(vC+3_#L@?Yja6N#ig|@dh+CH;U0^?ObbW}Aoprs>;P~!HwFIiWTXWO zaP&NaS^JS==MX9Kg;bJFIX;K4LFE~7E%huaX{XcODF~rLYz0ZP&{?l<)v(Y(EGP?I z&9CLkf%Vb^5(P^&$95owKhvMSB?JtkaQ;5u(kvxll#=|Kwy^v9$AV}-@!ak~`+5C6 zu*y)d z)TE>&6Xdbr*PLLu^zkbPiAqZ-Ak>=z9agaEYTbx&M*xDYUW8Lc{v*%+q1BllRO*Qh zapjU=q&j0oTtuM=VD%2b7xUvk**sE{gqw&N^LL6>S~I=q+P5KAq+|OnEfR4GIaH*q zxJn)B?(JRtwbw0w5uIZ#&>w+a1JVd+M3$@TM9j3rcv8yS6nWXcs&l;JAz%7* z!jUJILUPE^F*G_G#zXitl3e#t`kqxBOUX#|TUbS#TBtTE z93cq?;BHYY2njKUlQLYxWhc5o zB!C?!w|xW zDp6Zhk&ij{e~4oEe;?s)3o%s?z1oyh@(98x`B`g@5up3e%Ep*fI( z*@()Lniu{ypsy-NBK{S6*{AjXk=FkJ1if|3rWZF3CU27E@-s^?;>Cv{5+o?FB+OH` z9(9*Qh9&)MniE#%a@s#r znTfp{t7RfZR#Tp3@M9AbD$OJ!?vqYsCZL&o!cH5#_OH9nJP!(mFtf^WiB_kvy5x@ZNfUnc9Vp3;I zN`4wkWM^B7sF05E0I&|uT$UilgEtE^4KS4=VhJpeq?D6TA3|$pxF9rC)f+ICT*C6% z2pOCxkP36HGcXep4s9aDNBK~qZV?_CStuzanucb^F9VOCfy55*vvpm zZXb7{jHVKN+%nUMkfNEAO&!Q8Htqt%R-Ig!(7u}dJ!ssY<2Om>+7B+C83t#ZOlJ`# zV}_U0(c(+Qj=3U83Lh>hC_q?nhc>?F+aA=-$96v%!{(?ZQ{~~3f>IKtWtf$o`vNG>QW=x4nLWv+HAqLrtu*xj;4q2%lg`2|W;Bfe2 zei<_o(x|6&2JZq5DN^C~1*55%oX&vwi})Icp>nyU#_AVHbcBX)3oDqFQZpQ`cPL1M zn!}P=8<#ILC<%&?ScHXbBpguTSnt^J4lFT})$tdPQt-2LC*aJ%tg-+g_ml`GjZhxq zHA#z?Ka5DuxnfFXOcT%)6Pj`yg3VEwC;1Rrv|$|A=%#5F64jI{GLo2aL{&?uyf2uA zZCfV6K!OyJb4rWW?PeJ&n=2TApoN5^Gcn9THxx|>VDEl$(t8z&RxLQL60(pbiI}Ni zhwcRcp+{3Xm^Qja>6d2_I$_uC5w7yzmj^A*a}`KuqSF5WCSgVdWW^K#Dhdj#GJw7; z@O(hWc6%3unsZLT%T&n;J>qIcwY7~+i?nE8s-2%Wt`&}unRQ&1CRk8Y6)1uY5?-N= z9`%m0f2~D_IUWg~R9u%bl``_XRuqV`^N_cozzKAejqIRFpzH=T>G(8>3&c-Bn4~h) z5&ZkaUd(kmhHWFk*j^gGAH|pPP(;im;*~fcB&CfUXem}K$6E43Q!QF&sJYy^g$6JB zexaQL9?%e}c*RL8E?k|e29C-Uvz@~mFXG_vYDrL*aFSdBT;TwKT7xKhZ0^=SMn6C? zvQHS`auf%^#K@MZgp>xFLky&s%0Lb|#ht07%n7f@OQUSG+KS=r1Z@g0u=%^1`*VT7 zWtoP^qy9|CC@LgfoVXm0&PAi>Hx$Ar1vMWHAfSW>52|xfslDC6Zc%AP35!-KP%dj> zW7zRqevgYuSHjGPBq;Z(YS&hJ)9YB)_>7Z2T9k$vMrCHX@VMX1?%5xwS?o9?HPdtP z6d`61iscH+p%IXhR1yiGPz(t04>*$-EFemmEhHgnbvB1UdeHbe-Z1zSl}$Q-i zhjw)X5+fE1~ zy6p|{+y0~L=>Sv_xTUs`?j40+hv(k>;L@TxZ34MTHD@h+qkVN|@;cR`GU1^rDcbZd z;1szA!(8`RfK33iGgRN0=~#@o0)a`TTI_7y>@ZoCyh6M( z0CoiFS3gfp;-4M?1b|ITiVpmC^6y9bOoe7=G^>X#ulCVKZWs_r0E-YqUu*t6S|CJ& z=_J;qk;4WyXYhXSi!$caf=F=HF8=vf$}scri7HZ(oTP?okO*fWn!8fPqMs5FOSP)+ zPVOmV{&9;)USg2o3w<2DV-~q8p&&RRs^srYXiP;A$pLLp;g8q`wOsLkz9dlqDT}ka zADeWFb0xai0Lnl7$P}f8YCkUsA*@4E!;wItN|DPkZpFAhaa^dC%b^OTMQ=)jw!Se} z6NO5otemb8tfW?0^|Bqby)fCbGoHhYUw_m3}QKTHwE`%tbiK2nrbF$!fVU?ibr zkMXGiBpnOf>u9mj1Ve=m5b5>O`YI>7W13P^BnDjRe;c{>o zWJ^r26cT`P)b~IHJ3E@Yde#d-9DqD9KTgH}0Pfh43I&eN{{SroKQWq>C@6xU!JGi# z{%g|O!Vgz~1&1!<^dgkL94KbYL)20BXj3J+0SpFe>T5yo(idu6Cz8Ui#r?m=z|2r2 z9IgecQL+3`QWTj0ttleK`EQ|boqDuaG{Q=CUXzIo0<`K(lz^%uah`&JP0r9%cQe}E z=S?K7D^_7KBzO@}MXbW$*Q9Cx0H}CTGqT;FQc~t$4#X`b-HK3dG;sB5us6SQvza58 z#6%dt2(e;8SP=gJDv5-J4X3esI1hS@?$~kgxKc3bBO>L>Q!`XphBaU+Snt#GfBMfe z;`aXlh?4CoYD*i@YCQh{zY!SUsrk}$=SaGpo+*DRa=LbM1SM2$T+A~r2I9raS73cX z>5PsZP$pE8lB9&CNpoDz?ntWw+Zr~p2kE8^@vhL}czDXC35OCh5;CIpt?yiCJU-#InDmLS9{B)vnIC7rl_4~@>thGmzSf~Af{sk@F=G(4l~cVjy{ zhvHl=WZ9C+e{~>9b!HbxAvA;V68^ zW>O%PvWPxA+T#>EaWxW`gObh)(7d4cyUHQJ-RkwQ=G|KWa`36slpK6X$$d!(J<$Bs zThMJt-;aWzh&~c^Oi+0l&yISdwbR$PRh8g`<&vl+9QEQ;DcK3BpYduj2V=SkPS1 z7JV!uT>k)yB+4aZdKIFeMnq`(Z$-+^%)&qq^C!YWK<9Yc0;$&F*t^7A@-OU^DTHljXN z3ONZc5JZVA-z*Lm>MQ_$Ye(drpaUC^!jzEd#>q-ll2XGp3XN$?j!f+yrot4bgigTB zLrj%~n=wwF^0TA5z*Lnu093m(v}O8A|NuGbp4pr#CjwqUiDu_%QIM2w=OnuUcV z8j;|PZau1&+&ct?_l$r@QVAfflH)Und%dlFeB0XoAcSGRWKvM6{{R;<7QwQxs4YNj zNIFunL+K<$YHqRhOIO7I0B}ub(L^|d^KDf6)9EGlxD)_}vokguiKb-k3xvaq96YrU zp_^B$vyn>eZQ~uoq_+spmkLy;sSGlPasz^2eNTjJ-$JC+jO$v>E7uM#yP1UnWRjw| zAwH5oHY*k&ka!LTR$@YB;mZ`LVbd*{lp0ufsG-=k#SP<}4_%%WJa zw);4~_%?qa%p-h9%}r%1{2Y*8V=Fxs3)>Mh5hJNlf>KWHr6tsPa0}ZNIHpfW}vQ&{omdaX|=5J`7*Xa?J!IMlSL?$H5 z{L)-2x7?qsNUufFGqAJOSE;$(_aV zGSrm}lhhsPJ{cssU5lE48lug3%Jy+Gcz+h*c#J|yC?^r|5&=xmSOg@5vL2wOh1?RxKGJ@J_K$;c-p!RrnIckxq=6?q zq|P8G`3Y!sQp#@tV2hQGlAm?XGpOn-}r(H z>cAIkwHWPsq%ENdaNe@cDnYX!@DgcUQ&A+SIl0!tuhNgwGIHgc25_BgXVY3Uw>|4v zmxcv)rPz^M(!4ho{Z1=T+30uK!3LH0)-TGEq7n*Hr#Sf$XgFUVqfS3bN)YkB9yyWn;O&C zTSd826t#ifa40|_sjX@@a@C-#M7U(3s2N2604QJy?hEmM+XMheWUvH>wRWzRV@SA+ zF(sT(hvd%mv9|vJc$^Yct&LYDKu`n2m*6{*`qvDlfoh&wMcGmWy&k~VZGW;2Eu=U@ zNm5Befa8!nD~f_EPZc)+vsN$a-`>$NONIardwYGw;DrDJ<&yN;OHsII?0@S3ZD-}Y zL?ssq332}bVg)sG@~cCT6hngG77RG050d`?_kauzQ&uhyHj62gkl=t=4F<3BHuZ@K z+{Eop&?+hjE*ODRe&62*m^c@Au9SU!{G7rZf*z&YW)9EGn|Z-@xT=QM0)dX=IOO@h zEB^qpwlxQpnDY(m1OOHqzrQ#{mn>MjmLd4$npf(34sgm2Em3Opc#tBNYXQhTeKhtx zw9|4xasb**9GiVRHSohVl~%F*^#kjmB$;luZs^qX@Ou4Wb|k9K&hO7|2frh+!B<1C zmj1uiu$L?(yVIq;e*Q2&k_`a$B;K|p3ZG))mBAhJJH7`F%gmpA*rgZPjvf4jg$n#AW(|A@WaC&Y)KKEI0PL7y?*20lpY8>SOCSF z#R+15*)^IQmT*=&JsJ8yY^y3J%2$+AXeqv({s0^ zT9TPyF&T)Xf?B?Jx7%3>K~P8ua>tf%TC^8ocfo?h9in`InhKNe!W9sLRZzscfL(yM z^tkQOy5iwKqyz+9Wu-t7}p3?vThK?Jx4^b`l}-?QLi>JfJgHf{FU!-5mM1s4Rn zqUtjKyWCvU1Mv&2 zq_82y0n~aIHNT@4VOrYm4L)91h|@3@3IZ;rCvEvqp;ZAEp>AIk@oQ4$DL{&(iqKRy zCfEC87``DiB2t!10+I=KA%zInf0OT(^6fjA&Ow!rA8ceoL@=0WQk0lzDF%pkN?28g z?~Z$poi0+Bm;qG-$wrkleJUC_PiS#iWX+nk4oZnCDK1G4$?r3o*b%<>tO+zqNkm*I zEU-4E0vTjI0U?QUJKFuRsn1c)YeiU-N^3yhXBUonGZ!IbsHp%I5C?ZK8kc9Ms{jo| zQ;fuUFr`I;NIOVUkfsGinIP1Y&u-0z63Ur~J2B;2kEJ}KvBcq7^8y6{%sau4%R#(a zdW$xjOfsYmfxrqrlH@pW;DEt{pQ92nl)+(w*OY*3Th;XWIiT^3Ha{6C6O~i~j6h}} z5;f`o-&n=7`mQRHxpl@Vh>=j0F)nQN@ZH_~9it7x{u+|D1tz`IdJ$e-9@Y`BFNhGQ zLfC@DRf*NQR)fW?AjoQk%M-d|X3$t}ETHvwFSxrkIK|n#Eej+3W})5NO<6tL*Ize_ z1Bnu!nl>&ut33erehCC4D(eL9JoL2=>kiUcmU%AXZvm4Q(wj&;uN?KG>3W&-`3<0x(KnJS2M|D0B{{V-Szwr|II?QvA{cRT_%rw5c zo`!;@1;d%jr6CW-%EUn2q^U5JwadgdSOC!D4Z<+EycZu6urQX}hn36)YuUJ~F|$m=JjwFrOfpcC5V>hdDx$IkoWk}1kmR!n^0y!3Tvvnfyh^bQnG&aovZkh4GS-&N zkd?kgTm=sUc=|#3d(yoi_)DMAKMGwG$Yinu3oQI@p^7BXyxTU33(~yDIh#oN(-V^f z6)q%or~pDx$qaYC3onP@5jH_u6Elb^T8?RhI8p;709?V(c$QAw+$RfQW{yR=|?5WW|U;;X~rrc0FB)T4-; zi89DSoPed4y@3u(vpqB$CehmWr1R4KYuB0V&aTY$8U(g&Au@!*Mp-WrdypW?qK0rgaA<)KXcbNjWUnE&N1Gwjc?D zW>DLrC7G0Ixh+OCX2y}na0%m_PY)_g=@@A$QB2Q`Fv&uw8!leqZQ1mR`#(Ns2*Png zK2+RBBZj30N5Tp!%P_i$&EHuJ2u(HzNX30j`5z6FXw0Ba$NUDMQ4$l9kcmXBzzk*P zl?foBQHdWdO5?-6uZ_aY>_#ky~HNj-+HcrkTp-(U)afv__el%w{uKus&px!3l*J zgF~@j{4!gH#+8cV!hSpVWiuwEC@DDxbQJ;(5){n&PP;a-y>@G}X~1BzWGS6v@jJ>L z(?pdeBmi8gPhoxjV!kH60=2$hthIc3eMKcRE0<-8%;QWz5du+>If6@0Rw4M;R1><^53mw--AGYX062~a6YfDA~Z zwGAt~A3FKBwDL{|5>Sv*LW)6CfJJLuq=3e~18!W4Kx_QZO-}1Pqb8ipH11auWbEv` zIFV5*qFLhvf>4moRG<<8a%k9_7sU8XtU_=Yspyr6nn9L{ib@KDXbF1M0QEExQ-E=?i~zG*oKCMM+tZUJz?C{<{ECgO+rN8Y$; zxG75{Fi;7j5J{*{zE+0tQFx*!YElG7P3rMO|3KYPRVgRu>BhoLdgI>;Mag!2S zG}N?MB{5Q%D_k&4G6>tW-|8u5H^5{2KO+|@LSiM5prrSLGdVYMmjn%KQApf)Z)`DA z45W#Z21SArkjzG^8JO7X)vFsrpnfZLzEL*{Zd+02Qj<_h1Og@&l_4o%v?!F5Ry#?l z@G;Fe@9C!upCMAwAe_o1l&pnT#qu20L@FC=@@=9ClrxAYFef+Pys+Bq}HhfyEu9cddA&pzlxrpsW3HG zk(!4mo2Dc=nR#IbBp6AZQi9B2pb}-)q8NO#5Cgb4d8_{==?BNHzy`D&`9<_G{e z%;Aba0<0@R&JJ>=aT!ZO(3K@rQzE%YVC)sEgG0TIdWFz0;^Cw6%-2ukeNO)XRME44 zHeO0Tr07-JrLmeJEck!?BGo-Y)!3R+_ zzOK|cCV!H310{u%=&3kT(54lh$IX$mFZ>!5lC&-nSK=Z?NdEwACCZ(KJ7)yrc&WTU z;WB^q62Y1kFEU&Zf0BS^0O}aC>jnA;!DsOg)$Yryg<&|R9b7jZ@v%6xClxA0q=(I( zWVTAB&9Kg(?geAwu3~lqh>EBmD92Kwpl;o@F-ca{DAa9wTozz&i(|TKLz{pNF3od& zG=7o#C*atn&%j}pqU-oF(xL?hR3snd0WL$mPpOEIV#|tK zBp0Cb*n6cf8T9uO3f$)uYA`l`>V}Vad_^EKRIf}V{Iw?Fk!p*d-@{=zH37W-u;nOD zLd4RV(XL$k+OPyGaVrVU1YlRRglpI`gKK+=UnB`F1sYw9s+8BcN zwa1EH?(GuNT%A5zKruVkuKrdk$IfKp?dPk!$I$o^Zj<0I$EN z_pBsFO2AS%04XM-jvPBtzsJCZ0O6=~CfXX@>8AZ+P=>u+i-47Gh{= zZ_mmEfRVU|^#JVbe1_-U`;Kq~gJ9ky!KSJ#;oiGd{{S6gQA$E8cBFs^YVH64=iAuV z5iHmPTljmo^#%|FJzLAl0<@QOMNkd^Kpt)@z`g3nz9d0*YwyjPx7OWTP{2``kR3MO zwXJmUhOQDp-4HoJ_j#n`+qGg7qAkd%;XnMNZ_-c)uszKcPn)}`=^u_!zxNNE(xKnbg%aYi9&Ze z)U&)4zlNyigV=p>5`%!=19#=W=Tiufl~fuU0i$Yl<~>V9h$&K(qJ-`Nino^!aNqLI zPZ*4-1fJ+6iFlY*w0-FhQjnsZ%?=_}{EBiz@oI9_7zZW0ri^vDrrHDZ>k@zx2`s7} zR}Dj7&7iOehY}$|5fLJVF)F13?owNi6<}YSIUo&4`~125%^|`Z01H*@$KRYd60nV@ zVxff-3;|_wEP20&4qpPM0mu6b7OTFMv%jT?g9%Up4oDRb({cfCtHHJc5S0RVq|}Oo z!x~hZQ^zhN1&y?cfDFa7erMRfND@&(l^BU)K-wIT{O~@6yI_KuBSP*){5IO$?+*o8 zU>3QFLBuHQ=0c!sM za6op1sYx5j+d|-Xv0?Uh#AK3}DizVL$9f+@(jK1u?We2_B)NAWsDWx*lf}#NfQ1g; zUt*F1OhlzDNvpVeidpIy@Na}0TKnJe3MZxFB&9$)Su~}-tS?SYC@X;p0Kb)g8V`EH zgfQX48&$X!UCAY%%enhd_`yOYfgnFGeqtT-6cgzP2mynDk=nI(KT44JgfXgt042y%n^~Q_fIay^3M9Mo)&2PO5aTUqL)PzKA$o1r7?m&yN>mG)tAI!+ zmY{wQ_AtaKC_7LPSih<3P%Fv>bOo82jW;H@BJH-j!J;gGwpNs#sy3_lbJ+4NPSwN} za{INpd-0?~=PpxTc01_^m98SfLSd#8sL-;MI0c^M-+^pA2v`L|)Mu}bnm5)xKvTT| zTR0%zi%2R;y(Qm$%a$GKX8Ye0vxeoS(T|@XB)D#1T>k)Mxu9AuL#j(Y?3V%)%c^0)lo5f~$?hy;rPn16A6e*7$I@AT{~LaV3MT+M{zy zht{oc#8YOFpr&s~MN0rjYg~i$qhiFit!vTxeP5-b5QLJzJDNGLuf6FMkv(p6e#t74Rq7x z&d><3kWyGN{KY}t%fF}sI5;q+3OlyoMK6Xyskfg#UNwqYfSt-xhs=5qUX5MWw;j3X z5(NSt)oR6M$jxR+4r&-1^DW@|v@oG07fUmRJs2@!EWx}r>s$h|)tUJ}FAsagb;&G2 z0JvaBv1jEG${>1@q(o6al#m(d3AHG|7jMz!N{c400d}V`;lEupigP7|he#)XZ|}{Y z_*F#|35J#gkasAsZuYydp)U9$tI$+~cA(R(AI{Mi!zG+ugIKq^j|PE>FjP$f2yakw zuL1k9r|ZEov;rQaJ24vg)(iINB=<>b7bD*AsF&DA*lG$SgtIUro){LbukC|RdbYj! zd(tErRA}u-9eltf+v^iy%7#BNNdUTta8IVYY{SWaXXFaNcNU=MR`7(00VMZdsVr!H z`A3rq8B&ym7G?&lju{s7Ahr`%>j1-*!vJK!!wkXWg(3KE_}>g2@EI!8U|Ac>`|0TuB?@2}^d5Gp_h^?clBJ;|YLXMVWPl3_kX*Cg>{yR% z7(L9!r9rQ2>#aIOqET>q8&i53L81c0ji3qw1G0Dwnz?gEYu&LCEYCtqioHc>{#0gq zMWiJ!YmM!!Jqc3E3LRl7{{ZKKlBF9F$Q%+!d^uY?ky0s5Pl?yrtV|HjZZ^T zETJh$DI~Zcr>zMad)_8NNdg**TWf>3lePJ~iwe=7#uC=UykB6~KF>PY+(g+@K>$9a z*q;FWi9d*%5lK-B6p%{5~L2%0hr*DShs0`cqIH+98S15~y(iPShX| zT8IuyJ3lmVe0@#_{{V?iY7Opd{p#GHGMbWl9$fA7>hWC!5ESJ^02o-8xi+Z-``Zwx zSc|xC&h60J%<)-3Ad;G9ch_q*K9M#8LXP-=u>=ILeZU*FoBV3KEjJ?VZl8~40aFT+ zQUy~|SAtbW`nq9#z3sR@CvpxhVvbvs~;03;{{{SwK^1@cxfFz0y z9^aPmF)m#RBq)_SKnO|Ob6U`Qhqdc$NI)T&8oT@X>jg6pKmtcHH5}Y&etx2$ghXY< z1;^z`dbwczsF3u%-LRNbm7)_aloq+M>Ce%+LBs|ClKa2{wl=5$Jq?)90`$S87Y*j! zer(W_-O3FKH813SkyxusOR6f91{^xWNM*BC?)(t;1d#8EO8`k5*l+jM?-0(!CQIfi zOVk&4O^K*&!}QXzlC*}2%{2~VDJ3N@^CL!xh-py;kQBjjViq7U7bJ^VoME`U#LJei z@*ymOqLQXG524q3RfCA*AE;ldTnn;XGZ~7;VvtvdlRZ-8Nu7r{kud|i{wb3XqgEs_ zBvOxFh;-kiI&-I~g`MXxA!d2X;H6L@MG1)lTVN%7Qc|FZjzQke>_8af{7;YJWh!jE zI;Jjs*G$EQC1_-`1f|>;xpx7&N5`+%FZmnVuH0g!p;)wz8;6@XV5MR3;}0}1FCLcSpcB?(e$Ms zuQSsB08D>CduRHA#jxW6g-om}R3*-tj+2Z;zlKlp3Pg#Q4jhrA6BI02KqEP)Kq? zG@#p`*Pqcp_>0-j%HgD9xV{w_o*<8hFs&G=io>aF>?KXZp}*9POW1UIEezAiiiXN9Izv>3}1(}v6_`368`|y0&iNDa2lEm*Xad+7x9G=OT$nD29c4R~l+L36_(WQ<#xsERYZaL13;}5*%UGiTFW4tOWl6 z5G+(#*(Bd)`$n(DxXhUuz*qzi@+he#AOV?B7Zd?g#Q4eXvuhqDxS=y%2odSFkwLeD3`R{K0wA3KN1v-GAe;HxJcZE zRIqco-aI$@<@)OYBZvH#4iytb|q6+ zh5(XQ5Ta)pWmO4ItSl=Wq3Y*Uy3O&Sm@6-wjWg5ki{+V_R#&33^hL`=#JN%4x%h}E zUUirVLCWK)P#~m(P*qIY}#}i26JWWy-pZz4nV&zLDW=WSKVIc%9j%Lio zxkd}Kzo)!HeB@!|V9&;yQ}MAAoI5v>r*M6_MzElVlO6 z^^SKE23eJU4jG!x#7Mhg#*aN1AyJbofPQ3Eov`6UN}hupKee5r#de<;{{WE1E@YyI z2tonF$;uoA2}w|vse}p&m(Z~>>VC?8iXIapM-jv;2Al%_0Lq~k2h;eLkxHPFp_c;7Pk$`Dr%aT>V+_yDpE5oLdMi4D)yfRfWXV1t{Nrb za2R=NnU0#ZOZbVB;)}2%SB0m{Y+0LWO<~3HQ>L#g@ z%e3Z_lo4WOT5C+oP5%Jxve5~YjJ`qyu-`Qug8q^MhpTa zfg)4n_@pc*VzRN%RT3`7HkYiqZbhg*BVly=MNY`;*`Ai=Q(8Yh)DWWsqk46m>G?9G zxIP9%oGFr&=9H9S z=KlbiXbDzOGCF(NOMn3Y#?6ny%;n9wk${{V*P zPxXZCv}J0wbqP7Z&f=t^WBpEdG+LDcUoc4do8qZPD$-OO@!7HbML1v7EPT8=Rr?%9 z9de39uw|KP!yNRe3GRaQ%2}xK&-+Ej#LQ&HVS>H@2ufwCIhF|tN{tC19Te|YV|cjr zl$5_-GrotyfvR9a>sDQnMbYY$)w16&C!d6=RK}2yfizR{(KwHkm{1oKgB5ED1 z3y3eX(>p^lQd2jF@hPap;!LuYs#2w=;e}=-B@bo=EHb-RGE=yGj7J1UCPILmnJ&3m zil)pUFiH^4NX%*f09WZ5Z{S<2-B9>#{viDsPf|2ibE9Xn35eP!P)p_#v2wY5{{SV` z6AO|508z_f#Y!P&5|X6Djv_(}LQprjCCwh+aBLnYv6#Lm!|^yZEm*7;E&d>zHd2Di zrB*V^(suxmEE%~bCjd~H*!g8Elx5Dt%$8J4=}RbD6csFg4)FvBa09SnBkM!>q%Z)MxfHN@TWSD(>PNaw@F2X4KX8Tnr19C$If!JMMzXd6EFV&xrCHCD~7NKsf}*M zc8PNMLUBq`7eC=I4ogd1zk-0^;k^!HTnnHatYM5KhKysAD z+*rDC)cXb6MR5)siRmgrW*3nzZb2~!0m^cMNC4NNJ4d7Y1KLoG9t(#qbI!xaOu1-L z2`WlS3Q~bR?1Ly$h$Im0QxwnPan;Pbr2haCSuT#%k(Uoa^)_2H(RzwrI#RhaIh;vH zk(8L3gAn|jKu}7kHxaBq61^sv=zqjtQMzP_ ze~~SfYAM5zuWE!S*)CxjQ&Q2;rBO+V0xCnLz^HLozlX%H6~ZK9r>o*lN*1*e#H%6h z<`yL&Fb_sIj*yNMgW`BOYr|pY$(FJboIW86MD(d3p-(J|g49rV1%dkJwCcI8ts)P&E$K>;aJqo8_J`i~s! z{EpG#=kZ(wrAy;@2`XBWrwGQRx9~y`qPddN^du;^@^shEAF6+*iN#FCC`ei+$w6GE z3qnays31$N4)rb0K99AgL#B29l+3aW!VHdYmFAgXOj+0h9APypF$Z+6X(Y6|Vu*-R zA|Yu}CBb`v%+QaIhM)1lLggr?Y82>EB8yUAy+w;&gy|j><9rVp+3qVuDq4`W6s~BP zz>?;wX90-~wv{oX6P+xHs`^RQFNG~*6y|e~a%s%hKxR>ZQJ94VDvgwgYf*Sn;F6hg zfnBN~01bH(G1!jIcDD(Q8L;xDV`Z$&Ny{ZjRKO-nDkUxyl_-SQy+TU^9rN_VwP~G? zz~ao}tZccG@Uv2qf|G_NKM|1R=uUs-{-lWci_}_MG}C$JZ>Dppc+$D1ot>D=Cm_Z_ zLX#3!Dxs+=Nn+lY3Lp=w1MIv95R=4k^6}VprBX3c(=t;Ok^v7;39Ww&BkAAiw-A@a zCaOXdpM(&Akm(PY3lLNbIeu{(T2K_RJ5o~M3e+F3*}(IMoiGq?NC%}uS9&)}+VSXo zCIBTNED8u>9mOqB2P1F1QzoU3@KVT9Vg-d4Nd*KcBvd=lx7LRiB+r;7gatS$2Arwq zwP?cet8xAugDP@LG6EEw)f?0oH>Cv_#!s8n)B3h=C(JWg=!rL$Wk}0+pUhy(4Uk<_ zQ-pvB1)SZ35yYueBuzn4ERsXDD0F>C<5<)?FCte7m{B0I48=@PBo!#BMe9Pr!D}-- z5+XMve$lwpsjlR`1Jnvz&GD&&kb!q@tj-@%Z$0C?VUlNIMPfkHHl2Jh6D~={L3g{;$@6i6Do{~lLOn0hygXr%C^=Ew_QN?hu(#GOqEbhBs-aO` z?|-B`goQTSwO*iD55Mnh2^A`>tnKTd*R5hego5Az_tprQZ&6d}4Z}YUXn)|jz~>dG zt^FzO;zS@Cu+R=9JL%->G#BB?r1mCEJ{esL1IN+ zuHxFT@%4o${Gra~q4Uqbnx4&9z~)Z>064ZKv9kkm818q6A{x%uBXwMVDfhqm&IjUh z^@$ZJAh2L}1K-c^aF%hj7Gui__U8DGVGK%7;=&|MvI7(SYyJ8`lH$A$P023Ttvrq? zfCWyFb-gx>8{At9kQ)T8MD;Z!aqO z=yt4Il*L8tH5U}|zstrXkPw$=49#=kiXJ@TGVU0FH6_od=kswQsbJ(YZ%;3z9uTMl zo4v_C{P=z_3kOmgL9PA$qbG+&3yasu{;lG7iD^p^n(%H-Uz#&tl4u(c1%D$}_d(X5 zjdF6(3TPa&i*5sS@rh|bO90}guHoL`)6c#lHL2a>BO*|AxdQ1VGNXE*V+&)KnBVujKR zjcP3XpG(pDRxeAI%LSaUAR5f$)E~=x zkz-Nc^s8c|%-|75*{mLnTvAcYSFY{+yGR>y)9!-enjo1BDX4~6#^=fz}Qib>u+y-Q(9fljc-qW%xu^+ zI>WmbHfwF;a@7>HT(T^o$guztLxW~EJ=*+Z8!!-}9+{n+LOs_0vA1AU0U<2;g}Qps z>U8TDT(Z!Tf}+Yl%4t*n3V1iJD=gJU?ergb+AzyYhp_^Lu@paOy)wwl1SaVKy{bF* z4E$fY7pz?JCa-?GMq)~tK#Mr27NG;zz*aI=QxNPxN=u!m&G~c3f4&9Hhy+>penPtj z-<7P)E|Olf(*0YYrn|;m$R>6afD4q?^&z_p4;O4ess&Nm#c9j)7>r!7q!4dbCtqDj z9tT*=IV{LzsY+2SC;+FbwCv}|uhHbTONKFjK`49vnH+xDIkRadofG6 zVga{oC8#I>KrWioquR&U$~oT_!xHY{)QaPU!!}pYup6PH#Ry&(*R(+!;t?uM8ipn|hJl=$xNEidc+&BhWoA(qC5U>^ z)}@C(J%BgfT{;l7tpqutr9oiKX?k1s7%btRT2tQM?ju{q;fj)TB$5d&urB-Rb=l(h z%d=I68^}>)i&Mie1PeQ!^uQ%+N`qzv_n{A3)tpwKMu)^W9GT9%kD1Go2?UX99)Mez zEfRU>j;% zeInwP%@)Z!!jJNTMXVe%nip?o#iTZj508(%HQdmd!@)@jM|YhZUr!%LyG2$OXrMt- zf}Vsh0=A&!cfIj?RN#R^piMqr2dys^7k~;R8DfKb*Yf+*O)4<+P=p3k5^V0k@(bU^ z3mh92nbfvv+B+Fkuyo|TDFf;m7^MGZ;0dzQZ1v50Y} z6u_xrm0klEv)=wc;7sy&au_}N>V95PA;T9TATo99%D#tKrOaj_B&F0?I3QQC9jo8V zVb?hd0m~^VVl4jvZ)M`lyaH5GN-E~0dm^KsIJdJ5!Agcy>==M6cCDDybN>K%#Nx3a zx=^9956pS$Xv9-jjK&uP6ICVb)fKJTo}u+)cC1+WmSRFw>PboThdhR<58lHVIryZZ z{{YyLTkH1Lk+I*qg2tqsy&By4+A-E;nH4G^CH95|m|d&16L)v_4EV;)o~ev% zkmqLvS-b!hH8l?#<_m{qOt7TTGmn?6TIJ~&>oc7sD5*t(AOK5%31i*8>ugg}j#GE3 zJjvC$M%{zL6rSj3w}{ue9f2{9Gs*O-8qgL=Gz6xBnV-L6^ur^(2B%*Smhrc6%p(3W zK@C2lV&n5Gh0w zNwFdJ79Tq5DsM>W96a|(ZjE89eEILn%9|BhKt7;r+3fy!sTi)J2`%;d#>8=NY6DUFtdi09F3CiWJ&OhG-bk zm=|r##o4KMFU#W4Ndkm0+}8F3Ti%=Ug9>8fb|AmEaw5^2LLu%6bdnerEFY2BSBv{# z>Oz#yr%z1)XKh|CAzbLr2|oRZpp*XNB!wu_q?C#iL+?+oIAox(29D>&>KXKZNU`x) z20d!k>E&IvF%o3B0D-twfT6p+OaB0z*~&;P*Py7YRrym(^Drt=Q)o7O{JmZ&Q8x?S zRA2)N6a3CV=7RqKsU!ee>g46VoliE3i_D@}(@NLUo~^7yhzSH2aA+7?vj7}c{jn%4 zr1Ll1`?OJ>KueQDPK{q$4{Z=4`a>i!BnsB9^mjDu$Gba#HrLsu3~vt=rym-D6x>LzvX{RwHP_&i;8xqd}Za$ zOu)b%=nidNx%I!KYtxd-F2URo_qcy;(y9LV%q5hmGcf>SpPG_Z zYe%uipF3CD{3Mwx!pltQlT;KY%t$O24Nx402_xjh3;YcK0Fa;ZcOTkbH^sPgiP+@f zWnyQ^mW0bf36_#kEn_6+T1^nb~b+%#7&zl&I(b?zl=+$mnzBuHWf8JH4r03 zIZO%7@gT`U+J0ojb)_3ov^WLBDXHLqZsc_C4Z^Wlw8|lsVx+UG*9VbeZ>S^@5#Tru zJBVTu5hiln47nxETfGA?Hzla;uPqhpf5b*Xq<;~V>2v<6ohi{0aUQr(tF>e1B$S47 zPmXVn(b=BDDM2`lS(2beWFRbNXU*P0NoL*py@#m3OTXji8SNe}MC@K1qEb~YkfdT| zk`>-1W8kSQ?g%Eej%DjTUq7hx35?4$oS4ieqY|VgaSEWzf?sMOlE4E-=8tiX)x$6f z!^%z`K$eL}4qP(a&@zKkwqWt~JM_EsGluXy9v*Hd29MlG%kcghl$5eSHA0)PuYU_H1P+OV>egoGsJQdp@vyN^6I)@YkoMlZFrSat%yvB`C4nI-Q2zjN zbQXMG#Lhw`WKaI!VpNf%AY7wO_Ok<^R^-P>rprXX`BpTe-hJmjH+YvyN ztQRC30xe2+tA3*fseon#vuf?FF3(M_X{>EHUKgCC1Q3?9yMQ${^{Vs;P)l(CY5XIn=DpK~r;Xb{%U0#^uZ5_$*B2grzcN zD3VA3cU|1m%+!_)X&cEsrDnP%&`Bu_$x!9>CsU;rH6P@xqG}YBNL$ejaZ4!-g@lM; zx|HJWjUs9X6yr53PVTDWJYy1xQPD%bShyBT6ZY2zbjQtSU4Ei zuqIYMek&BEp$Sa6sbw6lu;he`0tgMS%zWeR379db5~39{V$u{6D8zsWOPZ3woV7<@ zD|~h9F`o6iI{8l;47O($Qd$}aAyLsW5&>G6oz6!#cH+DDVUUs8@i{@3SBX-L!e8N~ zYc9&mMigpSXKwGYzfD5X9U9R(Z7`wB z&gRmwHBMp!qAY2dkV*=Th(ZVn2g?zTX~uEq8;!;)Y0L!DCDqfBgD|rS3UhH9_v$Vr zs~t8{R+718No1;|b5B-&Z@gcbgvxUKks&D&CMKbfqE67Cm@i&a$tTOZjB1mT1}a+8 zOJyZaqRt(t)b8KOnz6`mvP7B7n6eIaPy@T&wk@S~tZL`S7PgD0dPURjohER>8M@V| zGYAk=PVogQM7Wq>K}wXOKr}Y1V}JcN;o^56#PP&RDwi(=yb213cjAemhRf1EjrAa9>mXHV~DsrYGh1rg= z>7L7Q6t4&W0Fa)76Fy&eI3YnY&QhT6L)qE+vqSaNe3w@1xh%6ioLnsC zf1IgVe7-R-q#;FpuvIs;DNL!UDxz_X><HY{DH6Z(6BdaQ5~L~02z9MNfm3b) zxvdOlG57^8b`nAgQ6g-$Oj?4OLm{Imr6Rh}Jq2F8>iCN5bl+Juq*?h`YRj~iM*w7+ zS1AK*Ib5<#m{4M=1Jm>7QUpk3+}lYY)IM3RMm}6u*y%n3&e=R~e0$!|+(VY}Uz#!%diwR0n!m6rhkz9Yg>e)$HYt#qgIlWT_I| z{8^|%hz~-cm@qpNSEIiu>Q-KuI!8}r`fDzDkmb;cd01c#s|iYBt|rlPwYr#tx#;gt zCE};g;~ZNR#jyk=&YSU-oDxzLC>)%r8AAXl{OKE(DnyPSg~Lgf=@P<{q@_-$e9f^W zzQhI*XM9HLgQmJ|r}}>eV52e5z{w?&q~=Xjf}#ovQfRhtNGWqe^nd;xeuB^K ze{MJ@8^+;fuY>ki8HD4L*F7r|SNmm^OOm3rluZ*B25DreB_T;!W8Um9R63ceG|p+7 zX*~;_FC)t`9KZc0V=j`4xmZSBP`+D6TmqG$DNCRr>>Gd-bB{3abz-IBaX5@P#3v6i zKuw&S$`eR>mA`lv{!U2)W)b(3j85#&48rgkIIK1re-h$|Rwhb>yfX0kMqX5*Qk0ys z)H1xhi4?6PUi6&apU7dOGtDKV&qj;$BF?0*aGRLJhdU+hF}X2pa~@0-$FGlvhZ1m;Bu!fQlx~>moaKeGCpat$Qc2mLy<(;oC8rC zFFo;*r)P4X^n9D5`5LD`2#mZ>%*7koFvKAh5X2IGU;rsBL3-M_*(T$rf8x_267T^( z2qJMZ(k2815Uiw-%KrdhTK!{}aQ@BltXCH}-~6sRb{Jxni2by+Eg?Pfw9D@R6oIG| zARcBUbn`CG^Au%EpN9;uIhu-PWg#Pap%sNjOupoe=jDWyq&0mw}yMAQW)fk`7MtK1Q5Jv>kPi~j&5`yGYiI6e_0_p_$rMpVwh zoHW@bMOj14MDvt?^QM#>uVq6-IjGPOor#4RP^cIa30oFGumwpiccHE&M1^MfWl2$% zwIrw<$vIAkT8enaa#Yn%!%3c^6er6>s1Dg_u+KD0e!VRZDWP?Xup0JTkn z(zLJx+Vwcv@UlV(0qT%*Y13T?j*QX8xctN41k*Bs{{ZH8EHrbclxBRM2wGAG&;vS% zVr>5acX3X57}&6Kk`f%7l0(#r(AKA2JV=g5#HNr)Gz7bg(EG9K(UJ1#DPW<)0_B_$ zVf}}WF`bYS;YkLxA@l;K+D4gP_R?EQ7>^^3MuLZAx@6HY+^&HRe-=NSZ0 zI6EGmyYjD-YPiDb9E*GR;$pi6fCSjNzb``kTetVbrDerHH*XJn{F@B0S^?fbj(D0y)8$nVMMs49Jy!u*|7qqFd&g{ zqqiXRbIir5SalVk02q*cZ}oGtMT4A2hD21k3bEi3aDQ%Xd$GjNoCzf+<+r^&O>3i( z9Up<IkbG$HC-H@gS@agAD-9d|ps4Mi=cwxdT*;nFgM zmNWyqr~d#<{>)=c*t&@1pHG5Zn|lHMv5lWl${^LirCj)KAL{YE;NL13>tC1FEf|ml zUqJ~jrZl_LxcZ()u*N44zlK(G1f+_!z%-)`3EGx=M!<=o3Csx$l1ES-*}(H>v~PF8 zFTYl9C8NRp5W%KO2NoDzTe6uQ>DpZ-wrxh3f0COH1Tjr$+LE4279jIviEA(Ho zJUg{KZy$=|W8+|WdL%CoCREccYMC&p)i3~{v;>CcNN^a(fxqWJ>#uD808Tp%!Z>eY zaT4%6TeK6nguGrdeh^MVFxX))EU_>x21?du5K2#Y0>%gYR{kG41=BxmCog!ERJCT5n#kpN<<<+bVb@dF&T+w zazHK5f#l9yxoR^LH5q1dd8kv39kXEnX`6}da=HfYI9NlI!-KUc3K z>2CrZry9yu>EVIS;EJ#OF;(T|TP!@2I& z1#I-Clm!pFIUVe8!Qf*ff>TWZ*|jyNTIuT?>$Eb&xk^Y3piOW0vx@mfAI+hzDTn|o z8;N_->>Q5;z<;hcOd3aUizSKFokqIWI3H*w{6M0TGX$?tfJxU5tCtd7r+mmt2lv`8iFx0ewOYT#O0o%C& z!Lz@O{a`!f&W~PQU&LU23>Y2lqdbR5M{Ee>mCVve4gvL@5v%GsV zR1yegcXx4(lZF(TnG{q33Q$ldLcxZQL2*YK$1UxC3}P_CU3zFi(q_CiGI_gOM1~3i*p!m(L5-bKQ;5Q;3PO=I0wk>W zP!v<#demlOb!z}?8XpD49v{TyP6aBIl^|je!Fi;lyug5H7DWN51+4L~-CNb2B-YY; zZWl~+ENvwlEs#V!-eNS$>s14230*Vn$Hz9;MAF?;VSXE3)08!6keP0gsW4MJN8~p)$%;mT-iJ3C&SgeXSVl zr5Z0!>wc(ctr4xG7#eFn&QT?pL|Ted3`GSHmhLt@Qjbzt0BZQmFNw^-VW;Ep$_Se& zQps0!Nhw-@Awqz#&02J5;D4ySlg4q*6N&8UKw9xK=80sal}gA8l2AY@NF)ad8;Xl! zPO!wyw0}`Ge@A3yBSFb>Jyjbe%Vpt2QcTR4nlNQnr3Nua%PCWk#1VR9swGLr$iw4C zMX7jX49N*8Y=G5?51U7KHIJC9?DBAU>_ML`V-+fPBMzjkD$We4xl4tl9`gbeYF&t> zZLYN#Qu>P}$dM5d6Q?pc85w~MPM^gXXKj(CO!oo7{1B!>k``3t(vD4=LK&U;krrl0D-$=J%JR4<+-GLd4OJ}_7>@+7koRtp|yul+|NU)HP-RSn^qBfF(=iFmqQtUXvzpf1ZVSdP%^?_3VW*ISNHr;O zLhXJX>2Daw%DVNa(BE41(_rS2(PYU2WV2vFtu`Tso?7*aa!TS5g%Y4>z_U3mQ0#xt z7?D&2h6bNMei4$FEh|`46$=}%7Cv6sMM@mHQ2|QccWpFwcBt=ANaup%5vpU9qypsB zdmhfj2(6F8CCZSNNeo#WZ6rpOq2wN3}~|M2eVz-=y0(K%0UL@ z_R{0Wp7F;xZd=C7t zro8#KkmVwSYINi-_JgBpHmhJ#jm14Aase&+{Z1PGW9JhvM7I>7(x8psnb%F;1r=xk zN>HuA&4WyY~UHNpmJm zAQRn5AZ{(K39vODO&wDQft4X4IRiBS6gFTe0)AQtf~Fq87Ns#M8v>0>no{=U7J7!WCyN!G~ZpE!iBq?GXG>ycm_LJC~RM=LuK1>Ev010{* zeMJ~-9sEv_7B4KBWvH98w!-Xe9NS3C8W$;)(wQ9hR5b*mV#R?I@H#svn@B&8%$6yc zstUudUQHxKO16|3wW)kMl%lj@A<^*WmMslajOsQp%S5j2& zH+G>c)ZAJuxm>q4)_Jt%cb?6~i4JaUQD)|qx+KK>c*_3(>{&ob-k{+K18N~87NBet z+0x{IiDBkDAv7cbbu2MzdD8Jm8H<&J!>b}jbg)Pu(OQ*K%=Ph%?*}NB)6nwidHH#H zQ7s8Ea@>$a3sPc4W}D3-C;tG69cR=6fe3H|Z5YMk5|=Y3D4B{WqDjj_C`0#l1bDn? zc+7O!#d8YtsD%{(d#R|RbfKxGyv9<6q%-|vp5?HU4h*z7d2}MI!Y0^Rc2_UA=1t8+ zi4dg}gb7C0Do_9d;qlY+AOHt@Gc{e5Zp1#IwLXJclQ^bI=1R@qQqovEk(*~A5=d%+ zLh*KI8rLY&5|FZ82L&_HWMM8!25wMdMO@11H8n2`hg?-Ja*+|eE*g$83XxSIa}tc> zDxFzW)cckdqtYkB;Z=xN#l!@nS!M;&x)yUvF#tRI7{f@?(>j|y%jD+7%56y3X|g>Gu@HEQXZ6J^Oy!;lb! z1!YpE5PU+28JyUF;Ko+fy1Pv2jQcFo2T#jp`3{M)uwkVy=t&NOOQ_J?oO8Y|F^NVgQ;Gr= zDr@Bh@|36$EFF!j;wc@A^xjkBB$AR$wM!X@WR(CaD0iV1=^a}BJ|-?<){cqELXK4f zD(I%1h=rv=%Hl}F+zU{jLou-8xYPdtPv^^*#xbD)DYV@v4t1M3^@rDyW_4uohadC01V7c$gSQC5%% zLL}COr0(S;6oI;x#*d7UiQGV?B`KJhDRNGUBCZ7qAXK|sNavD7*}P(6CIgq?5(>YG zP*AFkY&lfwBU1X6DV${zlklMrm6K<=+-Zq;0Z;QjO%o6`2v8wR9MY%0@xg;(3X2s1 zmeyyu>qmWDMdZl{#*kE%5CNry?F_j3EWowC<$5PY&+9Ap( zd_^yCV4etWTJ$f(CMi-^DuF6U1a1iyu9|dh;vO%EDZ(ivy+Jjvbc5>U?kK^*5l7d? z2CVAdYRG^Sn(J8MG1LG;A(@3FB(M&OQSL~#76|+`OH0tDAOX&Ty;$j8%q|%?%1UMx z6r~bEn!(MgX<@d!!{DuRDye-*n&tlhEh#dylM?A4%CDCZNeUJ$T7mxnx!7c=q=c7e zcRLYkAF1&K2-~nT{y0p~ph2ju0owKX^Q%RhDKQp8I?%(`or)X~d84~<_YV9FSek&a z;^0sUzpspCmXNg9sA~IuUL4IY7v;@M#9F;D=CY z7(Y6V#BHE`kC%UZQGj*I*<{BY|2n&xTCa~#t!%(4lD z?u!mI%FJjBNDQbbQ6V8k+$69`wXve{e##-Tbc>mSORysVF4QPrBg@gbSv?ZvHTBfaoli5tGSXfS0WQ@dKjsO-lX7!9pyHK)(8D)-Y z_YelGNPRXpy&}EQ?~8eh zL7<@(HFu3$jrO{39cYyyW~v25B_@ebHwEk%Ib&+xGT%b_nm!@4G`!rjq@=E)(iv93`+OBrp_J{{Y(@A5-H??#OnuV=&TYm1bEYQji-p2l6aQ4h8OCc%1o%%bJx@fgl}RQr2csUW#o%|dNg7uP@wP!ks98JJMz=8>50QsY7Sve99J>M0Jy zhTTdi7cX37l!Yy6Oo}8B3P|q(Q0&7|cN7&gj5oz8&gft8EOM!=)NnG9L30#Yc%pSm zT9%j}AR$O&>sylUAL>IE`Zg{vG>oYU1gtW@+mnq$>CNo}FA%aN{{SK=4|jI1r)Mnf zT})ncGE(v7q*jGOD~J+Q3Wn#is<#EhQ@O@6RQ07(5tk}cFo#eb=5h$TS7TpD&B?=s zq!;fhz20M6ZCcdQAx4#zlvG)2M~G7K072T96bV(F7v}cl;>@{X0?cX&x!iiRTcap~B0~`6jChgakT;N`fJ-w6VM5N``#ke;OU|&BlqD#q zcli)SQhjOips6o}kBAvJXV&L(33`eFLhV|{LjM3tmV+-0!jz9FCE)FtkFf1Zww6#V z1#5Hlt}*92)S_0GaB92mE2zI#=^69F)h)djhy*~b$%dn3nhw~H8HB+| zloN`QwdAgVDd>_(H9bz8;|n8+PY}4KQ7^ml#^C=zBJ?i0EsXo)lITE~<(-%Uqv8!c1a64K z@fosEPr*5mN|X|&W_$Cen9#;g)q3;dL#BFCYdVe8e8)IJ%auO36O+;5MA@*?97M5F zlR}pu9|rR9%uf%;<0awcBM=Z&0nVpM6?%dQ zAH-i%>%BWSq_mww?EVz?rutDGg*Y(?9|d$W@cvM zu3};^Qi)~9h*c3mB+zcN&|_j8B2uQyQ2{v=2ngSXpk1)sLxukJM3kp4QW8)7t~Rk0 zzRtnpJ;V6V?17e&LP+mguUb1Za&M$=Uq(J7v}RqW^_EYmCFLaa)Ktfs%W~*xKa7Vz zFjOKf5g4DB5Rjo$v^#gkpN-%XCC!lNGbb%sP^5ySq=z7>!Jq=pYs^O1!@Eup1mB8~ zkzk=OF+1gQ2o7%hUNG$U#7xec)Kb~bNid~l5^)x+zbHzE#s_j29Ez=5*++BoEbns( z*?j6)$P+w}RhX$sO#_hW06&#)NXKzb+NxsKkZGNnGNppS>qc)Q&h^ASL+gHj)NJBs zJpxxk*$+T)`3J#&vBTkdjX8CXV+Pry!Ax$U!MWk_cmBXx0r+ z0k)j5!Anx!nE}z>w>7!yc8boB)LK_1&f(@-lS~~&B`%e&7FZ`2Ck{N<{{T5u#7Jo> zR2XH7kQ;Mtb~Tz;#+NWmN|TwG1v-FwdV+So;s$C|uo9o*XuAT|z@7duqX6I2VQFCDAk>l@~Xsu*&Nz7+q zOC<&*NQwm^JCf#&xQYSEb{1?yiNq>YrR6oS1UPVdy=_X>#c31ahIJ&nIRJo0W_ECN zuHmETPxw3hBIkWv>ULMEV}v6?X$;ODVX4&%^36;`LrUdqnImeI6>O-Gi7b?oQrPpy z>K_$2(Km--h!j-|W*hQ3(6i<0b0Zd%E zal7*jd?Reeao#P8QU3rkN)obCl7zScMT!*0pl*D2gR69pLvp;La&9h1lB+PxrK1Q? zVr5x*U=V#uPswzZhDcapZZONiU?rt%M1+ZfCn*G$Epj|a($}$zoHvbe$(WQ0N>G-9 zl0ZUAltIzx2q2exR*}Z;p?p2`o2oj(K3}Kw#$6*n9yC?QTIJIM7W629N+G9UBvcYZ zy;ux$jxMZc?tT!?lC^hM0|AuZ`2qtwfHiJ$=-$e9yNKZM@}|#3*?}NB0%fOdTX(HB z)`v{G*YNM7bR1dCnk?V@e?j{5r$`063z6r4Kx{^lV=i$Ki1zQYR}aRaBcO zgIBJuN#u5B^gm|%N&f(ll9`_gQk*1&m86mg4oM&N53bH$v50zS&-<*^1gv{?CNAP_S$TmTtoQ(Ayanu^lKyM8y1;V_t4 zv%VResc0%C3rKJQQ3bO#t5W?5jG@<0gY75MwXH`sn9O3N!7Gpv6AZ&r(&|` zXzr}ZG-g_W8Z5HHi94dDX-HxURBWR5ReAbu{2v*`F+>sx3IY=R=C zL}Mc;xXDP13`9X_(+t5vp(JoIlI*mJ7=ApN>}MefV=OI#d(W7gh94`nBj<5EKiWg|V2(o$)MB_kmO35e@LA(Rw{SSlbZ zdfK&WkFTS67Z4b%Zb_3;oH${TZUP2?%%D>iH%^aH9wEnY^EygrgcCHRkfgZ>Lq{UJ zGmdu{!>@gGR+^v7bk>@TXUgNLS&TR>e)-ZTrXT8pSU$^nNt0ybSK z5;O?tN|dBSLP-J~NWhlZl#*&H-f`#d({cHnU4OYNP|iYXP*O7z>MR=6BE58vMs_o^ zSPl~?f+fvdv=WjE!2|;CPG@mI2_m5AV)N<$08jdMtcxkjCZ^Y(&L%I;&6b4jm5Vbl zozW5x7fKx%OMzo_GrxfiU5W>#H%1V)j z!^=oakBn+mkQj#v40@fZuCn}D{{Rr4gnR`^<}>=j5;Ax>W?dRKoXV77!_2iL!XM?! zWU^$Kv7o9h*lUiI>_IhC1C7&%c2kPuvAAp>0pYlVIcoST#3E6fCk~Q7oYzxIK&f(c za0wBk@lMfUh7Mx*o+?VSq^L^xsY#l<9ElD~TGavLnpr~RkVB?}Gf8qj$IKjawqZ^oicpTpS*Ro_=SXra zddug#??13#_ITX)bzj%(^?Z8RDKjD`3Mq8%k`hje+IxtN@x|KSpqiVfW9wBOEb4TM zFV*l7D2{J7Wmz&$e_OR`=#*@0@DVG5iH0J_9t?4LqjhyP#bQ0%F-e7Hn@&ZpP53mh zrrMFTF>LYiXdr0Tznxg^A^PI3?&98+B+pt( zWCkfLAMecPY`8fVStgUddd2OE23tz0ZpZtpb<(Gg++;hw4z2udL zg)3}j&y;V-XgjOFQs-4;lYf*-o?wDX_gy;7?lemHA0Y7y-ON9(nu?A4SK52lU%7FL z%JUFpY@tE1IRDfkj?^bvl`mDs0aCF*z|D^a8N07JzD24jut~~rccC%84T|;2$NhSe?*jAO|`eD4X%JMlJ-QV zxTPNwF!$k)r#WF(WZgaTwyzB>E;!~bN2##giEPDmewB%I{gxOn&Uc4mq;#)ClIwQh ztB-3z8mGxBDKRJVxvKIt=-lOrwhD%v%cvA4}Tb+&Yz zc~u8F28KG|x4Y_@`~@}m(5B#@4GB@tTYqFR#99EsHPBn9*6Nw{0D|bBH0>`bP9J;K zsD}%!H>=RHqeWGiv^;xE1yd9eS&yCCg)eE`R2Yi%Rd+I}N!TBZCjcjEdf~gjOolqD zEBBY7(zl0^*x3!+_@DQx)jrNxe7_abfjXy|v9E_YXciXWev_?jv}zqW=W7(@@d|}! z{wFZ2FD5YbN0C45yX$-Ui|n#&9FQgigQky5W;;2)t*5F0AZV2z`SCyJk-&3p)bOfo z6^<$|Pum_0m`#vd8RI$oXGgAONd?5z_!(GC9yPA%mSt%6yt%76IAjmA&)}|us%B7N zXru>x`S>J)?OUWRQ_A4zAdkRH4!xvpzM$l(D3NEMuGw>*#lRY{g=ahq}hwfm!>UtN$`9DwUOw?uih zg-ps#J`BN`hzG?*J;UfIKJ*uUAz5nD_8miPFEj>9$k*4W8b}ZExj$`Q*kJf5Q|#}lp?ALRaW^MZ%0gC2{Pv;s3}}-@GK`35l-#f;=?i197H>~&B>U*anK+)hPC}#-ihyxyIdR}qqevlfQ{diqSmcFdznKM?F zKato~lZJJF(i*(JZ+PrU|gD&T&eM;~A$LiS(f4!+gqh;j63MB&d{>v{U_EBy(23;<4WO*WA^>9@GB; z6vShWF#8v%1-I8 zy{zYdsbH?N%^ALa$T(W9Gsz3dG0+kKc~+|L0EQD3*eUZ^<{?G!{n|@*T&Hca>`tIP zVy=9$LVo`sv48wHBJ0tjsOD}oCC&g$5TN{-xmq-y9=}fifhEAAe$Dne zK61SB(aBx!vw2MmRSm;pA9#W)1}zQ0A^okvYZ4i{hY6&E%-;<8XN110lCG54voI`v zLSk%>y(|;biC1MP2p{B(M?yXCjDX;l<&0UT569MzZ-O=o`TmZ2CFxpI12P zy-XHpvL`kn zrWm0pA7$6~^o%on00{WZAAx7T={Js^soASXPAUri;-3D}fsm_QRR41=%81!idF*BH z9BQ=jN6i;RV&>HKeY~{;<%EIB_vKC9eAKnKg*nA%Y4NtRolI~*{3$hdxWq(mf7e&s zOU_dSc<1gF^``SFmDHs(vVwgB%GrzZ9}SuyRwluva}^8&YL4-N?^0wV?T zsJ+8M6-rz=St_Ka((sL78b+~DMGX&lFsSs&_+&@M>}0ucLeHm3OE!gOZP+-QDxJ9b z)~4UdRVP)oN=fyDJkfz4h@NRRXS&Ojb@{$R-cTU1HFy?R)SSnHl6nkEHx?lgfR}bY z>4tnXfSN-&%eDc4Dge`C6rRWUL26n-m;`RUrOJ3T1XZM?M$gN=w@kV1Rqh-HO*{T6 z^FlK|f_ZT20?8yPVEg&W{9fN2;g%(P+9+1vT-9Xdk-oF^bx-o=iM?cFC*`w{e{T{vbC`m{U@$OXQN`?^ufg9`RW&+8 zw}CJ=HY>1xt*U-J3O~EJbVK8J>1k0~orf|+>2i(6cg$~ifJ#vbFYgm8vU$=GxApbd z@E3LIH?O|gH}~+ZfYWw~>m;2>?Sn>9k++thGOw@?$^=LKvXi9yR z3t$s&KAhyzu439?H9&@0A+Ve=`qu zCXhxZd}jFy+qx28tge`5ws+bmSMuK7xQl{l`9F&(^{SPPxy(^m$*Y`q2?p}2oS-*V z4T-t#?sEXk(Y_1xzVhy1z_@~1NkK7c2tE>8tuek_>t*&?Bj0*jh#(^it|E5I7sF(M zbiW6gY}w{USQ;fV6UmU0dTjDdOF(h2|CR;MOS=eEek%+@W@+{^$NO9OQVoM-U?0vd zOp6f{ZSolPPhIzllmu*5&swS=#5|M79DW;bK&E$=iC{KpE8i!yurU-D7y*52$YpVm z&bv;}Uxap&e3<~bhgtvXwoSg~>vO!r-DPJHASOfLu!LJ}WHM>Fc0Kf#|I1<0SRp zpJxPMR@Kb>gE*xthvG?8Na+RyJeloLzE^nqrSJGU`ie#o3Phm59g}a^gM&B5`U=Ho;Q6CV%NLLpntH zu`C68%LR>drOK}K(~SV`{v6Lz9xp1l!klzt^Up#uhp5zIf-#_;iqe8L;TN+fXyk6b zmpEis1jYQ!sQT)GqHRE(2W;XNi@xFeMP`OWh6u_<`AHH37n3PIH^_?UUVg9kD@Zgn zys3Oj!C5v)jbtrEMP`5`KdI5fWJR5PS1IvH{rsq#jxyYKxd&K;6ueWB!)?SRyIdze z^mS@U$A{0Zui><_5U)#w%!m7~O!2Ua8+{uLUv`rL`C>ypxvr8oD~97V6st<> znG_gBG?uW5n1tItP?EK2rw=H8isjR1e3o?xR`%RX*2{*kU^9Y)($KOWRgzx0x&Ki` zvnp+f93!qKGmnLFSQ4E}hw-{XjqSp0C}UxqRSGoWwr%@=GZwZkiG3v%N%~?v3KWBY zMnqx0tLAQc_>f6qH%`|x#_5H?7Gu)O43NhBGqKR~6aF;5k}l$iYWKUOuQx4@C?Yb6 z1y+L|CrZN)A}*Fz&E?f@-mol;x9*^#m=}3!-n?gI)gvlcGRd~rc0LtLTP@54v-SS_ zZ^!H1V6C=aORL1SpkMu%Si~apH;D@ldDGvmP02ja`5TF$FWeRa$m--|2n4*W(xD~d z&q!yUkn^q6bM5u^ZMJxZyQqh^Cj-Pgj>%NK7wf$dh4)ox6DwV11_A>;qI&+zTj|%< zW;ncIgt$%P_tGzvZ3SCc0oLbI8JqyLFBd$t5$ z=Dk)y-~Nw=go`ii3|}Z8v6ByGrICSDTPd%uCdVS!jc>NoPwkm<20Wk<4l(qL8Elba zmc13T2_z*=*+z!Ni*m}3c432^%_%|M zYWK=@5D6XMk;(vwLrNtjCBel|RKD)>fqTpi3oKdT1*$XJICqJB6iywR;^Ez51&h6FOa<9~duzmNb_QtDewpOzXjOm?qZpG`d z@Bcc0n6P4RK@~3?YVG#+odO4}^5M*h-GKQQMyAQi^VIX9HV7ktbs|(O>h;_c<9@{!zNH_BS7sDR4MS^62Bfd?nWt55nF3XL{0x$_zF8MiG?Qe0b(Y-9chc-JuK z!8giSw<+B%!4TmNybzF3VXfad#Aox!Gt74YfYoZ$r|DdZrJ|8i5`iGpcr#d%Cct_f`uC!^X&xG zk>|MJP87716+ozs>J`1(YI0Z9rUZhC4T*4VoxjA!8*Dn$l^(fk7h0#Ji;#+2pLX2& zs2!CfG!>$e0oILxbS~KdzYKP@Qf>idgu8S?#}PmY)< zh0l2L%+H>`)=u}HSVva-V_*_vY!5G;{14D*n+6N6FtKa+81U+(E&o^n;tVD@U(_(@?l!#e5(u zpi8#TCnAu^%cPLJD!E<^hsgTv(WvX~r8bDlpQT`~vqzwQnnB&FHq z_k9lk{GCyA003E{B;>x9^dEP;v!)R`So2I|?J9CT)y%1_?T19mI=R_dW>w+e_j@KzvlV-WIa|B7 zvf=ud)I*1JmCz7!>`<=Bd7b(4FTPP$>f`*0vD9r;0(+CPv-x$`UgNIn6tT~IfljKF ziQ-xi6~xD=PZ%H_u#mB3WC~613BxH+zb`BAQjCo9L0LYMDdR(DCqgJorG zrq6q_%x@VftHrzchRe*?xYGK9m^yJa%e1x3G&A(ILGO~W&WLBT|4{pBozp@Eu>;CT zU0*(;>jo^Sm7nsd@X`-4z460HJu9^LVU42J=KZFd77#FrK*x4(j9{d~4hZZMe{flZ zUklL$fxUGpVG`+Vz1zIpw3Vfn;VA9(Sv?Le+YFHX#}%jdX8RnzJ^E0Igg0#6ftu!y zdRU6M!%MUF-w8;EPfiaNsA<>0ar9CZfAElw@%yD(o1F?ZgT%ppl%-K?b2rIsz* zp!5OHM}as(Wua^qN@aa&>RYi0E$*mg;YKx7zEErv<06`5T;vq_-6}{q{1aWop|7Nx zH|?976U%D59ok5w+(E$vh7Q-+xwss!0t<`!LAneuHjEE@@{VoeN`K>RqPJDQC+iS5 z-$cCs6Ln-Ozt=4$l**ic%$2Bu>TmdmN;8JJHt3P8d~a%Epe)}|E;tgmyXrFn>rIPb*p$AJcc)%n8n2_M71ZZ; z|NR{{=X&$S`JSL6JkQ#Y3(4Yy8nA?d+uOsjW%Y1-2ysaFmEJ9sJesu%Oo+4COSkXm zV-M*4DR$e+gf;wjJLD=m=g9k4t*^hbxQL6W@BZgJVJfQ_IXX^WC0!uzy@Xfl1X93s zk~3@_L1X`gW%2sfra&I;CQh=kyhKi@t12S9bKP~e9`>#>3Jcu_2?xii0v>#F)%`RX z#u*lLDdfqp>+v}X3Bu+nDX7&(wD0B)aG7Df9Er<|5H7vh=Fk^;(~ z@BjJbkonv$on9V+44krBxYP8t|I<&twmC)KVoIzZzD1v_CTIT9%BT7~!K*uBblRN< z>qk0W;T7YR{a(~7Ybsy3VSoa9FOank)p85T7(aC-n^t^1wd`Aoj8T!{Jo15u^H>3) z`$r|QPcI;wimVH>21bAB-ej@xX06mjB8R0y&~yN*qwH{OxFUY&`_14OSjX*{lCaN| zzt2Uyyl1YeNfp|df4Lags4_!K55TpONkbr)nU>|Mdk(`!=*ZBe2=CM1V(J%)+re^A znNpZO%7If{92ruu?UFOI6(jhc%-W8E+-U(UvPM^`wT$}6GZo4DT{3sziw@^DFAe?& zsM2d9zmm}l;V?yq*;=a12d(+sLQ~YgI5Ugth9uyI~V%l{`zv^d-)_7hjYo2d_3A$7s=xwE|0B3piM zFiSX(5`Hhw@OB>o0cepX1+P^5pS-X*jA_0_^*3+kB#*A3fjtFS?~FM8OK`>gHP*u& z+$~~Xtk=L2y?GJh=8csltRKVBM=o`=qlv61$*emoic71g=lwen^#`cMPuAQAr+2=7E3Ny<=T&u)7r$!zI0Qm|sud?%Y z5MhtsuI!&9W47qjzy}Us0qQOPq&g7#a>#ic9<0RJ7~P1c7Z8MdL=>n2lH`}j1#*Pu z=YE-M0*@%=U>7gNnmhU9J5GVzN6zd!l8E=t9*Zubz+<}0>alK^szDbb;)Fs?7&v$Z z?c1tx9j!r|v=t@6(D%jnMN85-q(89nWUf5hSZ#6YSMvWAtx5KEvYB=D(W14#E0oIcbzOd+PvV_#MREL2?qd2S?^E&Xq-QWL}m`4kC0yX zKRl6e(sKqYm%hj9*0{s@!S?=BZT|y|&`6qcUK=B;E6pMmP4vm&FH-5a$;`2RQ5DhG z*~w2}4z#o(_|;!NCRh>lOFe^uRu(n6JZ>mSfh9H1K*5GPiN4~b*M{MJzm^JG*}c$5 zxX1a?@$G5lcg|z7#7bRy%^~4y>27K`LQ5ShI-`yS*)-fxZ+1)@F)(R`X?ReO-*|(^8y?)@+$v>nVE_ zx^`tS*Ia(WM}I!{b8eH9#rx1-s}d_;8+Zx9jmyCS)y|E(NMBB`cOk9~2UbRVrY@uw zDiZ3b0L{7PVXGEdc4;_pPJi5W9UxlcL>IdrT{!0;QqJ>FKPP2UBc&PR%=CyueY1|p z(@++tJe74~+vs>;b;#qJ{GTSgyJ#Hh8&EbhxFQee-J;dyKpX8h zZLX}eoL^>xxlNd*DFE^+@_Z%pJ$_O7w?wk*!VF0Tg^!JDs)q`^6PwLF{Si)_UV|vQ zRNsxVnpz<;jiAug&+F5K9R;4&I01@pG)G)Il(ZNe-0$SCgHS<5mR_c@V*S;nPF!N! z&Ju1XzGcO@5BBx4-qIBIywNwVI)u3aY(*uefBFGu(4+qW=xA3R${5y>6;qUFd>km6 z0(kPq_a1OSL7fL;4Z3ijbRN9s;%=ibrfq6YOG7kw`4`C-T}iR`uzqVT*`J-alj=X| zy~@Ol^|G=~ZTZOIIWUVc2KiPF{TK+kFJ)E}Jp@LRiV*AxFNf`x`R6+$dhGKCy**@W zqKk~^y*vC&Qm*vXAWoE4Z7?(LwE8iu6*FTwNJl$>_1N9(k;DFMAW_w+ zSt&V39Ybec4+9=EamiL&NXjRuf+!?M?v-0E{G1Rq>^KTglMi9})-t@^q?kw| zaFAGG$_(-0ogODOt>5>ieCh(eL{OX`Mq*cfzS~TPIEpPo`D#fr z|B>A)Sb2Q^evZxSeO(ym z=XGJn6pi4PRjT?N9VnD_#G15}`(N-ix?64knUH2eWVLl>etSN{3|`!2PapuTW-==5^KPXZ8FvkSwF8kG+7$r> z8%dverR+=}8vJ*Zt^wI#N{P4;wmwPu_6Q@TZo}OuB+p+KZ@s=fA;3z0#5TMISKGs+yl;s-FR|6b$W6NjVvq{yyU}JV) zYEYcO0|H~gNF|fp&eN5J`?;46WLMtH*QJyQoZZ@@>>>2OBWj0kz^S=gQ)O-@-e>7R zek_`_VFs9V8$D1F>B#jL>P7vqC>y7&m}TW{VFNvsU~(H&9^(vd$RjuwxKsn=KYHAq zI8_k4f+zLQ^YP`uNH6%%7A{02{hw{&J=R%O1!!Fqc2kDLh7y6AZ-v7!x#ea?M+J4)gBz51z& z_d&EBKMdO{G?RAdO*LjyAA~|vCDjvpJKkr%%_-fX>LB9l-Ge>!9^?c?H5IDo|huS>sRDB$Mg*ig{RTZw{sg=R`>R0|Z zaCbiSe3k+53`qb0mOp=!HI2R5FB-xPU8`MzCZB3#4)gecp9Na1Md=*8fBNsTmbiu6 zr5l=ui7&NdDKL9Ji=TOl5e7iN2OouR4#kL)&($$xNgvK#8{u(|qT~q$p=H=2Pr{%u zIgvIpkwPGxt096A!_3KRGA94TX1f%dQ@8g}Bw4VTw~u@Z|IL{WvqFp0?l?u;Rb!>i zjbu@Z(~`+E;t>f~8w{*m@4HdJm#rRjq54WGYj~A}&OA3R1WLvh=wgLH0HJ3F{^*tE zE_~fz6>?o(fh^~phBXDnSek-K6GeXnl~iL@O+`9fuFDVkn29G|&(z?FiJ|osnNK}300;_AD%(dsI}9EoXxJw>?f75H*hi5p;|S+h z@o$6Q77E*$Z*4@FBaIZNCZGy1qcJRat^4_woM2F=L;8w8Os2bVLf6tDdf#Q}lj)9DZDMJ4WoCetBj(M=BauRojV{u=DdhN+Xl>`vTc zX7WE+@D4nACZ~tmh8FsX2XUDep`v40Gx?qk1V;whZeO!=NlZZjYU!EbKAVdED z0PQ{ni8rL6194BhNF>TU1>8T$vE--|cJ2_x|Kzy3VfHon3;g_sTfx@L$GXXnF6T>< z{lDB%;%m!}K$toyG+d*e%0Uy1#2P&D5VgbWQKbN>)7^L+M5f?zqLa2~BZ@Pum*U zt|cw`939^xBT&v0U1bWRubfON$MK!eGJ`(ofuwBGI0>qYCMEG8oY`|byLqWxV)3(c z)DqI%%M|EDCH^1O=v9FHhfkt*WqH!_pd^@HA^zIE|o;+>(YE*b}%8ge{L)8wTPSFgu*b$yFXZji~8#>u1xE@n~mG} zJ`(D(A6ttNM_bBh91*!^Qv)}B*_n*hyr3Li4{*b1PClpozvZGgZi|rZO!6+TLBV4s zjFpn$V*PjH`TF07Q=aC2N z@0>DHM0Apq8IHJt5y4=ts2_!ziC!CPqrkkB{I2_?w_~jyo0}vGs=<6&fN`c$3GOm+ zprNYe(Kx|^Fzq$N-y4}Ae;|B+F`%4h-8^cbt6PF+AJDnemh--Y`{E%3llDC1S$%@o z&Eq#wk?9YNHSJ8c>{gCcw{7N!?^T1i**YQw4L|;q&z0lXV16b)uAUCs%tgc!S*0`K zf9I2XH8UzcS-8Jqu?7|#ck4aBB&8n?(*}Zi3C13X zIso;V^rEh*<0z{e4GK(SNGaHu2Dr#BfO&;YZOV#QmY%bV~&!|*|AE1LpV!isD&NBkFUo4LZO|fY?S>uY5 zpi%*>PZa+Lcr>Yq z+}(=MJ?8S#tis~g#uKUXXIoKQ!JTMUYh)~uG8A8qT4Texobz&I49>%u{X=cJDhcjQIW& zT7A^As>4tcmk9Q$6q}uBaljTxm1T+IZgkQXZRifp^5Xb*{)th39`?3$6SoY4)xL0v zbJ@#TV&KA{5~Knqd3ERRlns|XdUtR~g=4rjJFrJvhnugqs(4ddS@3HwYSNJs}u%a z89XOb%gA!`f4W*a@6BbRMoe0nO7s|0&@_Pp%kF|+EY4DQu-_V+RGtGj0xlF;l<^AFFK z#gHJcy9WPV6k!wJr*-m+-}*{zX%+}{uy<=WEW7;Q5aZRhWRd*Z1Y>s9JK;^DGl%Cq zpSp&9RA9an$CbW;QJ>0@s_|BgQKm5tU2S#s$x`2y{`me6kXM@O@eNda^ys1IM3pJ# zxbvg^7}H^6b%$9#
      ^HniAkT&_Qg$=OFwz76xPV;hMhT7k>Duo&FnPf~_mYDdGry zVA&6~vyv$9tpu8*>Y6nDmb4mAQV*n>66Rg1Xm$d9r-v79a%WsoW)4s~&-`+?vZuG= z>lASeg7%%9ODU@#kJ9>YKDAj*`~;nU&IpkIx!ZM+9(~K--q#DLtn8Ba%_yqlKtIP` zsB8AW-@W~FMS7oim3a6WVQ>hDzQ0-i*TR1{ex{|zquKHwEcn~F3i8h$r}OS_OTBTS zUp=`L)pEJrp@7k}1EoB1eej{!#Va)!*49hZx5K^S;Q0%RxatpD^du-)c(K=N?{};c z6HsX~yll0nqoMz9k3FaIJm=4LMKf#3AlHt(>X%}Lv99w4!KV5PTqS_Yw~B7cC(^$eLq;DN zw0x&3k6ctfr<{1cn+%N~vuZ=AxPUm?D}T(s+hm{o^?8Kv-qShoyi0aW*4C6FV`iKg zj=A^egM|UY^-;#`z34~Q3PZx6G)Y0G&rekZ=RQ0&xrH;Xc5K?r+WLE=a(@h}@0Ru2 zJ-TWral@hX`HQB{BTZFJq(?7GymJ;RRYN99y=zFcyu99Eo>`J1e8)}M>IpoQPx4gP&BoKJVS8~cNVhG2W?2woD#*w zA9~+h-VR>y^eMQPph(K4+3SoCjh143XgL2M_;C1Ew#u3Jn`zT{Ax0Y)(*owfrYFd` z*BMLy{kydC!^uIG8Lk+4OZL$4-Pnd z%YH79W`1|lNdI|GP0zBUyggX=}!Hcy@N8D2F46Y#6vPs=V?d7PM&H3tG zeL3Qur=|WM^h)Q1PUc*=uCu0Q_`Bk1@*RnO2y$ogWrhZmCGBsoJ94t;<<cSEZ0JCNyo#^fgjjmn9+!MKU+aI}Oi?IJg<+T+BxI=&-s&t|9fj%5 z)zgvjf)ex7M{jw7jMHHOic&zyVVsWrw61|l?m{^R9RxSX2j(7>n-G9h}UT<+WdtW-MxGs`N?9 zomHgNszvH6`OeqAGIKVW(?>s;+gwc9U)V?2HK5QrhZ|mUn@x8*_u!0oA-bY#wFjED zyzwr$zPA=0Y=ny21hJ$#JVKelGX1}YsU@%8d#IN4*%TOwP@M??0C=;i(cjeN*}|Ki zXsOW)6_pRVRkIYhVN^#RydJ}AFRh<*hP)i|sVVca2oyAc%FmD1Y+>O^ z-o2e)=UIx^~*J61jAS_bN{&T>t0xYdR=6)GzZY z!3rMG^tUYt?VL!H0VI>i@u^m>Cb1M=EJaPK(V#Wq-y*Ygbe?>)B9%3Yo`U&)Tgh=# zra316AnzL#?p!PqoOR!yy(&+ji)oy2>noBRjYg3kkt^kbV}i#_zsPc+v?U2_xEH|^ zB1@#i14UfT{ea>UvH)BqaLV7_qC#utzX!)(g_>oOhp0ZUZ()mDVG}?b(K{__EuYqT zorNsYEVhllXZ7Xd7jy?j}jTa+U9v#ea*0+YP_LdP#NSTaQ#BA@Y) zT1ZE%^C5{k2svZlDWrPsn-?zFwEP>Idjl z{&hQro-Zp6f+=8| zYu0`KmE6LG4E!#eP@_7Cn8$c7>-IQ=!Oz3h?L=~0x&Gba6Ek1=@ebzQ0TY;_3@=}{MF4)VR#8p#9^4Hx%N2h%Q%U_M_ZbkG5~=5`hxr})O> zkvY3LiI0ZBMU*<^W{|pS;j^nMypIWn@P4iwAV#td!_0*rriZgCKE+^AY~~njZCjk= zPrmTY&C{pyHt0i+Va z1X4NXCPD}j58T~Y?35(c^`1Z+KYu8@(*C#>L~CI|<*qT>;~4En@g3Pku>;9fHCG2; zvrqq_6m>S0^{i(cK@0}xeq7?@p#wa5+4dOLJ8h9p#FV2Jxya0Z6*vD3Go`@kvu%F; znN??vo_f-%^|0``a;_2QL4GzbPv37`+ymnLx>2F++e&?{;xyrjMT=AB#isrNwKvGN zXmq*_aPc8*YkPDpS%)6+8u?a=3qcIiGV=TUP*Y7?#Qhd4(02*gBDVb?lDTaAnZqM5 z<*|ID9CifIFDlH#-14Q_afO?tE1*`A>*nUt{o9B(Zm0Jr3)r4*vU@&(&|hTZ*5hs) z1Z6@yz6XHC7T#YAKJHX}|Mw%PcatWuQoa(=E<&UWNdB{XzXxr_op)ruW~#k)jZaD zY=pm30``6ZH8I}AW#aW6mPcQj5{o>NbmhvPS9};U`ew{Wk9u%;{>v$tNDE5vQKhpu z60+Q~Uw^0bkdwE;hk!TEQyTg!nfsg@y7Ue|MlmNqOnos*F0Fz8k`#`I%opP(Y@xKt zgHRL7O`wXtM6>RnUj-)rTMn#Cb#W9ad_rw>lI8;v}q76^z#iD%fJ|Nf&()@+z@ zFI)b3lyd6vNKmi?6+wxb?MB3t5SN6&HpsQV3t54sgXuq~zfOV4f2?#KyxQYRuRXS2nB9{!x=8vrqd+5_$!|Mb-c5bPclgiL{ra@vd^6svOG$p1RU zB58|fmU&uBlj)i|Xz=SS4(ap0t$yM8D@~wZ%Gl)O(jw`E?;uWnfk}1itwiZ>3RRpN zDU~%Vx{JI!ysNPC<7-daSOuqV_w32$*Bdz!1A(T#&sQ2oe}QA{v91gp9`QJGuJMAA zR`}0UP^vvX#TRngaZ^f= zossNpS9{B!N{vahsNiV}H}3h`U^>5ly0>-Mg}?rA>X7HAqY)0jaI_x;^n+uINwFKa zE4&DnV56p%Z@PYWWB&MNR7&^sRsXw-hutEO;uTCdn9_Ec%3irY7dBQ#ioHW<2M_h0 z{a4wlxG3?a)Dw}`6%PR9zFB<&I*j?+gp`tXuEB0he#J+gY;!t%vA+uF+74;bW8jpQ zOgiENqLC&*56~YBy`>lYq~W<*VID>OLo9g{kV#2+5+?Xgu296^jl4>O>EF+EB@5Vg zna|&PK)v#~OfO-dy8p9L??wKIUIfbbWqMdJcBaCDSdey6s@TzDoUPd|WY$>jjDm73 z%oPTS8X5_wV^tSKt+!E-qS=|NN;X$ThvZKGE*$Mo?|j^uX5IZDNkh#a3OS!L%DA>ccZP-IDQloOcb~@_kse6UpXiM;_+;Y$==& z6XIB60EcUfPQ@z$j3f0Zmmu9X55jT%b4?bYvgCGK3Kslrd!+yo7sbg@t?duiCnH+- zTALg7x-B?%xGY}LwGqiCr}6Li(T?qTmUG5PYcrNd`KjHhfw%m9b!u~YqQzPGHKcTD zZ+)o83?W39f)HKPALzCk37VbWlS@Nek=0E;_k8&w(DI>`@^TAt4!6uN(F<8s57wLG z_m2ZTLQf2+3ANdN4??1COqZX(iJ+59tMtcBFhhK8eX;7X;n2kqn8OFbX-q1zb&_AP;LgPT)s?Ax~ z@xKJVO>Axyu#cqhD~8L+N^ zF_fo-08~*R#qUP_s%PV;=SSw<_icV0wwELRJ|S-Cb?C<2Ax-+-FK$1a&!bgkS5egK z7wA+t2qVvC;`ZrlnZ_d3DN_&+%r8pgZE17(!lKw$b?dK&dU9S<`IFyYlRflp%5CY>J!l($Z!`oFzA9h8*vC2Tj*>Co`LU)v1ilh_y%VOGpjmXMdL0;!qpC$@3mNblfwRgv;XW4 zc$%I8C+*&wq0vcxv}>|t=aCwC7R>$W!a>5R4sDve_G0C9DD5=*%Go$JX!fmi)cbSv zJa8|wPaf35ejPuON8Y!UOB;Tg;0Z~KhM`=7z+n0UEvYdevL4_uBpB3G9UUVPRX{v> zTD|zdov*Jju5@Fj)@z(!Rw_;&)G|3*(QHL??7ok4 zJUW$*q}B4^l4g+dhj6FxM;Q}DZ_?$5a2I5RebcTM^SZ8D-B-c;uE$e$AV>Bv?^$Ov z2Lp!ad-;AoV=0r#p2W)#y6rEB`nb;t7wti!wme2Wz(UBRvso7jWBd>$Dfne@HfPbu zjNIhvi6szenq!$)O2r#r7If(9r<;2Yf7IM*)-13JR`SgCI}3dkK%5@0hQ`6UCQ1^t z5oa1tSR*~2A1cxr9BgvJMrerr!!5X1ZL>2RJWKXP-4SoT8z$IbNmUi)UhRCNz@@}y zHrnN2=vi=~1(hNyYRCNi+ISPi`O0Em@BaYFKsLV;4oB8(mKLMUGkCu?ANqFW!IfMp zrE=?9w-SZ~?H~&_HSQ_Lr*Ui+P9ei*%qR#FCrnyGWu-$iGAg0Wl{6Y74 z0$2EWn+uXskdsp2F>y>`_=>SL&bvdyX7J@=5G1WwZ-$|iAz%PO1Ur&JJ?$(gZ67^7 zamb>hG|8r?V!@9eG=~;#Ym@>h-4SI$ODJ%a5bhOYe0vA5_|&RKB2G_&j6cIj3N4wy zQ-^ok=XQ@CcK-l`f9sPlBm_)Cl#s5hcMDF_nrQl>)ERF$d268_px>OTs^@myLspAAq>D+qxspgB^)SC}aW zHc)IpP(Cz`hp-${M-0KMhhq><9&)pprCAXusW|{rSe6Bgy=}~FFIzqo`UCMrsk0qt z@VhfD(^#2=2(#+Z+2m9!FB5>gXcBQCfVdFV5|B`|vO@yQPB2^x^$&?~h5pBlNyJP< zv?b?EnJ!Zlvxj!DHP*mYqin?X3x@G*D)HDE_;t*gF=aDQW~sm~)GP?0EG^18ZPkB= z{;70NH&$1!w6yM80-6S84icl~lc*(=8eVk?Fjkm>mA8K3WdKGx?+Wcd2;;Jna2VV= z^CvNsCM8Qjxy({rsVsEn@y|GiWpTVMX<3yraC4q?xl;lt^l}>P$6EnN#q!dzku?c1 z;GdGEI+mbN3NAn(0^^e5tPdE;=aVrL0w$oXAmso#E*a>~c@blJ)(#wI$(@{`U?hT| z3V?lxE-EXlP_=2W8YVn1pT1sVH{fL#Glh9d3hu6G zE~1>l)Z;ZaA?Zl%-JatA02*Adf)u2HlFV|X1|dYGKZ7%xyl=lrz9lrql8%g{QD{jV z-zc0!C{YAdr7?g=+9E)XmQo@q!Ah#k3ov|fZavs}(-AWh`;<+bQnmtFNu@v}6VMjr zV;wgEj+Z4!n1(sX2DRuY&RL0|0G84^bI^G|g062 z(=n34o`nzP&c}oTj2Oi+LeT~x++l&VR6aUC510Ec9zj7?BNVhvlCnq%lTbT`j-nJx zmtrYs^{@PY{UyS1Y&7h8Fk(dM>Xv7sVkQNZq&iYch#@HzU_d3cjb|Bvj#d_=kWS=) zpmwD0^nq3>ei(M9GZNCgsU(Y3wzP0-b5|N{4ZYpNq>MHiRImWZkN^SGK+jy&+NSX) zUNR60kheEV-}4YlhH6;Y7w?I8wS6NyDP7lYRj$r#FIoykLL72ZL!g+4a*|kpXyj0k z8@pZb??5*7wf*cgcp?-*%0Mjj4$OLnrq1+(EtJF&KoU(_ug^E(fbts+5v4jQCa+M% zy&3$N@`u7gHx!hqO4#qYlJ@`sM|O91!n{PZ5)BO=t$(w_lr|m2tQO>!4CGRQ`8TMs zzyvXO@B{Au0C)s~8OFENQ{~k7S`fql*s_zmaU_zV$pMQybA|}!_tSqH#E@j2;fX?N zQZD_4n3t*Vz(PQ1b$!202Qqpj$iGF-K#;?&}hGhzki4}_`r`+R)T629Dq0gmhD&X+YywK zqqhDZc$Nx<0!SpHr_w_L)--;{o@!?x$%nwV-*kanms zhC>vWK0~n|Py<`t;65H;pfy%%f3G23>%2$+p)Q32f_+X4w`vpqTZ}J${rSPe(xSAW z7$l@QOhg~cv{=`RhZXw1BUg1HH#PO;USjY);?BW|FL!!wKRlu8TGI&$PpJ$_!6Xu0 zg+<%7z40IBBne7^&7*42kd%|PApt8aoy8=uCCPHk+?S{%(%4ki-ccw`7zg_LM3~^i z1{hcih6kvE5_eN*<)6*|_>D_6VNArO>hvREZPL*&Ko`HumGqB7`H5Ic!7RirG`OgK zLk>mx;{ZuDF(7xn{2P6}yFDUtQnx7X{JUsF?C(!UTmTzqX5aI3$3Rcj}0ct<$F5q{i$KZgX<0{K~zAM5R#`Gi;4;m zNd>*B=LAWa>4U2^lMEa0GNFV~T4U#Cpaw>e`8WyxDNQiy03V;NV zP?Ufi034nVAFu|6IC3=s?Wxnkh4tDOu>QkBGnH+e1o$C(@FJ0oVrR&%c82L4?BX zUEp#7P)Ir(>F?;!iQ1J^H!d6x0@vY>dtpG7Da}URe5vnPFVEVB4#bx(17F2EQl_Au z$;hao=sIzMjkt!gn#=phZHq(YW_KIX3XooTbBQ)cEO9 z${fpO8dwDbQ1xR+{@{XWk+6nv#BP59iKF*(V%Nh!kWGttd;9Z%#fVCn8l)tI15>r= z?@Do3V}#^bw}o1ozrUFw2G33X-oH5VrV4;kP@hsjAxCg=cY42{XT+qCQs(!y>EVAG zmW0gjL!~bQT9Q~5@KjmFdw$@4*f$MA?{U-T$^k$zBm&;=ePTL-L0Q}wrJwnMYm4_I z{;*D*t*^KA_pDTy7`W8)pdK4p+P+W)!`ziIJ7`qqrGO08Bc9*W6Ci>dmbhknjsE~1 zJ5?dcEn4kO>RGjb5}0aA)P)vs04~ZQs!J1kcKYB@C|cQ#ShkxDesN7`DslsXaLj!w z+^XFmWFci?)WHq{jRK9RFGJkji#8mf0`Gl~&tH9FvXV}WMF1N7nX7TDM0klxzFPo< zr7p7cuYWbAe7*%p2E?R!_`N>S7F51s!K!(0htfBT5ZBbDmnvK*HCG73t#jrIhApZax*fHgAZ57BVEJeEe zqxr=-P{!aC0C!UWK}fC7f46)PKza)M-XkdlHA6dVe!SwJ86_z@HkTxw)hsx#(2~XL z&7?)n?Qa-}f|5b2*tbq*x_u&(83%WygqEpd11f}u3|q0i1@U$wn2=bV{ODQwL>SP5 z(gA-+FSHHa!<$#NIQPVeRf9j%@%i2;%tIOr64Y%yTG#o-F;GH@^#G8;ls!cDC;In2 z@i;x=)q6b#_38KCD-;82ctleN^8gDvh$YA^X71d7k1(mJZgEy*utEMQG!+chtDikN zL}LwUAPt}|(tRwN6WmbLb5a?wslBoR~IiLoE`>?LnTZyMYkqT*$S{vot|K7J4Kyp$xkWP*@bl9HO<{{XRT z{qY*R&sKBS!X(M4WVY4it3i^MC(;1ncdHUOskOc9gaHgeE;YZHx7VCZC8&q;r@bmg z??56-0RCi_O?Q$UzhO!a?e@cx^)YEOi3wn69EPFZ_Va&NFhX}!yAVYjwK=gBJ*{`b zi%CtA8MfY@^yL%L1Z@D3M1u5l+*-7tcKhNtPG=?dp&&Qkkn!HqQtUPtYg6k5*~r^V zf#fxQrmXi4DS|2tNYn2V000ATpT9_PNv_C%GrDcK@(u1NTCMbV1QA2wv^Zy|e@G-I zKm6@Sc??{T38`ij09bbz6^CN&mCwDR!bOKcx%cjoGfEq!nMRM`Olut^~PBalW^0 ze-Mg6a@B5?->+Do3KGF3Bnpr{Hyzr);Kg#LEy@1?5fd>0oV67(H4v2Gg_l7~Q_#w8 z#DZA%A4~%kW+sUx+NVu7`)XoPmDrXAP7P`2&=-9?q@@I?rC~`>AcZBsBK9S_lS^VO zwI$x*Qo^+!#7t7lXUr~6wxGGywX{?v%R~tPED~KxZM3_CZuLC#%ySZ1HGHMq{eAgF z$_iw?g$I_t^z)uJ8ZEbzxB%VwXK_a3+Y9;2a>0lUool6-J?`|ZGZt_hI~^&%IGUI# zTFR46sVX$umm+{0yEtb0UjUV41ha;0rH3lBgT1ve8uF6FI|l^PyoGD$65#p?1(&=M zL$L(V09oDY^gIG@g_(n>HOoK0cOo(KrGi~3V9k2<=3kdx1XpDgk+lRi&;TkS$!gS& z$NTohRkJp_MI{4KV-sNrid{A_CWJqmS=#5G#{d;ZA==fqzjhF)K?h%c?G>0X(4o0O zOp*cG;1@O^vtE>XdBkdVp=Pg?M5KVu=InOct^ImL_(@V-K#u;ZfCIf6po4nxUcsNb z)qVZ`dc$(gHWJibDngW2M%4h}xd1(_USGBZAwhxY?ms(3YC)FO z2EoUO`c^8k=-Ql#-SzYL?co_K4=kSh;d@{6(cHN`OgGWT+Yv4u$mRXw~?) zX|NnRQB?dysYw}{YUTtYmt_zKI{l+zx_8n1%TdhA$C;OjDVI#e0796B76i$M4UA2t zNpPYG+E}wV>@b{1w3uuvR+(x-l-<=PVo7tWF&EX@%NLI$eyjfg$$l5Wu=t)I!)Hpw zV-cAN#o_VTQkg}=x)cc{*|ayMPUz{~DW-H}NKkUQSBeBQ!;F1J(m_~@5Tuo<#cC>h z9CBXJcDEfn;>tp1ui_y|3QDDx&{#hz3V__q%fJZXy{{Ue-McTYnsSq3dcm_jlOt zr%F`s2}{apwcW4h^VTX*q~JQjlo1XZH%5-K2!fOlVl24fE?8CC)y5|uiA~dZD6EOTZBJK%dSaz}>lN{{U_xgk=24fyDvF z*@VJR;?sX`B@4sgB!*TwNGrn>s)M`(fcEba?`ARLe0BpJ+7mb8NuBYgf}=bjDKi#J zW?)}aK$;hhdFN7Er>mO0>#nQj-}WphgRQH zlK9v$cP}75T@RH{ zW)PL0K+}2`OG1jEyw5e8jG0+kX{yALZKoKI`` z%*4sV8A-%4kffd!haee?T=o*?DM2AAN?4W9J!8c`@&mLoa9kr1!8kS|T!|P#H5^A4 zm4(a3Oi3n6f`|*2gjgi^hM)-D{IjCDU+}5;HCDKqkyfnu_xOs*r{&=1D_k)l(hW75 z!&D5yVe4$l+KM@X&rDN@pVu zveQ(g1(Q1zKq1IXw1S@Tq-dQ(l!>bdP8do{g(y+xE@=dU6d52I z=B9@HA?SR|IFBlb`EF#0`DSl1sb=$;!4e!C#wZadb0tKKpn(~4>MK-O(Nwh(q@~L? zFg>Bf&f}P=lH}r0xh7IX*=cEk5(0A601ULG0b(+p4PQvW@fFKlshDMthdE+OG6az^ zM6t?Tl1iNDXlxvvqxfX$R&}0rS6J(*$P$RowMJu_WG=-E! z1wm1X0n|n;{+nQB$&tjnO^?LO#A0zD8eSQBLPWW9RH=(daLOR0B&z-Ev|~Ga#0Lq% z%ab()GF3E7N?c3$xmhV#QEusX7Oysn_O{8dt?WX>rw z_UTlVW=TwhoaIb|QoUY^Bzc-fo%P;AZz0iICtk=ZJiM-PF)KNzwM+*OrUg?FFf)>zLZ>ElymkvIR%v9EtV|Y30J>FHAtpL*8Eagg z7%-)=1qlLLJM#?2xD)|EK795=v!> zYbq*Kxq&1o0Hl)10ya+Bc3Mvb;kaC84}(v|qZcAxCy6f(R-b{1nMF*VvRD$ZqO7gt zT0V_F3Hsv`sr@;JqxB|BHK%pniZQa~>D=yV6HCuD^qfzSjMFNcE}X(jB)DmaNeVF3 z@ZtapN#UF`j7{vn5S`hKSyYLvnb~GEu`)&_%b^n)Wz$QHz?A?+yo=k8&8r*7rs6P@ z613r@;qfyQ@XFdy8Kz6lOMi&CSaC)olsr-R{P;V>GZR+?tGZ>W=n8=#(xAAr$ImuvE1cMm56F*2=7 zrt|m_;AUaas1x}l;$n@_7%CJ{V3ek{a4PMOTkxz@tX>T>ip0dukg}ANlB5M7uqB8h zugr(%9>4uG;h zb8>1zLoJMFBRu zGY1qph?})NkVh5a*o;iMW^BTOr%b7fRRb{&kSk&j$~wjTJ^ng#9Wk0^KMq}L)M`0= zxJ;KxwZ?5QAwfzgAZa}Eab=edAtDxEF&$+oDNF)rgNi+%?8L4ohCE}0N=&({{{SZu z!O8_{IEjjNO#$dT&OiVpxwLpA^;7hgXA@l6p&trtxlebExtE%X@0tN^6-sX$ zQ2r);3W=um=26z%o=qszn)Y1EY9S61VJ1^hN~A-H8X{7VlzufSOk+kXcQ0ITU#47M zY^)^C&*G;hbo>$%HwB0cl+BkhY6_B+zF=iDuBC>I8a|Q#0LQ=7Ib2B+60AZcFAj-w zCP|qwDpIp4$)Ip*suy9S2aZ>WNlJ(c3PE)wfND5rHnn(WYh$XdYAmK9BzK7xEX_c5 z6f_4yO(W@7XR)$)rUwr;Swgd*DT2W^7c42#<3R5brllSlw*ch029D45?AP`$MJj73 zWL+#lF6~-dqgL@R8sSOB;HOwEIkJGnhp46PZgw#nDR@(*K<xmLrvbu3&_#Z510ztGBs4MAR&4%DNT zYJSHWq~v8%lUGWrTC{qz?q8F~p?DO;F9jt8F$hR6s{m^DYqP)BJXGC8I3n#}%~9k0 zYT?jnT|jVH68yF4)tts@2uO0l!KUM$zLca>RSdXy91z8xrJND}0Ce$-S&}LRO&Ob) zFg!U!%$5~!?Qq)rr#2AeBmzSgBA2BoSO9tbunJLIXvOGV=r8@*qBP24?%_@uty+$B z5TY9aavYTd`HgsY?c0iB68-=Pli?(F-G{$ee%7cDODIO@E+2=We*XaBz(whD>qODH+n2vqhoB$KL!YnI z@j~}}M6w6~9eh3X`$eQn31eVyO52&zn|;m@Xk2$5IkR9Q)=KDRo3p}{E?cW}kX zV_rYQg$`<2sLuX2f)p}bc6I{3Sa%=gs?G^&9qV1`LjM3rG=NA9ZM~_|BtwSnK*r$I z+%Pny_#Pg(jHuLV4fX@eN3S@uE?5k1Ha=Xs`9Y9^2}oeXmL09z{A=I|xhLPYizt>0 zQQpGL-_;^YA+ZHlAoD}b1^DmJ+!U_sjeHKjQ5Ml9z;@-hYJNQ8T2vAPvvc2?pC9Lp zMH41adJdx7+|%B$WC}R-I~OO?#(=dvi*{}>1<5XQfLfjve;BzYQ7TG~=8Wf2qx^^mgaE)HR0iX?1{(Comd5D6^BU5cQzpsUi zWaJ=baw^^&+1&N3>qwNJ%$Erc3A0(L&+YWZWl`&DKZ`tMIB88lrze{t9q!4!{`-ksdDN1*2RhWPQIe{k3O)5P7 z(V8>TpDT~#8M+I3#d=%-iqq8WD?{Y5@+tMcDHGsKaPBsPKzBP*{>SX&i;O_Cn1D%3mS7yd*B92`eEt}M0jVKd^I`|&{E0QmbbtW# zw*~ni2Q~h`(-dZalCVclF<0x#Hk=^}NCYus<@EdXip;4E`G92r;hDfT>|Vd&#T64! zLj!Jg`)STIxI$l}0bR{{P{n>uA#jph1qL=e+&xJS+&IN0ps1Axqut^cg~9TARxY_{z?7t=&+?MY81Nm*Z_)8lXfbM4KGokYyM+kkiO_uwcfR76wrpRq-30)FbYXhm^ds+ z0@iX_g@4P5%qs5AZA}GO`FNe;$y)M}{GP-B8Hmtb{VSwo{GwzfLuqizXXWeO-g)N{ z+>%|1KY;$}71lG>9ghdD79r}t|x&_c{vn%lUtXerFl@2(Ux*t z!6YOVuymTLm2YugShKY;5l{qEau z0!ZCg-P}-$eN6`>;e&+$Ng-OXbn|M{-jSr@@WdMfukmITZA(*A_KVvuo=HI3rl3DdY>OV2s$T71(f2qQvgeLZatpZu`X$H zNg!w&Mt%IR^9Hxn7gIIGIU9~pBL-5l-DhX+wXITh zZ(7nQ)0u$MDbAkhbR8Mq+MTqa1+=J)z8eReAe7RtOXxjoqZ)L! zCi5ht(pFTW`++VKN3AM*Tl-@s&0$XSUq?R8e0erjUIY>dO#uP2)x5~+EAxvZGR*$~ zIua;cj@*X>>q>hY;}7^v^Mju-#b%o;n+4QB^G8aQ{m6Am14upCsLFtN?Q@S zg!T^YL-uj{Vg)@?Y)E6{Z*|r;2^exrvGDHS>g_{)JSb`-8|Jx!h%4Q=D{u_1c%?b- z?`%Y*xo4m|eoxf=qj13Bv*j5<{yH@^XC(dWt2QpqXV#FgVj9(nH)?}WOFgYYf=F-U zMirp??@o8TZoDr5fiX0z17|J^bwA#*hV>3$oytK|wc6&7c6+z$d>CDy$M5$Y2#%@3 zFszVBz5D`PRK1Ts)AwP9Pyw2bE3V$@8}0^La-_47y@mJmdv%Ks zF^B;#dXPXI53Op=Mt=ts*HS}fbu)Rl$~L?bX+gH(&fcM&==vD4X5uKAn`p$6Pxb!X z97I4MkZqy3)5bP@IuZ&JYd{{>uhZogequ;aBJWd1By!@k?THZWUkJ*eQQrD{{CuK= z6=UV?CEnf(8(oF}0LR6k#g8ggy!ZRsCMf|F0M*InY~s7_TWGf@04Ru)Qjh$Yp6)vX zY#I_vnvDmq$hW%?AO>(q1k>dGf2g-3IuPkXK?M4&TbE#d?hWWH9EyaK(t@{VvmRB` zsUSgTEc~9=@`_T=FTgE!xgq}m>iBTV1UWnD)17>6U7*yWS*Qk^hHrjR24SjF^(^Jh z8<+hVu%&`QVQT&SsSwR(dV z?)~eFDNlHoA?VC0QC~;r>loSAHPV!~-P$P;wycl=ldzH8ZU!6X6 z<<2lT%K&yiU1F0kmkI%gYx-TRU+HhQGE$~J*^Z)`Q$xP7tk3R}F2s;eEi81~ZwP?2 z`oAbFkXfip8a-=Yt}LY1g@M$u=@^;QGqWX$*w%zLf#3x@TsaKtrxb7-xBTK^&5IU1 z_vskP;Y?C>cCDNc)$91wtR*VDmYtpg<>Vk!c4@OvZf^=DP#~*Lc74%Q15M|*54U925&PSTPKjr)2HR)CR;3# z+xU2Jpn_+R2mb^r?%qy5wg#f11c0oP#o1l(P&2a&dOx6*s|FcmCPW{DE|QQ z=O-b>PT(7U#E04x4udqsry+N|dQtc#DP> z;Ektg1*|B;>5hfMyDf#lOO_>}<}(#1Fa!Spi@es@fbQJm)BTqJ0EGRY?Ee75D;R0> zBoK2VRy_es0dbmW0N8hu9@l8r4C;O~(TZWIN)Z%Pr73Ds$vmCTSc76sNv=2C1e9Ua zjOirHPFHFd1?VZiCk)naOLk-Qrvt!c%9Dq~iGK;5L{4=xQ@*dr=E5wvu#`z9i6W+y z2fafJyFY%|&r6t<767E0ifvl8MRwhpo;SQl4wb`Xu&V+H4l8{@3>!izb4H85r#(H1 ztTW%6G_eaM%aUgEIfZ&*rUV~RL0KRLECMQR=7Q13%aju+D11im2dM$*0k1j+zVXES zXT}qTN>Y*vrm0CON{(q~MW``kf(2<_Y(&nY>W}?HntZ8Jm^m&;ftKX5kex7LOTlEA zfC?#5SgA_7uFr_%&0N(@n6f}o44p4}*H*RTo#0fgRNshInNCtxETub=+S91(K^V#! z3|NK9Nc_anh-%bu$Bxa}| zK?H{?W`6yh&*_TtlBKLDt(ic9SG`)k1iWYPyfg!xf+*m#^bO(ktN{fpDM&jCl;jf4 zPrFmScwvhZ)BgatqUxiKECDR!*ZS5roHi9HmI+B5ej-CQC1NR)jpo zUZ37_9W^8VVzT}R|XR5*}fMG;hzQmCXch;B(fMj_zSGH{9bkAh`q%imiv)=~y! zww%0O-aaXQrg5xK6XGdc+*q4FSO^YNod^VlAmst-FLAAEddHni<-H~84y4udky9fj zr!*oVOGQdV6ryBh-y#mm3W%ye0XHsL&MPB4tR%HamZi+ZW2MS6(cUNGObM8)Fm$Mr zShKk?$T3_a{{ShBktql%R(UfN?prLx5_EAvvkOpH<-bkC%(~6jJuxXXvzR9|)ySEO zSgA{si$19F)fI^)Ar2~ed*ifYWys*Yp2bR(kAw~iWUz-;Z;3G!WmSn?nXgTw(3~4ymlvA!htQRviTWkLSHS(WuRq=hWnKiLWUA{BBVnb zLlNn|IIk3vnH)C@i%NnOH3|5Dlb8}%Ib&L}4^1@@=bk&pQN*~{6Eh{PQ>EgUDq6~t zOva%pNT3y|a%%b*$J&=RS|ZCysR#c6dzrzMgA4$6L0XWMsVvRpoAOODgjAxbB6wbB z00IG}2w-h;@4YJVt4U1bi%9-?mY|fOE^`ult84JI@p9ag zEy(ix;xIpmPF*i23LJdSVj@sZ!}*Yu5I3xV`02fy#!T#|U}y0xVuZQVF+4-|Ygh>Q z^CuMvAupS}z!P=@M~_Z^oc2<85Rt<$sFt&c{rV?j<%Fv`Fp5}GiiHS9LQ?L+hbVa7 zUbyFQx^vU)t4(A^9F!v~mq5#9Ae4!S&?Vs}UI#}VizJ>voK3BVUYl&v+CqFhT4-FlNK3FMWtXc zJ-s3B&p@wkUY)nXQ!tVMNGD3}#mknh>8WiaVvv!CK$O8O0ZCCT0XH-{=zQ%P2k_^m zg#LG#YH7$s$w)zoB?W5?l|@o_MKF{=AfW&PpyU$6zBym&e;56p4-LZb^9RSoP0qB? zw6-8R3%F6ONTU~|ZT*$ODt;>wi<&~@Ns>`1Ov(7gK$Qn9z-D7t+yc?I+H!6dd#vP> z6a`Dk!X^|D!Ww1ey+vzR^AZ!ds4=DKjyuFKlQ8@WZ^H!QCrdrqW4@)6Mg_rOO$T(? zR*{n8QcU@>lPyGtQK4$Syz1^xBGIWGXw^~mr%-dL@fi^%WTLAr%g~=xICAo;`F@rx z>nVF*oOfQtaJhUFviv^`P!Ts7hQs3Vjr^C0nvhD=NGw1s03f~gjwjk#ry0a1%dT89 z)hMKqRiKfXPhx7p%U$eZ%gZE;Sal%^L!HVXBnExVN2rrZV=a%Gl#Gc4hAS^prel}s z$=uelknE2Hn~&lW<;zcgYSM(VGZ3QS1~xug0N0N3{{Rkc8Krt<(alHKjdulcA;OfJ zi7g5ON+QRL0yIc6kW;xeQkFs6R5eLwe>Q%hsBwR%5fhOQa&O~ z+GY5QEJ~fS((FF^{{Y7h#!u{@=)Yq)P6BErasJY;6^iW^EXi3^t{#k1jGXeHIs~~X za8i54W~T9wI^C3fKk6@sSbE!~-9$uAvFhDmGfi=)^JtHoDnemv`FTv7G*VU+qSO{w zQ4xrG3~qS-A=qp;XE-7_9|f6##m&N~aa<4YRXL^t((8dHfQM&L z0*`WWfn1zkFAlXTdQmAQXFBDn)>HneA>GJo+06}({{X`=(ztFkV5OwZn7L?TmLvr; ztc4OwR-g+sZ?D2!JujGbPew~;v1Jo4mS>XiV8Nb`3Q`ZvSx^%(3~i`XB!m3Li?iPp z`#-{)jA8M3i6(r6&X+VND$)|9tNDCaYBd1~NiBOGRsR4Zahz3Orah~|@UMz7c>WtZ z4TxN+VtSP#V|+>{-y+HL9I^&*GP#+E5;Ae1h0ml1 zTzDc8DT@scxsgCC#yt_l=3vhX#7t6BoYE3df~O}ni7lhG#V8+NkQ^hiTvrptxJtim zF)5cmNuISyQch5?LUOok0YOTeu#Q<}@sl^UWJD_w*0|f0r&0NfDtX#PJ=#3L(R#M38Lu9xe0f8S_m?NJ2>reI&aUAUI=NpDe&% z8)g(TWud}Y3XluAs4iS}uY*Sy=HK+5P+R=Jw|q z8FPpX2m!^l@f`Kif!Z|;P8CTcgK(l;8nf=)&#)rpl#Y;Gt%qm5i`LKd3@Oes2$$Al}cnt-LzCN|^-Z1tb6% zx=E`!tLuC16nWW@5T$&_1C9XNE*yRMzYmHtr!XRt*pNFXEwm!+x&taOZT zm`rafAf2w|jX}GI{ae}i#R;pSFGFw}Lq{*AJ!5;qN+~HoNOBmHduqkRW9-Ij*0t|s zg20kL!TpIiqcrBLw<2Br{LeVtaB>+S1i2s8G(URz`-OIp=ukq_U>%;rq+Bed{aZ{cBIXsPs+ug$n)qD z($kRO#6VINEL31cWrraf;y-u21Li+Ze^Jk1G1#0z!Oq7^#w9YBCQQ`IRII8bKgCH) z2QI{haxWfA{{WSr@zQVWCuR748wHP(!#IuxeCepfPQv0bIg+%eG_fv1lG%zu%t^3t z*0O#&I?bs5J9BLt(Y-0BGkmM2@)@cpzZS3}f9fqlji^*f8y37^mB>v z9@uuPjNp|whpd0&kuwF0!4{V*IhuveDMZ4hfca`jZE1x%$^0t1uaWd?Jk~lFP-U}O zR+7mK{LWCR1^y;&a`1j^(qO3og0v;VX|bI308{XtitTr2c&8WO({cE08aSBZ95(@i z!%4+r6CzZ}rf2z7j__3me4|rupX}`_gs9T90Z=C8R=5*TmJ6AL5}2i^01E^FM{(r& zG+?njI(+;j@=VziRF!5_r$}hCb0tCfj`kq2#$yfw04XdE^xs~sv};(R95@BD0ph``^kZYr@n_~r3jqIoh%u)=zKq^TrrVWhmNRQ41sv%=n)lD*^je zFB^!HhLVo=$DF^1C=h7sas!?v;CsQU~w}SB3#LaVnA3xaHbR_kWvjc4`zyl zT|=1UIsB$>B$t+E`AqCM@X;LwAu;9Fk~g7DLn$M0ATe&o6r}L%HZKP|4xCJ!UK(&n zN~NeNB`FRFQ->7<5unlH-w^FNnTr_HC0Kk^r^>Y`5=kssl3AXF0@{ei8sk!CS^of4 zXF8di!i71QO-#eh3JL;c4CE9c5W>rNG5m-1OdaoMsuU>}5uq z%x2zhf!4aX$B{FiNAO$Il89SmxE*KCCP=+K_P-9f>7C6h2tTI#q z&E8_+KoCf%2!+}ZZkqj1$L4h*?KN?ICCQavWc z{L#PUW1p>m6EFqHu9SL#t($u_h>to?#I9uJOu19o)#^O`MXMNZT6*-yrW}8y9BqO2^{mC5Z`|g)B4E zHsJIOXw6C(&{RZR&S&WQy$x^T``$RG8kDth3B>BNmcfwp z0_5`g#i6TImFBTjeSqN{o@yn#SAz(h|G{xkTpYS?B@IG(Oc8{YBqVAOTdn$K#@#9Vih=v z5EA8quEy+my~w*EAuQnLH3g}yi+b~Fv~#XK+9`6R&R9@00#p!;!NSx)mx+-rb1?-(3Bd~ZQZrpjAT>0tO9OggyysBH&J?H;Fqf8O$WcTn0c1pr3BU$2 zgA%1CyFp~Ta9*tJStwEvKpBYw=B4>C*Irr?);K3-Wys4v5QWX0teL0eAtgikFgB}= zbOrRF$AbzSG$vUmVFIagUEGy9B~|;swlS%i6rJ}YRgeG2ug$fuErjmHz4po~x#nHC zt}XN0E3-%?dlT0+u52!@m03ixg-doN4Ld3_D)pAn_kRC{^TX?$^Ljm=&qr^DT@;y3 zH{**!Y~PZZk+8AHw&WDYH}lK$&##BX-byG-j7j+^*QHU2hxam%e7imlN|$8Js#@D$ zoBk9mTC`v@?MP>w>$o~N_vO>ouLwkfd~v2;VfAkAhg1MyO{Hf2gCy1_qbOkReC&Z_ z=C%wz4!^7+;PYnaagE8R#TM~PuKT?l)d~yY-!iNo?(61jXQdLSI(pqbsU{idD>3uj zTSJCKt90?m|Enr0H@|JU3hw_DS}I%8k$*~PovRjZynLP+72)BI(l{- zFoJr4eflrTt543czy>E=&}mG(n)COhJ%myZSK7 zjt6J&OtvQ@>T-V36L~2cby0>81!l|4mEYj|7xwzSOH&1tGP2fCQL*yCt7>bBN=2%Y z=tc_{h^ow$aXMI50b{bNl@Xs)en!Bk$Re?J$Ij6}yNUlT-zM2Diq|@+I)L12RlMU= zXK?`rG?kQy_4w_&K;|ebi-(G$QR~sBf*`lGimBmg~nY{C-jq&48_L{{H?E@T>eIYXF53g zu7P-yf_+ICazt;l_pLwJNA=rAC3r~)#5kVYUC@U`&# zvKrg)nmN<9R*-Q(3(&kyN`{#%;e%iI1k0@!6c!}>wMaXEh>R9yP8()F8$<3Rru4ff znm|qknt;dnQ7Wd{RK!TloBWny5+_}GL-&zjx~j9~XKG&ZFx^!r@2bnZSJdE3JOST0 z&DT^kgUM(13saN2i}REGQtEtnCv3u#%$R6_$#yPpCP}$Cqoibqa?w<=-RzANDQ$`* zR0?EAxco;p%01v)fXim@MJc*C3{)RirEo42X5hdi?+yqL7&Nnem{U!7k~YIfgab20 z?Q2ExV*RyJ&#(Dq5a?7s52KqYUviayju*Y1%hCdkHI#O|9$`XPV;KOzv^ozQf)n2U z$m&;ipcn%%-JQx;+YFID!NomHM&}q|P1{dyve*AJnmHNs#+6-P37nCwAHbA0UrSX> z2dUvr*qDJSFvaXbV-4iD^`tCoWMb3&3r^?z9^Np>v(Hy;&CauC&%;WN#>FVb=KP1Q5+qM8Z ziEwa&p^t)OoLGa9B~Ug`o8EkHPamQi(J znT;d_ED-ebQfG+pCG|vg^(SgN#SJ!D*QWIdIn`pp82{P>C!-YEh+G}|!}PWxHb<(Q zf<^XC$CjIAj85y*MgKYWzH%ZY0GQvQ>CnfVrt^CtKNppXrgSqarl+e6>3yW2>@IHx zK){V;9@rYDndZqOF1x(@XB*cQ=i6XQXvG=np7|8@dUODR&V*2!W?}^sVTqUuw z`y<;6Yf~jOZi1H@16Dx`waxvv<1QoCh~~Aw^Ww=f>5bCUSI-N@6h0xn{=9r8eG9oI zBP}y+cr`6R@=imz*h;^rNV40|m=e}KnNWFExxRgqPARYnwvt<~lrWe(nxc1hnKCXJ zv<543{}yX$3MuHOp+$stuocvc{ zojM(xa0l7&qW!du+B`Gx3my8G@HA=%nI&vrID$O#;N4@D=Ah51vt+ARviW^+islRf zhjj5I6P^V^3w00z^Qr~r&R9NgirIj6z;EWc!`@J?_N^Swin?BFbi#cu;A_gWLf@Er z({H1ebr1oa*;Xg9?iUqLZ(K-=E;JftF;toR^52*f{Van#>nMPF46ml<-DB_buhdP+ z2pod~t?DB`%$(m{^sC(uMwSFnHv)BL>TK1ot90PUoHBkl#M&|zts?4g9cDGBBMP8$ zNVaM}230}85*;~PLS=EcF=&C@e(TGffUj1sn|&Xp9JE@V=DTe7E?|3l`ByD&R!pWf z8p|z21hA!xAj0{3Ak~t2p$1S{(L<3zSrMqeiwzx4Ogr>c0q#qAQX2HHXd`pIIIcIq z{;q#vz-I_*%7)=#1Lavdn1G}8?qVDg3xje6kZwKLQ#koZ##wGT^I*zGVKZ%{ym%|-wbCfpE;xJSN ziWi!sqBuNFkVpcsFJ;)@6HZO}93g{WO2**%4BjDQ;#{V$Ul-qqXE6r)^)Q@ibyR)phWSBdU_7)PdssT7W9cxsq$~X`)V$|@hZ{+BZa1#lw(-u`SENH6lpnbEX`N)KL9adi38d8 zdLy3|Zh7=@>!+m4$BkXHchhkrpVj0*aQfp{6dxbS9_f^2-p>5hn;2z7@3xLfVfDNX zP}Y#uAn(d#1CB<8DN}eiI(+VX22#8G&+VSkl847 zkWv7=%AF-Ke7EID;!=`B@r~eOp4uIt6@m%OB>KXVBDk{kW!I=KoV9b26twnNNEB>4 zu8M825>qVX$;T>(8(d)+zh|r}SIBSR702p;ciK5z=>HjfGwF^Ca+HiC=nLa=Fd3nL z6VQPhI{m(E#V5KkK6F&ISNTntXqD}16S(UqTolxT>nG1QxqnAhc-i~-I+`kaO9hZC z{I#g!dZ|Q9%KCBbq}mc8ycR6z4Wiy_^{4cy&e?r9d-g^*z>S;^ES6P&TzJkyL?uW= z!lWJ{QqW}9J|O+ojMAX8M??7fFvlA#YPDpGZZcGDHoD%jzruJ~-bW!a3t4Lw00T^t>q9;liK1`J6_WFN zga|I0q7ww``L~EyPzMX3Qt_HApDc??qbbJp)ejWAVOCc?49sqsipd<>EBTF<2jOL- zV)7}<_Ad)0C*|Ja6`!#)7D}uz{MTLTF>KKGC3c*piFfh%V>uQg*Fqd^mud)cyLzls zRmWEwq#LUnV>GhJhB|L}utLB7aeysWM?7-_g6RR%S@mvR{M_S^=9ne52AZ5HIYG zWo@p}nkw_a$j7%KpD2k1y2+^{^=asnnzK>au9L)y6k)giYh{N4#?gN{0LH?p3tLPX zs-c`F*Y4<_F=R{kA{S0|of0d40^R%tJCMZ5b~_IX_Z#uuhx`qzmvxZR`~t=XS_W&^ zY_+c0^>2hdD%{m!Re+L|?!(E?_o!QtqjM-@3mhoP4C6MG--{lQm92iQFqTupYY;>1 zKuQ*!uiV%i&^(tB06C)#aT;uZn`T;}cON`&RTra7`DcRb(zw1Uyr%3PN2e9APP4*0 zMQw{eOo)GlXC>q&Rm!D0>aqlUlNg%*S0hr~(DNdtoNJ_JeB@NUUbLveX~fe1fqc;u zmD!W?6*E`?>LFNpoGJ~fRxGFKyQ{6eYK!VLW*0rT-9z(zF(nWw$y|p7b3mXCNVF;| zSiF3YwpcU_w`r!sI)1T8S>?qoe>ycjlQ?surGz+Ma>axoygGhZi-NWz6djAJZpbM4 zmNxQhT9^T`yjSYP>=P2UX(w8`oNM(HJ$V%w6*)G`$q7$VKOQQuEF}bJ1ZI{!5E|_9 znlv<(2+I3$+^*rNg2jT?vnQ3_dVw$ zOrsJ)*OWjullgCF*je5OIsoJ~I1EM~bb~64@HrOm@ zc7zXPjal#s@pcZ~s40*(Dvi|W8@H7l6L74$m#Hol^fx&EzSFrCvhw1lO!I)bbg&~o zv@1BB%g#mK#_<&59*lh7&3Rk_t z3Rd~_!i>`?|43CGG6`~Vznsxu*_gqY7a9p($a{Swvm))RC6ch?)W>c3^E&)l3^WJng7wJvOZ5^p)ybKqIkvee)GBVPlw0h zr)DWV+v$euWcS8PccdU1*Io)wdG?4+b}avZtB3OzD6m(Ew&^SSWM9fT+9}X=%HS!G z!tC1`FqJ0FEn!dIJ$k!4_;SqkX2EG7`S|%QoRyj*&82#iQ8*yZ9xN#(7tafYGu^6l z1U5wUKFOxHQwc4N++#1HSkGOOtDcINys7yb-WD^F_7K;nFrb&^s)MpBOwX{t4aH8G zJ2xcrh?nZM<&2~^*T~PGJU`KTy%7uZRdU`KWlb{X1)_>2W71aH<3j>AD?=|9E=E{Y z)n)Uq1{mf;1C&q>DpD`=-g1LHU-N03jclZ*)^qrvi!|ytpbBd0^n;HJD>VbhD_;k` zGq)^8>^ORLvC8pEw^)b0`g5Y^e7@acoZp+tCA?|0Ddr|L9#$b3fGBKX9Bd<;hML@x zCo75v#{byzfW+rQO1WCyx(m6kiNZ3$oCVJM&|7bK$z zuCtsbJ{oC9&+*qz?+ zPPL!qlEvz;$i>kG&@=h{3%XzZG0Rp|W{Xf=ePCX^nvk5y`N1-t4{mwU}@nY;er<8}Rs}{uRD>|>$ewrp=iK9uVe2!74CH_eSKnNC@1E6Sc zyF4jVXNxb#wmB#OM5M0IA*-UQx+kN53GJ10Azj7NkvQ?I{D&&t*$(j$wD5@84Z0f) z&o^7|4%qP$4D%+XW(L*Y4fu1W<-<@LB#lB|f#Vn8+FW4VL|R|)stDyim{5_E_9G)Lu&Hi-S~Yks0&k+k=EF5{V7AV; z9zuQ~wdkmCl#FLhnQ$&~~8g$DbvF>5RgqteshSX4T6K-YJVg?0UmEp6Q?A@RK%v-I57~&mU61vj~mMR>*Uwy{cOCo<_Jh({C%g z8?k6G&(GY*=H6JYJPx*$pD!;Otyp%dP|K!Av0M~p6iDe19TGsiLMn{II4LL`oys`+ zfSk^_X}9Utpr#s)Y#hYvi{jMCIG+~qj)Jfvf1hZX(fGTO8x}`z{f}vwpi+Q+ks29O zn9SV7Q>D`9QY`qQMBnXU&S+iBUb)%gi?H&qJ@0nf_H8n%1F{wHEmpOV4MrugyF?I5 zI#^n8=Vvf;;rO$+ld@gc@ctXHyF((|GbP5u2qjvTPlmeC4;j51KJD7Kc;j&pgdv0p z=ITx$P$;35wb`!J03}iV+Z`W!cKKqiJ3)D;!cWA;obWoTbb{d%G3+^8cPETT@90`w zPL}{9te9kF4Af{@)p;?#s1}i#&4+_`(w;Db<8rYD5HQpNl}Vt50kruW+8GBm1n;V< zQXsV`YAvZa^(=h@{+=_Cjiyrq0+COITUN!G#f1g%Ak4cYd4)PCAOXhDikFYLNw3JB z`YR`>Iox~3%8)<&+`tCG*cZp}_V%UKtL$ef-ffXNS$l$n>4;9f0?gLr>xXPgZD}$J zJIk!?9<|x~O}C`ua%R$KS;e+V?E`4KTCQ(xqicBSC_U;??8abVK<=UFoBe~UUb7+z z#AXz+fL9Az{N(tGN(_%P&w=pj;|W!;0Ivs+WUdVgS6MlG^Zcs2soqsdFjGOBfaHs` zK)u46tMj{)=Bh|gE1-P6d%YY4cFn1ziUmMoPHSZ&*stP3ad$#QvgJTzMR<_e?WXQ{hKYve;Mk(G zoBPb31w&=2@+8=8gsQg}L~`6YI#0NO$k^$%0CCN{Hrca%>cB#hHz)0YiVR zu}GB&GLep}Kp^Sm4x-Z9Zs6_q+g1TJOqO#yXa?iCVbbOJ-IV5T>|Mj zX2%x>j{!E8kFEVyF%zzPA0NFk_jR(jnZ>{~1Q63E1&`A~-d0yC3s|wZZq6-whB(nj zS*Ais8>*dCd{8(N3j|794Z81ChTJQIwvn`TUJCliuh+otHR2+4P2zk2n&SPQ8mIT3 z#5_d$r|Be(mU}e(6s&qrns{_liFy4BeGsAGPVx4WZ|ZC)BB#JO^z|*2yt>y%^B~qd zGReurZ4H_DQXMi=Jh$+y@<^L@zeZPez`c$kLw&x~s6KLXPNLr$r_^$=)Kc_ur=#EN zNY^NOphv4xK>iiLf$t@02)$gIL)DCfU{KKg%fj7Jwwma|(%JsOT_od4USr}L8_He z`~LvXVp>qDbzOe%m5RQ&nCF?y?(W2=LrJ5B<;966Bol*-0z)E_u?NB3n`}<{1R2pD z7pABU$Q2ib)07Tzp%Pib-4ZS9Vo$nCFA0(|Ex*6j&0vN4w0TBZYZ+}`)~q=1n0;JU z@aBc^zNp$4!b0a?U<5RuiolV5H_#R^@KUYucO0LNg0z(T%WW57&*oop+M`6ORngU3 zkx61z%7$x?uI@Y5q~3YY{-e!gZjs!=M$3d7HXdxuY&jhNK^H8m?n;g4K7w_RWC2t` zI8-&`UpnS^8vxkZ_CWO|US*w;idjI=SgBq{yP|-V?AfD{_LE~}m;>}mzeJ5&l~|25 z$3B-4VVhJ^>mvom)Ny$LHRu~)MNS6ihJx>_a%T+<6XFy{JmaX6CoO?kb#+#VrUK5ppU% z9LoPR8wD$hq#BO%FVR+VzO_@S8@zj%$l9v=Vu7WIBL)7^4IgPAf7n@oqkT+JAq0XU zu)!rY(Sn(06B-`df<%Cn7qJ45#zQf#@+lD5C_1;gn`{jtR^wJ2 zy(M`98sn7Ys*f^BH$;+0F$i{6Vs34v#Gdu?Ou|ijp9aRZZ1~bc_A=bGlrd?tD zzJT{4#;^0z`7HD{IhBeW+?T9 zPnZe#4S@haY&(x$HCgwLn%Z=WWgsZ@AL$2*-jpFRwz+X5_7OK@_Fc}Uw-&DBW=~_o zE z;VS^tLX15?Yw2E1NpVw>@$MkESnm}UCXxmp!E$lf+P@oQZw14f z;ek0fN6(x;a%Q5i#%oFZQ<99Loxe>-=g*^d)-0KuMVA!=aB#`wxbY+qgH^G5;TJ^f z(e69&6Ss#cTO2uBv&AzSjL+-6JeRG=n_EqPjPG~H{A$IH0S%t*_zI7BgzbO6f6I7L zk=1aRzl|_?LwNfN*3tG-S$DlGPruStI|$ts7@vYmnoRE_GW$#7{U7Mv`D4G6cR@&F zDx6n{bpk1uVXXGRE{YMfbWdu(Tms{pm5ZRA?$}-XiZ%qsKGZ@M(y{n-hu%ie< zbrs2)acs&?Nj@6!HLC{e{fE#QeYD7Kc_BGO_1-Yx>YhkzKgNOR zR<%N`S5tZ9`D+W-2Y9fBHOd=Isu~oo$6Uq(M>j8JSctf>tXIa}_|4Y0uy$w|>@dN1 zLYgg{eYjYk4+M`^vZWty$Y^M%Z$=smKu~DL{7`tPiOK|rk0h0=lxiNp(B8tJEw)}+CIA5O;jpF91I?Xz z_no_pTN!*jU>I9yrCjaf+%BHOSDWv-mF_)+m2rN!DE)L4ZYRYD`iW)E@ZF{zd8}RH zcufmbJWPKIXRR*)^Q~?sh%`b!5~Iq4#=HTNyu~24nt>K4L0Lm58Aoev#B{jHsnXaX zepGXR{{D!C3(0$!AL*cOwN6N`RvHosoeV+!S!GXf?h|?n#Qdr9)*%6Vm>^_)&na{)G61H#~Rnt-!~$R8w-gA-Y77( z{p6XO9@aF#3{+@@v2G}2QhET;_%A%uNOiIEU4T7E#Tel}?+1Zf`1vhK@8;YcJw8&a zQvtU2-EerR%m?!XI5)G$R|EGnvf=Bt_ zhl$kvYs8_(uFF(vU)72Yi?pgI^m?-^{Gx)WM}I z=1Y#oC?6}S?Y|lHv6vjMYT`(V$Hfxc6gMu74RbSK4Et1Q9JEM$gEnWRIkWumG)CPj}J7|4t4QGAUeUrGjEA zWDo)XFv1OJhx~UGZ{@yP5yE$04QWmPS*8Bj*M)19aJ|*m87s4HZH5abae%ODdu)Bh zbL<{(E7nRU@qxpKUz&n10)fdqa(l?|p|e=-zKXd{cbg*0K{wQX{`7aPjZF%!Se5#@ zP|?&!KPC65f1bWC9-JwG;G76jof^tE9ja)#=Dw)VjRbBPEbP8w4{ffIA@WoBtMc=Vu~HuS)3~ zbLoVx+ek})EjYo3?M_4c9SWDi&i53?1lY%caw~O!=_J$auGPAAlauJWmyKj?@GUu$ z%c-5q7iSQ9!eLa)i%;)a%~Zt~(0o(pduab(DP&2q@kJm#YlG*`a8<)83%vt?4sxJ) zxH2!z9O?%}C43$zUHv7IRZEX!3uR#J)cZyGC-FA4`Z4zK`0pqQl)IJxLZs_s`&Pmu zlmQK_{$Nw|%l*QCf&-}~!{tQ3P^rLn$TQIto$V*@XM1@Ewk95Tf&2E0Kjcl{des7P z+MS`Bt$yb{U*+mG0G19?e4r3ux&UaIb_k2PDki9W_-S@Um4B3{f4H)f9r)*q($cNm z<^){5bfNF9*@=(Y*ua!@I6xKAVsU7G^S`83_Bcn&9$=B?lZsiN8R z!>ERmh z?;Nh51-#)9G$&l#uuG6+m*YFM_mEH;OS?e?W@w$iy*nIxBttSOJA9I_XVBmr9-_*H z@~aMbSd6tf`mL{DY+{f*VXw6?aC4{*HETsAFmWd#Qc_mST16(cJTF4;=Q3ZBXHzzQ zA-cJ^qqQptUSC#=*OC;C*jb@_Z_T$pgx{ur?64Ylbo!5bQDCRJNi}?h!F_$yH*`%M zHk`pmTl z1*EJUeOyJs4r#~~e23u|3!R64dahY_!= zq0ZfHz5dXKn#wEAgFqWP_v~ z$dcb1R-1Tzn|kjtINObF@IryOWg?4Y2I0ZCkCG-B=g}zwC4-J2KJ)l7{ew$ooAuXa z7b?zYPjehKD7TGfy7{P>37kuqp^?!~(K=C_pLoAIU&Dr~FU@`2u*H<9b4ROE^l3_Y zsZrP2r;oEZ!x7zt@E7R=6_(;`j{_X67w2mi3QW>+pZvD*YuM8#gNmd_ZI;^mHsXdG zgGMP3gFf$%-y1xguszIK!x~|!XP!D>RY^$MSb)XfPW`1U57O=~%z1-XEIsXje;W3d zRY}|IyDb!mH)uG{0E ziOzoQ=mI#Z6IPgqMS{dA5JIP^~ME zQ`ze1s05debA)l@XLZN#OrNF%FDaVk`UiE;FA6G9b+k{IEV;yb(-{3W2`x#vbRMYA zr!8Z$=wT1OG&V+%VPf2nJvcjCB&WT~!v?b~<2Ne#@|{ zE^R6LnH+kolhwcTDNYY>zOyKo%Kqak&#!)$iym@DW^Nrt_<}c8o8<5<8kIVVvQI(W z@9db%8tiFs|BS1>e#K*bP05EzJL{GtMLQCVDg0glw}}A-EqSaIywVv>G5VqRW9;$Q z=D!O47SDgih(;d3MM3#oQQ*myBvJz@=H*#~drP|~fYGF(mcRRQe6=snhB}|>qO|20 z-wwOS3h}vjt$>f!J@utP-WpEY%X$Low9}#;N~lGN?*$^5;3(9~?8L0$*2C7iJr}mi zYKu;Wo;sYx`#ndR`hhppw3L{QfUp`&@wN#ydM}mNPzoH3m5PtJV>3qGL=fsp$qbS> zQl}3a5dZg09;LJN7Ym@&5Z4h-ia;?EYqf40gBk4ZG=xP(Aa)MNEFBh?FUUJ5?;_pu z$fsXSNedl3Ux9)y1(m2qHA8c0Oshy5nK6~orgO6+l&ThrTUMZVk!~S2l%%eOcYhJP z5&K!&*8N9x_-i%1Y2AmM+2UiYwk93e?S z(L_UOn8N6~{#I!IyIJ%*8fWvoxVNLOFtqZ})Vf;;jE9b9_@ZpWl&hXR?sBhaF25@9Lx1>6|G4&-#)28TF5pcdiZS z^7A1ZMUS~JBhjt(>gO6RRyTmc^jv1w1o*RG876hPBHiJCH`(KIdwcrT9UVxPz-EI98rhJ=|9yV4N3w9zD^Z z@`ZI|(m(^#UUQw#T|;&_)$icUA6NuKu(8p?nNZ0-y0Fkg>-x;G2`N=s^4T ze|dz1pO}N_IXJ~%ic^J&tLKhp=-k4*|8Uq=^^TfcYG`ACjS)=^jpUbncw!q|qj#jZvy;AUZLQ|PxFg0vzK zzLA+iQsw6(N8Tb8%#gylCRp&02?(9sSA2HIEDN(PUbo)qWpU=`DuXE?gUK+=yH}{( z*8TK*qT0;$w>JL=06hRlNMxNhwWzhZ7dysAvA~uFiDQM2ry{hGnet-7w|I}M2~z+S z+&%qkQGXd!5u5!HNfx+WSO}L5RgG<`7Ei`ppM!VIpO-$`nE!V1@yGJ)@Q>3;8K*5v zzBjpmg&j%W7+(7-@J$rH^o{M8u}Ina7wlh~5!f!f-YLATV$O zs(r~s(aAGmQx>RiKlJJ5fXm+>T|frO1sl;8n$S(Lt4_zMSVjs8N*7LZQP>RN#wH~v z6#f~mqsQ+A0<*m0A*NRU$|XArG9(>xj?k%9t3T_-pARjx7|s2AQ1V6LY=p|#kf=x4 zUD(6sFNyGfyHQr;(-G)^FK*)}R1zwSa|r&H4(q#<8$H+bbyz_tGFcsbMQuQA)z^IA zu(ao@px@EBI=9Tj369d^IuS<$C=R93#^pHa{YfWH)~)9QJ$M-eP>SeC`9Q%S1#W?nuyB>LKe)Nh4>x#s3JUw4MHV(O z+&o^QRrh>eBH|}+O8jwb^3|EjgNnky4QMZdaBW7O6JYdMH6Y}Bz2tqy z>FYl_H5rrZ2?W2tKH`@U)YaG3cSEom&v$9&l7c`NsS*PlBrOxxM3*YELI_uEr22*z_#9v94rUma8cF#0{X5qg%iA(UQpE zMgEUWTb2P&ak*dmtjBRG!L~HlyOSi;z|m% z7ybBq1T`**l(`8HE%UuB@OUk$hF?RFSV0u<;pvj!`zptzGl~0n#sz zt`HM?T>_=p8y&T#j5X1_?=%=^p-^9pWA})>BSTmtx)U!TjjNNC!F$&VK`ffbh+`!q zUo^9C2>lIA!qq2vEGDBSrzqjxJs}&F+r2_jTT5?|mK#Dp_9(ct=O^nqQ8E=+`Uvf* zV-n(+lHMe9h%wM;t1SkN7!>5C=r`3Fv%z&*zg9HTKYgJcT>P*ZFdR zVi{}8F>oO*yl8cM)V6r!#pMrX<*ZaMFO49o|82Ce&Q1j_D`71(XMF;h<4{bZ*MJ`5ZZigzQj98egPgPj-`k|*c)2*@eqDEh z!2;{*3kW&`KtOO@@xT?$=-WtQZwHX|@r7~HzC&#sf?sPO&Xm17HS-F0 z`bbqo+ZpYd8rtPP<6xIdAkL4$ndcX0i@!WdTKlA2RJ3;iukIi*4I8>Q^6Ti3dQLAH zFKqG&c(`}DjM5)a(O#j)Jum`qMqV;04K)M_Kk>3<=lO=PTTuv>2->)O-oD;BaP1>> zbbAI|k>HE==4snKcEnd=P;xp$^5 zQHE&4;tT^;QnJ0IoC1eW{SWXajvTr(>WxAc(lj+nm!5B_GAD+)eCoU)(qu^os&CJo z`-S{uXSI12cJANDY=hN`F|0+9+wN?Z=?ZL*Dq5Q&JsYlzES>zdZg9F41*Uq{7$+sS zu-kMk@zfbpn}@BBtA{g~PrqA1f!-{_%c^fV?C5A6d<_ z#0jF?GzBP1OpU*LbG|04)zyOFp~AG}b7}sLxmGF}h=xE2fz~&zN}l@4uEi%G$ptkE z1=5eFl$Olr79~P3rTuC63)4p~qDyZZnWRWWZ7%9v&R56x7G^CfQWOpj{@TAE-DGyH zJq_v8(Db*WC8Og46m*_(Z(O{MqZBgC%|EMkGET^qgSRn1>AmyNN0eC0>&~XZ{m=uR z^kk<~`A8Njy|Q z_D||Fv4=U=++7xM=z#&7H@nQqY7OQ4#o+dObndU!_x(5gAcNhj1u@noOY1s}LK<_+ z=jPS6kin)r{M}CoF=L@MB|n@wT&(lD*#M_}IGpR(RnLR9*>=b9Nya>9>Wra=2Gg$} z(S8pq+m&cea7C-t^Ncs3grIMnzmLyH&iP2?SqGoY{tkf>Y;16qqbdRozwR7Pq63ujT53xt=d4pjKLH)*)P_lz`06)!pF8&?0_Gb9y@k^niM0{u<7Wx?C zC52K#ypeC06s7H@T+6JN{yeY0ahWt~m@$X1q}-q;*w9%rLSFsnnP_f5=0xw}l?2N4 zk#tQSDZCee^x-|$6G{NLIyb-TETm6rkBW-P;BkJTW0IdAU^TCwb^Fnid~3DiKRGUh znJrN%ULv1bi%F?e_}rCg`cacO!G?64qmf6Y_J=DjT9#EEUT0`W^LT)L(9Bg<;ajfyvEUPNIExmw z+Y7UB+bL74JhQ~YhbiDso=+VfreRx9fqO=aWynEaX+=#msCse`QR~OsWSR@-WkR}t zTOj}-_%?fgONH{NNj(1BaF46B*B`>LHv%+Ek6S1}vwDNKq2Nl!JcH4kJ^lor-d~Ng zyT{)quFuw=@FQQN#|z`tMFJC*j1BUR=W4pSK5OGynX8M%bVD8PPY!!{t=G*EYa4@z z+qg8w0$9B&*k(0rnOVK8aot)77OU&E3}q|Q@v)Yb6k(fEavBI*RE(1De^TcZq8vfz z*a|1^%;Si01!Fis7TO90y;;-*r03GOA86@hV?ff{gg|lWQ9#L5fQtJm8U5vxYM;?{ zxAU5fWT1$?#vE<9G)U1J1iprud$OE{K+~IUkM?)07i^P6v#7Uu_HeoF#|tgPt#y_4 zpM;Lo!r46fX8Eh4bl_4$I|rhx@nUbDX)nqqpQ{ovqjHtrQBy_&E~Rf%0_OTmcLHAJ z`Km)P1OxEcBS9A^8=#J#A1bXQ6VHlZnvtWs-VRsKN^f+Y%pm4&GtS#oO##4tFTQtP z3%e`lJeh`K_AJ)uFqm-%)XRtmE#*X?TLd=5R8UmGYVX>bGm+@wNiX-hHvEhMf-eHf zkCe~iFFTL-%-&^4G7P1ZkPI6AFhd%@ZEADbI3#{IbsO1Tr~I{gr#=!5l(m2tX$h&| z5l|!)Xbvj0n$v-_`qu_(jN-b}Qobshk&$50qrcW7{(dMcqHSYHd+nKKQ z8*&#BK5HlJ_Zt9U-qABT>b|62a`wx#bULqRa`=A$*Bc4~L znkr;r3r2GCZ0O6@3v%xLHCw$OLcf8NwZPSR_?WA=oeM;Ss;Aa!bCF3Ot`LZqQvNO#aoOxOM0z_LrNv0Q%_!W$wwb!c}&BWmPqRlZZ6 zV!79m4IX9An){I-Vdc?rrE0nRW^SG2%Q+6+tvgLgSA!7WPPMh&70jsfejGiykHjDCzkD(@>6VGGs4AN_$`s?cd!!BnV&p$)2|={&%?);Yz2 zYVG5zY8TXe8Du#zEaS8-DK;j@2u}GQ0B_VDpug;Q@Os$ToO{{zd7wmF)cv(-D5+4%!#F=p-(^_PbPL3J?Qk_q;tKmHZ}K?WCV5)k)lghr zTuRD9!~MTAGp+AjOb%dkaH29#O#x=?guxDs<%*(J9Mj6xu4!`PympGzh*b1`vUdi~ z`uVl4QWkLKg-yYCjt%l*_SJC1=sR)>x|lJjT$5f3RmtR4zze!shi|LA|D}sCF;;GgRg-tU+Cj#byZ&QT%=p4dr*&r57a27f{h;S}94PLLg<37`OAn1h z1E3pcqge#YAxTUNm}_WQwlK(=}*SDZ0;B zUgurfo7a6RQ$>|DML{B;hR92ax}Z`utIU&&XKjv{{y-}MZdFS zSBIFn3nXS#0VtAJd;uxdB zu`;Dg3zDgFrX&+o0hFmM6GeZieOSkor*SD0K0JkG6H1hsi2+~aQxKyuz;Yab0}2Il zJ44i-w&`xL^kb*U)DTu>Gi>HxF4Pd>gsFK{>Y#`}hyg=#K1^_!h$$P0a7|7yQU)^# zikg#@&XNifkwhkBgej6xLH__`+!p{i15~7>(y9V;8tCSw z*?_3g-FKz)E}H5YoSI=~c11-8F3d*d!OU{_$P0lU8r+S^K>=ahF{yUOSKtZYPn21X zWho#K??jg*(byVaO+CfJCSoysCQ4?@$Wt0;9cgv|)-dcs!Fk(`AgIN+78LEpDc_y_~#x=k*t} zY53UEnIV+tFao(klmRcHwKkxQ*Z7vv(Dh$WVCrn9Sj-|yAkE~aAs?8PNymm483|Hd zKr^XHuprg3V-N7xH!_u(GUcjS0gw3rF7{($PL0wy&t!2^cwZfqf(m74SY1FV$a|zP z)U_?-(V)67IEj|dDP}Pe@suIN4r+%9S{9J?2lCXBMh}b!8p8sN^1=A2R(#Clq#Hdn zEz?s-`eXVp+F4kx2ym0;0#?FGRH9N8NMb4&)HkhOF1=xt!a{`fsSB5xPt0_SI0O~| zHsWvXPBBvlh%+T651CX-!3K?U?T4&(9wmTR?LH!t-g58$wRfS{#J04HE*t?G5|B>B zuna?}mJR8C38>|Z*AvT{sWWpV0-&bUIDZ=G?LlV|rQ>ixe+p$%5F8N9rY=DY{(UclR#3)Tp(enciTrH!+1VVjAQXxLWw`@T)nPNue$-#HvR~s`*bHcR#R%uq19d#1+E|2h;!z;Jf_@dX_(N^_>Ke%|Wlz-jP;db41YHg&qC-Xs1Ph2c;>c zNjIksMSrt*7@aFF$6ZSX^o)GzAk+uinwRjU*jRYPMZ*Aaz*K=^JCJSQir}*)z<;o6 z>(0%rW2VZf00R4fJ&TV>ixw3(Bn1|;FfP?3@(KRfBo=(mE8QZkr%&0SjWwkl+-moda=`LGuk34 z1p=yeHE~f#;Fn@Ae;tmuXMG;c=y!XHMHQe54H~^~<<#v+j-U%TDHSwvO8eAyYSO{6 zA}OP)j6Q61@ruewPHHm|ci#Gt_J9z@n2<{j{tJh1tqvp#azUZ%4&Bxk=jU(fq3IQK zL)_NEg?#dGRijj8IU(9tME{qnwy(53cs9m zR4FqjNm75+7t!@eZd+HBeq(=75~JGA(o7*)lg6>~)uKjO>kLMY{sDw@f8%#PLb48> zXoQfpXBo77`f()wSaMLzI2(~iN3CQzE?&65D-iQnib3w73zd`>0aQ29h_M#6M0y|o zDDWxx-aCupqCs96D4E06JtZgMOqiscqcI9mQ2>wwHnF9$3rr|xAIsVjqNqx-462Q! zQ^$f>3S&d!7=?^%>8Vi)n52afpaGfr9$c*AKD2gova?SP!b(yJ2?Y0o0|i(3g6b|^ zyj)f(I__Z;nOuyjhy=~R5de1xTF^GqY4Qo>z&jYjLJ(8r5N!6`GA55 zNexc-JY#p@PMLr$R8kO>u&@Xedfka5qi-G-{cXev{8nxm0rCK~45Kof5J3QeOM^mL z$-HGhiCKXw)!&Cy%@DX5L|offPbz>S4p}7fw=;~!DFL-lW?h+t}Dc_t9+P+VUm=R6chrpF&6@f8kZuqc;sHA z&tq%uuxjmlG(>oLo^v@d3L}M;!&F5>mq{SFXkjHR=^&b48pmt#pBoD~0%`cN=OS2^ z9Cs3?P!s?F92z$KzP^5eaH)Jd7K1uUW#Q%U$&!^cBm|j;nNq}(8i276T^O5P#7cC* z2mtR9Vnv3xN|Ka=Q1=Fue>m272_LtRl>{V=QBqbYR!YgJ*{MUl1)~}Il-x74xS6?z zB33CODGD9bq^8sicLdPsa3i1{4P3sD{vEwV)De;sA2Y}^v_q%?aVF!Y95oU^b!`M* zt!~{qOrthdH7Y<+S|v+LlWQlc*BDy?lEJV)EsnfiypB+3~PD;|YqLGGh3CaA7ama-BZ!@Wbfz4je;_uuIbI}VN=#fqnc zGGysNL9-B$iUKZLo1Szrm^ynH=bsF@j$ZKp0QNAVO9mvAfV8X{0u;}+jR>P-8-ON9 zX%Qf$AmR=tZcr$zDaii-U@v-szgae|dGXiXH(1MW{&)D43kk(0t==1R!0NJ$Ts_hRk< zAcLqJ+9=c6M4n|SH6=MKFEuAW4`l45yKqf&s1}4(v7a%zeu{VhJ6sfAH57 z=BBy^yBA^2>(7(W7|lu*1XP-I-_o&EPpfbVCu@3`*XjW@Z+`frX9SVSo&8#oosa;Q zmcG4qePVPJvj+fzXaOqyoB{Ob0HEQu(l5$TB<{n)^nZ4VNKd4YHmD7(c?5@7l23oW z89Ay5wx`R--D27aG;3V^sNUKtFn}lySaL~gfX#B}vtOJ;Fl9BZY2&?l8^NbJQv$%V zS8MHX?)<94CZ-r0hzyq6DZ87v4)*Lmi~>#A&;TmV{D9MP$41sJ)RK|_AO=<6&^2NE zK}dISQa1K(PaxD@+*DwQW~?6YVLeTSJtojlq8T#bn(~1{Nu`pVB3kH_veaz>3X#w zm|bMEJAA$P#K@LgVRvizKG7l^5|ACxXc@^Sm#srq-q;AVlsIzZZ@;#J7*NVz)K=sb z7iOqQAh3I1i+G5rg3JRNw!8WH!YCkybN7LWX)f;Iwa*oLlEnD&#t5u1pe`%!u(IVK zyN9W>L)3$~kyAhg!;8?4-?QP82x2UK1zV~4R+~wb5B4hR;kjJD^wI5wnScVNAvUc` z)VTe?7?AR$I}NXXa5D`cf`@Wgf(?7MfMeV1+X*0>k)?O8-ls?fpePYX`QO3$oqSxC8DBn!Dcg7&QSx)jJ(&%D#^W@cGx@$g=G(q4b`a(pg4bB?d}X4qqh-6gV*8LlBT- z7--!w6ok5>Ek#OQN{J=*8B*j*lyJCQJe&b# zd{d0$ant9_RK%|nGvg^Bl0tJSBf1^5KPbaL5MKtpJ?lnCm`Up#)-opM%w@ov%ce}E z+!(7Km4fQtkVrcfK~X|!jK%f_W;mIn6E;$moW@#Eg@Q<>N`=YUz^Ui3@E_C+Zwy*~ z0zM&0a`TplU|GmP$_DI3gnZL{Qhx>5+J0_-QEBe1&&7~2B1MBIJ2?#?g)EfAT8Rk? zN?j(^1imTC?B5dLh%$~4;*d=y%v7|HHp&S%VD;XNBho#T?d~&-e$^^cul@$)eZVZvSqR&vpu{5%|srYlHrfSWeggq|B+vGHH8Hs{q zgq5vC2BJ!aRFKuVVjP+VAVxBr>+IyXi7S)JNKDEmDz|<*S`woCpy4PBAxcqTH#-u~ zd|pQd&Xf`Y6l#zVn^d@CMy}?efTUxO6-X?ZXi}Vos1oNwNot0D3p;~I!ddoro$CC@ zeqWO!B+Sa05ab{o#Y$BYA*4GH!}8odGZN>PK`EoS zHxF&D_g7FqiCfo(`CrYvf32|6K#TeZ`yDE zSNG$aQs>ed-{H?$PJgd{0(v%~(>a9nz)WdrNvOm|%Sm#P3KG3gl1NAefX8j@KNiMe zrAxsHYM70 z!xuYW>R)H3@$4oO1uS>-%UJ^{0A*_DA7&u_UuW>_e+tB@WldQX4&^>=vP%fJ$enH2AhQsImt6v@Uriem^oBr&aPS@hLISo!7B<;B(nU5rL~jU zTvjGQlP3;l%OE9cQc{qD2w(vM?RPaS#xr`0D#d~9me<=NEE zPoGOj$b8Uaz=@Wt@erfR$1a5f4{`a5c3OY(4D2z#b|-+%7?n-IqvItk0R<>^3Nf=Y zyNi~kV-MOaPY%Z5m7C!va0@DA(1M#e*KpoOIThAuxm1jvSvQkRMVbN`3RGxnhNJ`P zWTqerWP(8i0$QA7(Ory2C0MLnj6wvq38RG<=FA_KpD!H#tH{G(q~UQA(3Pvag^z~C zATbWrDdsiapj;gW(Q^G=pI%h0Q!l3TIVdoH1q{OmB-#|O_mmFc!3q4yH1msHt;fya zsQ9VDqY*A)KM_+ElnT+Zpz^7AE;+|7;5fNFKrUIG@RWrhB`HZcfChvp2h&pLM__te zqB?Oi(^&HJSsrKj_<3ANVrMdvQod|>>M1cH6r_}?$gs1X3y(Q*+-L8xGZeZJX=FM^ zYO|0D1d!U$UOf%joJ_1X4orlEWh_1!O&pL4!bKdC=8P*=jk=nLlXVj)Mw#kXS^mAJ zGlcJgoWcl9X$bKUA*w7GiUuSGE~F_0AR2*3#;Jhq9xH?6fAo_VElF4^mW33g*S%|} zDX6HmMF89}{3cE(42+V|H7a#XK}#W-wdUG@1HFKbczi0$^H}m7tn;NMxE- ziQbXPILBmGl}(#~1!2jVAt?xAG|cWmv7sgJK^jHV*%axF?sFi|rRF7!%8UrGXJD=Y zgh!=NdDLhq8jrMK zO(P9**-~camAYdyixz%7K%u@O<`!4FGL%VL&g1G)CjM~Kl9jGrS|(KzkSG|i4N5aJ zQkD+U^kcD@NmxD;hL#eMHBykNiWDkS5?nc}5m&Z?FBoY|R3;(`-?*d%mIWc07Bn^N zM=scqEP%=dik@OtS!zeup>lI%L;WRB<%pQ(o5A;4|8wW z;Nv8PBqLWW!rtg9_N-T7Mp6=z8P=i{Np>8N!=F4{-wW7@Lef}O*wMUhTyLd0#Mp6% z%TZDM%Dq^DP}~5)jVdebq9U{26uSa1r@tGuB3wC?kXaxEsBNPHd3QCVwVk}tK;|ya zU93)p;zFXJ5XRw{v2w4lVa3ZDVMFCE1)k3h-laQ$ovpBn^H6y2`#*Lx+r+dWkylU* zTirww64Yq6U>y2eyM1rVi=J?wqwMe|kIEFp^=(QCOS6=a9meAHB>laPBO#Pc^&;1x z4_*G%g!U|J%jfS=1d1F0;3UzSgobD2u%io+^dO=XNZG07O`879ODizZi8Mbe@;Bem zB?!GkeH@S+vvPc4MWF3lz}6L2gqKJR3AeMel24!03IwA3?VuHcA!R9Ts@(pgRtX{8 z5^wD6EO4Q+GizrR_ws^6inTm77TQ@Pw&jBD>O3)jA6zef{b4KuXbM2NyVIc8^GJ{g zPyYZ6p-K$o7g0WIQXJcx;zT(FJ*{USj=l`g%tBSQFGGE~`*|qxcc%Hi%h@(*|a*E7xS&@=>%NLA|F&WL_(4jRj>siLEF?` zhLxjQuZVlao`EKUg!6OlppslZy0t*wy6DCY1~N$6NEg_Za2Ol&YFqcgL8hbvH|Iv* zZAQ-?QilX9d%6-ucCli_u&a|^*TNJweo-b=?em6+icKN96bl+X8kH~i=k_%ekQi5^ zH|Nh-SyOiR($GXkBzlTU-)e)0Aop&5#-Yn#AfXhbETvls2m}BK0MuH%RnOMg6&7O7 z)bkbhP~7VZJfA~`DRNa({{TX3`c~Lu-bp;H1DA2DJ-J)X9-5m9eV|{M`oSaAQpKux zW&!+tc*7w#aavqk-$-aK!kBPWr0v>N6y)w7SM6@qHo+(s4W`uk!iMe+07Vi@9n^Ac z_AOFRamBF-eQ(Yb6XyVyTvUYuHi7|X{-f#%uNWM?;-|O)xQ&2Lz=>DhhRP zWg*;DIA-!2x9nQ4%hll00LlwFJv#XfcIp{pkR3$}a!9Emn6axLaC>1vklBh^oQ54W z>tg!AkP^ipgzdAEOJ3xF;m5ZX#L03i;C1t`Zs09Q9 zj1)us#DYtb2z7VuLG-pIMZA3Z{X8O)kmRu4&3Wl>7vESEQb;ONR;`3k5-2%lJTbG= zo8m;c?t?;Ii*;^w8}f*Vvw&&0Cfip_G*wU{{VYY@e-7gMH~F?AFNkYk#SL|Cr>K$qzHPq zD5b$5JBMltvk^g8tNErOQ31%P_q+m=LK%qVTj<}{&LYeYN`VJzi-LpcVApz!jt_ri z3+UkUVm$~x*u`a_)auqW_9?N53WTy1xnYQ+L90Dox$G$R;Nj9su({<=HfcjnMBAB0^esZBF1zD3W(L`hv!k zwSBNs)aqDJ3;<%`h(0>g%bW?8l^1K(!Q{e%jrpuJ08q;Wmt*-&t^WYYQr>)F)p`I2 zBK*rxeD4vaN>CL{#8@*wo4NA>ogos1KIJB$P&Gn-m)v^;PH-TQ3$S_$`29I_q$J8N zN`qJU^}i|(N6s2xoy<dX_2f0Q z88Yb!2~!tk6$9eu>&0q7JmJ9)Qovk}Rq*k&Mr5<)E;a6hT5NCNA*h030H|=cAxbW% zWp*1w5G)PN{NeNF1YWNDd#rY#Vm?26ahief^ z^y$lPP@xK0{&0|gDwRhL?!m2QH>aEtm>5#0Ph-UGtXh{OT}gJ)-u?`Hv@fJdhXAFN zwFLzb0D4dXQsT@V@Aepc>E5E^v5=O8v$mE#UVOBvgF}QARtRznIkP>T*@aJ^(+pKw z8#NmDckqeRC<_3e4}Q+?1}I8FP+|w50Q9IK`McMUF4zY(=XigD1#JAjRry1Llqx}p z0rY?_{{WOY{!rb?yY|C`lWTA9$g{DDQkDg@zc=^g6XB_lLj;n}?8$RbJGXxA;|QdH zNp4*I`w(C_ps0RsY0I~Xn zd!D{wuJC9v2dzKuZ6(Iw05uc@a2vbZ+Yu6MPbRSCx2#(LFb)_00PO9dbNS^JVzibi z8I51&ak$ug{UCq<78N{z6s`ILry;AVcBL;A7-3)((TO}-;E_;% z+~JCYfCgs+&ux8L4NjmK9d-BMe(^dALbfd-$TlXO*x$8mAK0`@B`C|3AFEE>*B(vS22Xh<%=+*elDZys+I<|Uq$7O1G( z-mxkQ09Z62mkdE}O{xRE-?79bl1V3}E$U(gkU*mWaxb&n+v^pWD5<#wItgL{s3g(H zu)DRb30Y-7IvpENde-q#Qh_gL<6bN zipxO-n6dQtq5DN$5mMwiP*OvsAcB*?BG&=?`FsMD<(`_e9(4Zy05N12E?wE{<^9C8 zGWNQUunhI6Ra{rvuR&Z0YP<4ptP=}0Hj2Eq;Ni#=2~i@)kX-XZ9|+6|3QsO*HP76BLwn_miBo+X<0D)5b3fhbeW<3YeJzJ|YVJQYpS!5Vc(6N|i5Y`Y< zrYVIA70Q(NAW*-IYTQq>Qe>Hk3kG6pCAkC=E)|s2RMb$0q;Ou{ezov!%*n-+PLqsW zxhhb@%vAY6sj4%HYhWp*dc1CilIZrG(P@V@nnaS!bC?J*R$+xHKR&>Oxl4}Z79^2e zX_I*T+2{v&z~ zao1lGC|V=QboxoK|C< zW;0ptX&K6*O~qEoWlq8bAbwmV1NlG&g*&#@gW-#D@JjH~f}EiQ32F@4NF~TTf#}ii zPQd;AlBDAh_#mS97PHx2l7;~Ah<3F?Pe@J z@w3XoqFP0rA;G1K2BQK6Y%k><-vxn_gi28@2u?u6q%l)a6ISIw&D2CQ1w^t^NCCYR z0KFd89q!(7ZdgiGl@iUM4a%%5zLA-f5=}q|E*Sp+t?K%h0lcXQVX+h{U;(*s^#ltS zKF7~CGldh8z-oZ(G&+3iPb;Vh48$E=U9U$bzRWBsG%h28VZBO}>{{S*4fwz=Vnc;h zM$e|UvwW&_FzcL|Nv#d;-0B$Jysyq&85P9a3LmTHsXB_`nW&~j+%mE2d%`R-vXqRxO zDi>k~j%glR{b&6}RtF6?hH&BWF}Q>+CSoTUYmq5wBQOCZD5MfwFcc)dxl>l46>yZso1JiydT0z?FAB2AN*MH$Qy!5+~*st(6F$qQbIU#Wuzr5 zR(W&`pb!pV1u8GfJYj(B-Z!*7LRkIG>_q9)LRUFxLYBIbm0!W$#^#M$#;ctf2Pc@$ z^;UJ5D^Tjp;wk?C)Vk|6CL~qP%#HIIUQq@jiH9pHqw+~WVj+#ZoJBvh$dZrRV8U>i zM4X{A6tv2olFU|$wO9*~@!Pn6VsJb+3}nuffjU?LWpa`gEV~kb6kMo1g&esp6dY51xVkuV(SA;bRw^g5(fM9`Wf62R-5_&hI!;MI=C%tVYlwR|+rDH*0H{{RVS zN=vP3paH1vSci_sbeo{vF!)T;M>0$~OwU+mQi_e8YkBRka~#Ss0db||L{+JBSz;6v zltPBv(8`EZqDbZapzSQIDpQEX;)-P~i5PiGQBoH4WmwCuiJIb3lI*^c%rn^Rg+rQLa5x{V`j?ZwJ(hRwB%5nTwQCzu_l2S8f zmz3v9NjZ=+I1ZXr@2|s$!cR)ShnG{n9HRU~WjbrAKNOvOl+3f4EqO46<~d(WCbI~J zT{0OoDWmvk2QHLcS#;)KFXpN^TtvhP+D6^SJ8Fz>3mb#rhyMT@z%V%_rbZHCguWq% zTAEzUT%w-ps8mqECZGUVpOjy(9k#(@aWnW=5685;PsD6eM9{2YNpFs2DGW0x6s5_b z%uSg_&il7V!ETgX^GG3YKI9ekjOuUTz{$D7Fv+zMur80>iiE$6* z!vR7x{C~`{rezRR!y3}~qWE4kf9h2xUM^?D_=!@0n1!jz6hI__a0nEoNiVi`XN1ea z{@#4@CrQo>nKP0;5+)M)(2z+4T=H@?2T?zWhg{Y0nef()Bc$^~mGzsh5)iW7sZwzS z9NQ?;6OiG-o}Y&eC+0%@X^JJ`EU}5Xdrco5hxDhgle>6x`8#b>h`v-F?T ze$>nDKM=!qX9Te`4}w{h-E%HUl%%=>2nYcQNFCDP3R%x*#Nedh_zbQqJt;(wgDrBD z#DpnzN)cBHu2A3$Jafb1t2NcShpLl(Sk{@me9u^QJ3ExlwIr;-C;bjWa&Zfi%aT^< zP=O?*Ljn__0g@WWdhEpMM}(_`r6VQ>1vzP$l5W=40*Hl1B{+4 ziB=kFLgmSmno5Z)8G;E*C7C1KHKLdb0`H9FAfv z4Ejn;rPsY#YL_y!fJgfSyW@21E+-d;{ZQg^u@c*dWl=)29I8elNSK0@7h;7l1d<4F zYSHK}#>|r@Z)SL=E^cftBu$-&GgF#erJxj{f(wvUlu<4m6WscPgoI#I+Icv6b0=`@N-*d_Y{ph4 zU=`vjg1+O8)*fN=#%og*2B#LtuQWf`a`lO;+@02xDO{v};$ zA4UHFAANc1$H5*+@T2k7(8*YN=Sou(PH3%drZW{rieCNjo$Q8867 z7043-0hQ_)<%jg&0o$(AaSTW97ALE-@+WZqDiD+KvDj%!0|sR%g1JgtW>IAXl@!pPL#N;Ohhn0zJRJoE-B_yv5wXGnyT0<0v%2XU3BeUAcIy2+X;Erdg9Wc#c z&*a*-MZ)TzPvbx^<3-B#CR-;KXEw-St{GC16%i9Pm&JraVtmx36p}H|B>w>9&KHYz zTZ@^ve0Ksu{veo2)@Fk0NjoT6Uy=f6q$U1i z2rHeJLdilIM2aMf^_*&?aP{CjLp6T|7_35Ys+JtOkMU7Z4l@hAs2;TXmHGwRt{vJ= z&+!ffx#>8*AA*^TOvX~yek#}`gOnu+C%Vt|j&o(w^I3Fx{FZ$SM8;n=7Fr@!;Yf)F zBB91eDivjAQ@SLl%y1{N^Jw>#g~{t1q)1Mo#;{&0+OJlkVqn+Vs0Ib zUJ7z2NSL*P2gQ^WM7fVba=9AXppYDC9NYCL^x$HE;uu7dl*=Y$uY`o9BvPu(^dH4Q z1N7^6z%R!fS(%)ppq+QlqRZ-8DDu)BJJ&Pu)MfLDFG^+dOzv?4suuxts`qpPL3WP!hHPDG@Hi9(cg;+*b$U#}ed#VJ55Dt{1 z4ky@7(PDcW#{#CznTC>;qE;imQWilCEkOW+DRXCfw0xUuy%(BjT~nUu+~Q6wrfa72 z3B0mu3{(_F{{Y*?Tr|W|NCb$1AwZ^;?S9*X$Bcd!O!Osw~6`*ZN|@CZsB? zkPTbd+U!GI)3=||umMb2+&#~(=CI`e2YX(Z+K)}X(B^On0Y;9KN?dm3=zCuc znX@r0O+5VhU#u*LC@oU;IyaAnwdEcNCD`2ChP!{y>4z&VW;^~G9VjG*OEt^COM36N zktGQQBmh7F8&K3acYiN{H1zc?77-~Tg^1@tz5Y~(1W+BzDVh;ngg?`wD zMAs^hQvU#mwJZ?egUi>>3KGv!X+UkoJ*fB>YsHY7plBV>U0bXmNuv@)K@~L@98sRW zDTGKDAU^RhmqJY{!0GP(+81FAl9PG^{aw4g1{P%9$AN#87?eSFcK|aERW;?Vu^}lt zT<)Q;6z1(yVf1eJjHrL81DjXFZ+3~%D6lQPDBok@tVo6nJ2-c(9)-iZ3k%{UR2s3n zld&HBV!~vohamIhG$)r&rDUKfG}@On0G6j~e_s`RF&UU<7N`VYaTcXYtEdnK8NFyl zwt|3EcMxvC4|2{!k#5&KVKHVUn3DU7^}C<6TuKrEYW%C_N8ThQ1Us^cJ**nx%{ihi!*_Pzl`F#x-lH217pmoF|_5Jg{Y zdPJ(Kf$oyRrNI2Or_x6g6AmNA(?&N~bU4Zb-%lK?SvJ_PI1X}eB{;%L^SjkD2K@@5}hVBNv zNj`k1pfeUMX#5UnIsHF;S0HC0$qeIa(2i7p7J9};SYpAgQq?W}^NNJH9gV>xUAy@A z9q&v-FocA?NfthTch{t4u#(h6iaB=y=}K<@0B;jkhLBV%*a1>G_pPgni&a^LYsh$h zV>=-wgJ@j7g`d>Zpo+WzT{H)q(1ISn=N#gan5dd+0Ty?aH9+_1jAxv0IiQK_C|f<&F3tvjO&~ z#y)CPRH7V;Jzv9}ebC0khcy{!MfvXH-`|~LT}+?@Z8UwZ$CBP#?~3abFLC#b)Pwv@ zt6pN_wA?gS<$wz$yPdzKzo*gh2_Plduy^K5dh+ScHjEm>1r~Ax3zpW71-H42j$EuL z5L2{@R9~|J&+FS2hy)!UUwtDvD1tzGGnz4G6>XiEkHlR$Y{u0gCBgjLnZWKU*C6vi zY2OrAD3Tbs1dx3zQSVDe!G)Qa0B#(5TdyjZzjEn>?@dcMsG$2l{Cx&1l&YgEk9@0N zEAkl>s52AM-)-su)9F~rnJjWt2zpq%i&g&s!S@&flz?0}(Ek8?Llm>CLhJ`R4qEiu z@szS@rKKrO;kt%}+&x9;Zd=YGQc`t&sLkU~A2y6WHb^Hnm$s+q?daBwv60Utl=_RG zN&f)F#RuBFRk0C8DO2Ry_?gG)EwzFgx&$6?4xI@EY(01)@s(E1q4xlHnsm}HQ}otV@;?A@4lrA{l( zNgO0xwLb{=-^3 z#+8r3g=Yml;NhCSHU);)@r;$1X8TZ-mC&&6-bv=JJ0Ed@31w!vcjc`*GkJ53CmF;0 z<&pselS&$aeFnCBzVUiU=3s3pQ`9g8+r28!Yqjf%3h7o1UH$(6XU+9oW(K5WXEhml zgI2X_4NX~%9`BRQ31X#fs{>|!3Ar3zhnBUuL@WKaqgbCCUhQiLz)rvdNdQ*iwH)hq zx1?QCS&~z+)?61S`kGW1xbEI@F-T3z^0%wfFqoVIn39myZ!vw`)rZhU$uF920hCAu z$#*Zw?HFmeA_AQ?s1(!Hs%uN>tXAM=RRky>Khdfgo{d(kV#q9C z-@kT@WZWIx5PUgv(0O@9O&NyZ-!UXqa^khIvlGGLu_z>mw$*=qA59{Hu$tvw* zb{<#t)|7)r4S--DcBl0G`iO@cGP|v;%;v+IdVg;{qB8(2D*W&F(j@-?$Aw)L(Zj#L zW+?Hqgzr*JM;tNWP!c()yZhoLETl2ldzb3;YX1Onl9j_1l?;rnMrsjuyN26l=@!h^ zYyy<(+~lSF4`X()`ZqYoPFQo4u{XFBwS27^Nmv7v0)Q0ato1Ecx30r@v@<-_0oA#^ zBrq;XyZF6F_QhpQNCC@{;z)L`?8mRHY}_}8sE{(bu+zr8tyss|rf!ucA>X){41Ajx zG^^GAn1yo%7`YbnsiU)X+j!e>+&M!d1sa1@Z8d*+3$kz@v5WZn3)X z{5eT3mNpDDCASv)o#P!(M+b1*N1zGV#S(> zr4_kvQ6(kA2XG#g;`Sx69!$mE+>*dwqZrv`cUV}k^B1q5UH75p5YV7h;0Aw5aP3F^ zyZvz{MH@IG#PsKSYo_sS3Q!I-Cgz8II_`PxXUAAcAP>vj@?ERipWlp5gpvR>yX&l5 zLc=j?+&i^y&C)27+rCnk6gQd__haApK7N?7VNRY9ii?r}V&L)z=6ou4*4CIRS=tl= zSTNklBnp7_KIgZbB9xFEza}B6zqf=75KUXd@6IXlR3V09^Z}|Kt0`rMGQijAT#O<>L}j7h^HvJ?m!eTSM0?5vp=>iBmf020X40+ z{6-pbi7H`pXR{H?A;nNgBaY^S$NcsjV$86np(N2v6rG1Z)&CdAuf5l`SJu6_*PdC$ zwc=XWwI!jfOR}OQU3+C+_g*7pU0iz>Mb@=1iEC34ieyv@$@k~?KYSjK&-cSSk3s}P2m=Wklv6t7! zoA-GZOSxf7?`EoZ;4ynAqZX`Fm%W>pLHABF0yy1j4xVpH3NTB+Vu_&)a}(S*nV&rN znyg^b0#?yZ&)P_S=%_bMV_b7Y&|^bQ5(8{+hNLr&-!upsC@=XP^&l=uSON!X$U^n9MnB&y zF6O`bQY~Fp`t&t{BOi&tFjC_IF-XDx0G|aR$XVqsTG?zE!Ng7NQ8BHW$*uZ_dj*m58X3p3w` z?epR9eCKyx93}oZI#)r2|D8hWTSa0PssE= zrzaLe(x4*q&gM#jCsduX=^PCHR0;G_Kv4l`dni?ZAAgom^oolO!_qh%?fQKoABa@E z)Vs|QmvhZdMjBx#&F>Awngh^a1vb!c7d^ z^m=ridu{G12C=q};-;?h9SB!^_AghlBl|eX2m?JgH+H#Kx z1fVjfLlf4%3C(iagDs~FZ!mco{n$OD96eh`sa4|yOJcu&3D^w2e)*gLD)gVHv+*n3-nO1M#Fas6VVm!Si%LWiWNX0b%xm3O-(KL7 zyyS6emG-~OqC!Gl^P3YAK)|Kq*e~A#b_LizOBR4fA`OH}qFzlKpTBjL_wG#oNvn>l zZ*Gpz2!#b{f4^i-+o<+S81%>)iXqqE-fW2*`Mept2i=}Tz`c_}aeXS0RN!Ob{O=5X ze=I%2f0pTdYtSx~fPc|RmVM!VTa8b^(me2`gPbxqGZZbWLcw(G-6LmJ$D5b= zBCB5#HB%&MtLS=*yp%?x1_&fX!s?<%rf#3|pJ7x^eg$`_wRvnR`pdDn8n==ny*noI zYJ%0nMD})y{NECyk=`Mf_%wl}vcN3ioL1FpkHA1jdRkuDu&n>X;TC3ZV035ll=Ys*RpHpe*jdHC=>I5r&i#e z*MEQ|8qR`LU_Y~u^l7Y&0o&)WJsWx_&VM7o0wwj!Zv%*=;ORpxVk1KC86{^rK4s6u zPwkRt9gnpUtPlk$5Lk8eJJ0QsU4n-tgB5+f8$tHmBi?GAOhlx(ADYjXr-N_ozj z{H`9wB*6J6X_a+smR`}0cM?&s#zaTi#8d~|R=f5=p^J6-juyGHEx&aGa zKT;sB)#9BJl=^pJFvMJ0sAziH)4u&=(>BVQ`R@KBiIYcb7KJv3xPmKXKqOLUV;F34 z-YhFGM3M)O%flOv5!XO)ctD#c~%i-uH#V_-c`XmjB?IjZwP*6Fj*WXl)H$Am$KK_F58gjnl9*jNj%Wj)@+IX@k(ZHQ6HU4By%XpdmlkNjh9ZilWe8>rNA!4x#^#ew3p8v zPE+qOERIUPGjMHrZ7BZ3^$)-8lB;aEzN_!CX07~woN!2VW@pl71#hSz`vel;dHGlg z04G~fT)-3Vg<{URH4SnYW6s^T5mxdqlZysY>4Go2A@3RCl*-rj&T8?|UMgCv0z)zL zmXsPW>cn`PTv@Fmhf+Zmzs}3}7F(@H@S3JAN505}GP5+3h02WAYK#J?X0?B0T0p=S27-9=(3@c%%i3iM!hFEH#7?Yb zQH+EE#N5^1u+eXCMW}`Kk!iqm;V{at0$ei5uR+K3%gEA@AYXWfDMyNRR?Ke=(}-Q= zeAY^^%2yt;WVR3|8b>;Jl66)r7#D4I6DpZSPY zI8d=s;1X*|dcz5KZXp;fU>~I)KRv!5|4FNfVeeV}6=AXT&x@&@+Qdghtq6<68qUkT zDgHPkzbKs$#-?538yb~$c$Q^F!i|NlR!2D&6unhfPT7`6me-`&>)X?1m;Gt&>-}a;(E-uMo#W~Z?C^GNyt@-A9Lgv@SS@8OhW(6p>*4j zbBZZnpi44~Z{JCqjxnBHkcmn*m`;Q_+bs>Vy{h|GgBDX^i`D+-dXFd`@ag@M%0rhL zJi8MU6MG**xs?7j;@-F_-bO1?kyDOcFn=|x!lgD~Wq1T#js!A6Sog@kgAZ<$X6UDk zg5~aR?_)%euVYd7JHH7oSX&ceOtdrxMse=Xo*s1ZHflaHj>E~;q8;nyf8Wm*71Cx9 z8_4_*5ZPT_W+f8%y^Du%^{vOaFX>t-o^22>Rk(B-qvYnZm0g)6o(&y2__r{DJraSY zVY`#^){Yh4;Lij`3+|pV2~#!`vIo#}9}ldLBg8ktWn&F3oaEZFZfRb6m<9GE#}q%Q zG%&RVGD#AO!qXeLgBR^JcnwK6_aNys+-pqaAPVb>W{>;I{OfkIHu)AP+ZmXrPG5hu zhuBj(5G^DvMZbyPhca}?3#WS~9NW{`FE@RSXj&F`=gD4&GC0D-9DiMnHJvn;aG+=1 z?fbUyKY)mJo4N<9py~w}E`)aY7%~t4g)nk5~UDWYZvn;%9)S^E-t`>{Z4 zdtQ*wxV4kGun=Rj)PS)GF~}Sg;{*X{pgx76!d3)=Q`4x#MV9@(lQX(Mhr5weG%Ntt z$d4-=uFOcKM%<2oP?P5F^;_x%I5>MwfcfaxJlX`Pqp@);S0t1%MKm^8LW)iq5^<>pKLHF7#tj7esCQ*Y6{uf+5B43@59r#;w^%XYc(PIV$?AX==zQ=O( z&`{^plmS`|Qc?@Gd!TIe*AHnDy7a#lehG^}mHcym1Ok!csbkz@o z`Uy(sA>>pGUuvZNDSXE=7!$piyf7K+D^K@1%1

      !AVdcoGJjS?B_xnQ~La-#VaR64G9hg+rIim3^C#2Wf0%YFXV?yz=bHN;KcW81>z zMA~vEKy7-8n8tjI{u8qs@aX4K?cI$rxG_FWbMTb73OCTj^pEFfJ16t-9oV=BcUyKF z4^6_<^RRdcsAPY7;CkZTq=?k<{Z_lXpDeq6T!`%0g?wc)Z*VX1GB*)TuM9OiJm%aN1h5-GjP6zE}3e28CP32jUX&UtURU zNL~m^y51VI4IS>z{C!1uIzOkypGsn>Kg4sX@dHZWq>7dZtu<2!vE3rF-DVv1Ou57} ziTi|%*GC4c6Lx@~`crDg96tfkEPPKdQd9Z=E&w_>l3p`-ksizUPrVnJtJx+qg=f=X zGzsc&_*<6ql5ExZx5}vU*hR);L0Se5f6wWI!08jnQH^ZKl9KpIWh#*fO&YgiWunz)Ky=E(k)A=b`dlLEb)orc138aqyb5c+f?k6-nH3UVVB`LG?n2vyjUG(8Y11;$zWu zcga%fd=FmPdo|1eUA|z{jq65EjFoNZskz`^bt}GAQ-6n2L*FDhn>i?&AUB=dGmh)o z5cbKgSW!ho3wqJQ3}nEBCy?W)Ma;b#>!5nUb%3COU%k52(Ysh{r=|fEd4>hwC@FSM zq++Dqbi z1VKvKCrtI!Ix~CcWwNDz{elK#;eufOYj}l^-R6IQj@BDHmr7W1#`$Op;j9~6VzxwrTrln3P&C-=uO=gI!`;)JnhYk4KR(hkq zC`~VrK7WTIl5RRO^|KSxC2gdw!lc?9X4YrvtFm6nHq5bot|uMJquKRmSeKhr`SiCA zB}XHr>T(Ul&g3zC8AU&E9+C+A;>GDr>8!vL>!yL~_eq`&VcOLiF)d@2-eL8Fda-%^ zK;_V}z}F)98_du&WWLLzI98XGG)2CiM9QYH*K6O;-sb*VUZsww<1-lKC9c=~ST#+1 zra?GHppH(K?1oLWG>3`jX{Ufx-VZVPjRFgWt^^b|y11$-7m|MzJXH3ky<1?}3vvAT z`*XcKh?H-puOdz<6lz--@>=*Ca^WChhivZduZF}>|dhd=vNa?Mb+wje{AhC z?J%B33qHk)!(n*)hju&2QRDl+XB?3jio_s4L0RC@5Au*_m~?nsp%)f5&gf$yB-&56 zNd)J0*Z~~6)LNP&Wn0js%3HNAp1PId|=9V27eHpqjNY>joS8cT`Hp|V=dzNDL zbC#;SCCRy8{u<2lFSTfUqe|+4V18;SUfS~HZk%l2``!${?^{=D_Si2IdPQx#*%r*> zvhvPBo1qO2W=mq9U(~2+i)BEx_sUg_FK(2EpI0)rSfu(*g9iiY`VbuLP;{HKSDr_3 z>(RqTspKNq;BCL-~M%N)UN+4{G^o%9mh$cVCG&pZ606hxW?n- zZJ)H0-zSvmnuO5nwH8}u;}z0ZZ1PQK&Z44FE-b$!WD5$j-JX0kNazL;lH0jFE;c^R(~FQ5n7iZHtcjSN7jg7a|H z3l+)}BZ{5QXEzknr9tc(#RY3Qah-gp?%&vHXWD7bMqm;!#ZWaB?n$7MrNaoYs?Swf zQmUNqf&c*9id*qijU`;k&(q<^>pTfy;PlS85r6|OD%_aGr%4=>+&Q1V;N_fyJckeF zr;cIGpb$$hv&*0z&m*W7&TeKM_6QEROt6(AwCRe^c5Xc5xqwR7zY1THNMtM(F8rrG zY&7$T_MTE{Zh^FFjv8fkM)S5j0i6#WZ~gW34X3v7Sk|e91|7TX*pL!ex?JH`)vVwe zoKJ{jurRDHIm7)aj~3Z&$y>3T2{;e6;0NCx!a(2MYZ5R*PAWw8g7ME~%_iC)vXBA; z;dzM>0}C_&WSh<)FgpIcSZ+m|HrCGFJAUU$;QJTrX)d`sUKX#N*4Tjn+Ab$Kjp#8I zqmvYTx|q99Ksv`(gX$06Sd05M>(kWB1Ux2pf}*cA>A`2*hC?%p&!y7d_6Jnuq*UkDju>b!~6t%`4PrIf%E#L`2>B zpk`hdDm>$dyM)~H!x?Ljp;7tps=Y5h?XC!XWevd33f6M)2X&F(+`i4RI?hg_Qq^?Nm8f~+{(y6UN-Q`BuhvC(KAJvbGu7h+kALli{>3y|J&`J zmpd^+I7r7z33+RxEr>FIz!&}7wNp7(CT0sFVW5V^e>$YvP4;_dlHwOsyi0{p6;Mm7(Lo|=3! z>0&W96!^L;nB{S4Dgg%~z)Un^cEkbUW$!O?dOotg;3ST+UN1rwjUj#ro_5}VlD*Dy z@RKBGF=;4eOWBLtgu8>ef}tvY+5KISD{o46Q7&-H-|RoYDot%Xvi-4&{L#EFWZ5!G4m%+T+Pzv*ZdD)>sr~%P3^<#&FD!*6DrXFenr3f zDI4|}aTKGF^gQ_{Kbbieb`LtxvHip{GEvT5SGdenCN*E65(Hn(kdzb+&EpruxN{*9^-*h~(SF>PXvn*(li_{-qK znQ1V5R0O+C70y0r;O~3yRfbXO;V)i@f1xu&DRmwj;>-?d@iJf1NR1p`gb&FzJhk=y zX;zcLClaANQ<;MlynSv;bl_kQY1^Q!_ZXOxFTfZk55dh5It=mv{>eHuHVymFa|!u( z;ROZUY(@$E76;SszgN1ymWGg}lyvR6sJ-l~jLjtgM#>ccoJm5^%TQSJ=eH`+W~q$8 zJPkWA*~}IhU&DiW+)iC@B9wGBhz`3W5Lhi1t|LmNEA-Xf-olC{me@y#1OZIH=H%X%Fg{# zzskR|IsOSl;i-l=sG@arsiW}UoC#x_GfRdtv@>n*9b6#%JvmL0<25g6F_JJ_4#PUYO%;-d`Dqx_eUhjtv;|7ke!4p zlXEdpkpv|n4Sen(ZcvR9;y;_i=^vGampi}d>1%lKs^O@u)3ps#iLFcm$D&q~8?o#{ zRjSrESyXaT6?7ye1zj!8NrYTx5!I`}W|}C#ZT^aXPoPp}wX^j-F zJWz=h$e15zje{Gl5u+Z=!pz!^_q)bD5+=#U@d`8w$-q#FH177HB%A;Y>I8nkC^dKE z+E%}ZuT4P?aG(tVR><#_q|rUTo^(YbRlt}R127_*Ow7dgEuznoc`8GN8`d1iXIVAZ zqi3+*mF339Aj2fjepk*`V8@_EqHLvujnmJ}Z%aYUCA{&9c1JP^IBFnIo_VQapuqLF zDqmujjtW+d1iY)fNCkJ}(B+8oFFn}B-TS>-gLd2lK5kbhl7B2xA zk2^`U{Fl_mrkbOARhDahf(JWnAZ>NNe@{I&UwKY3X1l~c{2-FuV75(>dNKQx-3(fL zZ*Aq{OCe!pJ31EB`Agw;tuhat6u?So?9X5S0j`|*(k~m}L+580uSpEj2V{S2__sps zRs$;Jy07-mb?1+tyau4$KAID+*i?Q0e%mLWM2Bv+cUa~&1bfWsqi?(};S)o$h8xmc z!JByb^>?$)(T)g2l>Rlnjn@ejicsDi_?0J7B`q#o1kkjlcIB|MA`peKTUjIaufO1| zbsKu4#TU$SqPfzw+~5|t3R9}W05Xo4tp>R^FQ@+x@@M!vVzoqxBlooiA zX!3_gcQ-tM6tGU^$g6)YWii*+gs!)@t7WC7qL-xb?AyNvanN4b=io3fQ62%5{@bG6 z11i*=@ijyewrkHyvPrcgC z?d=Ub3^woE+!>c`YTJUv`B}A2XSN@{*_GUxIG(o>3)k-Ca_BLj(=vxVe&bL?@0k`B z>|ADBke}_Qn>IH|pVcA%K4mE4DK|)df@~0mrH#{+3bQpdVYvFN8f)d>JyME$ZqZjmOhBS7J-xst}XEjV|9JMgE*V$TB!b*w0;p2JStPtiZ$4h4hrsL#DOr z9!7lp@>W8ducD1oia6Q5=n?RApuh)oFJfQVmalonLBl}0{&r7;9~;|_7&9e0Z5P z9f(;_FN4q$UBU$8Z7+t;huD-vfByOz`vv|*(HW|Jor@`$y|PZ+r;W?i@%!=j>f`O( zwc8bzgULz~gw0WWjv<5zfqx?B%*rbmDNfZeK(RPs)uhH!~fL5aX z?wkEmWQeb30z=1Hk1G}MkBK^13}meaU_0q2B9!Un<)yo64lD=ZyIB3c^A!bFnKtZw9oNAQ@8@Ky@ILrA} zd)9y^_5@8?iXfaT-Yph{X!=^@XlZ zSLt=JGybCR{{U8kmah=Lk6gx7SsP8v5_vgkm2!Z3s_{LH#tJKVGiJrjyeAe}G7O6L zMe+#*J0~62c_6x%enVme8+)nEnQ%vNN1Sw%k1@Sm!bu(WCcr3BPrDB{AMdLMg&R47_8 z;uBaiU&PB&&i%h^mvEa#^}B`zcV($X7r%1IJwPq1_#zWlUm~TvQ;fy%hIa&la+>*w zJfR}76Mq7Oim}G^rn1kF_Vs;O>THrjDpA+Tv^`jfVy&h|1-Z>+P{!jTXNyqWdb51< zx!?QO{{aTyZT!BTHYcc9GA~Ga6c{f~rroS>^@(x4gC5OKel3Zu#NZ)5>{Ndi-aJ{< z4sG$@&@yf?Cp|rg0|MhjUK=7emiZeZGq1&eXVxka7@K-F1P72kD)N)BeI^)4ms~yb z{ibwe`_k_n+?N(x&P{lgB?bF}mVM8P8=hB=h(lyBqyWZE^`6Da68t zqi=md(<_~57q`R+Erq99xHg&2eNaz57iLKsc{lV~I-z3Yi$R{M>zGA677bJU&C4%x zqBfWH*{P`lz6})O2WO9|F42)J>kpBir^po)>I5EHNuXJ+0kg!U%Jj*N9d_xEoWBLL zwmP2V_6d>&qlp@#(M8cTa}Gs)L@(8$#l(zM?%Sj#%t1_yPk4Sd#m;M;&NZc5cO0L^ zfId8_Q!D7?wo_sF6cg^O8XuZ|5Qn2JCW5HRG-;RW@*q;M^^|J$Wt#~IV)ZRg^uOFR23nXq0N_MS7uiVbr>B#m@<$? z_w937U4EO)&wA|E`^d^hZ$P^Vy2Ds=)j}KmVLd}3dRv$+Lm(j*?-m~p!j|sAUD{Xe z3RJ4S9%A^=_N@dEf}dP^e8BA*$|k^}ntZYo&rGXY-kFA=<(vbLZ9dH!{is~43Qn|? z2e8%I(|^!_v`(p_ek7620LM`$%=^Dm4u1$@WyRShY^^DT3GF&H?!CF@@2UJ**jvWa zG#?t!lpo(B`BTBcOLf`?UXaIu?)WeK-J%M`-bhICB=|o7hmx}9gn|VVvWpI48?oGf zo?|$f`aEOM24Pup#8EKg%(=%#^)*W9+pEJdxqfrQZEq%y8aX?J-PrEd`JHkxs_fUo zB@eF3WPfukO|J?kz0T!UCKGsDA$ds|yN1lEX2|gf+;=dj27Ob+=@{uGU`=JQ{^R=9 zA@Fq3W;!!k;|<@-!m}5@!rITZp(k29DTWwEETh>25FZ&%9G%1AGUR?mHGNh&>^Yn( z|I+@-puLDpalE;LVS@7I^LCOK1uEbxfSSAuo1D1o9!>B%wJh@a0w?pkZH zUJ>QaEwHQFF!b?uddR~X>uK!9DKr9deJ&mQ`qsmly9A^x6Wx%tr>9=;(w^8gv~|A#6%PRH=nzzsnT@`Ej-K?A7X%|X2O@MX7^&wMIi|2yV z3pgGik;#DiY@?Qo$_R4|h-`3~T{Pl$5GqEIR1{Dhf%I}TBVSUhH{`+cx|P}F$p;Ky z6~Z`uHGJ--Z1COI@;D#8{E>z-$);rQQz7aYc%pu54&)777Gh_&q`j!^4SBFw3W`19 znh0S3SJF_(=}#4LxHHoU+SgoZYC;F~>&YFpXhW3V0y2Y2O1p4qs;V*^e~Xc%!Wu?L zFBH*VhOi#-A!I3K1hfcfYcUl?aspFfZl<9~3@``t31qumnQ?Pit+-`_`{A=p{vRtsF??syn)xM12L|jtsqichN6`69a`yn=Vo;tt@QSu z#=b+MoSN??>t7s9DgOU6%hQTxIcT z^3x=8x|yV+FA-Zm>_uB{E1@Jqr7Jac!wZgU$4PTjw4nOg>1)hKf2%(1 zxM5itnjg&i`yQhK85H(F?%yH?sDi8<$;mNL;pdEVcr~%nZ+uxgvLlp7E1tWZ8-$BN;;%Qz%sjE|eq+(3EhcrfaMVj~+q}_B zXuv^89PRlZpodLYk^^ZKFrn4tLoddp#7R4tQml!RhPxVAw&FN*U~Xf)N>20FToylk zPz)~u5gM)?B-tCddo*Y7mseA*5v$6DXTKhuCE_OspHH+s)b{!erhX#f(Vr#k&jrRd z|1CsUo`p(p&+mbt&+jWg7rtG!59TrBVb^Zu zS$yrDfaY3uCs2x(V*>xIm$j=Xr$7wSe+p1{P*-B0ZlB%PJI4rW+m=*RcG6e^6NHLl zMynf3pg+37n}AdF?H??)G(+0AX){H=!T!0`SL35Na)&=}uw8!Q_BX2PU+iAR3N_#| z_~h2>3U%^A{zO44f^|Aofqzah5u1&`K?cxlu=M=<8P7;lmc()we1a0!N7b1EllX}+ z2h7@hLqNUf8-s2JhC%ZeI`%_V;aifftXU~VV|fL}X#lZ{g_^qI9}l>-E+n4_PSDrx zG`^Vr7YKZxBNSi_D;5lo{$K!*CWsq7Gk5!e!PKxYGeJFH@db0=U4MveNg4L4T+dT3 zouaaf5j%?``h!hqv$r6&01OpsN9+C4{#A*Gk7l+eoZ*g^M8;eV+Co`*JR~B--A8@o zv(g5~dhbbWv~s|H=5emoZcO62#pRSQo?i0xAAdtABqgM^*prsP{o_&eK1oV7hrHgc z#%F6`$eCb*RAlhl8xeWl7b1w$cvwUa2}=E}H{Fb(DUE~!hki5w;x9!cNfGaUHHY|z z%?=n8sVTruCX8D#00@` zx)j(8J}lDTXB=ovZ$Oe-cPEkatn-pGB+rGULKWbQeM0rRNFQ;0qNdX-CF(tq-#YDm z@Plf&&Yx*BFt^Jen+o&eNCUX>CC;a}AW??q@U%T4m6qtE>Hd@p$OAl*GFpA-W`rK` zxy}07+foa231`j6Fpd+-J(+{e$4TH?f7iLM8_MIP2{|m>zJ6&S1%92Y?6SR)-4bIs z5bvPg*t^gr*~^iOV(KP<8ST|C1SL4{NTwxnsm!#o`9mNsY+k%mntL~xF}P@B1y2?z zvekwOG`A$49E7h35UNtNtOxaV?=rH$VQ|bigw>C72zvY6`*go+H+l&Pyk`5})yQqD zH_?*koix%(Zc=g}sT%6;31NxWPDu@~0vVKE<+e3)x8ZQ~yvmU=0vcDyv7>Mz{a~Vd z1C7H;C45{dIC-Ylsv0Xh*+k6To$%~?LB&D@aOnllS$)lmM2b*v+3Sn|h$Ws_jD7bD zodOeH-&Sq?F>97oPUTl)3+H`VA3U+qZInF8bP{?5#JDv;klScQ9)V)*UIjI+AT_-y zINz{~kMopU@$PWPLO@HpSWPeO+O3(H_^UI`p%=uRnrur_W5smN`u4QsI8jW6OKJ>e z`#evWQGt)sixF^CJP;92mua5gloE$`F~_%~<;}yBy$(D*{O&*-Wn)!f#{U60sYWB{ zb`?L9^iZ_JY40{=E?@CQ-hv6S$;$a^W(Bz!RKYwB?J23Q^mCxXM4mP$!9*_%(KD2S z;{{Zc0pn&={pwFS^&pFRT}u;mnP_nKE!jkY zdbusf?}%%9k(q}-lRiUn%Krf}7_mqKzmfxk#Uj4$hk}q8SDqR(w>(at#0+np1}$oL zN|a2_xAe2W@f$tkue%(u&B!p$_t;&x0TJ1(AAcrHpLJ%t^a)#nLDSi!tAP<0G#bvC zyz!164u=MI4p`mSenyv*qL7XggLCoV;j9`Rw?YclV&>y--L7Ymw|$}>E0KSZUix)K z*QqKmFnLv3`_rZ6@-P_kFtIG1uIhT7pNki$x}Eo&2Du?*g#eX3)*~eYs%o21R2UE4 z6%Tu7=3X1-p*ap?C3U=D_uBx4V#5Nsq^V_V$vtK>D*sbjT()^_zQY7Rn`wl4qaPND zXphq+LaZ{(CF=)CUs=7XHl!yc5qUTr1mTqz-HKz2UimQj$H)GuMx@(~1i>^(g89Ru zByj*0+lQ@Wp!hbAZxm+g-L30B6*%!(Wrb8G#X0GfkF!gu1y>%_gqkN9!3eEkktgeZT(>gQi=U0_ZBi146N zAp56T^RMl4n9X=*rxo6Y@BW|Zgj_1qgxa|p5@tF<)t9=cf2M!&zJYM$btS))$}u)2 zXm(-NU){A1`HKkt^f3Ehe>5k=p{VP(SPq9I_4H zty+&YryBAUtw?_p$dC*TjXmK84uRw#!E8(nhQJRRExVE(y7*1kLWarl`7Y-TQIAG( z$R#A>BwG;hxA$9Io<0~eS4UHDruO2o@zD*G1_>Ie-A7UAg#<3rHZ%zX`17h;_B45_m4BwY`TEf-pN`DqV&} zZ<9F9P)Gilm3NyLkG(W2g;)EMNVINZGE-x51xN5drU&7df11c`yTBI-w5$%S^bbS$z$T5sM@0%}lsGmWe+ z+-b~?apA#KIt#vUxW=0;r;NvIuTZ)LK3#@T4ctFXFa2G3#!C1S`U~E=V7CxC({o2c z21tNNSdN!fAd=tAE_}C1YUMG>$Hwh3?wzakHtX9thuqRw8FYGCVk2m;FlHsdK)2J= z_iYOp$2`OQGChulk8qi#cuH{sV1~C|Gym&ZaL(Rx`l0xU|GMz0fdQPUYuSJo#Q9|3 zK;$AHZmXB{9*8Lxxnv)D&NYr4^oXPJbrk-PknipvAA825ZuV~|XCARy`1_Wf2K35? zt00VO5^%;2NoGB6H^=gDUosqep|PLsHVy|E;pwz> zVR;;9uP!%S0@|Q&DE92H9-kvB5XHYMAKw!J@w5IdDB@R$@e}N6NJ<_j$fC0WE4L*M zP<=?v8iM@hw9ubU&)c*!guk`l_Dl-FNr=7ufIT~lFiM$BaIm0Zhq}Z!Ym~)J^nP&J z;a2QrwI3`BKpoT}59bi*?0t@!Y}mD)!IOi;Ch04WPtITp;)ORUm$!tb-_PM@5gZc? z*Y;xS-~C-TgwRP$6ehRboXX%Z3w|h4vS%}`q5JnE&YqtKWk?DG9ktX z!trTo2l;Qg)5Bak;i~J2x;22WdZF>qxH2198eli-QOo^tm}_ls^EAebT*=ya>*M=) zhK1soLjnjWPe+r~f_gHf70BG0hqN+nXv8+XSe9Y(VV&}S~m{y`RPw%Mmw8d5pdm$dfJDYj zB8)2mtJg-Q=k}q|%gNN{pyCzx93NL8A+pwga@4bK(P=webvjuB9piV+Df0V;h(Sk= z;Z4G?qiWg7F-#)J+X`J5bk_ODf;4L8vHKrjbonpp{-Q?g(E;;90UDfGbhYP>RN^35 z^cbXh-=|TtqvV&0Gmf)Jiv`?t5aP3uHTZ|59jky0m@T>|qW=jJSV@?q>9BB~ekIYQ zRafxn0YSzO9?#vc*A^jm>?U~`PH^JwqIrD&?Q^?NmB*$6Et)z-FtkJT1&N}cx-3J= z#114XW;72lLhUqnSr9p^7^}$^TYoW5h1C7*<%eu?!Si=2J&%AmNesn6a{ur7Qq!L_ z*GeBL(wY*rd?ZcZKmAAu?H3| zZXIYg@5`4I&vx+wTiwWQ{rIfI{{YEHvqyKT&TbZL<*Ml1uavO(7F6pqb2y(GmJ2tb zcd{9NelNS+r%jgAOI&Un$}tI{jenJQQ67<-5}YZlq2(~DMMiy*Hn4rv>Rs+~k~_$0 z;H}DN^Mh4bZkXNe)J=&)|CyyhzVf$!uf2(iIH;ekQRO^V>DHo}$e;5kXCsv|7ZA^A z-SBdxh2+ld!Iv+xrZ$UH!d?_Zt(burCWW9SXm*jCcL2bWh^zMHE z(?Bf0oRopxOym-fK>q;YE)v0xk@HiY$gVuha{(uA@}QP9e%JRU%bwWvehtwnmIyCk zd$taF@*NCvyjC0%q@>X{)&8D35P8L|6EBRC6r?b%c9-SL*3b2|UboVrRw39P^NI`e zBghtQV-RH&0^r`o^rpVQHV}NbEL=%}xeo~-n54K!06P+SqglYUOZqRpiyC3M`hWWlYe4Fs3@ie&9A zMr(&B8gC!ssFj2=ijZairpkNH%oqxv0{n$yml>3#;MNn}6AnZvn5j)#2Pp!i7ScA8 zs@m@+mCU5F+?_Bb@?3^NQd03!kguM}*}Rmvea*=)TY_<`@a$ec5i<@-P$Z;~Ky<0M zG%iTFH99!I3C3{MrfwtSW)m~0N+nK`9m~)WLUbe6G?F%`j|z5XG>lblTzI?4UgYgk zi;z8AL37#bW~TS>(KP`{IYDIwBsqWj=rnu9G;qn2d#XxU3KCozhNfPgIzy#UTh{ zui|Uo4$p8ob+ghV#N$zelDtBgrczY0<(Z#D{G77@T#^B5$4q*erE-siZj8%xt0avE zbF5uRl$V_9R(Az^;%U5~q(vHjRv;jvBvMkDy`|I=QF7SVKk^diuMizsB}`=!D@$cH za7AyURo*mdnAx0SY}{nrsgN5iw7N-d@=s!&BiYTsS9I`d8~idHX*uMP^- z5tTqUbs;KpDCChsK-iiGjj#B0Iaf~fFHw5ktmTR!@n3W7d5>k}}0Fy(QF&SCIki?N_wS&XU#N(tUNX)6zrOBG^ z0#Z~GRd)?qxANp;5_}Zt7(GMl7P9z->m@^iFX6I$#5>F3=6R_xbf_`e}TfKf=q`@%&fFb zaG;Q-A&T6P;G|_c5a&{QuhxA-@zwFAr*fHb80bhEqEk<3{DK);B;aXmqGxnjh0CP; zw9HPzg%)aMdwoT0T`UIS`$;?#f+X8prD-0#jXp}c)Yv>z7xS0 zISB_9F$qa3047nG%!KS3j>)}+BP)Dx^;%0oOy?R;N=Ez~bV?l|BNAOg5@j;^XhHSM0m9`DD=t*DXOfw6@k&~NQpD07Loh9s)Y)9rR69mz^#1^d%%6jv ztWp!0VwO-63os!-)CZ+$uCE+R%w_>nlML+}jX?D%mnvG>{Yz0LMAx~#I%*xthz!ZS zfMx&yAJY7-+Ay+2q!P^aBbd}VI%%QSFCLR*5%o_|G>%4yYKW=q-U1wg5R@TbF=|^I z1f+)}=}c1MlX76OYfZ$m0ia@7P!oR*$Y>rTJs4gY#3!uQT$L#rmm!#WgFs`kx`GT0 zy&viFKzyPC}Nq_b(3DL=JV)qVX%(G^u zekNq)lBF4|E}>JHlTvO5$IE;j)VcZ0pQQS)GnI~IW6!K*@QO<;!;0b~8WKtz9$8#t zHQ9_5x%kOMq@RYgOlyM52YL>7@QsszNfY>#swF~9zlxm9prt0=(`r@AnmCS4$A+UB zbt)=8qD@?o>Q^@vtGW7Py`^qZY5+jcP!@NtqvqsCX^?ZF3Q%PbXg`jjh$O#&6^P|a zgt7{Xs*nJ+OAb^GLF4Q(Ey*LgO^NCW6lxLf#8_8(Bw2|L9qPo9Vh_@lji~9qNQ}QE zl#GAbUTC;6mo%b&WDy1`N)UnpASpyCP20XXhiP%CnLc!sfV6~6m61Y=n4nW*a!p&4 z^yk>VD~OTBeI7!mT9qgn^nuU@>j_}CD(dspL?DWr2GOvh_g|+n0E}5ChCA7Rq z88&G*o<#YQ+0JY7f*>kK<^YnEMFElyjK_2()Z*FkEsNI;EE=<62axkVwB~u6O)|IEY43#QjTF7Q` zLi$m;JJ-yUsB&E}$TU8!oy^3~OeW{xegG{?f~>A$Fo_|WN~vD2lFZ*NXK0|NJy+OF zcLBt4+;?S+&>OZ7ZkOrJUt4P zDN2~N5|t@hmq}qlpaVG?Q!V9Lx%j;JH-xFR!kX)c!q3agB@_@p)irNQX3317#OxnB zayCU6#6n|4-l%W@K_MVEb zjavigJh#K)-{Q}xoi~(&lgP}CU!{_;X0(o_{{Y=YgD8aq5aii}Kx5_eDNC3}8j2P` z3rjvZzZ>k_zubIzU|}Yl%1Wd%Ws_3#5|sB#+@yd9`k3cjdw^l4rDkFRb2_sjAtm>4 z3la(GXy2*5Ezth}iu{pr^i=!^I)m`$a(gYFR6M^{+sd$7dFe5CW;(%o=N?z9VrcVt#PfF54Q8`kIRV*4iRG{~Ak#S2nF5r#$ z>1S6uTk!)VnMopn)~umX8XSG<+(aZYob4kGg~ej{T={6k z{6wL@l%p|VwThGrITd2VoGB}rg(*^1F$D&tS(vt=l~OIyjX;Y_t3L=@S6s@?L(O#J zGRgR1XoZ_(vha75t@g!;h=3LRwKJ3`ICp0RbWR_~W#Z)~N|gI31!gpRsdRCzY|i%2 zU^{Wd@DnAfRNTmxwgES+ng%ScA~gDBRz zX%QmBl~cSZIngv2Tv3l$|yPBVzd$pp$kmS+IwRKOG#jaf_uiJ@jwGu}I= zX8!1B|wt;5~{V_5H~Td(Q@rkrqT1@XLD0>#Y6D(@)HIuvXZ7& z*vS=!w1UbD6jOm)55~dGKjW5!C?E15fRF$c%3DIl_76fDJC6b4(o~64rOq>@&MrPD zc}-Syg*e^askx7T>s@OI1Vf%gKnhf~M-EoRZQNCNxganPhfJI*vl6+948VptT(vd> zm37jc8b&P`i9slnhAL3XlB9sFrmhNtfHw`~BW85p#C*nwm5`RzoiEe*#$7Wb31)5r zlk;X&pZ$ zB+rnHvnA#$LS@j=!{vVyP{E7VGTvSBAJFYzBq2oT{+W#$G(^IQm*x;)K#vMFHb<44 zLQ)Dz2?Zg(#fA$Jh2y+7Y{gDj#FSE0l_GS>jGMB73_M)kHEdU6_;w;w$V#RlsHN5s znJd(P2g`B`fw+Tb8LvsR2vG*3=stUtOD+*PcA(K&Zz(yHLNeL*MElE+m=)^m?Bs&(-@UnXm`&>~f!?FPiLW2_F>^>htE-Y>y zG5oHYk%O1c&h*=;`L1;$geqe-(E6rHQ74QSbs1zvDKjcU0o-7yC@CR^Ctqo?a>Th< z+%^_k)(Dnx($o-|uqvTqOF4QwkkC9&^!EdeP?)(ZDo{C;M5>YrB$Z2Yi(DN`jBp7PNyWWk6SQuZncMRMk^|6}E*vxCAt#9O9vq{K!AwlYx+W=Q1?oGg z&{?moHS=d|e?&0&g-x5o6E!o6PGGgml7y+4uoA{qUXjw6y-N6X`0UYQDl`IO z)Lb|OlJ{uU`w@=qcj<2x!^^_0GbH?U3`%F>C(S}7r9s5MhGl`sY8+j}ay#M!;NPiT z1D=?k66w{QKU75-T~CvxQPTnf)>RB<5E2&>Sz!zo7wLMF-&)0@VhJ-`D5>NWxI&R& zRG=6VLkqjOG4yBj@Aa}r6~arGK5VfxFqkr}Au1#W25iL=Y{84T@zoI|h=eK_3qf)U zN0KQ@HHctAy90`pkb)%Z}9bz$tY)N5$ z7#`mL0P|c(7?7{UHQv>WMIcv^?Bed{L8;N;N=R}_i<+=- zJ8*yIpLtTCLW$5)wJb)I_V9u`)v)#0ec-TypVIBOapV(fumYp)Tvt@qT1zl-ce9Yh z7W#QW&kZc8m@yAwUYk|pdVUE}Cj(Gx9M*A!XjxpmtOBHxuw#`eVi`>VG!NU`8V~9y zQm~Tbf)(-5W}|jWh4vt@u7Ey7`4k8Mr;d2Ej%9xN@&BY5dQ^uf2My6o?B2F9` zXn#CMf~ZCvAAC~DXRhE#KK8CSZWdCLiUo8jNl_$_62Q=tR~4Xl4Wq}-DRNLT1WZY( zQ9ajp7oj9rR;O|)9PRl0>Jla8G$+H}O*(%Mrbqs#)@YYgA}(`33@TDqF$Da@OUtsh znk7mhfiI6i{+V#qNyB2e+{B~|M8AQBQ2>`h)tzD3rIo16>}#ZZBmOsb6ykW1jJZ;r5S+ zl;rqpoUjNis;r#UdhJtC){8UYlTVzhPUgCzY6?tA=)x2dumLDaiBWRlPNP=r=e{;f zQ0~d8Bmkw6x>5lJoHZYt+(!xR&N$A-d;}6iw1lJ|;!8QyGx8yTXL=gOv(^yw{LXur zLx@+M&t(~$j!6LtaRp{xBIC|107lqIf0jdf&B1H}@XN(73WXs8TPOmRCo$?q^abnD z$%|j6{hn7H;}}Ul4r0z=wX#k`gco47C1ldH^B_kh^C`nWm_&-G%Z(9nqAoOYT}zC$ zm8`7YEJ+Mae&-wJ9$JwiQgVP$fRFZKkQ%xlA*;u~xNi>_ObnSwN5e#`4&2qI=*Y3w-i2zKp;?G%*G!_Pv-U`Zf`1a92T?%t6fZxZ}77DG{JR?q%Kvw^;? z_>R4NNorW|{{V@cdAM1Wu%3&W$z%wHGOzu-LS!IAGLuR)hM3?oDfxnHTzPM{yft%s zKgMv0mbs{xFiy=eK&dGdc2a82#+vLSRO|*k@ZL7HreRFQU?!ZIh(WTQ!F{{T>NXvZfDi<|}rA2k?t z5~ZqQRhg(1vH)rqqner)vA!jGQKh~lbYy)km!<*KGFcJN`dg~g3@#)!m_}iGemq(z zW%J1jh7h$AFC3*wVYnYmewy*cU}mCB`I8P;MlTGd5}dA53Q|o}nu-EVSlq{4?Ls9c zQ8+{*VrG^^$*6WN^dW#HKkVuNmbs1_>73tFXbnv(luyi0u}D!OgbEuS_8ij{BlfBj7C{P0 z&XpX=1pff2NTFe2sniJWH$uK9r8x2~ndaYFJa70!Xb1eIiu+Mh0Z$At@4r zW=RA90b)R+U#pK0UWf1z)qP9w-_*XL^ut$5M#^OM21hfQND0V-0$@z#GVx=sVp=Rl zg&i{x6SdGuSqVtH9apwoB3}}bg5s!3*FO%G%fty~!oDJtmC$NxJHPb-qRuK-8y|eSlc%p1wf?{ zB~(-rz*rC|PEWDMuqGh|%jVgda%fTkER;c*itysE{{SUJh>)X7?XP@v+1xl`r5S_* zaP2wNLZ2XKp*evhFaS3;G0^*4#8rsF%);bInTQHQr3{xXQl?6p+IfV3(!I6p34VgeZK*y&MSiS*cGka6r>*_=@lnzE10*2VyIArup!=-bSrA$yV2_540&g8iVm9MQY z{+{9{;(J4dmJ*Vr%}UY<1W{syC>>hnyB27*r6;BO!PBU@V2YLMtulqKR7X-oXpmu~ z0|h&XQijx!kmj`Ui+DLRa2T1=C#`=0XbO~~N`jcVXQj40y8R^KcmSRsgv11=G}%d9 z)Fh;)TEGAdj6*Z1m(YfdQO#u3u^LigDon((%sA*Eg~E*tkkx&xL%Dl%W3XVSE=ZtT`CIk?ci_JxNQlikONAV#3DfSki8%=!w3XYy9U;MhY@VHVw{= z8mAb+D-AJHz|5TPf{{wm#Vyk96}+iIMl>RaN=R5NK~XMCf!IAP{`jwp6blulnv87w z`S>t^;Iov8p9p{nE=z*dG;dniJ?$3~P&S}gQB1<#-u>(67?muW2DmH;v3>5>j*BAU zMVJ7@6R0CW?#3pdI~EQagrB)^OZysN5?I{Q;2$T9w2=86P?}wc_vsUmKbh}BD?nH| z=HJcUjMc#@PeARjxA*eAl(hh1^I>kUVfTrEr}DFf8gRnQdssDUKG+DcDp@7XXyi4# zeGiNu<&Z<0%yBc)RL}f!rCzlkXFyX@v=KNe>kfx(t+*eJtv{RWRq?DE?$NYdkXYIuC39<-Xcp-~s-@7)YV!vcy(xo*X%O+2;1 z`VohFfn)TvR+%j)OZs^GYP3a*2t;&-OA~KMJ`aCB0pwuG%EE>1$a$9=ePV*r#D<~Y z-iO91aS*3s=db{P12qp1^`qMoAwj_u)Pd^ue!KZbI((p~bg;du80ov{dc;_WJ6NP8 zokVxy)$!v9l@dubIz4|k`tKN-vQ!F6T8F~#U7QcGc!LrVCvb9*U4`gHLssUXacg2! zsF1>n0*8I}>#su}0`9%%R)}m;@a`d@tcj6Mo+^7vmHS2FX!5|lX zHT!(Mn$+Qxp%CIl^!&Ke@kYa6_SOwe+tXm)D?*%v%Tfc0WRm38uS(MUQ$cvsJ7b3Z z#}CCwE`M<%WS{}Ib_31dZ7yTB^78{Y$TVC~qM`UClrxx zuX?J2#O87>S;Clxh=n(X|Jhth%LQT<543`b|?OUU(5EY1RlLOj7N zb-Zrp$DHw)&|L@1{%kmq<+3lHh-d{U-S}8=_A#+aKyzyfV`Y;#OvI$JzxI@tAUhL9 z55CUv;tU28_G!n;Wd8t@9<>EsVU*375EuYjn#B{Ob3gif;WJdkL@=40-gD){T75BE zEKim~NFePga9EcHg1FOop))wUNeNWniUTQva)JkmXFI*?dVQ~)fh`i}Dq>}(QWi=L zL1AAoACrfqZD+w|UaY@CMo@;)6+WS{P8GdTQg*$|rI=s0CmZag83>T0kQYc+Q9v53 zYf$9Zo9G9Izfj4?@s1%dkWhw1wWN&2C;$?&UWG4Iu?8#;j=fO|OR2h&3`v;M%F{g} zmCG{pL0;ISG0&Eb?g8ACt{hb*O>ufT#%G92P6d2B7c8WlRF%#IoZaUjid0cAcksU9 z{{SEOGI4#SlPe)qxtNBUqC3F}Kq&|%EcxttM>q7mvNGJR0(L4KNRZ&~Qv#x}jn1<| z2qd@uE_lZ+<5-pA@w23i4P1k{4+8C>6yEY{XOzV-uvr-SgN%|KF&$%>X2IHgJm zqgO2~Lk0i>&lPQGqaR5vNocWtRCJ_SP5DU%{eY$H9kEY<%v8Q8j4JbFK?_J)iv=i? zN7n7+`|_{X32BouPBL53GP9^UM5)FYwUOI(;zF4u4f<64KF9JtV+d zqDCSkq!v&tXwCP-{!YgV70dkbE&`)1?SU$kSP@RRnw7kk;!%>eO z1a+lJWdj)zR0|uD&P&#gY}n2}gFn4ONOqAeM9`O}_T~1Zc>e&l^OUS&@a~|MPAeo- zxS#~mpVpDAx)dfiTKbUzC`wE{O`UHRBWmInNFU1K*mCShzPX8&I!fjtlBEz5J|)c@ zH5^m>v}Su1@e?NuNdr2|kWOIdawtKgn~t$T_=JcIwoxLOaMsY~BdkOK6bB$JCEt3y z&~u7hISQ9LVakxDDakKF9*zFBtFtxe#y#u$Mm{DEau5oNl$`3y0Z~drHPlm~J8UBS z_+)&;ryAQ&tf6Xw4jjTE6*$=$fDG*8Xe8R7LrVoLV!LO7OCIhY5`$0n0m%nf1k~wD zJZzt;n39gjY+|_7(5bQ|NTQK2 znx`rOAh1{gf=GI?t=Ppb&ri?8c!E~yROw^_3xQKmU(62+7|z+gNt|VqM+ynh^;L+zMsXwGax5Yf9DX&5UrxOqD$tdBHiRk^l{$dKO|fJx!tTa@CKTFxW)Q zT-j7oax8)XsqUpfI~`k|)L^8bsRc?(izP@|{{ZB!2y~Iyhoyb;lO-)FO7emTuyRXi zz%gduH&;p)E<*$+Rj!kXO=^i$@NS$ zDM`&>LQFYq<{)yJT-ppK1xITMpqjV)#YjrAW_A-gOxYNjn3>2(3<*L$C`f<$1hFh?&l+c&>D=Q^<}otN_DOO% zf*E^M0f7|?a3V{`9*D5i7^H(r2YO;*IWoeKl@-d)SxS86A=%q~x|+0oW&JDtP~m;G z;fS4uoP#te3YjdtysA?Ss7j7vIWgI(5s?T0uSg33gUK}&BzGc)fw4IWHYAb>57M9; zYg)ZJ$Dy!LR` z@1$EvBsiha3ctGF>l2cyjtNl#2~C;9fGFjQlT1Yx(iB{Vbc*=WmxqwA<~vC&M$qJY z((WCc{s5jS@KQL8>0lmDp_&)5|i&IUSxA4>J7SNEz#dLAg@?oh}00<-!<-?ZX zcds9}I79<+4pIwg(V(IjAINGq7c>BlL%1};DF*)l*YypNJmIQKC>C=38VXU`%UzmKMn2UIQ zq3DKP%Oq0%=7;uvZ_NxXfqUE*eSA6V@@Nu(#f5aQ+`-id?h0{0Xdk)k%zJj@4B(Og za!Z2N^fVgpSb<3e$am`X@)w7QcTjL0)Kzzt+;9F;i@+)tb-Xws693a{E zDwcbD_y&)`!@*1LuA$#Uvv|Ejyf`8DGJynHtb5z*_r3uY%uNfp6}?~Htz9C@O%!x- zKt5c|H3|q_YjJZ|BIHmJ?Sp5dwGD2}9xln2k{pf5(!=HX-jxKd5oDn|cCj@qRC^J7 zw{8uw89^W>;r{@xx}K&Ikf0BAF%+mbEH9@s)+M|suV#U;2 z$UyXb{Ff$&__fHGftHlcEh&JqnyMO<1x+w(!kk|cl_qM`oHE@rl!axOgry{s5~GwC z09TzW9!dWIm0h~Wb`$i!wcJMnvHt*)pMp*whpAr?uVzZN<5t&2+NJuQeP?2mys(v<=DIxfoY?fk90-&xWh%wO;G}sC|N|M`< z9CLC-ImWMm?To-m(j=EJ-$cNtV`G?A$=;mfbK#$+6J;$Q6irrkU}m9m#pqL%y{rMN zc-ta%Cm~l9Nh*h%?C6URALxVv64r?5-__g?`_<_$fwr>wGRB1VQ$|{8~ zFEbG0G)|Z z34pRFN{gg9HGE)kU9>_87*waYNJqs&gXPgyr!80w3<_}X-XVF&bp(P#5XG1mEK3dA zk+D(opN8Lt`5BM&jIIu#)N&9^89BL)v;P1xZ7Cs9R~cZX!i%&J66Kp3ej|zTUN4DO zRe+_I36`meK^)mdDYf=+L&f|y9UluRGX$~;E3$!Vq!kCY`!zJy{ZG~{bJWOdfiAeR zSrVc|Fia!zCD4SskCjS*SXRP;@i^g=aJheYL7bozw4jx+JFyNeQMhNMSi)lE$umD{ z5~*TYN{r_VQj$$l#F{Yq=@`Ca{WeEnp3Kz~yBx;Ewo>7ZtU7{Y4aKVm zh_CTc>o>N|0-jU6Cw`*i@X)^E}4-1Epg;f6li8f;J(&S?n zrH5C?>J&@aBp!#5^&z$;$)R84>2lIMU)q-m(7}^OA2Zs^4jA!hNzKX=hHtpsHOs! z5phzD!ITJ6ivlf1?AQhH92v-!U@+k#s>v!?B_NCUOOQZtUa#SE5Bi11CrzA%Vpe`3 zBo!)nOtM+R55*};NBuz2sTG`~R_gsdFefE-24g2T5Q&&;l$nTyE9N)*fk;>)rm3de z0nRJqI9CeA0E2^)q#%Skn7B!(c^2X88f>kmmfp*tb0q~K<1jhW^1IfOY$`2?$MFPyRw^OX#OQm{*spa9|V z<(@mieij{bb7fd1PF4Vz0iqla7k1P~q@Diqqgu{xItx#387XjTgEc6t|6XJM~F)1dBQ6MM-RRTrXi@R3) z(T`=r6-vU(6A2?JBn1)})yt}*{{V-=Gp3oHnbUAG{KjHNENqi9LZQV(z$5U}L(rgt zLqkESN>&PMN2V*v$4o;Ms$f!731XzF=qPAS#T-^D<7G;lFEA{#ROKK8M=r!YXw{+A zn8BTM_(TnJCHv(3wj~bgoiDS5~fI0S@&(4$;W& zwfr`96Qc7&E6;LynT)<(6jkN=w=YatoU<^7$K|C_0!f!y3`{toDo2ryufqFBf#Pp8 zOq7KZ0FuBdGTc9Ok^y(Cx#VHdthEAEiH@?NVx}*4aw)hM86Pw14D=6!9-VZ> zbMneMhp4kz?0mLZCLHuH^zgZKu6anL#3hAph8CU4U_z?cuPGV0=M|igg-eoz(j6?+Al{@`gN6xptwdas1-7+p#+K^Q^m~DY88X}@IT9G8(C8d748;7!nkx`v zMu8Q?Mnb5Rk2WL%7_)O;^}x(26dasbQ0qgrb@6!IFy%}guX-?}YkplKzXB+IDJSnMmkwEJxt5V8Xh=daG6Xstnxq5_<(D7M}~c4a@@dr%BGQ<@5D zTvNjE;bf?6Xx(}HeWI-dtL5$~2X6|oegGF2ufJ>*Nz>oT4-0PXq~57uDD`%&K`cCQ z3ydh03QB{30S2X;%aQYmh*FXU^gElWfiz)usbFh{V&b$KZ`YI>iD1<<7PViSjVvh- zLdkF#9p0-7iw)a(T8M}TAba=c4_qwVV7FT_X?H80B06%tfIh*h*ZQ~;+f zdKz}V2APjL9ohXyQ%IE{(17f0;C+1?Z44C=6dV+9Bso_joBI*^{aHYkV$Hux`x?Zc zgTIJj;D4{15lG#&)wBmuB)AO4jats$K<5q}gWp(iLDt2K2R>2cjr+b?F#}K+6&Duq z!G0-+_x+6_RoK(#_;09&h+q-9z)c9L8;wXdW;F))>~Qqe{{R&FeISb4DnNQyZqxivK}WA*8Hkc6vfVogdJ zi!mN7MLqehE3qu>;JrLr_WVCqrD!NSma?LE5GWED(2B7DLXI&Wt>4}N|S zcyVFFNJ(N=mqJR0;cJ_U_pul>D78Qv2I=Ex9*~uD)coLy+FY;HNOXS z77cTL*aeaR8@s`vfNBRLx8fEdLV~uE=G7m2hVSD5KqZn&x6_?N{LavQ;zbyEAIuFK zK=qgOn^lRS?c0Ni1AqfQ-bauf=QQXzzZHoArR0@bDe0Ja3B$Tn>N=Kc^W1SI99jR!HeEBzWD6vASq6sY=k z2X+Jpr!8kZSBAil3e9?kKHHx6ylBEXP6jT&h{{VCE-HE^u#EpwV5}@r+Sm{no zFZ6f_P)^dKkct4JK`-{?^TP|iCrv&3EMk*dzm)L9NQSr=P4u5Rd@7 zb@0|8Obwv94hbm)IZ-8;0yqScYtM{YLuDbV?c=$y*ca=gL`y=5qDf-F{d#&t4U2ud zl0XEh05Pec;G{bNe|M%1jPF;d`n*6=q}(&_@B4~ebSx~fDM=2LF)SXSeeYf2E*kkqp!l3k@9e)YHSo`osu`DO#K@Ab@Q3 zCWJeNYqu|nlH?_W=y@>LZl<1Z6s91M62v`Urku39Y2XCICK{ACRa-(-0HGssunuWM z#Vdwm@eN!HACU4p_(TR$Y89E7)8%2lwX7=OI3SY6gA&X|UY-y2VTKCIqNNHQ4UU76 zJv? zQ*~T`uTKVqzn{JwIihY_x)<_#eIe6_Q6y!d6sMax2kg*9HB${CKnHR_sNh_`Kd8Z} zOae_wXY@Wi&AGx{tb_udR@ZG@!4nLuhYLzi@}{7(E5Y!1=e`3mNG+=kUjG2rgx#T& zC{@An6dPZ!<_beqBWNOog5`yHAUj&WToGES*5l@M>+D3I1QN{5np&=UhP(NS7$gKK zX<79b1(o?hsij!i{@w8#sq|n#YP%ooAFV4qxdZ?SVdu+!Lw)%{#5xcHog@Mu^FQd# zbIbG#F4Ccj$O>B~MBC8%$Ff^$;Yj2tJ)(r(pAu!Vk$RzL`t#NkXd9E6w>UR{duUmPI zyk?m5Acrl|>&JL(*Nh>>%Kv=K|Ab>zDM=!;(5m7AqJ$HDvgaQ2T%jDG?{o%<< zcND4CrVA<*02d~Lk8$o;VWL!}!=DEC?^u+Qk+nONqV5>f_6#fq{+7dl<(;{hVuffQ z%kLB65|;%@1k_nXw+`-DTeo5X!4L=pQ+M&!-o>m~q^5v5(Y4>o_K9FGaZylEP-hK5 z>A%$AsVj_A21h7&-B}LtU zyAS#gOhUDiO)fqCy7@$b^#iCk@PitS#YBZDFk+&XZrm}e7w>>dic5xjRJU95gaZIJ zioCKEq?Dxq1ez!oJ=}}csr@kw!b+8^kZ#~p^Ke+w9x4#f1yd2->3;4gOVfhyZupFK zY9E)@(HheFIBMJb_eh;C4&cZDZD+Ijr*A$U^kP^(*Z1WWjIv7r>DBA*ytNgI%(mo* zDkPON8xU!0T=%H4#1jZEM#BF5x$=f6AXS)Y>_t)?NFhiHQDVia)L~i(VA5I>0F@-d}hC)C25( zv=7{zHekfNfet-fW?4lrk@Drt3B-+vPs>OR1S)}tClpa=@IV4Z~91 zZyr42{{W?&dx~P_N}Pi?<0(ldW+ycqkL08&CBSNrkc(3?>#tL%p)Ld{89q{pgsD*` zR}1kIC=m?`2~#E@rATCwX>3#f0K+C?r7X(`RdW;o38A5-ou8kk&)J{&$HFnH_`F#d zq$v#PlQRgklST}=F3A+J)!H#U?DR~+cl}2?pPbF+mP(fvav@p}q6h&HU*&)gWDiNZ zR~ZEG{+*;ftO-II^F9^eZds}0B|`xosCXA_u;(bI+-AUCIW z!@tWwJMYQo>{+o9rKw*hJ`c{hNiCIe200+7byoEK&dsby?6B^^HxvU8}$VO^UOk}b!1SzR}k`zUz zQhp2o6Y}Fsp&@Ht)Tkv}f#VB_aV$(ivRq?I?Oz{}*{md~b7sr^%*0F}Qes9%1~%taiso=uVdWI_M>@ zERlyHmdi_~Bzc6T2+nnGXY$$vIfq%AFzK#|iKAcHBGPZT9ui>NuQCs3KprXqj29%5oSF`}rb0FuJP0mL|h zaD*tUGS@=cR1yhniON|C27xpH3$uvOPX$sjGI)~0rgsvMrI9eJF#@bJ4(YLagBpE5 zJ(ABIWv=>;sXUuZ>FJsML7(RH1R_@@(-~|vO+b-C)LCmWA*L9FKRiXHAUO)g%fUDb z__DB47KxLl;;}N(Af)FaWYvKyIRQlo%%Pb~zzeviW8gd-@dJjHhnJdU+=5_Xl3Gm) z&_Y=xZa`vg*ZJg=Mx^-l_?ORm-K^r~ncj~Ynl?kz8Ca1DWZ-0Z3e^r!m{C94lgni! z;U;NmKml<;3Q~zL>h95Yi9e;?k;C?T4xAw3v#<$I7+NI-OiHFCAMvhH6BjuS6P%LC zcG!Do^t<%VcNmq1z^Noi!YLv`l{_IBoWay_Yg%$lPGZ{tDkubRroPmXbryol^fZk5 zgYfIqJjyIck)#p-0KL~bnpG)O%z5DqBu&c8&u*567q}rQ1QASe{?72cMi&o@h(xSQg-Jx>3Ct98B~t+;x@a3g7*Ew4UJnd$y_}W@?eJ=yg~hE1N=ThAFeX6- zDO|LavQ!h7VMyjz$8@Qf&UChXB@>pz%`${fei9f1n6Rv&ConmX-~!dD&~sbk^WnN*;dkRhQ=K?wq_l2%11#z; zf@n&I3O-kzq{N@eV|r4MjIwk^mWG&Rj5H*G0~6YQG_KHgYZoSZ5~Qq5l%S-5#Q>Bp zTbD^?P_eC;);qW8hiuoycuF{=x#C_oh2qo0rxg`SDk(x0F*#IHxrixM(nwKyv!wSY z;bwS$5nti4)X#-IRUQ)cUQa8V&FP3!F@nq-^Cp&wo9S%IRuYQHi8Bfb%aT$z1jHi5 zjB#!ODt~7CKzL6KnLTr`lMfV_tV)!mj2yz#%13 zq)3~9#ZQwbv_LG6m!wE~1#W+eQ<1n)@ zhDsHP#E}000&Lb&l_-BCAupJ{!$$1&E2B`lAN*AHzCokLQoRS%9U(2N@nKSnjaZ@H?Ql*5-7&(YZmQawV zO2W#408k_wU&I})>}Ef+91n`m#o?BmLX{~B85Blr;U)X1C5Ea1uyEonPl-;2LCyc%gU6FUr1 zhFX&I6Ns9D@a6*QWg=k=p`G)}46!*`@L^;Sqns5Q zxJe2Cwt&X6d{JbXHdEF7+fivKF(GL!dk$Ay>9mvtBk)=DG|okqhQ+`3vrCT!g+JS{ z3^BOy1x;THmxRQu%*5ajoIK!ERG_qfyAa*v)yorikFfof0~gd%1Nx1lXk%3_ji!iS1bR<3a|3Y4tLB$TK)sPH5b z)(!#nAjeQ#gmEk~Q#C0lT6@lbMpXu}EM4w(ur@YkbCfD*Awh8^re#)`(o=92s8Qu( zLRg6fNQn%EqiWKU3P{?Z3P=EBWZ~RWWSpouRV`(fm5jqGhzhA{fcL3xk>>B!Pt%ky zhfbY>!=xn4X_Agar{Smc1 zRLe?he1<_FLz6M1EFvy@Ck+54E@Dl?NK##4Pp$Unv+|Yjc(wvsege`)CS0~9E?feH z0`B)LM=>8Te^mbfPX`Id&Bx)9G|Eznrpw9;EEaU3A?Z+QZ7&qx;_vX;EtO{(H^j!1 zl3X0WI#eu+TxGDO{#cUCP(md$D6rBAd9I{p$Ov-8wH#hM2mEOLN1MZVw5|z?m|8)XFAte3?u8V)6)AxPxnxjv0yuXb z0vxUqcBUvRO+gBF0=6|YsO^l3ROHk6skIrJ8K>RH9Wn&oNpMZcoK>EN@iqsY8YwdxZX1ou*n26Yz50dJt{qHMcJrJx>~!6i2}E<1CP_jA2XLVrLFJY z(Rbj00H}L;*{|UG)$IzVazl!^{k#_k`j)`Kd_1)^2YR>D)1kaHB$|Qa{PF&G!iV^I zn6<5-x69HTgs75Pf=|@_I39eAF;D~zPu2?|8#d!l3&D^M>XJuhE{JaC~tB)&2QG5D5+munhd0 z-M?-y%m#pMMuP#%dhHSrkODz01N#s-d%J&y@bPUa)cFy3l7zBVV_P%0Kj#O&BF&h9 zXq|QO)0OGGSU@#8AE);Uz>rd!H@Km8ukGW$2x>@316IE=$kTU=GSC%$UA4EpcIOfy zAy;-Zps}?+w>Q0x1w;@lsbRk}X4ik5SVXe+wXELt9&srH)Lp=8lW!pVT-*1>X{!kU z3f1q`^yj=@l_;c=L(o$GBDz7+03el6npKZ9@n)mm_>3qL0IS8YfDY$KBsx{MGL4?4 zsc&L`=FGRy(W~d@sI*y^E%NtS&FgxX&|k|^@hnt;ZS=XN3q3x^-w>+Dp^Th_5txu& zs6M>>E8t>4PV=?EZ_QACk81aEYGM#sjoa@30C>pBAH^tHafH?r3@U0t`<>M_R&^3AN&$nL}c$$YG2LkK}B=>q7dk!%ZfJUW&Czb1_ zonri?GMqBMy)R!+7K)rA2(dH?EC~8JA8X$g*34eJb&U2IARulYoq6kbwH_*R;Ij}~ zl_$RxtCxQq(-jwS)9)Es38n8|j2iFEI0mgwEPjpmBNd3L7r2b(7cmY4+eZWB?O!`mD^llSOOOEoAcha_ z_48B5IH;<8LK&1;GiX6R?;9>0_iQKt`mj9r8g+`K1vcj-5}rtmKxps8~7j4MB0I*E=C$-P`~HB<|g9^ywA+z9A7pi7aT_ zkDJ~90Phh7A+nLX>$f^{FRW(ps~~qvkXRi9wJ-G-q+fYtZR<&@LO^Ea`68YHzkF6y zrX`OtPtNg~NhAYLztZ)ijUy%GvtbJeaz)shGjjFi{{XvUtm$ht(!r|w*1tHI)gqNP ze+wO$66U+D52(#n{IHK;9St(j1oL(-^`Ses7%~M&G$1`4m{ZD>>uN>^87nzcr};WSptgnV)elX! zjJK7~6AdSQN%b*dOA+sC`K@sYAT!bTjV~RAPsCUWps3ZKaBkzuw$~+Oxs#?EO3f=% zLM~6ZcKVZ0*o|Nsg5c2kTiMz)o+p70qm&mW!LpkGPTnLC8t)k@Lo@&cg%VUlCzk&J z$;WF@j{XikZdI0pE~M-4-P=gUV9sT$F78}2(!koR1%=I`{LAx0wi*Jc;oO({5qes+ zxwTwNA&Db>{qypTQyYO9i6|+#49XRE+e_$tT;G{~ZU)vVD5=;E_pERMihl z{jas@;Ky0SV6u|wA>A(2H8*3cQJJq7Jf>uyAu9L5RJaZBwhWKPa4>*)YjaBs+`Rz;YY= zyWqstSPqpMbsVCy@Cr}>pflJT^Ay&WHrn8$G*XKgjzz&Y2IKw?5X?)coj?x$ZPxvE zh?RlLK+40IbFPm1H`W@g!)OXCsIUY*d$|N!oz5mJNC4@mYkMsOoC;Ol38@!rQRsc2 zSQ@jU75T{=0$r)*m%9QfK=*=XAS5$@<$(Z(=YPaVo)`j12nFi?R==T$k+X0^6|pWT zLohBrhP?Q%Fsfi6>QZQ3iSXolvve?Nz+^5E{Ey9>rFlOnqeso*Al4wQXj+Bn{8z>W zbAp8fQ0uRN(Yo@Cl#CkI)Bpi?*0g#zpQKwe+0st^i&K!G1Ba<%O>Dx1JJ#64;$~$x zVxvZ@2h*9TYBxB_$>HRbFmO$LJnK$R$}C*VHyadH7=Y!8HQaa){aTKA#7IFPu`UCb zKOt-So0pBVhj8+uQWHQ0TD?Ge`TgR`p3KsyMb;9|<=WoH<^KS2dorc9Ni3k@v>K12 zH=J#FYz9)05T!Fc8ML)qLE*GxjO#N`%iFkwwyNGR(6gps*A+*m)i6$Zu?21?TDt-X zXD!9WN1OuGa}k@%-^)sJjlTyWPnk_ZC|QfxzfJkMv{-qB+INB%={&dqi`SCX>|d9r zA|o=LMfM*3_(sWwmf$d}8sBn#Y5j<^b2+stBDSw_B<%r!Vj8X3hVN7346x&&bL-4T z&4ZJcN_(IabA77Zt~qNKlz7TYj^av*txo};&-MD?P{6oXg{z^xV=*lhQ8a5Gd;0l3 z268{7*5<$X(3YU~6>o0%yaTmJazXF|rQR$i!=Q^gG-2}=6i5V;=aM)8p4IV37&Pid zowU)bP5iGCAQuE%UvF5a%|_ghNfe_S76A7gH!S_}AOwPR9{u{kvjzvp*WW0&mA84^ z5_c$;yN5O$REyoaVW5YV9!giUCTuFeO}x0i3lQIHC5h7sRsEDj4c)MxRe3XvEAJiF@cx ze0*E)5EQ1|NG@Cf`9LMXvli#xoz5(z1~qrNZ=t6Z@ADL8p_WwSI03i}T!2ZrW@=KEd|pb*lgZxhebxM9 z9H2wy0FAW|v9BWW8EM=J1@{mLsb=6?`h9UIIam-QdB?E;mRB}Tv=ZQ(L@tQ*v@1o}s7{wA|5yQRMi z@H9NESdub`%i!cv=#&8wV!}kZ-5ex(nQJbt;aq?*=Wf99TwiGWS0QRpQk6Y3@e;z7 zkOE0%2Oza5ST%V^$8O*DyAi~3JVIpI^A@?QQjkiP;Uz#2ms5tO`i;zUkN9xum1|zM zXStk6Up!>e@=|bSBL^_g%?n&asDc92l(Aq51xEPwUun{WVQ`pNK$kL1*~&>YHcfc~ z&3gC<NwemHr7miKNiB7jH7?+jU_b`3hrf&;R^jV^h)7xwEt^!vS<{T3Lnts1 z-z7POLLy8ENJ%bIrEH)Cs2ps6qFg5v!?->_i%*u2tWOZdVdTsz1e`pxL!yE+1rcyq zN27Z?!_~t$8aR0}(52#4i&~Jhg}mlgQliPo0U)H*DV&y#y69ZSp7=TV6U+6svs4LP zchpqQPU#IhHA&pcYI!^5=3>i~h^UvBl_*(=Kmf4h;^!Q}&f*6^ zB>)7JECZESB!AgLtra^(!KLwuaxlsS$&jT?0Xa!pl$KU!&XU5TOA1mr->o&Kpx4@p ze^O`Dapoqo9L5yfBAAO%mfH|4K!oI}Fp*KVfx8Dd+9dG&9}UA`@R(#IsG}w#WYi!P z8jRl%Hf2}&5J(lP2+}bxfKHFftYf8GM>CbpIy0VUGLr^E zXlYdB3Me5_;zgZUmxz=Eg0z@}cIILM@e3&XKptm6Lw7J5*r)8{13SY?D^ zOwaBQffxcta0AiVv>|g;mA_6P0S_$mN_)1 zG6ng87S>xTOhmF%w1A?P1b_>GIeVLu^lW9Zn1m%O1d^o%1cq=)pgh}PH);seI5z`S z{w0EBD22@crRqYJS~0NPM*92-^x8L2{v>n`O9oYQQl@4c%<>eHVMCUaiiwEPRFaaA z5>S9tTB;%36{6FMn1$Xl(e-vc|vFWXTtp5PT?#^MmBgS~A zX)%(NB}wd-I$9F4J|FI8gd+|>D5T8fCo`RC8|U$(tXHXe^{6EBX_ZUmx;{E`DG7-v zh8m%&N(y1c5SI*(mZZfB43ZDl+}DYTN#cA#X5UDRJCFjRslMtDJfuR?(WYT!4p$wvxXj7H=JhEuqFy1stoMxc<`d5 za3^?L)WMj!s3P>PAK}VCGk^*rq?Cf74G0P#mgV4fjg1(PlngrrX9*qCmB_28kK`Km zDF9ugB4xSmmXg%j3@uBMz?##Nv89ncF9eXd^2sR?!CDAYfa*zb*o8 z0W%V_l#mDqCdZ!aVX>1X;Ut{17L}@6{v5|D0%lbNoVkJSsDrDD(y_hy{;c>gPEP_h zgwy$u)ajE{XbF-;Q!fr8Ah?G$5l3;_ze>q2z_M?QcM`$L#NiCwFrJJ^E)gK%b_NsgvUufAE$KYm;M$# zSJiTYP-^{sJ2wg+*WOM#ig zibp?kd6aCFi4JH^CM>kN;zdkK#)ybvA!-Res+UTOs_t7Hoihy8sHi9?5Ws>GUAZxR zZBXnZ={^UBVWdiA%apvzDhnt|h)E2bq=y86GXPj=O2%2rvp9gm8`(gn{u}cW^#Ben zN^>xjRIJPZEDKy)r;p+>JWm9L1*Hij5?zB1Q~|&a4ax8km~{SVm6&^!3c;xaZ9Egk z+Y(0)$#8QxRb(WZ1_6MtT3Wg^bM7g_R)nu8e(I_X+s?fHRczakXGllOWmMFc;e!Wv z0DjcIHVitQFPN>1wOyI4{{Wqs2<1Fug-lbD9Y-?

      S&cHnVjCGPYl+Lm-8^Kn_C( zH!OG!_j-cF<06U0DS84d8lW8jC(p(?&M$&21uUiORJ(?8$=Thn=NI-@s2GF2$*=@C zaKfLbaz(LiGn_CCTCN@Ktr&Z2#;e4*IZA=Z66qz#EMC=PR=K5YV(EpRAwYWVdh zir$pqis2cG4oz!7&#>|Swyv#+;Y$QEbtDiCN0n>6^l=qfIno%Ys)dUa=@ejJmmWJc zaUhya3jkfnVeZjMd?`VLHvQ5@^`K#26Kx_K?sE)>DgbwYUsm|X~#6<^r55EoiQaNElDnPurxnCqj%xF z8!A$AR-u>z<@L%4v8Psye?On2arM0o3WaEX=k>)E&2H%z+T&63jnfOlmdWn3wy(7) zJ-lOF_fdqyj09j=f<h|adyT%*MwK@L)ch>3- zZ&v{R{kUr!Rh=*tK4wu>1KFutbUv}sa6AwA9Ha*qvGMY6?l4}k*2;x17$PD0gL+Ba zeKfm|yZ->o;%Ce{ZC?|$TFrX;M@8WMo|aaEw2Yyg>*^ayJ^4nV>U~o)H8iBen_8ig z$_a?%IVP=BT8pq1^Ft%35?qr?btG#|{bQ%g;qs+RmQsLwqP@`cXDkJ3KM{|n^Qe(Q z3tE*8BWg;^x@}uIY7%ZA>MNE*FAxfdGI$mysJ z6%99(&T2T(p~%WZikWC;G{i?qL?j>*JxUvQFtfiRl)@NgV!P#P3l8ZdfLiw~)aRqr z#)ZUjl6Yd!kA{<-Kn9jnd&a-Tk_j!dYgaL8=W~!{rsGPXVQNa$m6rrKAQmBy4CI&g z#3+|7C8jLUfRRRU_i8Y{xl!8*u4m!8#%!N;zjm9GnhM6u#9&#TLfKXJV zFfKs_KoSc zG@%5~QZodyUol_~u2?ezKuw5^CmY7*e(5r0GTRG>S@^xeN5V>~qt(cAPR~fVI;HUY z*UpY4M8Q6|-lwS*- zhAB`fn3Y%|NhdG;ic(2P6b?gHmW@V7Yp}dSh-3JCvZIT@1RO$gD=I!ByM!pwNlOuQ9dwM8+**%&GZSL_4IDLU z3q5scwdNqr#}Q$|g023dQ~^7JTysV}!&uhsnn9F?%*E41O-yJ zG^5@829^V6vZl;7 zgmL@^F*wX>gte+q!DRA$STwTVkoP*$v| z3sn-5qQg+^*N;*5uGr{{R~VyllKQ$?~&IN@Zu7sdCBARV=Y!&esuY zd?R%yr};1XzCoyD5H-r?q71TnG%!&UE=o)_q()QxxUhqOkyTs4+IwZf@k^5{9fMTG zVA>vQ)ss%ZC?A5L5qa%VT6ctl3dUSI2^3p2O@PUUN zM2Y~#*nkfKs{a65d*Zn+l%N`tK^Aacw$sVTvq9oe5~TvvPx7EIT58)LAn`vTR3*&M z!39eSmsC`3EReK|{RzE(jf>btd^u`Di@0HJ2rffYYG09P(KyZr{L&_X=Q52H>|7fF zAEwRHE!p5d5fRp^Aq(Hz`0AfI)k|kJh?c9uju~Ks7#*`;&JDwiLIP zDgx%aYYjCOLo+_QwQ5?P^oBBlp=6t-RP_rx*T;6kVf=t|cY0Ul>_mknPEmnv9cT&yTFI}?31 z2Af4+GBWXU+_cL;F((|uT2vYlO$dmhe<@9Y01t3+kxc0VP(UX-UCVRdb__M>#q=CT z2N8(GDpKyOaLAI z@m(cZi#}5BNYL%6`)wO!g`!p+Qk0YNLCQ6z@6fe~y=f34Encn7z9Nd01(Gec*Jizc zaO4t2XbpM$rr$_;DNrVkRA}PW@nQYL(1s&$AZ`_654Vq@I7tHm!1!a;*gM}rOJtP zn{;ANo{TPIC+Q6psdCJsV>gd24njVAE{G6gOrc+mk;;@u;wIoiKBOut9U)8((&+{9 z4mTGeAg42?OO+%FE@5^hm^FpX1$K^0$GFUbrKKw?og}F<5DG#

    1. D^z}VWxjT==D zMoUU)T%R`6*)%e|s%`**ok4)4W)mAw6%r!ChUM>BQCiD}=D5~zIFU6*T9i?l3R}yi zS(rJsO#v0HZ5$7X@!U=`A39i?5hEg!prw?Lh~ylg7Gb48BD+0GGN$s_sLWx-i9M+G z2g-t&3MMQ`XeA*9Y>-CsmkDP8mtfe&OHh+75>gAPN=XU~LX}Z{wuKEIqA-x(%EFTuh#Nv%%@|-TwIq=rCzZS3Mc2xgH)wa6!8{7 zWCKdzXJVHwRK&3aOV{&O++|nf|gn%=UqLPr{f|ecQV{5pq zVXugut!BBz)V`mQmy(ASFqI8bvI-HP%AsUzmXn6wm9Ytkwhm7O;k!SEorqN2ZZo~` zijgYEFjyq!3QH3D*PfBKc5?wCFFInTl7Ue(_>uuN0>*S#hFanTkcBW{MRK#2yiET9+ek_uGIEq9 zoC+){LqIejGgPyP&rXpui%m);1xpA}1O;SG6vVj9Dj(MIfhWEqH5Q=GCvzoc(~~nf z#%%?1(c$lrg&k2MRLskxXxIS=hJXMGZbkOpDi3VMgHlYC_3nJ=$v=_%O?Jo`g0LBrEROJ*-oFpI>1!g5BRsd1MRrN9GuE0!| zB;xSON|cE>Pm3&(nrSvJLl!;)y2dd6H#zJa^W(>=`7FFdZprfOn=OiAtbegJ23`n_ z4ImOz`KrT`8G(Gq>Fl(p5WHBg#F)AtLM8$>nV}aq*m?=``uOWAD zifGypG^>H3EgWo{jTS6f44EkeK$}Y9B?Rt_<%1WxPpJELIO&+RsWXJ^qyXU2g=@8( z+O;>NdHWDE0J2;F<-;0z3XK?g##@aJXD-VniXeK?5)@S-NoZys;G!zdrlCF!hAd9Q z%rZjAODQgsO>6TtZFG3oIG!memVO>qAiDrm`j-sM9-Q?r5HlG$omZM=@=)QdOlI>^ zvJ$Xif};^})|hEa(UOp&{hPRaV5a{7>EtOO=9s4rz<~4}9BS0NMw5xfnHYRVAXg-{ zsRZ1p2dJ*QJY`O`&gHQBqtnitFx>mP}=(z$Pwj7F{uOD8MA2nH5tCP+7eh z#s`P2fWM3aiEd>qDBU{xJW=73l6X!l972rTdXX_oYJv?;=?pAr;0>cldV>-q4PTk6 z65@qRW@S*4Nk|_mF66V+5K5Tpv1WQ>1x}xYMp2fEhUQHbngP}jNmX)O~GD&p- zS5jCN3%Lcx$5VL9Ul9ly%5-kBN)nh_mq}%7DukcSH6;v6OeP~xC@vjcmB<&x?ifVe zDVW{!GHOfGvel9GCCEIhdl;$N)SNu|xKOaNiK|#aB8gg*a|^SN2k?z+kpgQhp3BTM zor*D12nM04Q$uSW^ye9DC?#q;3xZ3M<4`Z-T_b+XuwFmq>K6(^of>ULre=-dXuYPDlhGxb$ z8z@aew+Fk(yWhj=@rTFBbSov;mn674u(fHue4^^sa>5ijc#u*N0%j1ILX&OL8NlEW zT#!FpWB7WSX$oSnYh4_RH%i#OsZ4haQo_O}B$Wj*B(*E9tku=_s2IGVgOW)kKOvfp z=k43uJW5!z3RZ#YZE@mjq;0_fYp@n{vS6#(x_a`Wd;b?_-r0FO{K@;jG5-TPn^gHi};mbaHkQrRvIUsJz2 zP!rY}5h?D#_5sUUkK4CzI3$wJcVJCC{`IMVnv|thY6oHn*fXA*ZaM%ZPSpd?9jN#H zjc`wHdsKP*c!}--pwa%16-YA*fFYCty#yC7v z7Gz>qD4ePwkj~}B2%)-J?)_b(q<;xt5X*@-Bh!6f9vY!eEizdyaWNGzjG~qs@Y4~O zRiv6iQk7y;=N!|uoB`x36(UMjKqX)YBDbTG^q_i|wGUA2pJ?VLb{h#kcuImwB)XJR zq|~2@R(&0fo!&b2Eu^!VnLN5eW*n#BzCzI{Hi)SZrqHG-h*XflY(NKa+$}?nBZ^PK zTd*u@2q1-Q)g-014S4NXY;3$#w4@Y?jaN}hNaR&Q#jC4c(SWt5O|zIVv)Os5Y5xF0 znk)GbRRwWEqQVUm<;6`xor+Wqss|XcgvQ~}w3Qi#bpZ)UVAj5eN)4JQP}ZhMQA?zj2G_Pa z&kvO|iQpuyNhnN!qD-WeDNe){QH_Uzd&eZ>7?0UwWq?vwnxK$VLM{T0HLGfOCo**7 zDUgVWGrxzA4p9mGIU)>5h(zR6umoJ7C<28G0xH(lc+%A^e*`F!mr(eG7eF<2Fd2nh zRr%5S$7J}7wW38(EaYGc2o!OeuR&}2b#AvW7l)ZIHf*E;PynE9O0Q>OyYkIiuSsIb?a6bNGtH_H8#QJ(k9jmWwd2ogF9}V~`K2*_5CGuPpD3xgEt! zQ>cI{NTJoJe>~bL98yA$e=sf?jjT;Acl3*rW?L?m%OhnOe7s{jE10O9!gd;=LS)nB zrE38sIPS-aoE}+bWTga^g`fhO1}9(zZWy&oF|<^hiUb!aEL!Z^+MsiC?ONJ3kElIf z&N8Soxp1tc+Gq6i>S%ZzM1KY|(MCS19S%xd6<0?cb? zCHB{CXNd9nSX30QXhMRtP$?m_0D@lh(az>H*QxzmPO+9mjO^4&crxlJ5TzCBoQh38 zU_lSJgpzq?IOv=kv&+FLQvy>qV}d>@Ny`5K{7v0$2^Vg$%Q*LHmpDvJr2?W$0v5{g zcGBC%J(ic1(lF<<4D&6PoJ{k;wQy#moROW(Vn@qm{{ROp zvQ(HUqEe&zf7~5AZIlE{eA!`XxQ8odC1KOj97^u0b z51LryKp}xTUc1nptRl4RlGQL%NVIJ)UBW-R<1?B zZ|VAR6ttg)LhA2ROZZ!3Ur5|cu;EEBR^`;UmzC)mV?pVey-lC#+=DGo&dl`=YnEkM zbQobvjTUNlVjKh|C_qtgVt!WObB$Mx;?ae|Vx}p~sWMkFLBq2ab7JHTwyCMyJ3E3H z%tWbqN`X>y0kz2_3NfiWZqfGX(`_-4bTg&B80e;3lpMNuBFdy=>X-H#27Fvrin-gdJSisCrQOPKPfEoqhlK_N8>bv?kQkE2JozfJou zCQb%q#DuC^5SH&PS;QN8yp2HP4KSwt;AEtkTY&t_r6g8-;F8x<9S1dZd=uH*)8UlGjxnU|LlE@E=j z6(|6!@(ua5V)WJGrcEY7N{Ij`DhiX$+55D9j7`LAcU2{{qU7_8+bc|XxfC7CCTb%n z%>v{=QDPyL0L}Viobm21j10vLIX?|>evz9N=-p7T)AQzk*9h51SKI+h>E5= zkUdHja!u;j=9e^W>xRuGeZs-R5NWWcytk)V+A-Lv5+ywXszPX#)Q128rkz2fMj6iX zcu}Jd!$O9Y5U7hPAv+Mnvg=1ScE?EIpB8+?$yreZijYm8r4LP`llF^`B0?6t;VI0t z>9t7@*P$Vq+B9#kJwQgAhyMVlt(q~qgV&z8e`GDhwRbC1kak5 z62Z!`-A++b0U$sB06Ye!JX!j++o@9K%)_E)V6a(~f^+UunukqnDAB3%I=?fLo0yxF zjJZWcLj|HDzH$PMRDufvq2k!;6L>}$a;3|fkBSnaOP2+j;iw2UHIFu@wK%}FWl>8d z!+-z;xE<9Ufea~Lv3X>(eL>gLQrT8d2T*D`@0yRpOTtXl`3hRVNHC#@g&T=r7z)^9 z7mJa=xIzs4QNrO6rU;m|OO^aXkQTOb!Ptrr)iG-eisM{aWoc5>DpKfLfoeDbT6}@& z8*K;STRPAgT&Ak)?tT9Nr40PBo|4hBK@l|^#3GH*1jMmX5{OwKpPG=MAJX*3gO2U4 z7Z->)4h4mqJ$Zr?j#@;_IiqFnNh%;INe|wk4aj*Ov4Ogym}QV*2w76$%}wu&l`IgY zEy)Q|h$IA>HzkJz)kdg}0q!kj*Qs9m0<5<%>Or%R6<5*nGu5u_S zBnxH$(d-x<3!6r~q8?>5m8v8NfF<`SAe5vBe`pl5%rOb8-&B+keXmR-lp383N1iw<3{_r-;YKMd!X7#FD} z+f9y|bkxE838?=7+eic{lycWw5&$0FGA5UeDU{5jb3BHne1KO00Xx$YDnBS)-7iw+ ztkooA4~YtzOt}PQP-53&bkW7nUQBZsS!P;9*~kn*vpFt$2m0w0jc2WAbyi{XA}GR@ zmK$Ko!-i7|8UWgo5|B27M=kBZ#zO^ym4=i8feTn-N~%ruCgruWjcOQ~{{S4ORHP^b zl`?mJK)GR|du$=O234wcG(<}2ETc1zH4Fn5VoDrOlMMmBVxq+!lqEmTR-gr3QxM{2 zaQrDz$IrtjGpQ2hEjfq*$8_H|mg{I(1@R@$_*hiUmZYmFQA)rsT+W@El{Y%G_aEUK z_&D_gtlcq>)sDJ#GcM^bOHmCOk&l=n3Cw5ZLzNhDCZfZG3wlA@RVkT7GYoP5J^G!4 z!eS>#;CwcICmAn1scRCGHcS5i5K}EH%%&%E$ZH*2h4B1T+&DZ*Q&tq=2nK2mLnxf# z)RS7+*I^l-Li|gA4NrirS2L#iLDKn-w(I>jH5oI#LDZ4pOvuko%hd^ygvx-4SaFie zQb8+Cm=gNL{u%m@+T1LhR~es#M-Ez#!;o;3u(Q&Y&}Io*oCg~h56&{UU;GCNRLNmnlDg6+4U3+8c*>-{8)Y>{vrC68&OQ^NzEywU_vrkW{uMmlR0Kfmt`p} z4qZ^?*9{9=&;nGwq>#-@V|2m(onTK3m4}{l;u9|@DVsI(5*)Idt=*r;T^*@b6N%1V z8Ip|kQ3;rdiO?f4P$kaVvqq6--F4M@#O!R|LUL*vqs5I9C*o$KM}$`q1q+I$#aGNy zwx3Iq1xR+rR}a{J8zNA{Vx{Il62l=xDCHw7+?xLYCoVuPL`1&Y;%8!1xsCuUBpGtT zKp=#MO|MECur!TunABz-brNUhDrPK5>x~ggB}r6usHsKEsHCWZ!?i7rizfisL`s%` ziD^JWML{VE%Fjk|uyz8ms$zKN9O6`@m7K>pJ=O{&k^lozX;$UCGu>OAW^oY>Q)^tQ zQg+KEZG@G6TO=eBIC{`xY$gK_heC!@7G2b}6JmE}ZeHeZQaM{dyHWvEfn;S|=_^uWvpd_DpvVgXlK1FDX7Av;GOQ$_vT5J?HKy z_WgBtT|zbo>Ji2uYdm-NzL+5vUe|x!$$@sow9NlXOMcMXxqEuOviHh4dDaQ@RZ(K}- zThiX0WN8qp6}(iyCz_ZiWMrRjpOrgIDnd=D%;Fyq2-GDd9&G?i_62$JLi%01Kgge- z^gAo$o3MIb><2woYWxL1i%a@;f*T>^$q8Xq%%W_qF~)M|&Af}&Uv9Nmgz*k#K2f0$ z%EL>&r;*WKKf=QXx#Y5AGemaBu-HcuC{O$#+q^g~=Ld5dD>VP)<~i@rKW#pUV9(7Y zIx`r`@2ld!=NAx;#Z~(98f+2rJ8Ua=m>X|D1S_qT8&_vV(JACjAjHbBKJfnC(I7MD z6_B}EZey(VLtHb!jF3ehO5(S_EB)2A{yr&H{TzQ^;%SYAy*}^X(j#W`q(&^4vq=05 zSr3TE9SNEIMGtKFKV7?YSXtK==$#kokvgXbaf2#^8q6Ulxt3&;7Q%2WU3C+z4wGc$80lP2Bq?#oBhTkGOeb>voA8QL`nYuGze+W&0;lLI9^^ z$xFK|{Y66m>)UTbOd!=#Hxkd}OUc z-acb;g~=*i-%*cm?5VcX10bx9@j9JqV!|RtW;wEXdPurA@okwmHFKapelb(z!(ETB z=1!34za#{k@O$q@P?giqpyxm!803oD=?j8!H(_SK26Gr^&mJ*Y|8%$?96H0K9d*9T z4htpI0n`@aTC;KWu|A0wLgTdMv$oM=ibe+;hk8gRBb^8s4Ctalv>K|05hh5OvmqvH zh5%{J5}K6yTn{(5U{8O+GGw4irD0^Bn|uzF7^`7*wmfphXy{Uu^%99j@=zW{v*gHp z*^7_+rRb$3lvgoSM#s1uDYnE8M}QT-oSW z$hz`eDTx^NAuM1DVC(n1{9=c^8Fvw?iCqqgSl6jaye*P{J5m zgmjfv35JDzXiWWYYQkF;S&J?rw>g8-oy2Fbd=hqhwQGYj2g|D#mf)ym4>FL_?AwWj z6WDPW#QYP^9}Q{26C-@%3%OG><$2`r*_oQ4I3*VE*Bc`bfyfOxb1UqT^j7EAYz`U{ zn`MJZo8A`=nb!+h;k%AI(xW$rx9&F-Yq~2XgwFi~>@#47x%fq~V(r z6PLzAf+(>!O>(P=wWht{&K1?%W$I8$Dz3iV38nFdi;^8+8_=_=n;iV&&k&ctU}<;V z*7#%L-R}_8L0&xOdcIXSW)>P@BN)6H+;s-NbVF^MfAApUAagb?r0eFRcQc_urj=$I z9r4|RWfJzcAL)shBNX7eRr7PiPMSL&aoxS7jJWP~pYx;>1Jc*&5juyg;H5W!X(<3) zXpLA>GtqqHaO|av%u0UQAG-+z(z-d2N&8R25v2!+zpep-Avq^hjP=$1_!ag~w0QXF zxl4Eni5QhKG}Zl@41Cyay+b;W@v$5>)fH}n6{JYqI)OL2NLI)Avx2gtsvb1+HHu-K zcWnO_e$P5X-qLILwDbgH!ub|V#Y;CV#3iIvMX!iX&UJn2Gx=rV=Ey}es%fDn^YDbF z3G~=olqKj1u*s2AW(af6FB4BgZOJ#R8xB3Ix@S%~=#K|q;un*w?%l&xbWF~c4mkRV zif5F=iI}dMVymn6K}t?OtS%Q-2PKiM;tc^OgXS=w5>3PX(<+m8PC(NAR#QIGNhNxyT*mXXooqS zkkO!N9okhQWd`xiS1OlL$RuBMpezgE`<1==&D-MZrky`bC~l{btA9UJ3XQM&u4H3W zTAiz%DYpAaPKOmAeD(|}e%i_Ss`W9tAm zotcACy&x+Fo}*48;5T)xbIIF+j5M`&dD}6$k=RE zP%?G+yv>&?p9bbX{Y&`_B|CLtP1jMyykfb1ky+@dXp0-uard>x-@E8hdF_QHba0ER z=X}Cc7WD6O!cdQr#Fnl%{H)9%I62WGpBnlkgjthuQyn-|yZdkVkHOHHBl92Gr_c_C z)WaS=WDzEV0*WXlm!ho-xq@_qGv0lN!CsF$@7?V{F3UgG7J?~I$~tZQd4lhW+= z;)M)QgZl}AP-S13giP*s>6wgypw1U=J z0?rFvmBTQBZV(+atkKPt4f>QQ)paaA^Tu={0BnVW8h8%5WR&u+_uTCNO6T&W)!WVu zf1Q^x=%g<7D;hCt;xAq{q~wDF>^X^GZZ}THne7Ptp<%0=M zolPyq#iJ*3)EgI?kI`MK#9=E)11dDX>_R_)kFMwFfkXDpR3!IhGv5P=z7fY9Mqhv=q%b)%H>0 zu2ij>XzV8vs&W_ijcK;!h2-r!rU2G=_6<4Q)ALUjm|XA{>XgTjLs#zDX}@!}wtobE z9Fi62fbjt49M$JkYU1i0E2C?>N3GhyqsSR|YwLM(rF!F+N*2|(=5R^xY6-n{=I@Xf z7=z^g2WZ1Yj$C_OHE&X>qpVV)0K?-jEI&8Tz?kOO$*n0<$uMb3-3)t?!xfqo-+9!A z)M1!BM0Bcx^J$LO`G~z!GYNHb%C$K3{6( z{b&#%x%BpAcGHSl(1v3Tq>;-_@}Y%|2`y=9qbQWSX8CeQmBg{XvMBsi*3ec2O6X^X zUu(uy+i#V?*X>1-R43~^>uj^O*Wz9W26mT=WHr&8RBBajG)lk?c|^mGdWcnSe9uvv z>w_v@)&K|2*Ynv7%2#Ok{+wvIx}LMTdZ&Nj{M|a7XTV!ZDMtmbFTK|7ujCK!mvK}m zj4_wGr#b9k#cNa8ivRo3d}Th<#*|d=)i)GFoW4zljxNsWfWYS=)vnS<FsdfTc$2^7fLlXV&kwEgsnVK*1V=0N^M3m=PvyQ+ zHTX>>e(z6R>-J!B3H);8MEh9V;NP?TihNcf*>izib&@p^e@qJ6fGk7!10p}~f9Lol zuH~E9?io>iKpI-|*3kkfCrY&1e85bj_{*(oa)-gB1~**qT1GOR^dvDq-wp7x{ma6{ zCsG-m+QIv9juD~c?(!t!>-I%O5Aj1@@6W?Jew-R$XAa@uz$B{oH2aOJBZKgZC%&HG z<=Hu&CipA(Y9NpWj2Bjwg<$($31Om~y+RTLERA9S%iDt*SGEsg5XY9j9!} zn=&l!!>tAW9Ewm4q0Hlc-Bvf$Am4MlVQ7Ad7VUo~#ZD~*9Tmw#0^|KZo(m4p3F+iC zagO}?CYJ)Jh|dLNoxAPh@6f7{rR7xXHdc~%*|Wi6{oB5Z^^x_e(+nq+;)KC$Lz_YaC9Cz@3@wi%_mx#W(oE1rhhC)rjU}?_A4pf*@NWKPso;BkuBN;D z&`&#s<5L#{B-)wF=R5tU0E;JCmpyXRm_!ZAcmJAP7k~cpYft;{-)U1D#2%KSyJ5HeWsZjW zP2EVf()5wfDMoiQ1RE*2ysoY6e{6J;ehumyMG3k^wKY%uxfT7JfTKlnRf=@)bMfXP z&XzK4`Zxx*H)ucGPwh!&HlL17xpGw1osVTSRhhJ^i=QpN-S;e1_07#=wtcCZ0iOB0 z0hh--udxmdD=>?B8lK{jcIymAa2yIo?F%Lw>$CUwmBpQ9j%PhW1!y`(r7dj;s5TZz zWqaT->0#*tGhc}ejx5>AmCmhCF|_#4^^qoN$-k$sZ?iCcoC;aZtn~MX?)yUO(^iqH z5vY%BVLc~DuFQ8gPMTrlOVKCJm;H9Mymi-D6y{B`T5A4!hI8}_H#;g8^E}5q((zA+ z8W%qxJWNb!fA0$cec`>#4#&ay?W+pop;@J98Linb9$(hBkl{f*1e(4+ucpt7e}E2$ z(+$b{%#ptrgn@nW`|8hj|J;pN`g(o$tO!%wa3*4BFn7xeC2av%=fHjKyLQa6Q8Fua7PLch?P6@j*zme8khI zl~1mh+F)R(RfDd(a`-Ioci=bd-!=&j=al`vY7kBvVRMNv5sz;obG>&w)_Sxh5v8f} z7@JiX^=nhyzgpIyps3^4`a2->nTnXY6(HSzL1c3i1jYnOgN<7cS@l9#Mc=@AYSiV0 zSN7-`xCp08u~v_cd?ylvL$w-ll*O}gHOx#sD6XNvY-xS$+!s$IM-r8zHD685jPKIe zOfof9#_RidDck$Ea}>9=Sj%^>nAMPrE#5!6;=t1WRdqKnq6-JmT(MI`>WLEpuX!ci zo}HqN{YfWIv=_vFK5N2Ltr;@ZS~`t{P*h>oL1ZsdIryHMY~}c4pML;n#G^I#kP_Iq zQmT^^vj;cd+na$a#l(U<9w0qcERVVcCT8YRHs&?XkwUu{cyKmn@ns04?UP_VQC;3q zty+F527@I8&U5=40w)lS3%gTM=3L3Lm9^@1Zk5HP(gXz`#2h!mE)w8X$_a`b4Q631 z`5m@TY;8*AyVSzOcNpaux+beO3-eiWUdF;t0FZCD(1&M_p_ZJ7;Rn&FY}@>|BbP%k z`vM+Yy#IBaab~mxHUn2XxFyrfH*YSe=2_+Qd!AAwDxlm23?xEwJ%Sy-D5>Se-B-GA zR8XlCABr&cRpVG!sdG`{(I?b}!%CeNo)xsLLcb8@ckG!j>;cU9khxANymV{a6uNY9*i<#QrP;5{d7q=Mv*+T0&Y1-Mjj+pIBQw zFGr*yLJzex_kvAq@Jp3$rva%(Gj^yuarJ%X2_E{gH|Ks2;HD37+9Bh#;?Kl%hO!z zt1=$wDx7GOPZ+~-F^{7*chkx1TMxAekvf=R?^|ALRsig?z?_sEWGM57W?g$zGugIVH;28}V&;!OnH@U1dD(yq>n;?oI915+Y473#X>xw@#38TB z4MBY?uNo&h&K|`5`Dh zn5pck1Hy9Esv*A(jVn-iQIj^)%HX-EDHV*~Og*2^!W0{)idX+JK`MB=@3azWK916h z0Vq)eoem5AxdB)D2j5M-$EOaehaxT${Qfg>e=`^+QKeQ%!jZ9tomT=0HQeXiBZHRI z)-V%Fe&wq0r63H0>XVVNR(!$3p~zo?j$Jc1$ByTK%6v^TpWx__sUl4MLc|-5i*?SC z7QQWqXUNvM$K_-fN2^-h{MWqGoGQ9I*U*CQTP$$^JT|TknOX$g$SU9Pqds@gVcZSk zCkWrx3kr5E*GR~u&&h!=OJG~>pMs&7R>9R+U{81okKL=igsQOWv(5`&bIqfgpxWQVeL?x ze%(pMWtorcMXd)rrhPnfX0KO{R0R2nxCvTa=~4R387z2|wC{jEGD>u{PemsF1L!y% zcQAUT@9J#FoYxXEtDmkWDl$Ub{S0wRVj`|GU`;`CeU{GMr1P0Um!1mOPKB3h(`uB~ zo>`MRwj51TR3sPwdfD$UAM;t}Q>9(bRp3Nwk@=4eW@gz`VI(W~K6}q?xd{(=4mtdu z=K=BYyb$?E3);0sx!Owsd{HSFIFXSlVu>lHyT@tg@9B+z>W$~ zz&Wzum(IsUn3c=tZs?sDV;9-m3vfb0VY_0~1~YWBP$Y(GmIJUEkXm^W-mT1+bMTTdy48LrYJLVGUobEsgpJrVP3Ktq zrp;Z3#DaA(73J)Uo}Q;3#((xdBe{1wK?mH3d_#Sc#Xw#XF}iEKOr;P2ACiy%LoYkC z1^fswT_`u&kgDGGZ|09?zDy~AD@r;z&M;hT^XN85?pc&E$JeuY7CRfXVzYt4Td&sA zL=&4so_W;>PQ8CV7OJL4rj5{%#y!kB6fkgtsD09n3zP;@~vSx+=RGREAh zrMg&Bn+UCk4KpJnIr-E+6tG5g&rhCHudlauiC)dMYWiV#;>sQ;W$yG9>mLDMQp`A< zSF{D_Z-R7hR=vL*tZ_o0AtGMtx{<><23yS@^ek~SGX8iqZ=!ner{Z9pu}{Yil(Ay5 zAI$;YIa5Yf+7nTCSFmx*?)oqK6?!wCIhRKz&AJIpW`FyYuyd^QViqzpXa92Kzx0Of z{gTHpj}d)MminYV(lMt!jUA%h>3HI_a@>RM)o=qgQR^)=?qXmW4Mek^bj?Y7?XenPe$zXne>G3q) z^}X*-8wfU~kRRFBy0o#_7__X;^g*+N7u^Ymvo4y<;ety~Tb)mr;$y@Zwmp8z8fp^% zb56LJI%9FJ&ufF59PRt+7Q+@^$f41Ct*%3h+ z%H|_f#DQ^7#}#lM%1TyJ>SNX4D%BkqbDjTceo@jQ?D4DA!JlTs#3d3abF=s~6C_Uq zVn!q~0{Q%6#7ook^{;D*+gl;Xg!ZeFa)-gb4+$(%{)^W}B1l1{FkC6VbJx0(U3Znc zdls9S{K4Ei)$vE=zKpSVd(4xho0sXkt28+QZb6g}`%*L5dKnB-Rmb@>{7o(L6uTpn zd%ciM>e9*`2gd1>NK}`wI8~548di*H?-@-{tpDp?d*F9aL}D)JE(qyoK338{Zk`Q; zuQURkwpSR#HaS7QiBMUwnZId%eXv{@6Mv&L8Gpzb_91UV?A{E-iu zO+%d^f?%(g9?rD!;WBmV2&r_+Zv)rmAbpAfI~ACCyNB{zDP~h$jpp87`3PHiQF&4I z9lt^%+pC_hg*2At5QzbjW`S%Q1EBV+jeA(pwRt>Slbb~yhnvsOH`mibC5a%s9#;&U zz)(1ekBD5sP$%<1$w?{MHbwSEz|&Q#Y#8}4=ly4eVoYCa{RT6x{Q72Av=EaNXwzqM zPsRSwe&S3V~{hN}AH0|8b$xvic4uHxG#Tu&;bBrjf; zh^aZU-H4A}-|TirsC6P5vy~K~dGTcuWKos!D$YAk5GbWK50jXSmOMpk9{g&#bF=wY zrr=WsAsqH#b>}|Mnx&RoK?j%03|QjtB(w?w?peYZul;5=W$;PtVcPKg$bO~WclY-A zJn&IS%V89*Xi8czErff%EPnQP+)r4Mah}&H*@GvsHpib`dUv^)vfsiB89!G``s4dRnVK4c7l8x#|)6OIi8T1$OJqU34Dgq?y6G;bP|Ir8dsl@aCS6K>QsmINF$JC zI$kE^Q&>;?@CFmqSBp96X0p&cAEG)!vt?^?(h>8kYy{u-Ru#ZUmUGS;(9TZgD|A zHT-Vyl?x4j(+^I}Cj0~J%b?~BZXi0D3bxe?9vuGwV;0uptu|ykN^>wpuzccDjFmiZ zXm=e7Qc7O$z0J!5m;3uexPPuSif3Ea^j63N4;?>bVzoGd;f1@d;fM{*4-t;Xwr;dl zoCrXt8E?N9YD=tWys=PoO|5ES`EyaI^^KW6ZpWPa3Q)gUdoOG-%A3<|i9}Hmdi~_Q zK*6|6MH9jw;?4^#KLxhj?r~~f5wvSsd`th{|zt5g6IveuE&FyIGoU*KI8e7NU17P}STT;pe~FVAFGPd2+A{VILHh3q61dUtD(^QTB7 zqdC$UpM{hx{Z{5>EL?eGDUURC=j^R-?5;kBN(OM}fr?u9V<5zla;CoyYy`lQ7vgIw0&{WlLGZ?NL zZ-2=BbbeAUQWRI0m}Slom_FC>gey=2X02ZL2vkBAd-ZLONw6ABJcY+g-%J>|$G9xW`mV>YRooYcP9 zs`&I?*I%6p7c6~Moldj!CSTX#)|4%n#l&ll<;R|ri91L<`0~iWoRs*$!vh?=7i$TU z5n3CsE@cGTI?Un1-qOK@&Y7m}_^7zzDcAKXbK{A1_V6``u!d@-%29yemHa1O$<7#> zdMfKSKV>E`Ibxw3qfAuwCXIgk2Ko+xAUzzgWXT`r`&JeXvJY?zmy1{fPL>$rfK)bQ z{^;zvn;$9DsB17Gt2X^9r_yAJpbc#KG4@O10(5~jv9%7QWYL{iWbz9Zk=g`*A=$AHXP76nM=((!%1)%e2*iOLQ7c7}w}l zS(l%OZ*rKc2Fq6_#75Zqx|7^IKXV_S9h2_xe^aij53iQ&P1fk=5HC z>f#)Sme%{@9WOk;mTh6g=k0R)Cig1sB6^}wuoU0gCUvJ?R32Dr^7Fn4Yj3}>mcIKf z-_3Ri`3MO>`3j!DD3ze!k$RnFgZE4S2SBVK-Y#eh5W>hRcih!P!%6vpQ>8xHU1=mkw$oKiVL{QS&%FdP67J$bt_ zw|t`eQkpOkfEk-}@#{e0NZ?F$lu3Td$g`D`chZV~o^=4d^$HTqx<)7^wER{&&psdq z=;`F|7Z4o}?4XpA-j`zfP6Ydy7z|p}3RYkoyYJkU&mD1yt;nhbL0jW70TDbr|0R!l z_DYCsN^IIx!lW8qK3q-&!httt{g~QZOFisskK|IZ14^FWly2JrRa?tFxbgnIrjp~{ zIFSG|3(K`u`1`Y=USO%0G2Y8xWvmaLXH{RdTwpZva?Ux~l$R3*Np*E6pi!4+x-Jj zSTWhM<{B{#H#huexWi4(Qg(4VYuzni1`DE{_)j8Dft6?YMpFuT50%eK5YcHe>}+UF z>zUAbX?b)PqC26^sKas8z24A)^8j;C0?j=2^-i6?TzsB3JVb*R8T(vu!a8j^HMse2 zROg{w4S?)3ez6s}iJhK+xYCDjLj!i}OuRCL3MXfswmYb{G@D^E#IGCXL^o#YUvd1= z)Pr7wTuS{>FHOSZTi}#VV2h6YKY%=+^nl}*q!#N7xbs3!Dg|$Am&0!5vQCA(KVwtb z(`?k60|SBdu@JQ8nTeZsUpO~)L8;6NG@zAKs?wt95x+kEYxE2zt2KLr?;%pcEZfxX zV}u>eH=avP!~b1_WA4?=fz+SB#h;luTj1Oze8{gR7AHZST5`6(U2Kbuj-Yyvrf}+t zHJaA&b9o_6o8rF-VR$!=osf*rXW*67YM#2OZpm-0 zPxs16X%fACH(uBD3;4^Jun3JeX?|)@?}DO{TmJy)6SD(GVf^cc+3ylq)cdWc*Z9uV zj#=Bjxw-9vGViCKZVrN~kj~}vl9}w~f~=0eXSVdUYj3&WaTpKx8rvh_?nqWnIP-Ka|n;(csr+D(5(2XiGLB0MS7aI=) z7x_TtH+*#}6AL?PELE7V4WH`G5T^eD=7;m$fV@v#!@RSg0gY$fG8wnfRTB181P&hqk#|AxMfvdfuKafw`a2zJd-wjkC|8GrtK}kMVh9G9fq2*xDBNUr)p9~G%_B_ zo<)wf2a-4>gN^U-!K_1y1{{u;J%hR#qSt#~sOSgnd|}*hZEHrvf3ZBSHj;5H$A!aN zN~tIY{9OzfFVd>-6&FBvMHr@ zwh9z@-aQq+p^3Ev#PVG5HBU5KYgvC8nL6y-@;Z=FU$iK=Ab>faKah9!E=a=jvUsVe z=a}wyA;Ss{!SBVs`LVFvIvr!(_%KUJ9NDv@{`#?@%!1qJ{iKe_)zbvWy6Rz8S3 z5Fk!JqGKy-Fub^JEHRXezivi9c4G`MpyBoYU_aOxzmRL-*qTkIWopnOvlhGMnf>RK z0viX?$A5YEhkL|F^`?7%Jj%skHoHIc4qBQ9owQf1-;DPteLi@!$B|AM##4r5dcJEz z1|RU=%D7=_JMh%nT120aoh0&v?#g$k!~mJ# ztJl`%|CmiYk%F+tHA(5{iIVWVy)Gz?h4b->k>bDp+p1fIzd4aHfo2bC{@}OK;Jr{2 zsFosBS}c8M?VYPW!E0GIy{T^*&ZdW`ZH!UCWeD@DH;!qKXPA|VAl+|o0-o;;ztge1 zK_n1R?Ws1lJ`Bx+xis)!!2s70vPzp`r2>{Efewv^Ajq`MfI$r+%Dub>HZH z4i7q4>_n5GmoDH)dks(}fY-hP&=VXqbIP^IdD&d@v_iJ^ykLCqNVRkbWgk#`3wAnIMK0G(d{7{@Uw-;z;?4G(3(M~-E+UhF4zF}Tz-DO% z`#SP;fAMV4+Uf{y@KxNPzO*Fugg61_4Q)EY`>S>L^!eUU+)^d@ zDO0txLG`NViRAlVOYu;Y;=(Y)Uc>38h&nrtYU<`zDkIPJ#L9$qIk)M4U0a!yAbnq8 z3XUc#!E`q{%R3-B>RQ7%j6{l_NuT(KB|H6ALc@%o!YLs`xKeifxozh>*u;sAeHVnv ztWQ=o>&(iJ*&%j1%jA??|8e2R?SZ-VOG2vWFSBToEg*LWv);YMkYj3bXe&@RQ~Uvg z2*q=Z$UW2EIgUA)UTZl*g!r^JoF9-D&`B$b2<{I?G|8y)#2iA{(Oscu>kU_GRy}t^ zid=6J)o;!E5HkGU{OtJ|S>$&^?*m^dg3l6iUh$52XN>`ef`CHjc6EaJN$eG=e3h>o<0%Ru&qS1E{st}xwmrU z5E`&v5*r-<@z~&J(m8Iv#0S)g+Kh=;e*&1@JS-Q0YW%~m+EMi^M)BW6dOyIrb(U*< z^l$VU5thH8k>A9T^6AspaRdz1Br~;PFo;RNo%UveXYxm(?nX^$@R^+zW|X-qCumis zu!18ZjQ2u}?9Nf3U0s7uD6IeR!jooc$W>3!1vc83c;wCJy|P^t3G4Hs%J ze)!-nV5{HFe`?Tun?vY=)>C8dbb>U5wDzi6kuF=>CTgxNdi%wnyCp9LODn^>b|*nb zy#HAaW)i3q-9Z|zEB^pdvN*}g0b8q~(Em`bwKBqkQlG3rm$zcC0QsuXeZU^<(j<#?vXpEq3N~Y??PbF zNh~@XXjJOwNp7{g14ZegJ&3`dKRU2P+C+|?ltqQlegIX+#I7C7r+`ZzJwWbp1oj{dp^{=<}fAwtWIIAdVyft*UzUTw-qGUdN|IRKagMe z^tXyj!zM}bs<}eZGO#y8^M?51?>}8VGMIR)SdJ{;Yf1HYlke&15z$H%ehN!v?K9wP z((iyv%2@1__*whyN1X2!6TW<0FPj)uMKxW{>$VPOF#y$WR=STGjjMi zT^x_rK>*TuN9m*@B@yE^vGHaVic$<0e%#?7Kr+5SGzsmo2uU_$B;HE)^+DhVaRitnMe@P=h``V_`&rUkQ^yPE@fWV%HOTYs z#an^|0bu0~Pb0zqzD!!TAuY9s4khP*@wo|$xgSLsq}?-_8hXVmUpwBcIJ|L6%Z;0A z@zEvAF!`OLL4NH=m;A>v_eZI?rsy+hVwPhG)ckc`($sXO`&q=+u?eSP0Fqu79&Le& z*i&Bx$G$9z#OFZk{MPX{nQz=h!g*IeCG*?ayC_gn*r>hn&w!ulHBE2 zF4cB3h<&8KLq6k+Plk8)Xh6g^x2=lXBpdAJ78+&{=gH4Z;S&GA?N6sm%zCg~1Ok^T z-|v4o{YlOpvAafm*ytk;vV)Pi;t=ZyMP!+R`>LpjsX?)ksrYxTPaipmbLfA7+o`fnHe&O4?g3-2P3xn| zQ;mNFqsOrF96fak^NKc%&F# zKFELcEsheq{0|^k=xRIhT2D!Zt36jyt=L3z=}yVSwQ@BU5iqBMP0uo_^mGWEd?!@! zv%ziq;*ST;B>OW9vNx^pI(+WE9lg2_)$z9{)JYBd_x|vPULt23pli|>aSK(q}PF;1tr^WL)$vE|N!uDaH$eQXdv;Z>6$H-L~++;XE_j^b$E!^4Qfc<*k_D z3Nzluy%}U4d=ssnqyMs+D+jR^V6DE2io)?`OVp;o&nf=Wf+tg20s}o(MOS6HHYm+oaqJ19IL#C;>%0t}N6Wh%7R7cq$=3H31WESV+ zcOSogOa{=M*BnGYLYQQN*$}7cy)Usb$q}sR2e)dj)R|4w0LoF_S7jVaDR&Cx)0oxZ z%m8qnQWXi1f{vK!jGz=Dz1Md`*Efb+#pePx_w`@YF2VjLk?zZ|KG;_Uy!d6uYU?xT zDl7m|bxL!*@m1kM<3E6@N0-k}X)9iMn0FngjSZYTcD8|UoL*mfWo2=SwxXK*>*GP> zKLCu*Sq}LK^N18`r>r_Q6tW{ z*gzrZ0_?(oTO&2Z<{#i8T$OC2ily@F3LnHTIAJI82F=l` zPNy_{q5lBtaA+&hpk4Bvl!A+_y%9$d-O&XGDIGXc<{0)Ue{}oG=+~OJIw=nI=~l+T zH)_*^6|z?Bsmp_jffW=`zO^XH6R%4`0f%^*>f<#$6w}2;ms_^1oi^sUY}cGT5LJ>t zHk?m$(cl^6NJ zWNU@bCrf8nW30q!MdNGuQe7uKtp7UuH|F89XR;&bWpQ89KRytDd;Zo*r^cZGRhWXO zYNR7i_U?GJO>H@j(C5r646oH=LISSfG5Bpw7Rw_*DBxo@Ae6h|fE9`!lt36naLE^oX|A zxsEPHW4v)bo4b6c|B)BGM}%z>xwbc0+L(ErB(8x5y3aRw#-~c%0H*lBb(j=2S8>PLl z0)ym5%+(pUVE4jDbWLx@8d|*%Pf! z)}DOav6HW7nih7>N2F>THv^&(b$G6|V`kqAVV}Fw6IcI^;Enq^t}k8p%Gi|TfbZ~Q zpg_o_$i26(_jsSam(0As>&+j)CYn$$d-C;q5CjFxaC8%xrGH0xw%5Ah*V|u=9^OBE zHH{un({_^|!mJP~r3PB}G`LgRpSu`yPFNQF3?Esu5I>0j@9FDza1zh;6pmlvCyxTQ z(7f#V++yzEt(dg0{?yo6nxvkur|e(DOVuF#lc-Sz9Mmd^>v?*@pPHX79|Lhb#H8ew zVu963dh^4JpI*Efe->NWCb$i|hi8A^qse!r?^cw!gbiURdi!w4eAtcvd&rr=*XeR6 z@b<9HIM%i8y)nnP!sTK|xo5v0LZBW)4O@eMcq}fjVo_ZyR~9PO-k8^eGcS)dR z9(~|NaTa-TXhQ=8Zk%8E8YC%8ZWZfh&+I~pNngEmxTe?lOzgJfpEumpF_4tU6lHwJ zEMI=P02BCTig?RGnU6QL0veXAo+{ASsS0MtgRQ-A_r~to<+q>yLR40>kXw?5VKxnb zf`?J*+H0VRUUs{4c1irMMp}Pk$E+&2c-A%qDu{=_AFzH6+Amc&HPXpFhzEK-0~|g( z9F-F!hUSMqCk0`!F+k04f5+eZIautiD_KY{mfiif^+TSTxAS$AHyTt=pm3LSw^|

      )!)8(AR`2tJ^ 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�>8+5&R7Ns4?>S$ZKT?((`b_p~VCmvX0uNg-$d0 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�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 yoSVM(B2oL?lq(UO4XY%um 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�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%0Dv$g3)d*St{epdNJOHx>mRH~F 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%0D}yC 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

      XNVy$cZTL8MR%s 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 &fX94A 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%0D2hf>0QAlHJRi zWTi~W8ml;V@l2$qh;;blcbw`H=@&q|XGu=eU0xpg1hW;Z!**Hjx6qWu0tZBtr$y6^ zybo}djhhRpmHWViUxUd6Me&XY57EhYR}!x0GNjzExowFLkX#6bsT<{BirS`*06A4p z0JCb7u(HT-c>7-jjZ7jD4x@C>-Tz>d`i0Wuv0NAVVlYTGM1{DLz@q8j(gmcjwGN;$ z7V_t+R}d8w#zk0MABIY5Hq4uwbW%o+ZJblireRb=Q(5ID86GDJ7}NcBkhZx@QI z1DK3O{UsmtU@3mqF|HGECM>nvJv`ZQp-V0_+YuQ#QH*z;tb|6eb+N~loZhW06M>V> zn!+?xPMY}L;2iUr&vDWU`kT$lNKGqa--%wjr;3NGHIW4IC+#mA9CVXXXoJ3qtWs2m&QZPPw16ZeoJ^x_P4^NY>r`;F=v|!LzmwMdz9| zG5}`dS=@s+zw4IH9o6vZn+JdsTaFLs!@E?7vr@C;dL-8F#lHmmkB(wU7~XQDE*nz^ zR7IL+52(1*(|t3jDRZx%=ntjeYGf8;59)|ju`S(Uw9L!s9)4$uVJt-@7V#%d&c>hG*k)xrCkeF zl4_mW-eXHRj!1@hw1ZrK*>lYd9U<(v=>p#S3$<_Wwh^mCvAA|~9XEU+IOF!l=2eRD z*v%&sAmZ^0%w^}KbdW1MW`8~WUPho^VIg?L_%dO{Fs)-vojH~5z>@EhgSEWS z4Q$+?sPZ4c=dRhST1qL-$;Ek|Lj)K(#nUOGHA%R%wEj1W1UZj6EiKY%=gl8K6(yr_ zZoP=JF7rW)3YuIzdA5*2a*RgSa_wnRhc8*^o7>ykjJ?%5T_`f2C#nCXSiP&H5Y+sM z@PV(yg^wB%Mqc-IGDeXdRlVqY6dY;GGu%M6c&r2b)YTBP#kH|EmGPD(yjlrA`SpPb!y1G(XSYTMd!vtTKk@g@sI|+x`Mg zS!(#!nSDZ_tMb0=gVU};q6PCC9~TD3jBMqlyE_YgMs6q`l)s8DXx?aCJ@A8L?J-l7 zf1LyF^q<)YD^)D`&J6KBNGV_hv@~;LdJn1mvuunDWCe*M-%wfl-PWt~Yw?r5M1gG1 zfUT(TWI`~3E=tE7O<3^pYX+(|E-N!e|GR{#S1)svE69xBLq*7A&8P55d;Zz*w7x80%o9H5}sAk1+NqoEg zf|^VzZ!apAxOC%4?_FQWn$i2v28)l|7rpJv}x87M?zQ)ri97cAqq+ye#_qgPLEH0S+l|@q9x5qwk%QpsieV#JSzT7;9ae zq{{=j%X))#f;{}`+q@^q?YlkjH@GnD+1G>p1PEUUYG!l4Ng;2P_alTfPq;Jn$k*4# z7C?|9Xm7M>(FFO;thw@Af9Q8r#YEK$MR;_*EML)HfiDTyM8n^x?u2(4m1OUpUiZmH z-B+6OCwu&%dP|@dvj;?q?or5J`?9hgjfoU#64Vz5?f%3s3bC)Y5id~-`y1|@-$MbR zbpbDZ>&|is=SFKELRJ9m=7aY1O<(#Szr?4e{{PxFcZiJI`wxy)K4mHQp#6O|TC-a-W&SAZ)+ciudP98PRLItc7IIKd;q z9#>wOhb6J8$~SPS2G1JK z_Lpb};KBvZ2v}OUn@T;L{Vuwa!6~&=M(%Y@2H&T71qj8Z$o~U8w-P)rJqaoUBp5>r zYhP+18-xSP_V<9Wu;InV%-;J#Xmys5`Fcg3U4RMFsN_S0$L7U`LEWt`%#D^7MWF0f zrH5DX+Eq(XCLuLvS*OYl3T22NVs`)yh9oPRZokS@b$wUorqYsZAOEy1x#z#mStg{F zQc~gDCOTP2EDULR)1V{Fk#PQQvm9%PC483o>8sPG9Rod%0AO!-a(Wb~N^Js1DU}9j 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�PXj#FF7D766deKEaq(@elw229e)?VwAVT$`Y0d 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 ` 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ÐG*MtxO5C#%NB3Ao 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�p+Tk7pOBuHH@})dt;X}7= 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≷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

      br`c;wRiA(6$&&ve2GGLSm*v4uQEoVX>F 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%0A+_bn^=K6+7XsUw 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

      B-2`FG4*-Qbi+}gwbUBfe1 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

      -nl)GS@;pj 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 z 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

      ;*qAAS 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%0Ac~nIDX?N4-))F*U_*&D3UV5O{UBbagG*Al zaDWTf--HO6P~bMV_w#}cq=cw5hIXLsPpt{;JK&;B=?Wk)VMSiz>`PPgq00fQc<@3l1ZG313MJC$01N~=I_N89NB_NAX9Qp+w>rXd$I&D_H{?vZ3UO-K0 zP^y;tTfuwN5H?T+%dz^KmxD^I8-Bk?cr5Bj><;itJ(`4)O>b`ab4^8`r&yCS=togO zta`i11PkyBk!~vH;J-LyYXi%lxAtOW{yiF=U_hV@)i$?2e5qR#4NzuacN21c#+D@1e%N;1kB8*NhXj%w7Ck6F!03D+ ziQJL%2nr&Edoyyz{i#;t2#PQ*(?)LtsH4&0MZ-0_EE z0DWP;ASbvP%Xk7jwV?5WGFAMiOtY^=TU0-T^(By9+yQbAy7JKK@&{ts_BC{Xk%{B5Y!6*a!V?PuRz>*vtd0d8BG!`t^*Ji8{$s{rb=s`&%%Z7Si>CPSv zM1X1o&;~DC)%LtNq=o<`i<_5WR}8_8c&)F6@87IfCs0KVM^e=~G!`27DM=PkXFT`^ zpKCrNThi>&EfPo}=}kWVe4yYE4G96#FKRt*UyHYP#BgCC0LPg-inq=lgq3a${J|%^ zKn_hB->I$?5?B8KQq-?I{GX+x%L#Cm6$c@R1(~T~!+l!_a?+hX(K<_jZ1?M|0EacH zOM&b#qEr(=#D{8iufJem?t2y_im|;ZPW}FvP|9SMcLcUq@gFWnO2U+=?FuZA2><{u zXJ??ReIE=Ud{rL5QgxhE(LeE5zR%G9`c)_PHOWg9-fPM9)3em|M8vE%6 zhN`gud-9=H4flVx1cD0~iPf0qEHr2J8jY{c9-xv*Qku*MVQ^0#2k%jaZeQG4O4ODt z@BB}4-^#qkQu7Y+dpLTONM&sdfjQWBIDmi*g; zkzaoo=EPy8r!`GZf$rSPY0Hxskf1Oxlo0#+zl3=~MEd^#F91<2=FMU(%y0C;uuTAJ z*xueBD|y4`8aZ!$c~o8zC_d^$lA#v5e*F&KoZ3$BdW0Fa5?$;;!e)w^eJDm;1wFgnk;kVWlDIviiB!fG0Dp{LX<>b)dk#3OYp{a0uF?aFd-^H+rU{273ID2ah zP$XDwBm>-@CCJ1q?z@@n`<`^Lm;? zlS6I@V&scdun*()!h{Y`#`kYa*Jt#J8_v+0fkNWG9D)7AecTo(`+B@b3Xm!tR6VHR z^XHoTU;$$6O&DqYv`iEWZgj07hNY4j&(Z5vr;1?`RBhqrV9`<>ZsPmLfl~!7U^!p` zF7~T?@&5oJWh6MSFShX_9D?MU(iP~CXbEamJ?q#G=j(loKyz?QUfi4rQ92qH>2vAz^N>tyhvx0_ zf*}iSsYn5dbsqP*Z@+7Cf(5Gp<=Hg-6!FS?k6bBmhpL-ZbBz${8yJ8dT6$qhF`e@FgfYp|9m@vtPZ* ztw&;UF}N4*xi+iRdnO(Tf^ zl{>vY!|A|(F_6#R1-$&L^ZP-gDo_J4Hm|;2UhfW2E>r?(XD#(-wSUHJNDfe!rS$t- zoDtTv8rqKESZ&lO00e*s1bAm5`Elm>f8;N4G^_cymz+5+)MgFtk?qPRq_OP8{VH3% zNana;kdR5QTYYtgf+a`!kU?@B7a%(dAL+&m{fcz~&1~!k&I>VeUi*E%_49+20Oq?? zJMJOBuZ|Ds@L_I1YxDd=IwSWWp zn`xu4wW)gHL%~ZZZ59`y1tMjCm-F-rzhQtZc{cH@p3_$Chi5AC3;S?S9DzilBFlGJ2} zQS_SHyb>FSKf7UxYV&WLJOYl%-lbduT_iVpVX}vPY3T+Q+7Ew-DpZg~64eW0c_iDv z@Attyx!M@1&26*$`9hU$1Qob;0-=TI>;d|V(fLq5cYFOUx7Exl98d)kL2_tF;06q7 z?QgOS^|r9!k?H7O43#ZmAS5KD5mpCn%fCJD%}e2w1Dg}0mUi>s?%Eb|NM-|9Jh%7I z!-^75v2q^Q?SJs%4|~MHUj8I?duCu z=>^Ezzz_!KXRm5fm`#?X)#+MkdOoiP8N=IOeBt1i2WSL4vWwEB9?n1G4yAt~(Y*G{qRJRl3BL-y}Xafq1n7^3|LT6a+YQRL~ac1!1;D|f7vA_INDFATSr5v~UOcY5EPUiIn1c5**2bzlbYhhQ}{6d8ZCg5#8 z#3WO-+9_hmD}I1c?d|se0IWxNMP%BL zsVcDA03@&%9$eqs3K_|vH{G{-ojr&+QosO!);51tkJra1muv!!M#L8#2cNH#JQ6?# zq!Xik?eCl%ZLR$+%?R^e+_oWQJ(dspAThbi50!U<*0le}+_rKPb z!?P2;yq*g^s4gF-umS>>kd+dUNOFBF>}>8V)db*zXi1( z2nNYC_cx^}b8f}P7%hQ+2k;H=>k!nvn_>hK?gKyUYxSliL+@=p+rkYh%t*B!zQ19- zIv>nZfKo#!zo@aTENNnUy9?q-Whf5tVxmj2xIC)N*AX-zBB~;Ql0gbcV#Bldp~Dd5 z8#k;*rCgV7ugVCNrATxw_bJF`{p!pM+p~8>KhW*WK;{kx;lYQnV#`?N$tKqU#cgl- z#6`n{P}Hy&p{I}54I#~JA&OBa(!In0erU@ci?k{252<#v^*6RZX?xD6XLgFasD?7A|c$B4+H22z2IAvl2YES z!MOs@-Mmy(wXom=a=>}`d!!6YN`iew!icrN>`lP09oo1}R!w&I^`t0Z;YlRD3*Eo! zzTO`asIYc_r(b?B^rbr1{{U!Gm|%qkI%*3CxZvCy_ovel<|Ghm{UM>r+8iNZH9-Qd zYzUxp?QSqM)8yY%3Op95kGg@W+?Hqi-21i(Ny^oChXsrKFg0#8QcWI$g~hJ^+<3MI zB?KwA40WOUvqGeLTmTvW05SDgHBU9R5vBd}>COrmr7Z*mmLxj206}tG(6DM<{8Zo+ z9Hx(5+t1&r5Q^9_EH?L8L%H{wfAj~^L2oU8uWS=l-1K^RLjnkK4GJ4puTdn`C%e=a zZ=u3#a{DwBhGwqs_=BM8p()f4yyUx4of+!jMJ5Z=Ezc!X&7ERFVe@Z>ef~yYckF45_QR(u92v+vzAY za#`Ek)89xkR-jTAP~@;FVfA2YN9x!gL3Xax^WU5T*{DGwnT1)bzc8ithh&E@M=mHhCe6+TNeTt;R_bBWLO``ia0PYezq`6A zi?-t8tXMlz)o%X)Y(yn!XvUho{{Xm?z19#J3)rIIQMtwnjO2d`>!FhKw*iP7!k zJYhK8d5CEM(u}~p!S7BDEZpCWJFS6WcNGjOdHpJ3INTo?8C4t>Y6fqo5B?j5I9UOy zxg_*{dYkFz0Hv2?_?mnE;7W=7%3|H$_IC1EaoU(M-L*EYp8oWR)at!qP_4nzN9HuJ zHlX(Q`qK&osVTX=x%+5&4yrjMI(ZM+59;hMg%Sk-95E+Trk=hW;RHR)H+2`d9;T?^ z7pd(}vWS$j7=YlC`gq&vSTd4B&?ccg8w-}G`d#mZ5kpYmyQ}iDm{3ySp6y<0%sEiv zrtQuKRKBAbBZj}-PL&+L0)pbG0j zPoLY}qrfo^%vr!a++1)7ALTHid_u$ua=X-YZ+3@&wn0mW4$aFuhal3oEId~V12HNJ zr$+bZUQpo4VB``UAuO-ABk5-?f+R5kEbUj?B>00`e4w?V3axh~gOPeaxg+{p3^nP` zakrIe2~0zp1_T@3v=Qy3l@YkV{yEWA5XGJPL~g_}cJTJ`;-*k=0RR?D63hjE zulR7#iEwFBUHs|m0*FW?1|{7fJ$v{Rry}>m6oN@ETzmDtu@cmOh}?LML`NY0Vo4=r zF%%UQA-;}2m~5#HPNn>6HLqU=Xh}s}fopyK(C}AOvRT{~3`^9x?)>vi6iD8chNu!N z-G`_XT2`KT7-9*rZwG|n+eiwwKct!srmo~y`~Luzan7*d+3E(54@$@>ONSxDu?3Bt z%~|Tyu)>7bYY2AbxJVwNs+JAQ7qR2VjxgzGt)Za`cO)htQ6ba_0B*Zfb{;F^4nVje zoYC#|_j3Y}Kx6aw^yvt~;VK(I6$~!r*_@i+ieP>Fyhf!GEl~Xl)7!xU(gH)IHA$lf zV(eJc%l_C$l|B0~lBV%z<$kXMT{)pNF8q){_i_IKIB*=bukwN`ItJ$qZK)em#Z;y( z%L@kWU#nt3hA#e}m@-&^XbsNI0Wnr+73d|1NDj?MAXB$--nb%=S@efBZ5qw3@8WuS zLrRG(=l=k@s2@fxKroqu3POh^Ohd2?&PgPfaL>;-b6;!;K_&BgdR`O}KsY6X6H#N> zlTX_8HNnAVusR-AVjJ@BPylemJr6whJm6FTAQQbe@wcP`?w-GBcF=aH(VC>x2D*5!V}BTo zfHiV?4LoUGc^FmBSUU~b?dN}O4LeEN3YfD~7)f&MkwD;7-NC06 zKc)>X7`r9w@_#sG77w>JcnX0@6(k+OEJJttJ*qwY%0t8kzRU!vP2}>zqq9-j{{YTZ zII%P=E#fwZq|^W?&sH38K99}tp^NoA;D|v`a0`+tz@wU9-K%^k1uH3LdO<#1ORyl1 zOB*+0?hUC=I7GEfAh#^d&Hn(XPn4m!fXO1IcLW~p{96p7!TtMaEWp*^M5KV7%1a;R z0i2c&!|v~fEWqtu{q@rD@Pw#ZtzxeZc(A3xk@B&Y`ggPYipY5fIQP=g6z&&~Gf?|tAL0^l*~ zH@36BLIyc|mkbx?qSS0>u2Ddlh{kh=R4VlX% zKIcK>@5UMsZgN->IUbW&Bmr8MtMOhi*^Z%x?%;WRsp}3dI**(cF+c{S6>!9W0zeLU zAohL+9YIdkZF!2+S5N>yLkVBV`T5u1(ma)f?qW#X^dJ&zapUZ5d?qBhA%jp=_YT^F zuKgjP!EaS7`A*Irqdm&UsrE0qyi*Gq`LyH9i6UedbPlz z?|cX$K)BVf(DH^V%Eh1GLLmZz$SMS=g7qK)MidtuKkHl4CcQGP_ix(%JD)bcX&KZ)IdYuJBc=*4DkkDI3gL$Y zJ5|RA-o9y4IK*Hq(YvIv1^n5!0rqR12}=Ui@%Qeuv_@6bP25_yzYb~o;Tdj7f8qhn zW`B_L`9x((ChRtCtymI@u8>?Zs@OD==Jy2sw@E|%X2gzPfNo}Ll*>>x=CUZ=Fj5a zt_6l-AII5&Qrd#N^!&hy4wWPZH6ZtDFdon2>4^edGMMbtYj__ov<`FEpTB=eFv`!W zmT(nNX;MDz-RKV(5`ffq=lwu?_wVHd1qx!J>fkYEub;P$_$;?_2q00K*0d-hSa1!+ zMFZN*-Tt2Ve4tvDeg1r$c*2ivDge`v6>A#QFt>a6t{sNZ)!a8vtH+Xq$uG6XW_!@` zY0taiLuU>)xizPz^oEcP)I+s^?Ow#47A%u^mhZ8=XweUA?}-yj$qX z9Ib;SHplQ`g{!mzOM=v3+zx8r+~J50?BrU$?R!9#63%%KoH;2B2;RW$77PeB`}X}X z;mKe$`~A0tnJ+H|0Kc{ptb8rhb%=`>aaVC$d-togidD3LMQRNmrGOv1 z@y-zr4IYJ@R^K>8lX&rEHK@(Bo7}t7l@KpaL!XyF%)ac&+oS`;^fD{NdW&x^sa%?<#7&L+|ni?LTPkO+vW0g>vGe0Vg zIs2?2VL;V)aoU0GE#Q~^3?K*BufJG;l^nHXf2ac9hsNK3D7t`BfFKG7e)PT(NFat4 zw2?k{78P$~=yb7%C02tc597Y^4J9%(^mtF|Kmg+69r z0RT87&Vs2@0dN|Io%`U-#1te~ysGlP&S=_*P(6_pl#+yvzLf&* zSpK)8wjNpjNpV3!!n=plXXnxvUVi)`Kv)GNAs`<}B)GMi>U^GC128*L#eR?^{{Rx< zoW8G4TX=}^8*4*eOOs0xV_J`Iv!I4&tJ(+`sDu$zqCsXQiw0A@+;Qgj!cqYwiawY7 zLW8AD7>8?c)qgjmxjf*2Up+ShI;?4~Sce6K(dtg+OYBpx^-UO+F zkAppGe0IDwMFZgAOpUd^7%solz?tuO$9}Vhr1!#qqLQJfjkf%)cVs5JH$D^&_QMj28E8K zGgMvt{{R(-LrQ}Upz*ke;kZ9v^0V3!k_n-(p!cJ~xKTTeTo4i*173XG`FmkRB!P0! ziaTAHl{E-@0z6a6?BHPzb%>ThE)5&+3WV+=fGC=|EGQ@e z=PvZ{>208MCvoQvh}%hUJf*H#%Qc7f7Qq0(4XOEWdc+qc?V}R)d-(qVaSWETn$Vh> zxDQayX!W<8Nh~D0?e3b?4@*R0!Jr@$SNoAqb%iNd4xkzCo4uWb*j|H-2t1Aw{{%Y94UpITtU5D6KGtu&=+yK{OPR6vpon;p02{{WAy z5pe(j0vr(F001M9!lHujUc$Hr%xV>P2W#E=b>+??i;!=o`p1(MMJn{A#kVj#)V(WD zz8y&v0AE_L>wgPC5X|pqKiz%xql!YTEBwwz({9E2#6TTO_*=^G;ZOlsr@VEVHN5`jkQIokZN z4CTd(Qset#Pzk26ix5k>y8wKLzq~Xp;iq{><dh@5@jk z5&-=`0>7X`S?{ZT;mB6-LR`{?Uy_v-6@D9*?SmmDoI7)XRM70ijYXc#?cwDmNdZYn zQ8!ESdp&D*w-|n&{r)+?q_}^#m%6oK5`?8`0l{(^PTyu`BtO%>37sIYaB6)9zfJ3R zMau`EFW2RLVoNB#;@e9)0i%I%NqV<97(qbV7@*)1NdWCMsSIo2m-=#f!eo|lZglw{ zdPBfgl8`+qDN$s-RK%ON?MAztFtJ#6D1a`C5{{VbQl!5_f*M47OA%cpAw4kfQ7KDOQ4+PKxnpM7^ zd=V{pV=+i9EPdU*KJXBwZTz7mQSMk+R<)&k+X^D6Ijl>ydF|qKggZilYLZh=cJ2py z68`{9I4ncf5m7fj`a1y$2cV<3cU?L<=5p;semMaO{-3I`qmHt zHwIJk%sdVWtAYAjxN@f&0L(?s)~C+K0L)Qm=oory3%O0Wgo9uW3p*Zf&zA!D7j&_s zSFbN#a1gtg0OW4DXXb~qUcIogmM5cge}3r!nSn2vnvBg|;BH)!OM`GO+*N}bSM=;K zB<8MLUbWZzpwhR7GF(00sdo-XBkx;bLm&QSzTWkZZBnR600K?J_!o0-*YSk|0$2b! zBycPX01JE8#^VYUH7ZjQkdT(L?n6?SJlpiaggxo+-_jY25KF$}?A~ytX)N~u&^rs& zgVyg}FhMM!Za!Ndo||%r!v{7Xif?ykt!cjep|m?(c>uX?ZfGjS&AUDbhqb|R`Di5< zOM^|i(!K`YIv8_@49x9U1edQS+yVE)RVgIY{m;wYA%Fll0bA+!udSF>;lT=^Qq#04 z=|a~Xg==zo!;(O=oxd>~BxX~PT9%+6Rv#vNKu7^j0*enI)}6XQza$; z0NA*`{{V-k+rsZEQvv`=m~Nr^R9lDt0GtAnk-s7D?+B<6;Ilh(>NUTnkh@s!B$DrE zuQX%h+X42jpW7BNNLeM?qw@$<0U#&<9s82x*tc)n==ES5R|lSz``4Q^7%XTVuScfs zOL%GG4XO^HF4QDD+*sMTElf&u>t7@FXpUmZ4E5$T^x7EjP&SfCF6Ew#e*XYQ7F2Fm`wM`AFO8d3cF*CgZU2;C{S$l?r!q zzCTSHW%w zZ@-IB;t)V8p$7D+HSlfxX$)#ZP--s!04Dd+7+oHqLwZs{t2;4fv2xVCTeRr`K)5bg zy*z94sr7gT48WH?)45`3?`CJ__S8Vm(?=wd<%I=7V_Vz5^}ztfgtpfn8*dSk10UkS zo!QR%Ls;B9IU&galiW2Mfm{?qr8xoEYv<(J!vQ{*B`v`4eFOEZQG_{&4iz zx@cO(ocVGoZoN^?OHi;QEWuP!PG+q zYDrgs0mW?PwDr6(n{hQDdQwH($>X1++YS@~53cq+z3R~6P8FuVM*4YD7*q*KDPd4Z za?Nrna^FFT5=xmNFG4AE{ru0El9s4u*GDYm+irg-Lh2OTw7Zuefm-qQ`aQ-RCol

      V8XT1AXzTJTBd;g{eIAjSPVi` zO@UFNtvw;_?fT);kdf+7wxj&wy2}x}UHblEq!LJ`+789PTXwZ?i2|}Fx49qn9eL7( z4_J;GtQ?HGu$CPFs!J{g{ zAl86ANcz1kfil!BP;5;-_&i2bq&;o^q>bv|(d1*>6F^-fmixKmllrz8q@|4r*O!K) z$|BEKV*P&_(D*>ql7Atf{KoftH}rfs%BKV|CBto6S{$qzGmS&FbgVmQP$+OnAD93f z+RV_1!nni`t&YEyfi;jCOGAxv11syXC~g3mzRyJ48@e4-$LqC$o03%fJa0M-JV zJUAo}r7`t51y4$`Z)P9>{s_RR5H$`!sN8|9NkxD*s3S(z-oBN)z|9}HxDDEj9;W{Q z+MW4vSyJf&p~Z;~1OEVR zo=^k5#-|0%9 zcG3-lgGOTY@%mz72n>+gzsmdDq%u-o-R^t)cEhl~qSdzjVL~Y^nv$1b$q&H|`@4V8saaukfs_NdfJ>!_ zJ{!2<>i+;%I6*+`UA^8Hzwh7D0$36N6)eCK{{Tv!Fy+{=bF;UA=Nd%Sy(i@ZgsrDFn6rd|HDR)2DTKu4K z73u^vQuezwhjac?n37sToHeTE)!$)Gb=nw&q>#im-0NefmEeB06S*ZM7ja?8e*AyM z%Y-ClB|w7j{lB*I53D=+T|rOA(7^C6$Cp2RF)2xO)%VlLpQC)?U-CZM7`JMcGz2(i z6%J^|pP&`sQmVNp-!E+tEZ8_C8kTQ<8(Ibd1Tsgd{X*|*`2B7ya7r$aM)#|W{zu*+ zSz?~A@{bTw1Tq1oN@`CdxM6Y+Bh3der*_*G`aqSqA-31);o3OJeTfU z65N9H*fTw^0Sv$8U<;RevQG}ceeh0Mv^ql&;Emu4SNkN{|Vg0l33`!CSAfHGCux9U0UHIbo zMMU&wZ>_vw)S$!ze!lGROPf~F`+J=J)QfvI7B@(*PpWx zP41|HY{Op@Z&pZB=KMMXY*Tx8{hY)6+v)zZ?9i(5vUNMP};ysfOj>pyNi?gnDcS=#N^e8xTyl2C_TJH zut^LYeSUjD)DogXw-zFxkk9+kjcoq_W@cb5tK9VY`!LA`!-CbgS=>5$+ ziXYbnO?~{}RFXc1{&vzMDj%zG++Ov$uLJ4h6QG6#gI1br{lrT`R9yc6CSh>xUz7S) zBb2DQ^Zx+Qz3WR`^~0osT{W#e(jio;F&ev&{JrlGmkFIlH?0u(6a9lRu zKf(4R88Ig`!IpqHazSxlBFsM4j<`Uv1i2)TNudP&sCX445+y(iRQ11)y=$aUS^#rx z!*qbeNJ^YIYx%SA#J!%pUj_+PY{uL8zrK`;>H$R7pjn$ya(bI`h8?7b-0aq`)Hgmb zP$49eDB=_)h09d4SBCnA`{6?|1&uYY;ozV+3_&G>GZFp#kmu=z5#$7tbuUe!g$#EP zO$jz5vwf}l`4_E(Yhz@9)k5NM>r9 z{d|jg!+u>^FYcrDyZ-=&m|~_CzR&fyI2O2PKHbAPr%3TYAd8>VkJp=nY(A{i-)+6= z4iMtB@9YT@%1AlK(c@YBu-GC+D(mkjQHL&lKw!T=Bw7#g`?LsFHw?O(10lXi2={bAK8 z5L^HoPI^=Nf+afv0)a)t7viJncx(cS?_tP~o&3J=l7a;VIh*;!lqE#7ZeT5Q+#SD8>wO*gSaNXFfmTEI{gsAUFrE(tBe-q?+EQijZ`4fNa2B~sBT0IY!5dk$pPwehzs z?a}^)YYwVRs&+#wnuVn$CX+9j=UX-CT27!p%UfIlC>l^{_4=BC-|B%zQV82Y?mq0 z-7mq>y|KePSH`iJ{6zT}JW^Dq50arl zk8vbDTn9@xgm}Y?_KzFdP9ZlLi&F6uXA%~qB3e7P0DLe&@g(Zz8wN@?WUS9H(^F}K zmTCAK^L*xVbr57F)3m8(8>yo$iAqq1JD3(UI^PB07@Sd3xROB&C8ZP;%~2;ta$iPc zw$KUe-Y=ZEk&f2MPT; z_(%(!C823cq^M0!KyCud=a`LuXY=jAk%1c%#D%HdK;Sg-DEc%jYMx9Q?kl)utNbWjZr0iXuc@%D?z$IgWs_FDfE3q9sS>C?$}9 z3*&9LDta7=DE}7{Q8gD$0CkkE$UzN(nNk(6m<>Dy$ z(<%`FLm@@Ol08AX4{Cc0!EiG$-vtW9VgjY-%Q;{bngEm+33Uc;^$XD3mhsSqOd?TC zgJ?4)9D-GqcsQqvC@$B9Hbbqa=h6~Icla|DwdWcykdeL8Wff!@=YoR zIWK6EMkz97AfZTBQ!IxmV#K((cNThBMQkSvnUOhVkb+)dV?b(4kV)q8s~vyq)UQN3 zYp(SgCM99&9MwqDx)NG4!JN!mBq;(F&_GobqB`D04S0X~fQZlNu6gz|{Rf!|6 zq0M<$(oUP_S-!KmB1tllTvG6X7*>XYT-CR#khp9oI+BeAtWsZOr~^Z z3k55n1SI|PjWhBGX`VK}KCFI;O9fGQ*zbtDy0LMo6zQQpK?^6eqh+~a7JkNsSnEedC-Co^{q3j$72Kq*?# ziU{-X>IOPy8;0W3DrQ%dq7tA<3NAaXmVmqLEX2n|J_WS2O)t@$_gLmB5ax9`%(JB^ zfIePd0TE%tT8U;+*hngR5q>zw>UR^BjO`M5e1fH;0F+?BLcwW)LB$E9sZ<8NNRI{f zigMS9m>1qs)Ll+0qN=HgEn8K=6^$V1+`_dtTyxp-NkE#;rZ<1`3YdyeqI-}NTepW8 z=pCkzo*&tq0y7F6G8A&V{{VoflUIK0n$YwSV}@aoD;0-G3>K1J)hS5kT-QL_MoReK zgLe@vzdgh&|{v51vyACWUK5GvFp?B=xOV82P0gmE4{GF#@wU}Yf+CBl?~rvaL^ zapk0XpY(P_zy484moY4anMxsLiil7ECYum;XS8Ut7LziSLs>{lj@Jd$3P9w7E_tP~ z&}N0^n3ab)tNyHNSOWh5X!q_P44kMVHB)A=sOQeYqT0O7^-)of!k!2QE?1h$W(ZP0 zI#UKJRHJZ7*!8V%OfC{ziVQolCt)#C)D>*Ymavr8pUIlPQ5qlWcMKDIEsdU(_vETs zu3<+Mw$D?zp^fWANO{ItlxA||stoQ~BOJs@+E%}mf}j)~z*R|hp<#S*mEhOI=VD|{ z?y6k*rK$*ZsJjpdad%B#k4W&oI%3g^T2e^Lp-MZpzbCWCKI=A*hp)PKnC0+7PGyxs ziJ9d}BXZ1Xbi7%3Wt24L;`~XHM5QP#Jpx_oD8i!!rYh4Mp-D>s6)tx>@o12FS7`ke9SSe)1 z3yLL|uq2nGfnQ)NeP^?Cj|<1)idGUZ^TgFNh5(XCZbgq*|jMAFL)7=YTirT3@aC@MjOQf;}*)tkj`Skb?>CUCc_ z+5Mk--ZrqWhI3GA=H1}VboIU4Ssx-aAuAaOBu9#fUJJ+K0LpQ!UL-1t$dm^u zQA$z)AS4$hK#e>Aigc8^zH~Se@{5{{6=5iplYtUqJVhx$BtwM>C2CoA2>{iF31Cx} zm1dbSX_S~sIO}$_ZeL112Yw;? zu84Wewv?3V_K!+G5jCs2i1 zCF4=W@u^8D;ruRSyiO)-FkzKUA9XdT_J@%oWYwRAo@2Nl4K4^IiW-WCs0Ho|u^Ijs zPksmf9-;j1q;&@{_=)NSn!@IE-inVOF41U-41y(a^*;v zsS9_0^wp)*Yr6`bQB}>qiT=6M`EUM~_;Tr9h3J-1AO8Sv4>8L!c|6Nd!GsWDrAf@E zp~Q+K1hFw(vX0=!_~d`bZVSeyql$L-jjy#h_X{%c^D$Tn2~&ck2~y?`=_G~)*fZWX zPySf&t`jC~jtj#lU`ZscQzs)3r8N+v@e!bF4xnB&3tIKBt({PdHy5ZKQPuhUNU=U* z;mzhzK1l@bDfwwBhL=&I5|pF@z)`W)_%~v^BiXq~M+D$_To9IkgsB9~Qa}L%zctiF zNp%uQF7c^jyGz9}+0>j~S!)@WDRR(Cm3K=4m#BXdSljS(kC_?*pyd$L5)86oL5jGl zTv(ApeQ{$cWUJ;aLwK@y7`HM}mXk44rG$xtG6)U}hBcu81|;8T!C_=#u^^Nm@-AU2 zITcY_fD{LidI5No1elN%X5&I!MMhDH^IztbE~-ir9ZFI_2|xfd+M^hm_=QZwD1cQV zzzmj3NV%zVAPm-^VQAQIhK`4H<3VT*Vbsk>nN4Rp{AQo%FtXUW zdgn|Wu5wp&T*@R#u%M}vI!X*=ADofua0qTE`jh&B#JJWzPXggH6M^B1B5+*6Dq<&P zH3^u9DIp`e7y|STUNamshj8pHnYe|c{{T`Dw9T4UNF)Of;DN%T#RZa5LSh(l;sVS5LlK0>9}WVinYjBp!$`j^PG+V%yV4qO~L;FMafYK zABsqTw8S$|CJ5S?YDi@u7b$*eia2~f8SK_S35+vk$&k5gO!?Ut@RSx55{a3p3ua&g zgW(%YoB-l-4p5a$Dg)uOsoXOZ)#wci(&nZy-m=kJ$2ZiPb0UQ*nU$_QoEZ&2B$#t^ z2-pykxyUS{g~L#Fl>hYCzQzsN|dCb8Ae&U1|^&QbtQvTbNW;M6+Zyd@G}hStXlUegE6ZlvX8>$5wijF z;z=E;QGq5{h%pkM_WcBG28Xr>1uq-gHR4cZ&y~X@DO07%S{IdT3d*$^h$I!UyZ-`SCD8Sl^ZJi9nG<=8(MZds zVoZB;_9s!W-f+4NyRGT)B4uY()&1UNtUU zv?h9Uts#LbJrDIgSCGuTU(%kz`b(ck$vf9cHY4}}Cp*tE&F3uz+p@d20 z`H+O9n6Q-$GFGBUQvq@hD8lhxCBZnfxe}**DYDYEDJwv#QfR7__gGcx?Cv9N!%V_) z4j#D+!;cD0?3ZXb=WIBf{u-&H;Y-6VVx~=%EfNCIN^<8- z$-5SP6#m?DV0=usD7tB2>vzaR>@ZRt{{LMT$WVU5!H!<}64Vq+G>QCo`IhG9oQg zD~22iXq#vuniZ`@!qjR>HG5)}jtHEr>Oo7ECXbYhF=il*2{g6N;Bd0#qDYjCt4Lt| z=2tckbG13OOr1mim5@y8ZBS#t(|K%Qa@icgDk;pSp()@Y5F!$(gzpIcO>Y9_zSzQZMl7bBxk5C=!#IO+Zsp$rY)iFkx_Q8mBj%=lZuY z&UK9R)OpP7J2B{{ZWh(ux`|u`i$`@5^tV9jKaT;?lEFBugB-r~-iVu9a)l#!i5g zq%#NZ4eI2(RQ~{jwmY<>q=#Wa_4!iKslmx}R<9KQ01v(=A;H^NH6#kT`MK+%j|Loj zc)*0D7Xqx$0S-!;=>Guc`S!z-1xz?}kXxrXk2P2kn13ROA4l;_W3k};CA)xgF&FuB zA6A1&brZ_h_ieR}Eb8=vmoJ#92|y}`5Ge-5stv_y$27C!!e6hPEqJUpDqs(l3(D@I zC`Myv8{d=AM{E5zpYS-24!2v77zz}DzJ=Y3b1}jWzR1LdoaPGJpgv?V8xh7QQ%b4jRX$FPC3N_^9{i`2fzen+(8-!rWl~0C%1Cl}5o~7GIrm>;gq^v3+ zcL3Ia5SJ7-7d*9mQyXRgB+Gq81JoK4P0sIkk6UmYr4r353s;-J%#Z3d^Hik=cx2W1 z0fP`rKkEG78A)YQ)RoY+HhrvKgGT4hI`0B20S}luhW2W?eaNROylT$2lSx!!5*vb= zHBAYz`gR!HcwQjpNG7C$1N3(4`tvVZZ>VD|lTbjVM$B~7+QbfVuDRq8RJ9}o{$PBu zp%x^Tzr8ufLgDjEgixfW#e+B`hoj${ct#T+E!eYi=U%4t-0eVP7G}^wRS{HSK<+H> z+#jz#akt=R5|j$ii*xI4cYUiI_l-*(^wa>SCCB>>MwdL!w2WJtLnr2v62Pc{01OE( z;D;_6)Cb-1xZu=IT(qb?4>3pCi!qKt$0Yp@W3&$h z{{Y=PV`h?~2s?&9J-Kx1Bc0;qp?Qf6KrOguFI`C0w$}Ef(h9dEAb<-F1BWkPYIp5y zWo44VR%YvRDb0jxc+@8w%OU*1KhAO)ohTX0% z^m+FQ1D7+F`dkwcKc425CbI3q^b zJzc3^3Ib!FcA`YAQc|@cB}MZd>2kuP02%zegj@MU+VV`s24g4{3OocyhM35rggEF_ zIEf6*6q3aDQR5k`O3p72`+17ZFXARaCho4zF^3+_H+TWTx)MM;vyYV29qhSzcK&`8qh zjV}=iQ4!&w#YJc$Bi4h-1SvFPI2FX$dFhcnElJFhf|FLFfk`2rfD@+rM?3Ae4@N77 z%o#^<1nA|6VD!B?*IS;nV zrQ;3jF%vG0DV|C#NDKTqhN_LR;WC{nxFM(>twT&;*DVwC$|RLbPE_bllrBzUO&6xhe7hR7HiQmJ|b>$ys`W zz_>WHj6lU<#Ill35u_<8cFX~F5L&HT7j`0%QxAt2d|oM26I@L7OqSt=YeFsqYsucP zk8_N%8ndC=!zG)85^8rPmQ>PGM&$&TZgCjGe#zHWTdJ}SUJx0W8JCp7kWn~GkFC58VpT@EGi-i{$!~t zAciy{fO^v&m&4Bg0Mt&BlidI*t4zQhcYjMgyJiCnp~JA*l2TPJhxry~t(&X0YGTuk z7Bsw+SSegYz>OXpNRZMPL|h{1E+6u}0}J07X+$bwNq0+uQDbxEO&RaB*pviGOtO~> zNN4{5u>SyVhgxsFIzovk(6nBL)Dp0PmyM@ozGz7G5)g+9W&o8rB+!a6a&g14gko|0 zPFrO}ylyEh2qn_BkykT6jEpCaj!30*x?*_3URITpLBcXPBbj8V*k~2_h%91uA?1KQZHf|MjnoWK(@dX{Rz)O)~P%kyRzjl&TkDxHT8 z;W$}TxC{d(g{<}GyS=#!WBSTWG8jF8;*7?;(wMULIk&iWx1TS(TacMa&zT^Ck^pC} zo_2yxsLKf{`7fC(m`O&3GXgX+K}w*kEelCaK|<09C+-8{L=;TVDPS&I(q*kCJ5|9?49DW7<_VECN}DArV4RMllvPdxv7oMoI5!uNFdRyB zw9qV-WoCD;b-|_ixV1~(Quz*)&NFz>b!J*VEA8Y_&CDi6Db(<$p90bb0w^%iXwoO3u(D{+&G73Q-(p4GY({_AQ@POaH2&< zT-WM+>^j5n&G9Xh&E@$no7H)Mn94JGKa-SZlj}^(teK3Dl)RTVg%fi?j2H5uEomu8 zELkAqg7F>=kKkC$Qc`AN%!&C@076wZSgKYSp6Pa}a9P2QWyLsZuoKq2rBhN#PymI^ zRT`yC23K)YM!aIbijRbeY@QZp)gGATVrNRki4tp5X(>`-&1C9|>x-IYFpvtOEL2gLS>aH)TT8`%LL}TRKJ{4!(*0z_Eyu0stIy}04zwc zAQ7-}TDj(#&8IYs)H$gP#%5hHiToa5AqAz>2okYU$^l7zt4XO22n=!3q)Rx}f~Em1 z6pb(ZoC^@tU<13u%A-m)+=T~}Ef(RkF#zKDx!tn`8mp?EGBuiL8DnX!h1qKJZ zy+I<5V?8?ohMt6}QqkY2o0O6g4xQljwX0%SM?o}?@kz=R0OkF8_vXfRfX+5{1mkkNEm4&x?F%rRkm};hM>St z;HZ?jf=v9uYj9O5004IHse$WyF?Sh*Dfs;U9$A{@;pZO?Jxa=^qL3n)SUD`*6htJK zK}=vsdQ=1AnA0)eqhfzuA6Wim)wW#yMQmF1yjOaB1CrY7YGbSeap+_S!o zj_d~?!2u`#0F{`f&IdV{DF~Rrm+us)r37<6u|)9{re;-e#7b}ilx87Js#_=WYP)XQ z#O%jD{u^3?Mr9e^o7IxA$O0x~{(y+7mxliU{AEOxR8@dKnCv0VNVYLa;T^ic&rH4> z+P*5XNG3>^B?vi3@CIN2xwBR1#2B7e8^cH|3o_&%;wV(0ZI~sE&)Zjxebre%@Ti*1 zQ7M*c-2O>RLX{e3V=sz`68lnpAC)U|Y&KGkUm46a{{Ys>AgLH$FN~Ihl?6u&nqbhR zC2mO@hHA!F55$R<7cP3HXJBZ+3fPneuC3!2hEwqM{4Oo z62gMm$gA}Wwa7U*&tPUISOHm;hzZMDk`Yq;#R-e4?J{tvQn2ANlAzhMflY3g0fW6k zvDz#=)8JcP>Dckrr}dtd>c(9uE|}6$@(oEOjK*ysZd5PAt}03tpx`7Dt<?j?`33!VV^BIKX7-lLGSqec?NhFXM^G4$t3}*-7a}t$)!w$76R8dG(O^9-7 zVY~H@P&iAxnI zwHuPa{jxZI3xF7OA$&gznIHh^qdg57wWnR` zG5-MSJk%%Em}Wao$eoN7T-cDOX9tdP3iv+_&c_EJ6p{l=p}yg~$#`_|j1o$Z!cA*q z-5jcY8YIKjIjA+va}bLpDsn2e(bUePL*Ri@_pMpHABQpdniiWGZ)|jNe7lI5wXC$!%0+7I2 zx>WkX9u0p+GoLnut_E;1f;-@QLUs96Jb`*Wm?iXQgfD$|z3khX=$>Lgrxb>Ux)#pnU?E zyN9LQlU)*BUg|Dht@(br)$%bCK|{!KRewy}o7D-nL!V{Y@P?VyhvjVmUR~l&(H9uIorPLV=za`dPLe=`8 zCCei!B$ivB=M!0sw6fR_nJ*4%Bu%jh45gn@PdKxN;T$&vm5d(`!(m+{W|ESHkR5@$ zfE+Lan^HO-V|xX_yE!!C_-72lVDSrsR-%>DJ3GG z%~d^n(3TuGj0r3rE(z!$bJ-*9?$Bf?jzX2mt5o03IPZv7kL#$aC&t5 zi1LM5oF2vK{2zN$-^xvr98j7!USmhEF$JEMW9iTFcxski$f4{AYcsw70KEajD7SO~ z)cgB>upvY~=cn2nQ~)g1akhu(3%xrx{GzIYD#N8s-_qRcs4}n_nD5i*ef1LDhYrjL zCX7#TL(|-g;m~hdn-8fx{7e{A*!X#VDm>w;Npynb1hokce&o^V?b?_!q>vak^>%RL zr=f)8vzqBw{@{?}C^G;EEXn|$d8HUQrXCa?iUq$hAf2u&#k*Yp0M;6=Y}#+*5+P+J zfCcTpU3BY6Qc0pql$Q)`N4gi=5>xNEtv7VQ1ohvy0yu)9?4a~@1k92BGJY}D@bFzKKz_-SaN})gSiAbr6|Fel3DHphxfw*2_R_>N*P&A zSd&`Tz>4Z$O=$uPP$3|aQYuR@G;)6QZb0pWNCel*d;Fp&E(_Q&=>*(GNgUMLrodXn z;x*=S63qTA2;BAGpEfBBXhAkM)EBjU^@IunjL!CDdTmCrcmDtm8Po`RgW$(szK;wj zRa><-X8b~nZc~6Q!KwB%p!cib;SwF5zHl`aB)tkvp0zd>p#J{uOc)Sz7phzGN%H4t z0!TFsMxvvr2g?5dDm01^05k-as#Hi}?&k)T5^YWP`^1BtVCX6-1gSxkM$&sQ^np@Z z^}~{&Mqa$1=+J4*SUCVYwLRCbtT%EZU^fsrtp}?sxU0H{}Dt;kn4!{yO`v~ztuH^*<6p-F%*Wh^e#9#!Z zxN3j}zGJO*gMpClJwVil3_T>)z3Wc`&4w%wbee1ZX$n0L)=U0k3zA53EI_NfSF_;K z0~RC(Wm5h;pUeVjb|98w&B^`i1lnkzu0>5v+P~hO*htGz6#5X`b@%jSfCV}pqu)p& z+7>{4z=ODuY}_~8KfQ1kQD+TrIuAM z8(6LDK+RJ1;CJj#b4*A;H-gHMr`P8XQ2{PN^pRjqfg-1qYj+rlNy^3FZod9-OfJ>X z`d3ru4nl}YV9!uV+$&#qJh^}9vl0uPnw<9=L~0~|wMLCf`_{{VV@dF&el zP(cNoM*6^o5O>^f4)p$BU-MJmpSSeGl15`N0P3IU<7ha%te&zw?IoZ+rWs zJU?@OP|j=v@JT+wsb6r|P{bVzctZYW8{g<^)vxzGyS^8{e*Tc~G73Sc91sOs?SI$L z7*~lx!7R$YA5Hqb{{C<%dqD|eSO+#8yYPH@ED6K0Qvz8vaBOuQ zD-nXk9iZLQOFP`z*}!f;f2a@$$_VhQ^|Ve1AQ7&cec(wumO_CfT!G%q{9nxt-i4Gi z0Nb}(Y4doAG+7&y&wqQtz#xsPu-vB)QVI0G_V&Q#0>Z6I_&(ai!1&&t{NhSd$qG{k zJWvu`iajW5_PbzI2uedae=GZLP_s}b#1{qn{oxdn2zF4p+5@?;EO=`B{V)RHGr2sp zCjJpBR0|D#*UP8f18;BTF5#H_dyGqv5vU|v%Krdgq!c3n&XPS_gQ%JTK>hy2TbIBF z8G$XMv+G)UbcE-4Vx2^j{Ke0(E1%o^KKEFNTU(^->N=XSIfc{zDm1{9~z9K3)vV%|o z{{ZHmn^CWSlp0_7lE7Tt8XY+n=SV4HS;GPg0KmP2f_}ldweZ2*(a0TYwD^CqRJn-E#=_Vx@g z1Qh90rJVJ&NG3A_U9`7^Hla*TefY+P&!_q)VE$VgvId=Pp9^&2TV_Hd3RY)PrQ^%II zZFxk&?h6t94?2!b;|1KN8-~{o9MR7|Ph<4M5P}^g+WS}Le4EA%DhhBzYrFD3HGY&e zk1+s}K<>ln^rBumJMh;onWZutz9x8HsyWP}cDT+nf_~ke~cn*(~-nqtdVK z!?qLwQ!siP?e=$XZ3Ifnh*J;&W4SFrdl1*;{{UPllrF&Zcl<#Z0(QH(4(uz~Gt&M5 zwgiGf4brz`_0!fQg-KZn+EM~oRiDLpAE&i2J>VIbZ*m;e`}2hgvI~_vu>zO#N?n=% z07k=-NB;m8^lp6(uGDBWW(CEot6rYS5EO?F3R#J6SYQ7Dp)YE8sKE;gH!Y$^6|JuP z;fqR?4$wenB%b!EZg>sH7(}rFuKtioXYX1Dk`e(cbIV-#0_T8Du!(P%j*y8+6?Y|v zFVCb%ghTAuL7@sZH$BB_U$JZ=95tb!;8w)$ z39FKj;*_P!m*(Kwm|p$)Lx7O&(B2)m0v#&cu4qHq%TmOTB)egN0>URjWRtV}o)m2Y zfz-$HkU+CNpV;>Ahl51bRAvbdD9-hJl03(zp(&^;09L1KTGsxT?$3n_I#g;3luNs| zgjL6n(i75{g(cQm+&`zVrAHxy{cxd;k3$DZC6*Gvr)v>Jk=!4ncRY+Jh!D(OpL=`P z(y)am`H1a8Ir>%q0Kc3kCgtFPLexdeQto%BD*7I-3qVa$r4O9zIJ+i?9Nn!~VyMVkDmM-mYHsFyUqEURL@fxCNQvf0u6EsVOBSf}&|(Z>Q6oA*-I6ZP%W^Xn129l2}=T zgYHLhYW=B#3TqC$_R@_0Fe)Tfs4LdC`oAb56o+yOtN|_n`dXE%mZk@**1w){8j67w zU`aG1ZdV^$+(fiRDEzJ*)KtCO`#+Z*u*4*WA^w%=@-R*mD{v2(7yLn3l+b{p?{_!3 zwO-_6B$A)x7&&6bfvh~M0-6wcw=S>a4~CQqDSL=^0FpuE2IuKd6u~V@GyvscS8#0F z2#}}(MuT3hr;hM+pa7yb0^X3S)Hi?lf7F34)UX5d`1`}>1%tiXo+bjMklU?x7GNvQ z{Qwv_>Z*|fJPURGaPQvvpK8)49EBe+on+E89kuW;9f%^2?JW_U( zM2h}jC%^r->w`(4KIup-$}BF_V`Ke%!|x5+nto$i6&hFvuUln zU7S1s4MFn0F5;5Jf<-9im#8L|;}aw>>sS&4l-+^vb*7%nN4MOB?I1UfY8|iU-q?>R zas^qdYrv%?HdTw;uRV($;li}2B!A)AN=DQ@2H=Ev)Vw|a)!t~$Ymf@&CU@99W$DIx5?EN@`e@C%xnE*I05% zrteaN*MU}{dLN}Qpw#(N)KR@{&)ToP5oH{C)fMYLoyj!92ZB3Gi8=-R;&&dGYX^)YV7qzYEN zafJkx*dI7^sHgc!KqZJLmSTAv`}f2pDhg4n6JhV&V6!B+cIWT$^?|Jgs-y?wx$G$a z0Abst=dgDD?Mxe4oW9|{rWAQA31)KiA6KaILH_`n zJ`$1z4MDHJC{RbCE(iqJ)xC+mo}Mrc0SN+({{S+5VZ{xflz9ZIqJ)t@`0^@)&D#1h1Mz|;UH^x^66{{RKsyWy&H2hC2J-)egEgeD}C9CFqCG=&>U zAS?h|f_#qTe_HW^NMIaR+HVK5R2_ZZ8d*TxF=KCku@A@Zh{zxp{{Xhk{{YI~{GkqX zh6Jk41JTR7abr*0y~)55Loj{$cte(Q*3ushlH%@J-h>tm1%Bm@4=q^J!RpWK!>LcB zc;C_vRKvj_7bk#Qg2RTW=h*VHRdP<$`}2XWg^uvR5?loWLl6ij=xsyv;)fBsfhEnE zj+(!|w}Q^EViiGwVnsnL03>#H_bxERkOS7V(aAbF`tNGN1-k~hYr}wI<%K8(UG5FN z_-fGdNeNLPDcY9h@5&?!X8`Q~08e5(6qK4L)E&rh=g4PoXY+ticL3{q>jV{)f&)>y z^X0uf;o(jQ0D|`=ocF1t{;WkfV1$O$>-{@;dcrCvV8!FbN&!Tq8dUcjR)d~6?}Snb za!J^JU+LBy6%eBOF&;+1TgY!{cJR)i;57iPZ+-z5W5+lwqyPYIoM69aMElP z%1H1DFU#C^B7^#0+P?jqAbgAGh1F z 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�TNU!Mz9oJ9)vw(Y1b*`Tqc1;R=#> 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 z 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 + + + + + Map - Philadelphia Business Explorer + + + + + + + + + + + +
      + + + +
      +
      +
      +

      Loading Data...

      +
      +
      +
      + +
      + + + + + + \ No newline at end of file diff --git a/js/map.js b/js/map.js new file mode 100644 index 0000000..ee191b8 --- /dev/null +++ b/js/map.js @@ -0,0 +1,305 @@ +document.addEventListener('DOMContentLoaded', () => { + + // --- Configuration --- + const DATA_URL = 'data/philly_business.json'; + const PHILLY_COORDS = [39.9526, -75.1652]; + + // --- Global State --- + let allBusinessData = []; + const markersLayer = L.markerClusterGroup(); + let favorites = JSON.parse(localStorage.getItem('phillyFavorites')) || []; + + // --- 1. Initialize Map --- + const map = L.map('map').setView(PHILLY_COORDS, 12); + + var CartoDB_Positron = L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', { + attribution: '© OpenStreetMap contributors © CARTO', + subdomains: 'abcd', + maxZoom: 20 + }).addTo(map); + + map.addLayer(markersLayer); + + // --- 2. Fetch Data --- + fetch(DATA_URL) + .then(res => { + if (!res.ok) throw new Error("Failed to load data"); + return res.json(); + }) + .then(data => { + allBusinessData = data; + console.log(`Loaded ${data.length} businesses.`); + + // Initial Render + renderMap(allBusinessData); + + // Render favorites list (if container exists) + renderFavoritesList(); + + // Remove loading screen + const loader = document.getElementById('loading-overlay'); + if (loader) loader.style.display = 'none'; + }) + .catch(err => { + console.error(err); + const loader = document.getElementById('loading-overlay'); + if (loader) { + loader.innerHTML = `

      Error: ${err.message}
      Make sure to run a local server (python -m http.server)!

      `; + } + }); + + // --- 3. Filter Logic Helpers --- + + /** + * Check if a business matches selected cuisine categories. + */ + function matchesCuisine(categories, selectedCuisines) { + if (!categories) return false; + // If no cuisine is selected, assume we want to match nothing (or modify logic to match all) + if (selectedCuisines.length === 0) return false; + + const catStr = categories.toLowerCase(); + return selectedCuisines.some(c => catStr.includes(c.toLowerCase())); + } + + /** + * Check if a business matches selected features (Amenities). + * Mapping UI checkboxes to Yelp 'attributes' JSON structure. + */ + function matchesFeatures(attributes, selectedFeatures) { + if (!attributes && selectedFeatures.length > 0) return false; + + // Iterate through all selected features + for (const feature of selectedFeatures) { + switch (feature) { + case 'tv': + if (attributes.HasTV !== 'True') return false; + break; + case 'outdoor': + if (attributes.OutdoorSeating !== 'True') return false; + break; + case 'kids': + if (attributes.GoodForKids !== 'True') return false; + break; + case 'takeout': + if (attributes.RestaurantsTakeOut !== 'True') return false; + break; + default: + break; + } + } + return true; + } + + // --- 4. Main Filter Function --- + function filterData() { + // A. Get Filter Values + const slider = document.getElementById('rating-slider'); + const minRating = slider ? parseFloat(slider.value) : 0; + + const searchInput = document.getElementById('search-input'); + const searchTerm = searchInput ? searchInput.value.toLowerCase().trim() : ""; + + const favToggle = document.getElementById('fav-only-toggle'); + const showFavOnly = favToggle ? favToggle.checked : false; + + // Get selected cuisine categories + const cuisineCheckboxes = document.querySelectorAll('input[name="cuisine"]:checked'); + const selectedCuisines = Array.from(cuisineCheckboxes).map(cb => cb.value); + + // Get selected features (New Implementation) + const featureCheckboxes = document.querySelectorAll('.feature-input:checked'); + const selectedFeatures = Array.from(featureCheckboxes).map(cb => cb.value); + + // Update slider label + const ratingValueEl = document.getElementById('rating-value'); + if (ratingValueEl) { + ratingValueEl.innerText = minRating > 0 ? `${minRating}+ Stars` : "Any"; + } + + // B. Filter the Array + const filtered = allBusinessData.filter(biz => { + // 1. Basic Geo Check + if (!biz.latitude || !biz.longitude) return false; + + // 2. Favorites Only Check + if (showFavOnly && !favorites.includes(biz.business_id)) { + return false; + } + + // 3. Rating Check + if (biz.stars < minRating) return false; + + // 4. Search Check + if (searchTerm) { + const nameMatch = biz.name.toLowerCase().includes(searchTerm); + const addressMatch = (biz.address || "").toLowerCase().includes(searchTerm); + if (!nameMatch && !addressMatch) return false; + } + + // 5. Cuisine Check + if (!matchesCuisine(biz.categories, selectedCuisines)) return false; + + // 6. Features Check + // Note: biz.attributes might be undefined for some businesses + const attributes = biz.attributes || {}; + if (!matchesFeatures(attributes, selectedFeatures)) return false; + + return true; + }); + + console.log(`Filtered down to ${filtered.length} results.`); + renderMap(filtered); + } + + // --- 5. Render Map --- + function renderMap(data) { + markersLayer.clearLayers(); + + // Update Sidebar Stats + const statsCountEl = document.getElementById('stats-count'); + if (statsCountEl) { + statsCountEl.innerText = data.length.toLocaleString(); + } + + data.forEach(biz => { + const marker = L.marker([biz.latitude, biz.longitude]); + + const isFav = favorites.includes(biz.business_id); + // Use different text based on state + const favBtnText = isFav ? "โค๏ธ Saved" : "๐Ÿค Save to Wishlist"; + const favBtnClass = isFav ? "fav-btn is-active" : "fav-btn"; + + const popupContent = ` +
      +

      ${biz.name}

      +
      โ˜… ${biz.stars} (${biz.review_count} reviews)
      +

      ๐Ÿ“ ${biz.address}, ${biz.city}

      +

      ๐Ÿท๏ธ ${biz.categories || 'N/A'}

      + +
      + `; + + marker.bindPopup(popupContent); + markersLayer.addLayer(marker); + }); + } + + // --- 6. Favorites System --- + + // Global function attached to window for inline onclick access + window.toggleFavorite = function(bizId) { + if (favorites.includes(bizId)) { + favorites = favorites.filter(id => id !== bizId); + } else { + favorites.push(bizId); + } + + localStorage.setItem('phillyFavorites', JSON.stringify(favorites)); + + renderFavoritesList(); // Update list if on Favorites page + filterData(); // Re-render map to update button state + }; + + function renderFavoritesList() { + const listContainer = document.getElementById('favorites-list'); + + // Safety check: if container doesn't exist (e.g., on map page), exit + if (!listContainer) return; + + listContainer.innerHTML = ''; + + if (favorites.length === 0) { + listContainer.innerHTML = '

      No favorites yet.
      Click the heart on a map pin!

      '; + return; + } + + favorites.forEach(bizId => { + const biz = allBusinessData.find(b => b.business_id === bizId); + if (!biz) return; + + const item = document.createElement('div'); + item.className = 'fav-item'; + item.innerHTML = ` + ${biz.name} + ร— + `; + + // Click to pan to location + item.addEventListener('click', (e) => { + if (e.target.classList.contains('fav-remove')) return; + // Only works if map instance is available (on main page) + if (typeof map !== 'undefined') { + map.flyTo([biz.latitude, biz.longitude], 16); + } + }); + + // Remove button handler + item.querySelector('.fav-remove').addEventListener('click', () => { + toggleFavorite(bizId); + }); + + listContainer.appendChild(item); + }); + } + + // --- 7. Event Listeners --- + + // Cuisine Filters + document.querySelectorAll('input[name="cuisine"]').forEach(i => { + i.addEventListener('change', filterData); + }); + + // Feature Filters (Need to ensure HTML inputs have class 'feature-input') + // Note: You need to update index.html to add class="feature-input" and value="tv", etc. + document.querySelectorAll('.feature-input').forEach(i => { + i.addEventListener('change', filterData); + }); + + // Rating Slider + const slider = document.getElementById('rating-slider'); + if (slider) slider.addEventListener('input', filterData); + + // Search Input + const searchInput = document.getElementById('search-input'); + if (searchInput) searchInput.addEventListener('input', filterData); + + // Favorites Toggle + const favToggle = document.getElementById('fav-only-toggle'); + if (favToggle) favToggle.addEventListener('change', filterData); + + // Reset Button + const resetBtn = document.getElementById('reset-btn'); + if (resetBtn) { + resetBtn.addEventListener('click', () => { + // Reset Cuisines + document.querySelectorAll('input[name="cuisine"]').forEach(i => i.checked = true); + // Reset Features + document.querySelectorAll('.feature-input').forEach(i => i.checked = false); + // Reset Slider + if (slider) slider.value = "0"; + // Reset Search + if (searchInput) searchInput.value = ""; + // Reset Fav Toggle + if (favToggle) favToggle.checked = false; + + filterData(); + }); + } + +}); + +// --- UI Helper Functions --- + +/** + * Toggles UI state for Price Range buttons. + * Note: Actual filtering for price is not implemented as per request, UI only. + */ +function togglePrice(el, level) { + el.classList.toggle('selected'); + console.log("Selected Price Level:", level); +} \ No newline at end of file
      +
      + ๐ŸŽ… Taste of Philly: Delicacy Wonderland โœจ +
      +
      +

      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